klatexformula-4.0.0/000755 000765 000024 00000000000 13046272704 015353 5ustar00philippestaff000000 000000 klatexformula-4.0.0/apidoc/000755 000765 000024 00000000000 13046272703 016611 5ustar00philippestaff000000 000000 klatexformula-4.0.0/AUTHORS000644 000765 000024 00000000053 13046272676 016431 0ustar00philippestaff000000 000000 Philippe Faist klatexformula-4.0.0/cmake/000755 000765 000024 00000000000 13046272676 016443 5ustar00philippestaff000000 000000 klatexformula-4.0.0/CMakeLists.txt000644 000765 000024 00000046140 13046272704 020120 0ustar00philippestaff000000 000000 # #################################### # # CMake project file for klatexformula # # #################################### # # $Id: CMakeLists.txt 1019 2017-02-07 06:20:02Z phfaist $ # #################################### # cmake_minimum_required(VERSION 3.1) PROJECT(klatexformula) # Set up CMAKE properly set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") if(APPLE) # find HomeBrew Qt5, if present set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "/usr/local/opt/qt5/lib/cmake") endif(APPLE) # Read project version file(READ "VERSION" klf_ver) string(STRIP "${klf_ver}" KLF_VERSION) message(STATUS "KLatexFormula Version ${KLF_VERSION}") option(KLF_WELCOME_MSG_SILENT "Don't display welcome message" OFF) if(NOT KLF_WELCOME_MSG_SILENT) message(STATUS " Welcome to the klatexformula build script. This CMake script will configure the klatexformula ${KLF_VERSION} build process for your system. Some settings will have to be detected. This script should be able to detect the correct settings for most systems. However, you may want to tune and even fine-tune this configuration in order to build and install the compenents you would like, and install them at your preferred locations. Each status message displays a default or detected value for a setting. In capital letters is given the corresponding CMake cache variable name, in case you want to change the setting. With command-line cmake, you can set a variable with: cmake -D= In most cases values are just 'ON' or 'OFF'. In some other cases they are paths. Non-absolute installation paths are understood as relative to CMAKE_INSTALL_PREFIX. But don't worry, most default values should be fine. Unless an error was reported during this script, you can type make and sudo make install to install klatexformula on your system. For more options and help: - look at the stored cache variable documentation (displayed eg. by cmake-gui and ccmake, or directly in the CMakeCache.txt file) - take a look at http://klatexformula.sourceforge.net/klfwiki/index.php/User_Manual:Downloading_%26_Installing And have a lot of fun! ") message(STATUS "Displayed welcome message (KLF_WELCOME_MSG_SILENT)") else(NOT KLF_WELCOME_MSG_SILENT) message(STATUS "Skipped welcome message (KLF_WELCOME_MSG_SILENT)") endif(NOT KLF_WELCOME_MSG_SILENT) # Extract KLF Version from VERSION file set(klfversion_regex "([0-9]+)\\.([0-9]+)\\.([0-9]+)(.*)") string(REGEX REPLACE "${klfversion_regex}" "\\1" KLF_VERSION_MAJ "${KLF_VERSION}") string(REGEX REPLACE "${klfversion_regex}" "\\2" KLF_VERSION_MIN "${KLF_VERSION}") string(REGEX REPLACE "${klfversion_regex}" "\\3" KLF_VERSION_REL "${KLF_VERSION}") string(REGEX REPLACE "${klfversion_regex}" "\\4" KLF_VERSION_SUFFIX "${KLF_VERSION}") # The version that the libraries will be tagged with set(KLF_LIB_VERSION "${KLF_VERSION_MAJ}") include(KLFUtil) # Warn the user for defined cache variables that are not standard, # i.e. may be a user's typo -- recent CMake does that automatically #include(klfValidOptions) # Set some project settings # ------------------------- message(STATUS "") message(STATUS "[BUILD SETTINGS]") set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build configuration (Debug|Release|RelWithDebInfo)") if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build configuration (Debug|Release|RelWithDebInfo)" FORCE) endif() message(STATUS "CMake build type: ${CMAKE_BUILD_TYPE}") if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") set(klf_debug_dflt 1) else() set(klf_debug_dflt 0) endif() set(KLF_DEBUG "${klf_debug_dflt}" CACHE BOOL "Enable klf debugging messages (boolean)") if(KLF_DEBUG) message(STATUS "Debugging messages in KLF libraries and applciation are enabled (KLF_DEBUG)") else() message(STATUS "Debugging messages in KLF libraries and applciation are disabled (KLF_DEBUG)") endif() # experimental features -- currently no experimental features to enable # #option(KLF_EXPERIMENTAL # "DEVELOPERS ONLY. Enable experimental unstable features (NOT recommended for regular use!)" # off) #mark_as_advanced(KLF_EXPERIMENTAL) #if(KLF_EXPERIMENTAL) # KLFNote("WARNING: Experimental features are unstable and are meant only for developers!! Use at your own risk!!") # message(STATUS "Enabling experimental features (KLF_EXPERIMENTAL)") #endif(KLF_EXPERIMENTAL) set(KLF_EXPERIMENTAL 0) # # Find Qt 5 # find_package(Qt5Core REQUIRED) find_package(Qt5Gui REQUIRED) find_package(Qt5Widgets REQUIRED) find_package(Qt5Xml REQUIRED) get_target_property(Qt5Core_location Qt5::Core LOCATION) get_target_property(Qt5Gui_location Qt5::Gui LOCATION) get_target_property(Qt5Widgets_location Qt5::Widgets LOCATION) get_target_property(Qt5Xml_location Qt5::Xml LOCATION) message(STATUS "Found minimal Qt5 components (use CMAKE_PREFIX_PATH=/path/to/qt/lib/cmake): - ${Qt5Core_location} - ${Qt5Gui_location} - ${Qt5Widgets_location} - ${Qt5Xml_location}") # # Decide which window system to use. This is independent of OS, say, theoretically we # could compile an X11 version on a Mac (though not sure why we'd do it). # # This setting KLF_WS actually defines which additional features are included. You can # use make a fully ws-portable build with KLF_WS=other (disable all extra features). # if (APPLE) set(klf_ws_dflt "mac") elseif(UNIX) set(klf_ws_dflt "x11") elseif(WIN32) set(klf_ws_dflt "win") else() set(klf_ws_dflt "other") endif() set(KLF_WS "${klf_ws_dflt}" CACHE STRING "Which window system to use (mac,x11,win,other) -- used to enable some additional platform-specific features") if(KLF_WS STREQUAL "mac") message(STATUS "Enabling mac-specific features (KLF_WS=x11|mac|win|other)") elseif(KLF_WS STREQUAL "x11") message(STATUS "Enabling X11-specific features (KLF_WS=x11|mac|win|other)") elseif(KLF_WS STREQUAL "win") message(STATUS "Enabling windows-specific features (KLF_WS=x11|mac|win|other)") elseif(KLF_WS STREQUAL "other") message(STATUS "Not enabling any window system specific feature (KLF_WS=x11|mac|win|other)") else() message(FATAL_ERROR "Invalid setting for KLF_WS=${KLF_WS}. Please Select one of \"mac\", \"win\", \"x11\" or \"other\".") endif() # # by default, libraries are dynamic unless overridden by user options # set(klf_default_libraries_static 0) # # KLFTOOLS # # must be set to ON if you want to build anything at all. option(KLF_BUILD_TOOLS "Build klatexformula tools library (klftools). Necessary for everything else." 1) option(KLF_LIBKLFTOOLS_STATIC "Build a static klftools library" ${klf_default_libraries_static}) if(KLF_BUILD_TOOLS) message(STATUS "Will build the klftools library (KLF_BUILD_TOOLS)") if(KLF_LIBKLFTOOLS_STATIC) message(STATUS "Building a static KLatexFormula tools library (klftools) (KLF_LIBKLFTOOLS_STATIC)") else() message(STATUS "Building a shared KLatexFormula tools library (klftools) (KLF_LIBKLFTOOLS_STATIC)") endif() else() # message(FATAL_ERROR "There is nothing to build. You must set at least KLF_BUILD_TOOLS.") endif() if(KLF_LIBKLFTOOLS_STATIC) set(default_KLF_BUILD_TOOLSDESPLUGIN FALSE) else() set(default_KLF_BUILD_TOOLSDESPLUGIN TRUE) endif() set(KLF_BUILD_TOOLSDESPLUGIN "${default_KLF_BUILD_TOOLSDESPLUGIN}" CACHE BOOL "Build Qt Designer Plugin for klftools library widgets") if(KLF_BUILD_TOOLSDESPLUGIN) if(KLF_LIBKLFTOOLS_STATIC) message(FATAL_ERROR "Cannot build klftools designer plugin library with static klftools library (set KLF_BUILD_TOOLSDESPLUGIN=0 or KLF_LIBKLFTOOLS_STATIC=0)") endif() message(STATUS "Will build the klftools designer plugin library (KLF_BUILD_TOOLSDESPLUGIN)") else() message(STATUS "Will not build the klftools designer plugin library (KLF_BUILD_TOOLSDESPLUGIN)") endif() # # KLFBACKEND # option(KLF_BUILD_BACKEND "Build klatexformula backend library (klfbackend)" 1) option(KLF_LIBKLFBACKEND_STATIC "Compile static libklfbackend backend library instead of shared." ${klf_default_libraries_static}) if(KLF_BUILD_BACKEND) if (NOT KLF_BUILD_TOOLS) message(FATAL_ERROR "Cannot build klfbackend without klftools (set KLF_BUILD_BACKEND=0 or KLF_BUILD_TOOLS=1)") endif() message(STATUS "Will build the klfbackend library (KLF_BUILD_BACKEND)") if(KLF_LIBKLFBACKEND_STATIC) message(STATUS "Building a static KLFBackend library (KLF_LIBKLFBACKEND_STATIC)") else() message(STATUS "Building a shared KLFBackend library (KLF_LIBKLFBACKEND_STATIC)") endif() else() message(STATUS "Will not build the klfbackend library (KLF_BUILD_BACKEND)") endif() option(KLF_BUILD_BACKEND_AUTO "Build klatexformula autonomous backend library (klfbackend_auto)" 1) option(KLF_LIBKLFBACKEND_AUTO_STATIC "Compile static libklfbackend_auto backend library instead of shared." TRUE) if(KLF_BUILD_BACKEND_AUTO) message(STATUS "Will build autonomous klfbackend_auto without klftools dependency (KLF_BUILD_BACKEND_AUTO)") if(KLF_LIBKLFBACKEND_AUTO_STATIC) message(STATUS "Building a static klfbackend_auto autonomous library (KLF_LIBKLFBACKEND_AUTO_STATIC)") else() message(STATUS "Building a shared klfbackend_auto autonomous library (KLF_LIBKLFBACKEND_AUTO_STATIC)") endif() else() message(STATUS "Will not build autonomous klfbackend_auto without klftools dependency (KLF_BUILD_BACKEND_AUTO)") endif() # Extra search paths if(KLF_BUILD_BACKEND OR KLF_BUILD_BACKEND_AUTO) set(KLF_EXTRA_SEARCH_PATHS "" CACHE STRING "Extra paths in which klfbackend (and klatexformula) will search for latex/dvips/etc. executables. Separate paths with ';' on all platforms") message(STATUS "Will prepend \"${KLF_EXTRA_SEARCH_PATHS}\" to klfbackend/klatexformula's latex/dvips/gs search paths (KLF_EXTRA_SEARCH_PATHS)") endif() option(KLF_BUILD_GUI "Build klatexformula GUI application (klatexformula) [requires klftools and klfbackend]" 1) if(KLF_BUILD_GUI) if (NOT KLF_BUILD_TOOLS OR NOT KLF_BUILD_BACKEND) message(FATAL_ERROR "Cannot build the klatexformula GUI main application without klftools and klfbackend (set KLF_BUILD_BACKEND=1 and KLF_BUILD_TOOLS=1, or set KLF_BUILD_GUI=0)") endif() message(STATUS "Will build the main klatexformula program (GUI) (KLF_BUILD_GUI)") else() message(STATUS "Will not build the main klatexformula program (GUI) (KLF_BUILD_GUI)") endif() if(APPLE) # These settings override on Mac OS X if(CMAKE_OSX_ARCHITECTURES) set(display_CMAKE_OSX_ARCHITECTURES "${CMAKE_OSX_ARCHITECTURES}") else(CMAKE_OSX_ARCHITECTURES) set(display_CMAKE_OSX_ARCHITECTURES "(default)") endif(CMAKE_OSX_ARCHITECTURES) message(STATUS "Compiling for Mac OS X Architectures: ${display_CMAKE_OSX_ARCHITECTURES} (CMAKE_OSX_ARCHITECTURES)") if(KLF_TARGET_ARCH_64 OR klf_changed_KLF_TARGET_ARCH_64) KLFNote("Warning: KLF_TARGET_ARCH_64 ignored on Mac OS X. Use CMAKE_OSX_ARCHITECTURES instead.") endif(KLF_TARGET_ARCH_64 OR klf_changed_KLF_TARGET_ARCH_64) endif() # Mac OS X: building frameworks + bundles ? if(APPLE) option(KLF_MACOSX_BUNDLES "On Mac OS X: Build Bundles and Frameworks instead of UNIX-Style binaries" ON) option(KLF_MACOSX_BUNDLE_EXTRAS "[Mac OS X Bundles] Copy dependent libraries & resources into bundle, ready to be copied anywhere else and on other systems" ON) else() # no need to put these in cache, it's irrelevant # # However let's keep the KLF_MACOSX_BUNDLES setting independent from # APPLE. There may be systems on which we can create bundles, that # are not APPLE ??? not sure, but keep the possibility open. KLFSetIfNotDefined(KLF_MACOSX_BUNDLES OFF) KLFSetIfNotDefined(KLF_MACOSX_BUNDLE_EXTRAS OFF) endif() if(KLF_MACOSX_BUNDLES) if (KLF_MACOSX_BUNDLE_EXTRAS) message(STATUS "Will package library and framework dependencies into klatexformula app bundle (KLF_MACOSX_BUNDLE_EXTRAS)") else() message(STATUS "Will NOT package library and framework dependencies into klatexformula app bundle (KLF_MACOSX_BUNDLE_EXTRAS)") endif() set(default_KLF_BUNDLE_QT_PLUGINS Qt5::QCocoaIntegrationPlugin Qt5::QGifPlugin Qt5::QDDSPlugin Qt5::QGifPlugin Qt5::QICNSPlugin Qt5::QICOPlugin Qt5::QJpegPlugin Qt5::QMacJp2Plugin #Qt5::QMinimalIntegrationPlugin #Qt5::QOffscreenIntegrationPlugin Qt5::QTgaPlugin Qt5::QTiffPlugin #Qt5::QTuioTouchPlugin #Qt5::QVirtualKeyboardPlugin Qt5::QWbmpPlugin Qt5::QWebpPlugin Qt5::QSQLiteDriverPlugin Qt5::QSvgPlugin Qt5::QSvgIconPlugin ) set(KLF_BUNDLE_QT_PLUGINS "${default_KLF_BUNDLE_QT_PLUGINS}" CACHE STRING "Qt plugin list (imported targets e.g. Qt5::QJpegPlugin) to package into app bundle") string(REGEX REPLACE ";" " " klf_display_bundle_qt_plugins "${KLF_BUNDLE_QT_PLUGINS}") message(STATUS "Will Package Qt Plugins in bundle (KLF_BUNDLE_QT_PLUGINS): ${klf_display_bundle_qt_plugins}") if(NOT "${KLF_BUNDLE_QT_PLUGINS}" STREQUAL "${default_KLF_BUNDLE_QT_PLUGINS}") KLFNote("You are bundling a list of qt plugins which differs from the default list. In case the default list has changed and want to restore the defaults, run \"cmake .. -UKLF_BUNDLE_QT_PLUGINS\".") endif() endif(KLF_MACOSX_BUNDLES) # Build DBUS support ? if(UNIX AND NOT APPLE) set(klf_use_dbus_dflt 1) else() set(klf_use_dbus_dflt 0) endif() option(KLF_USE_DBUS "Compiles D-Bus support into KLatexFormula GUI" ${klf_use_dbus_dflt}) if(KLF_USE_DBUS) message(STATUS "Building with D-BUS support (KLF_USE_DBUS)") else() message(STATUS "Building without D-BUS support (KLF_USE_DBUS)") endif() # DEVELOPER OPTION to test QAbstractItemModel-based models with ModelTest option(KLF_DEBUG_USE_MODELTEST "DEVELOPERS ONLY. Uses ModelTest (Qt's Labs) to test QAbstractItemModel-based models. VERY slow." FALSE) mark_as_advanced(KLF_DEBUG_USE_MODELTEST) if(KLF_DEBUG_USE_MODELTEST) message(STATUS "Will compile with QtLab's ModelTest for KLFLibModel testing (KLF_DEBUG_USE_MODELTEST)") endif(KLF_DEBUG_USE_MODELTEST) # Use system font rather than CMU font if available #KLFDeclareCacheVarOptionFollowComplexN(specificoption cachetype cachestring updatenotice calcoptvalue depvarlist) option(KLF_NO_CMU_FONT "Tells klatexformula to use system font instead of Computer Modern font" FALSE ) if(KLF_NO_CMU_FONT) message(STATUS "Will use system font instead of CMU font (KLF_NO_CMU_FONT)") else() message(STATUS "Will attempt to use Computer Modern unicode font (KLF_NO_CMU_FONT)") endif() # Include some extra data files/fonts into KLatexFormula if(KLF_NO_CMU_FONT) set(klf_def_incl_fonts "") elseif(KLF_WS STREQUAL "mac") set(klf_def_incl_fonts "data/cmunbbx.otf;data/cmunbmo.otf;data/cmunbmr.otf;data/cmunbso.otf;data/cmunbsr.otf;data/cmunbxo.otf") # CMU Bright else() set(klf_def_incl_fonts "data/cmunsi.otf;data/cmunso.otf;data/cmunss.otf;data/cmunsx.otf") # CMU Sans Serif endif() set(KLF_INCLUDE_FONTS "${klf_def_incl_fonts}" CACHE STRING "Include some extra fonts into KLF's internal resources (absolute or relative to src/)") if(KLF_INCLUDE_FONTS) string(REPLACE ";" "\n " klf_include_fonts_msg_list "${KLF_INCLUDE_FONTS}") message(STATUS "Will include fonts into klatexformula's resources (KLF_INCLUDE_FONTS):\n ${klf_include_fonts_msg_list}") else() message(STATUS "Will not include fonts into klatexformula's resources (KLF_INCLUDE_FONTS)") endif() # Use Sparkle framework under Mac OS X? if(KLF_WS STREQUAL "mac") option(KLF_USE_SPARKLE "Use Sparkle Framework for auto-updates on Mac OS X" OFF) # can only use if we are building a bundle if (NOT KLF_MACOSX_BUNDLES) message(FATAL_ERROR "Can only build with Sparkle framework when we are building a Mac OS X App bundle (use KLF_MACOSX_BUNDLES=1)") endif() if(KLF_USE_SPARKLE) set(KLF_SPARKLE_FEED_URL "http://klatexformula.sourceforge.net/sparklefeed.xml" CACHE STRING "URL for Sparkle to check for updates") set(KLF_SPARKLE_FRAMEWORK "Sparkle.framework" CACHE STRING "Path to the Sparkle Framework") set(KLF_SPARKLE_DSA_PUBKEY "" CACHE STRING "Path to the DSA public key for signing packages.") if(NOT EXISTS "${KLF_SPARKLE_FRAMEWORK}") message(FATAL_ERROR "Please specify the path to the Sparkle Framework in KLF_SPARKLE_FRAMEWORK, or disable the Sparkle framework with KLF_USE_SPARKLE=off.") endif() message(STATUS "Using sparkle framework with update URL ${KLF_SPARKLE_FEED_URL}") endif() endif() # Use WinSparkle framework under Windows? if(WIN32) option(KLF_USE_WINSPARKLE "Use WinSparkle for auto-updates on MS Windows" OFF) if(KLF_USE_WINSPARKLE) set(KLF_WINSPARKLE_FEED_URL "http://klatexformula.sourceforge.net/sparklefeed.xml" CACHE STRING "URL for WinSparkle to check for updates") set(KLF_WINSPARKLE_DIR "" CACHE STRING "Path to the WinSparkle Directory (with .h files & WinSparkle.dll file)") if(NOT EXISTS "${KLF_WINSPARKLE_DIR}") message(FATAL_ERROR "Please specify the path to the WinSparkle directory in KLF_WINSPARKLE_DIR, or disable the Sparkle framework with KLF_USE_WINSPARKLE=off.") endif() message(STATUS "Using WinSparkle with update URL ${KLF_WINSPARKLE_FEED_URL}") endif() endif() # Manpage generation from --help and --version help text if(NOT KLF_MACOSX_BUNDLES) if(NOT DEFINED HELP2MAN OR HELP2MAN STREQUAL "") find_program(HELP2MAN "help2man") endif() endif() if(HELP2MAN) message(STATUS "Manpage will be generated from --help text with help2man (HELP2MAN=OFF or /path/to/help2man)") elseif(NOT KLF_MACOSX_BUNDLES AND NOT WIN32 AND HELP2MAN STREQUAL "") KLFNote("help2man was not found. Manpage will not be generated. set explicitely HELP2MAN to /path/.../to/help2man if needed.") endif() if(NOT HELP2MAN) message(STATUS "Manpage will not be generated with help2man (HELP2MAN=OFF or /path/to/help2man)") endif() if(NOT DEFINED GZIP OR GZIP STREQUAL "") find_program(GZIP "gzip") endif() if(HELP2MAN) if(GZIP) message(STATUS "Manpage will be gzip'ed (GZIP=OFF or /path/to/gzip)") else() message(STATUS "Manpage will not be gzip'ed (GZIP=OFF or /path/to/gzip)") endif() endif(HELP2MAN) # Install Paths # ------------- message(STATUS "") message(STATUS "[INSTALLATION SETTINGS]") include(klfinstallpaths) # CPack # ----- include(klfcpack) # Some Basic Compilation Definitions # ---------------------------------- # Preprocessor instructions add_definitions(-DKLF_VERSION_STRING="${KLF_VERSION}" -DKLF_VERSION_MAJ=${KLF_VERSION_MAJ} -DKLF_VERSION_MIN=${KLF_VERSION_MIN} -DKLF_VERSION_REL=${KLF_VERSION_REL} -DKLF_SRC_BUILD) # Add warning flags for all build configurations set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wextra") set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -Wall -Wextra") set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Wall -Wextra") if(KLF_DEBUG) add_definitions(-DKLF_DEBUG) else() # Instruct Qt to ignore qDebug() for RELEASE build configuration (if not KLF_DEBUG) set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DQT_NO_DEBUG_OUTPUT") endif() if(KLF_EXPERIMENTAL) add_definitions(-DKLF_EXPERIMENTAL) endif() # Main subdirectory with all sources # ---------------------------------- add_subdirectory(src) message(STATUS "") message(STATUS "[ADDITIONAL SETTINGS]") # Doxygen # ------- include(klfdoxygen) message(STATUS "") message(STATUS "[DONE]") KLFNotifyNotices() message(STATUS "") klatexformula-4.0.0/CMUFONTS_COPYING000644 000765 000024 00000004410 13046272676 017733 0ustar00philippestaff000000 000000 This klatexformula source tarball contains fonts (Computer Modern Unicode Fonts in otf format) provided by Andrey V. Panov. Here is the original copyright notice: X11 License ----------- Andrey V. Panov (C) 2005 All rights reserved. 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, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. 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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. -------------------------------------------------------------------------------- As a special exception, if you create a document which uses these fonts, and embed these fonts or unaltered portions of these fonts into the document, these fonts does not by itself cause the resulting document to be covered by the X11 License. This exception does not however invalidate any other reasons why the document might be covered by the X11 License. If you modify these fonts, you may extend this exception to your version of the fonts, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. klatexformula-4.0.0/COPYING000644 000765 000024 00000043131 13046272704 016410 0ustar00philippestaff000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. klatexformula-4.0.0/COPYING.txt000644 000765 000024 00000043131 13046272676 017236 0ustar00philippestaff000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. klatexformula-4.0.0/descr_long.txt000644 000765 000024 00000000672 13046272703 020237 0ustar00philippestaff000000 000000 KLatexFormula is an easy-to-use graphical user interface for generating images from LaTeX equations. These images can be dragged and dropped or copied and pasted into external applications (presentations, text documents, graphics...), or can be saved to disk in a variety of formats (PNG, JPG, BMP, EPS, PDF, etc.). In addition to the graphical user interface, a command-line interface and a C++ library is provided to perform the same job. klatexformula-4.0.0/descr_short.txt000644 000765 000024 00000000403 13046272703 020427 0ustar00philippestaff000000 000000 KLatexFormula is an easy-to-use graphical application for generating images from LaTeX equations. KLatexFormula is an easy-to-use graphical application for generating images (that you can drag and drop, copy and paste or save to disk) from LaTeX equations. klatexformula-4.0.0/Doxyfile.klfbackend.in000644 000765 000024 00000220410 13046272704 021550 0ustar00philippestaff000000 000000 # Doxyfile 1.7.3 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "KLFBackend Library" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @KLF_VERSION@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = @KLF_APIDOC_DIR@@KLF_DOXYGEN_SF@/klfbackend # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = NO # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given extension. # Doxygen has a built-in mapping, but you can override or extend it using this # tag. The format is ext=language, where ext is a file extension, and language # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. EXTENSION_MAPPING = # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = NO # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = YES # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. The create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = src/klfbackend # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.d \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.idl \ *.odl \ *.cs \ *.php \ *.php3 \ *.inc \ *.m \ *.mm \ *.dox \ *.py \ *.f90 \ *.f \ *.vhd \ *.vhdl \ *.C \ *.CC \ *.C++ \ *.II \ *.I++ \ *.H \ *.HH \ *.H++ \ *.CS \ *.PHP \ *.PHP3 \ *.M \ *.MM \ *.PY \ *.F90 \ *.F \ *.VHD \ *.VHDL # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = */ui_*.h \ */qrc_*.cpp \ */moc_*.cpp \ *_p.h # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 2 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = KLF \ klf #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/apidoc/dox_header.html # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/apidoc/dox_footer@KLF_DOXYGEN_SF@.html # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/apidoc/dox_style.css # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the stylesheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 80 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [0,1..20]) # that doxygen will group on one line in the generated HTML documentation. # Note that a value of 0 will completely suppress the enum values from # appearing in the overview section. ENUM_VALUES_PER_LINE = 4 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list. USE_INLINE_TREES = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = YES # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the # mathjax.org site, so you can quickly see the result without installing # MathJax, but it is strongly recommended to install a local copy of MathJax # before deployment. MATHJAX_RELPATH = http://www.mathjax.org/mathjax # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = NO # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a PHP enabled web server instead of at the web client # using Javascript. Doxygen will generate the search PHP script and index # file to put on the web server. The advantage of the server # based approach is that it scales better to large projects and allows # full text search. The disadvantages are that it is more difficult to setup # and does not have live searching capabilities. SERVER_BASED_SEARCH = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = YES # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = apidoc/qtcore.tags=http://qt-project.org/doc/qt-5/ \ apidoc/qtgui.tags=http://qt-project.org/doc/qt-5/ \ apidoc/qtxml.tags=http://qt-project.org/doc/qt-5/ \ apidoc/qtsql.tags=http://qt-project.org/doc/qt-5/ \ @KLF_APIDOC_DIR@/klftools.tag=../../klftools/html # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = @KLF_APIDOC_DIR@/klfbackend.tag # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = NO # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will write a font called Helvetica to the output # directory and reference it in all dot files that doxygen generates. # When you want a differently looking font you can specify the font name # using DOT_FONTNAME. You need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = Arial # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, svg, gif or svg. # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 1000 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES klatexformula-4.0.0/Doxyfile.klftools.in000644 000765 000024 00000220407 13046272676 021337 0ustar00philippestaff000000 000000 # Doxyfile 1.7.3 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "KLFTools Library" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @KLF_VERSION@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = @KLF_APIDOC_DIR@@KLF_DOXYGEN_SF@/klftools # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = NO # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given extension. # Doxygen has a built-in mapping, but you can override or extend it using this # tag. The format is ext=language, where ext is a file extension, and language # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. EXTENSION_MAPPING = # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = NO # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = YES # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. The create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = src/klftools/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.d \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.idl \ *.odl \ *.cs \ *.php \ *.php3 \ *.inc \ *.m \ *.mm \ *.dox \ *.py \ *.f90 \ *.f \ *.vhd \ *.vhdl \ *.C \ *.CC \ *.C++ \ *.II \ *.I++ \ *.H \ *.HH \ *.H++ \ *.CS \ *.PHP \ *.PHP3 \ *.M \ *.MM \ *.PY \ *.F90 \ *.F \ *.VHD \ *.VHDL # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = src/klftools/klftools_desplugin.h \ src/klftools/klftools_desplugin.cpp # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = */ui_*.h \ */qrc_*.cpp \ */moc_*.cpp \ *_p.h # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = Ui # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 3 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = KLF #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/apidoc/dox_header.html # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/apidoc/dox_footer@KLF_DOXYGEN_SF@.html # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/apidoc/dox_style.css # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the stylesheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 80 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [0,1..20]) # that doxygen will group on one line in the generated HTML documentation. # Note that a value of 0 will completely suppress the enum values from # appearing in the overview section. ENUM_VALUES_PER_LINE = 4 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list. USE_INLINE_TREES = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = YES # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the # mathjax.org site, so you can quickly see the result without installing # MathJax, but it is strongly recommended to install a local copy of MathJax # before deployment. MATHJAX_RELPATH = http://www.mathjax.org/mathjax # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = NO # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a PHP enabled web server instead of at the web client # using Javascript. Doxygen will generate the search PHP script and index # file to put on the web server. The advantage of the server # based approach is that it scales better to large projects and allows # full text search. The disadvantages are that it is more difficult to setup # and does not have live searching capabilities. SERVER_BASED_SEARCH = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = YES # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = apidoc/qtcore.tags=http://qt-project.org/doc/qt-5/ \ apidoc/qtgui.tags=http://qt-project.org/doc/qt-5/ \ apidoc/qtxml.tags=http://qt-project.org/doc/qt-5/ \ apidoc/qtsql.tags=http://qt-project.org/doc/qt-5/ # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = @KLF_APIDOC_DIR@/klftools.tag # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will write a font called Helvetica to the output # directory and reference it in all dot files that doxygen generates. # When you want a differently looking font you can specify the font name # using DOT_FONTNAME. You need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = Arial # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, svg, gif or svg. # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 1000 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES klatexformula-4.0.0/extras/000755 000765 000024 00000000000 13046272704 016661 5ustar00philippestaff000000 000000 klatexformula-4.0.0/INSTALL000644 000765 000024 00000000713 13046272703 016404 0ustar00philippestaff000000 000000 The very quick install guide ---------------------------- > mkdir build && cd build build> cmake .. <--- cmake step build> make build> sudo make install Password: The cmake step can be repeated with options to set cache variables, like build> cmake .. -DCMAKE_INSTALL_PREFIX=/usr For detailed up-to-date installation instructions, please see http://klatexformula.sourceforge.net/klfwiki/index.php/User_Manual:Downloading_%26_Installing klatexformula-4.0.0/README000644 000765 000024 00000003576 13046272703 016245 0ustar00philippestaff000000 000000 --------------------------- KLatexFormula - README file --------------------------- KLatexFormula is an easy-to-use graphical application for generating images (that you can drag and drop, copy and paste or save to disk) from LaTeX equations. DESCRIPTION ----------- This application provides an easy-to-use graphical user interface for generating images from LaTeX equations. These images can be dragged and dropped or copied and pasted into external applications (presentations, text documents, graphics...), or can be saved to disk in a variety of formats (PNG, JPG, BMP, EPS, PDF, etc.). In addition to the graphical user interface, a command-line interface and a C++ library is provided to perform the same job. INSTALLATION ------------ Installation instructions can be found at http://klatexformula.sourceforge.net/doc/install HELP & DOCUMENTATION -------------------- Documentation can be found at http://klatexformula.sourceforge.net/doc/ REPORTING BUGS AND PROVIDING FEEDBACK ------------------------------------- Please report bugs and wishes at https://sourceforge.net/p/klatexformula/bugs/ LEGAL INFORMATION ----------------- KLatexFormula is licensed under the GPL license (version 2 or at your option any later version), a copy of which is provided in the COPYING file. * This source tarball contains fonts (Computer Modern Unicode Fonts in otf format) provided by Andrey V. Panov. The original copyright notice is provided in the file CMUFONTS_COPYRIGHT. * This source tarball contains code from Qt/Trolltech: - src/modeltest.h - src/modeltest.cpp The original copyright notice is included in the first lines of those files. * This source tarball contains code from Qt/Nokia slightly modified by myself: - src/klftools/qtcolortriangle.h - src/klftools/qtcolortriangle.cpp The original copyright notice is included in the first lines of those files. klatexformula-4.0.0/src/000755 000765 000024 00000000000 13046272703 016141 5ustar00philippestaff000000 000000 klatexformula-4.0.0/templates/000755 000765 000024 00000000000 13046272703 017350 5ustar00philippestaff000000 000000 klatexformula-4.0.0/VERSION000644 000765 000024 00000000006 13046272676 016427 0ustar00philippestaff000000 000000 4.0.0 klatexformula-4.0.0/templates/cpp000644 000765 000024 00000002700 13046272703 020054 0ustar00philippestaff000000 000000 /*************************************************************************** * file $FILENAME$ * This file is part of the KLatexFormula Project. * Copyright (C) 2012 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id$ */ klatexformula-4.0.0/templates/h000644 000765 000024 00000002677 13046272703 017536 0ustar00philippestaff000000 000000 /*************************************************************************** * file $FILENAME$ * This file is part of the KLatexFormula Project. * Copyright (C) 2012 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id$ */ klatexformula-4.0.0/templates/p_h000644 000765 000024 00000003162 13046272703 020043 0ustar00philippestaff000000 000000 /*************************************************************************** * file $FILENAME$ * This file is part of the KLatexFormula Project. * Copyright (C) 2012 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id$ */ /** \file * This header contains (in principle private) auxiliary classes for * library routines defined in ****.cpp */ #ifndef KLF****_P_H #define KLF****_P_H #endif klatexformula-4.0.0/src/CMakeLists.txt000644 000765 000024 00000052350 13046272702 020705 0ustar00philippestaff000000 000000 # ######################################## # # CMake project file for klatexformula/src # # ######################################## # # $Id: CMakeLists.txt 1021 2017-02-07 06:44:42Z phfaist $ # ######################################## # # Rely on CMake utilities for fixing up bundle dependencies # if(KLF_MACOSX_BUNDLES) include(BundleUtilities) #include(KLFMacBundle) endif(KLF_MACOSX_BUNDLES) # Set up -DKLF_WS_ -DKLF_WS="..." to indicate window system in use add_definitions("-DKLF_WS=\"${KLF_WS}\"") string(TOUPPER "${KLF_WS}" klf_ws_uc) add_definitions("-DKLF_WS_${klf_ws_uc}") # include these subprojects... add_subdirectory(klftools) add_subdirectory(klfbackend) # klatexformula main GUI program # ------------------------------ if(KLF_BUILD_GUI) find_package(Qt5Sql REQUIRED) find_package(Qt5UiTools REQUIRED) find_package(Qt5LinguistTools REQUIRED) find_package(Qt5Svg REQUIRED) if(KLF_USE_DBUS) find_package(Qt5DBus REQUIRED) endif() if(KLF_WS STREQUAL "x11") find_package(Qt5X11Extras REQUIRED) endif() if(KLF_WS STREQUAL "win") find_package(Qt5WinExtras REQUIRED) endif() if(KLF_WS STREQUAL "mac") find_package(Qt5MacExtras REQUIRED) endif() # Sources set(klatexformula_SRCS klfconfig.cpp klflatexsymbols.cpp klfstyle.cpp klflibentryeditor.cpp klflibbrowser.cpp klflib.cpp klflibview.cpp klflibdbengine.cpp klfliblegacyengine.cpp klfexporter.cpp klfmime.cpp klfmainwin.cpp klfsettings.cpp klfstylemanager.cpp klfmain.cpp klfcmdiface.cpp klfuiloader.cpp main.cpp klfapp.cpp ) # Headers with QObject classes (needs moc) set(klatexformula_MOCHEADERS klflatexsymbols.h klflatexsymbols_p.h klflibentryeditor.h klflibbrowser.h klflibbrowser_p.h klflib.h klflibview.h klflibview_p.h klflibdbengine.h klflibdbengine_p.h klfliblegacyengine.h klfliblegacyengine_p.h klfmime.h # klfmime_p.h # klfexporter.h klfexporter_p.h klfmainwin.h klfmainwin_p.h klfsettings.h klfsettings_p.h klfstylemanager.h klfcmdiface.h klfuiloader_p.h klfautoupdater.h klfapp.h ) # UI Forms set(klatexformula_UIS klflatexsymbols.ui klflibbrowser.ui klflibentryeditor.ui klflibopenresourcedlg.ui klflibrespropeditor.ui klfliblocalfilewidget.ui klflibnewsubresdlg.ui klfmainwin.ui klfsettings.ui klfstylemanager.ui klfaboutdialog.ui klfwhatsnewdialog.ui klflibexportdialog.ui ) # Translations set(klatexformula_TSS i18n/klf_fr.ts i18n/klf_cs.ts ) # Resources set(klatexformula_QRCS klfres.qrc ) add_executable(klatexformula ${klatexformula_SRCS}) target_include_directories(klatexformula PUBLIC "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/klftools" "${CMAKE_CURRENT_SOURCE_DIR}/klfbackend") # Uis, Mocs, Qrcs qt5_wrap_ui(klatexformula_UIS_H ${klatexformula_UIS}) qt5_wrap_cpp(klatexformula_MOC_CPPS ${klatexformula_MOCHEADERS}) qt5_add_resources(klatexformula_QRC_CPPS ${klatexformula_QRCS}) target_sources(klatexformula PRIVATE ${klatexformula_UIS_H} ${klatexformula_MOC_CPPS} ${klatexformula_QRC_CPPS}) target_link_libraries(klatexformula Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml Qt5::Sql Qt5::Svg Qt5::UiTools klfbackend klftools) # Translations qt5_add_translation(klatexformula_QMS ${klatexformula_TSS}) if (KLF_LIBKLFTOOLS_STATIC) # so that main.cpp knows that it has to initialize klftools' resource "klftools.qrc" manually target_compile_definitions(klatexformula PRIVATE -DKLF_LIBKLFTOOLS_STATIC) endif() set(klatexformula_post_build_commands ) set(klatexformula_bundle_include_libs ) # Adjustments for certain platforms and options -- special features if(KLF_WS STREQUAL "win") target_sources(klatexformula PRIVATE mswin/klfwinclipboard.cpp ) target_link_libraries(klatexformula Qt5::WinExtras) endif() if(KLF_USE_WINSPARKLE) target_compile_definitions(klatexformula PUBLIC -DKLF_USE_WINSPARKLE -DKLF_WINSPARKLE_FEED_URL=\"${KLF_WINSPARKLE_FEED_URL}\") target_include_directories(${KLF_WINSPARKLE_DIR}) qt5_wrap_cpp(klatexformula_MOC_CPPS_winsparkle mswin/klfwinsparkleupdater.h) target_sources(klatexformula PRIVATE mswin/klfwinsparkleupdater.cpp ${klatexformula_MOC_CPPS_winsparkle} ) target_link_libraries(klatexformula "${KLF_WINSPARKLE_DIR}/WinSparkle.dll") endif() if(KLF_WS STREQUAL "mac") target_sources(klatexformula PRIVATE macosx/klfmacclipboard.cpp macosx/klfmainwin_mac.mm macosx/klfcmdifacedispatch_mac.mm ) target_link_libraries(klatexformula Qt5::MacExtras) target_link_libraries(klatexformula "-framework Cocoa") endif() if(KLF_USE_SPARKLE) target_compile_definitions(klatexformula PRIVATE -DKLF_USE_SPARKLE -DKLF_SPARKLE_FEED_URL=\"${KLF_SPARKLE_FEED_URL}\") target_include_directories(klatexformula PRIVATE ${KLF_SPARKLE_FRAMEWORK}/Headers) qt5_wrap_cpp(klatexformula_MOC_CPPS_sparkle macosx/klfsparkleupdater.h) target_sources(klatexformula PRIVATE macosx/klfsparkleupdater.mm ${klatexformula_MOC_CPPS_sparkle} # also include in the bundle: "${KLF_SPARKLE_DSA_PUBKEY}" ) target_link_libraries(klatexformula ${KLF_SPARKLE_FRAMEWORK}) endif() if(KLF_MACOSX_BUNDLES) target_sources(klatexformula PRIVATE # more stuff we may want to import/copy privately in the App bundle macosx/qt.conf macosx/klatexformula.icns ${KLF_INCLUDE_FONTS} klatexformula-16.png klatexformula-32.png klatexformula-64.png klatexformula-128.png klatexformula-256.png klatexformula-512.png klatexformula-1024.png ) if (KLF_USE_SPARKLE) # this is needed for inside the info.plist get_filename_component(KLF_SPARKLE_DSA_PUBKEY_BASENAME "${KLF_SPARKLE_DSA_PUBKEY}" NAME) endif () # Set up the application bundle under Mac OS X set_target_properties(klatexformula PROPERTIES MACOSX_BUNDLE true OUTPUT_NAME klatexformula MACOSX_BUNDLE_ICON_FILE klatexformula.icns MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/macosx/Info.plist.in" MACOSX_BUNDLE_INFO_STRING "KLatexFormula version ${KLF_VERSION}" MACOSX_BUNDLE_GUI_IDENTIFIER "org.klatexformula.klatexformula" MACOSX_BUNDLE_LONG_VERSION_STRING "${KLF_VERSION}" MACOSX_BUNDLE_SHORT_VERSION_STRING "${KLF_VERSION}" MACOSX_BUNDLE_BUNDLE_VERSION "${KLF_VERSION}" MACOSX_BUNDLE_BUNDLE_COPYRIGHT "Copyright (C) 2016 Philippe Faist" ) set_source_files_properties( klatexformula-16.png klatexformula-32.png klatexformula-64.png klatexformula-128.png klatexformula-256.png klatexformula-512.png klatexformula-1024.png macosx/klatexformula.icns PROPERTIES MACOSX_PACKAGE_LOCATION "Resources" ) if(KLF_INCLUDE_FONTS) set_source_files_properties(${KLF_INCLUDE_FONTS} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/fonts" ) endif() if(KLF_USE_SPARKLE) set_source_files_properties("${KLF_SPARKLE_DSA_PUBKEY}" PROPERTIES MACOSX_PACKAGE_LOCATION Resources ) endif() if(KLF_MACOSX_BUNDLE_EXTRAS) if(KLF_BUNDLE_QT_PLUGINS) foreach(qtplugintgt ${KLF_BUNDLE_QT_PLUGINS}) get_target_property(qtplugintgt_loc ${qtplugintgt} LOCATION) get_filename_component(qtplugindirfull ${qtplugintgt_loc} DIRECTORY) get_filename_component(qtplugintgt_fname ${qtplugintgt_loc} NAME) get_filename_component(qtplugindirname ${qtplugindirfull} NAME) #message("${qtplugintgt}: ${qtplugintgt_loc} ${qtplugindirname}") set(klatexformula_post_build_commands ${klatexformula_post_build_commands} COMMAND "${CMAKE_COMMAND}" "-E" "make_directory" "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.app/Contents/plugins/${qtplugindirname}" COMMAND "${CMAKE_COMMAND}" "-E" "copy" "${qtplugintgt_loc}" "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.app/Contents/plugins/${qtplugindirname}" ) set(klatexformula_bundle_include_libs ${klatexformula_bundle_include_libs} "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.app/Contents/plugins/${qtplugindirname}/${qtplugintgt_fname}" ) # insert @executable_path/../plugins/ if not already in dirs list if(NOT ";${klatexformula_bundle_include_dirs};" MATCHES ";@executable_path/../plugins/${qtplugindirname};") set(klatexformula_bundle_include_dirs ${klatexformula_bundle_include_dirs} "@executable_path/../plugins/${qtplugindirname}") endif() endforeach() endif(KLF_BUNDLE_QT_PLUGINS) set_source_files_properties( macosx/qt.conf PROPERTIES MACOSX_PACKAGE_LOCATION "Resources" ) set(APP_TO_FIXUP "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.app") set(LIBS "${klatexformula_bundle_include_libs}") set(DIRS "${klatexformula_bundle_include_dirs}") configure_file("${CMAKE_SOURCE_DIR}/cmake/klf_fix_up_app_bundle.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/fix_up_klatexformula_app_bundle.cmake" @ONLY) set(klatexformula_post_build_commands ${klatexformula_post_build_commands} COMMAND "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/fix_up_klatexformula_app_bundle.cmake" ) endif(KLF_MACOSX_BUNDLE_EXTRAS) endif(KLF_MACOSX_BUNDLES) if(KLF_WS STREQUAL "x11") target_link_libraries(klatexformula Qt5::X11Extras) target_sources(klatexformula PRIVATE x11/klfx11.cpp ) endif() if(KLF_USE_DBUS) target_compile_definitions(klatexformula PUBLIC -DKLF_USE_DBUS) qt5_wrap_cpp(klatexformula_MOC_CPPS_dbus klfdbus.h) target_sources(klatexformula PRIVATE klfdbus.cpp ${klatexformula_MOC_CPPS_dbus} ) target_link_libraries(klatexformula Qt5::DBus) endif() if(KLF_DEBUG_USE_MODELTEST) target_compile_definitions(klatexformula PRIVATE -DKLF_DEBUG_USE_MODELTEST) qt5_wrap_cpp(klatexformula_MOC_CPPS_modeltest modeltest.h) target_sources(klatexformula PRIVATE modeltest.cpp ${klatexformula_MOC_CPPS_modeltest} ) endif() if(KLF_NO_CMU_FONT) target_compile_definitions(klatexformula PRIVATE -DKLF_NO_CMU_FONT) endif() # Don't use CMAKE_INSTALL_PREFIX itself, as it is irrelevant for windows installers # we need relative path KLFMakeAbsInstallPath(abs_share_klf_data_dir KLF_INSTALL_SHARE_KLF_DATA_DIR) KLFRelativePath(klf_share_dir "${KLF_ABS_INSTALL_BIN_DIR}" "${abs_share_klf_data_dir}") if(KLF_MACOSX_BUNDLES OR IS_ABSOLUTE "${klf_share_dir}") set(klf_share_dir "") # let the program find out endif() if(klf_share_dir) KLFCMakeDebug("setting -DKLF_SHARE_DIR=\"${klf_share_dir}\"") target_compile_definitions(klatexformula PRIVATE -DKLF_SHARE_DIR="${klf_share_dir}") endif(klf_share_dir) # # extra data: create and include the klf_xtradata.qrc file # set(klf_xtradata_res "${CMAKE_CURRENT_BINARY_DIR}/klf_xtradata.qrc") file(WRITE "${klf_xtradata_res}" "\n ") # - add translations foreach(qm ${klatexformula_QMS}) get_filename_component(baseqmname "${qm}" NAME) file(APPEND "${klf_xtradata_res}" " ${qm}\n") endforeach(qm) file(APPEND "${klf_xtradata_res}" " \n") # - add fonts file(APPEND "${klf_xtradata_res}" " \n") # with bundles, we include the file itself in the bundle, not in qrc (see QTBUG-30917): if(NOT KLF_MACOSX_BUNDLES) foreach(fnt ${KLF_INCLUDE_FONTS}) get_filename_component(basefntname "${fnt}" NAME) if(NOT IS_ABSOLUTE "${fnt}") set(fnt "${CMAKE_CURRENT_SOURCE_DIR}/${fnt}") endif(NOT IS_ABSOLUTE "${fnt}") file(APPEND "${klf_xtradata_res}" " ${fnt}\n") endforeach(fnt) endif(NOT KLF_MACOSX_BUNDLES) file(APPEND "${klf_xtradata_res}" " \n") file(APPEND "${klf_xtradata_res}" "\n") qt5_add_resources(klatexformula_QRC_CPPS_xtradata "${klf_xtradata_res}") target_sources(klatexformula PRIVATE ${klatexformula_QRC_CPPS_xtradata}) # Stuff for windows if(WIN32) set(KLF_WIN_ICON "mswin\\\\klficon64.ico" CACHE STRING "Icon for klatexformula.exe program, relative to src/, with (escaped double-backslashes!)") file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.rc" "IDI_ICON1 ICON DISCARDABLE \"${KLF_WIN_ICON}\"\n") # windows .rc resource compilation for windows add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.rc.o" COMMAND windres.exe -I"${CMAKE_CURRENT_SOURCE_DIR}" -i"${CMAKE_CURRENT_BINARY_DIR}/klatexformula.rc" -o "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.rc.o" ) target_sources(klatexformula PRIVATE "${CMAKE_CURRENT_BINARY_DIR}/klatexformula.rc.o") # On debug versions, the application will open a console in which the debug output is shown. # Add the -mwindows only if we are not compiling in debug mode. # Add also a separate target klatexformula_cmdl to build the cmdl version, keeping the shell # window open. get_target_property(klatexformula_ALL_SRCS klatexformula SOURCES) add_executable(klatexformula_cmdl "${klatexformula_ALL_SRCS}") get_target_property(klatexformula_CFLAGS klatexformula COMPILE_DEFINITIONS) target_compile_definitions(klatexformula_cmdl PRIVATE "${klatexformula_CFLAGS}") target_include_directories(klatexformula_cmdl PUBLIC "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/klftools" "${CMAKE_CURRENT_SOURCE_DIR}/klfbackend") target_link_libraries(klatexformula_cmdl Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml Qt5::Sql Qt5::Svg Qt5::UiTools Qt5::WinExtras klfbackend klftools) if(NOT KLF_DEBUG) set_target_properties(klatexformula PROPERTIES LINK_FLAGS_RELEASE "-Wl,-subsystem,windows") set_target_properties(klatexformula_cmdl PROPERTIES LINK_FLAGS_RELEASE "-Wl,-subsystem,console") endif(NOT KLF_DEBUG) endif(WIN32) # # User scripts # file(GLOB_RECURSE klf_userscriptfiles RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" userscripts/*) foreach(usfile ${klf_userscriptfiles}) if(usfile MATCHES "\\.(py|rb|sh|pl|bat|xml|ui)$") # backup file -- ignore target_sources(klatexformula PRIVATE ${usfile} ) # e.g. usfiledir = userscripts/xxx.klfuserscript get_filename_component(usfiledir "${usfile}" DIRECTORY) set_source_files_properties(${usfile} PROPERTIES MACOSX_PACKAGE_LOCATION Resources/${usfiledir} ) if(NOT KLF_MACOSX_BUNDLES) install(FILES ${usfile} DESTINATION "${KLF_INSTALL_SHARE_KLF_DATA_DIR}/${usfiledir}") endif() endif() endforeach() # Make man page if(HELP2MAN) # generate the man page set(LDPATHDEFS "export LD_LIBRARY_PATH='${CMAKE_CURRENT_BINARY_DIR}:${CMAKE_CURRENT_BINARY_DIR}/klfbackend:${CMAKE_CURRENT_BINARY_DIR}/klftools':\"$LD_LIBRARY_PATH\" ") add_custom_command(OUTPUT "klatexformula.1" COMMAND "sh" "-c" "${LDPATHDEFS}; ${HELP2MAN} -h --help='\"&1\"' -v --version='\"&1:klatexformula %k\"' --no-info $ -o '${CMAKE_CURRENT_BINARY_DIR}/klatexformula.1'" COMMENT "Generating man page for klatexformula" DEPENDS "${klatexformula}" VERBATIM ) if(GZIP) add_custom_command(OUTPUT "klatexformula.1.gz" COMMAND "${CMAKE_COMMAND}" -E copy "klatexformula.1" "klatexformula.1.bkp" COMMAND "${GZIP}" -f "klatexformula.1.bkp" COMMAND "${CMAKE_COMMAND}" -E copy "klatexformula.1.bkp.gz" "klatexformula.1.gz" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Compressing (gzip) manpage" DEPENDS "klatexformula.1" VERBATIM ) set(klatexformula_manpage_file "klatexformula.1.gz") set(klatexformula_cmdl_manpage_file "klatexformula_cmdl.1.gz") else(GZIP) set(klatexformula_manpage_file "klatexformula.1") set(klatexformula_cmdl_manpage_file "klatexformula_cmdl.1") endif(GZIP) add_custom_command(OUTPUT "${klatexformula_cmdl_manpage_file}" COMMAND "${CMAKE_COMMAND}" -E copy "${klatexformula_manpage_file}" "${klatexformula_cmdl_manpage_file}" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Copying ${klatexformula_manpage_file} to ${klatexformula_cmdl_manpage_file}" DEPENDS "${klatexformula_manpage_file}" VERBATIM ) add_custom_target(klatexformula_manpage ALL DEPENDS "${klatexformula_manpage_file}" "${klatexformula_cmdl_manpage_file}") if(KLF_INSTALL_SHARE_MAN1_DIR) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${klatexformula_manpage_file}" "${CMAKE_CURRENT_BINARY_DIR}/${klatexformula_cmdl_manpage_file}" DESTINATION "${KLF_INSTALL_SHARE_MAN1_DIR}") endif(KLF_INSTALL_SHARE_MAN1_DIR) endif(HELP2MAN) if(KLF_INSTALL_QTLIBS) if(NOT WIN32) message(FATAL_ERROR "Not supported on non-windows system.") endif() # Install Qt libs get_target_property(Qt5CoreDllPath Qt5::Core LOCATION) get_target_property(Qt5GuiDllPath Qt5::Gui LOCATION) get_target_property(Qt5WidgetsDllPath Qt5::Widgets LOCATION) get_target_property(Qt5XmlDllPath Qt5::Xml LOCATION) get_target_property(Qt5WinExtrasDllPath Qt5::WinExtras LOCATION) get_target_property(Qt5SvgDllPath Qt5::Svg LOCATION) get_target_property(Qt5SqlDllPath Qt5::Sql LOCATION) install(FILES "${Qt5CoreDllPath}" "${Qt5GuiDllPath}" "${Qt5WidgetsDllPath}" "${Qt5XmlDllPath}" "${Qt5WinExtrasDllPath}" "${Qt5SvgDllPath}" "${Qt5SqlDllPath}" ${KLF_INSTALL_QTLIBS_EXTRADEPS} DESTINATION "${KLF_INSTALL_LIB_DIR}" ) endif() if(WIN32 AND KLF_USE_WINSPARKLE) install(FILES "${KLF_WINSPARKLE_DIR}/WinSparkle.dll" DESTINATION "${KLF_INSTALL_LIB_DIR}") endif(WIN32 AND KLF_USE_WINSPARKLE) if(KLF_INSTALL_QTPLUGINS) foreach(qtplugintgt ${KLF_INSTALL_QTPLUGINS_LIST}) get_target_property(qtplugintgt_loc ${qtplugintgt} LOCATION) get_filename_component(qtplugindirfull ${qtplugintgt_loc} DIRECTORY) get_filename_component(qtplugintgt_fname ${qtplugintgt_loc} NAME) get_filename_component(qtplugindirname ${qtplugindirfull} NAME) install(FILES "${qtplugintgt_loc}" DESTINATION "${KLF_INSTALL_QTPLUGINS_DIR}/${qtplugindirname}") endforeach() endif(KLF_INSTALL_QTPLUGINS) if(NOT KLF_MACOSX_BUNDLES) if(KLF_INSTALL_KLATEXFORMULA_BIN) install(TARGETS klatexformula RUNTIME DESTINATION "${KLF_INSTALL_BIN_DIR}") endif() if(UNIX AND KLF_INSTALL_KLATEXFORMULA_CMDL) install(CODE "message(STATUS \"Creating Symlink [\$ENV{DESTDIR}]${KLF_ABS_INSTALL_BIN_DIR}/klatexformula_cmdl -> klatexformula\") execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink \"klatexformula\" \"\$ENV{DESTDIR}${KLF_ABS_INSTALL_BIN_DIR}/klatexformula_cmdl\")" ) elseif(WIN32 AND KLF_INSTALL_KLATEXFORMULA_CMDL) install(TARGETS klatexformula_cmdl RUNTIME DESTINATION "${KLF_INSTALL_BIN_DIR}") endif() # install targets for user scripts # ......... endif() if(KLF_MACOSX_BUNDLES) install(TARGETS klatexformula BUNDLE DESTINATION "${KLF_INSTALL_BIN_DIR}") endif() # --- execute all post-build commands, in order --- if(klatexformula_post_build_commands) add_custom_command(TARGET klatexformula POST_BUILD ${klatexformula_post_build_commands} ) endif() # --- LINUX DESKTOP FILES --- if(KLF_INSTALL_DESKTOP) configure_file( "${CMAKE_SOURCE_DIR}/src/klatexformula.desktop.in" "${CMAKE_BINARY_DIR}/src/klatexformula.desktop" @ONLY) if(KLF_INSTALL_SHARE_APPLICATIONS_DIR) install(FILES "${CMAKE_BINARY_DIR}/src/klatexformula.desktop" DESTINATION "${KLF_INSTALL_SHARE_APPLICATIONS_DIR}" ) endif() if(KLF_INSTALL_SHARE_PIXMAPS_DIR) install(FILES klatexformula-128.png klatexformula-64.png klatexformula-32.png klatexformula-16.png DESTINATION "${KLF_INSTALL_SHARE_PIXMAPS_DIR}" ) endif() if(KLF_INSTALL_ICON_THEME) install(FILES klatexformula-128.png DESTINATION "${KLF_INSTALL_ICON_THEME}/128x128/apps/" RENAME "klatexformula.png") install(FILES klatexformula-64.png DESTINATION "${KLF_INSTALL_ICON_THEME}/64x64/apps/" RENAME "klatexformula.png") install(FILES klatexformula-32.png DESTINATION "${KLF_INSTALL_ICON_THEME}/32x32/apps/" RENAME "klatexformula.png") install(FILES klatexformula-16.png DESTINATION "${KLF_INSTALL_ICON_THEME}/16x16/apps/" RENAME "klatexformula.png") endif() if(KLF_INSTALL_SHARE_MIME_PACKAGES_DIR) install(FILES "${CMAKE_SOURCE_DIR}/src/klatexformula-mime.xml" DESTINATION "${KLF_INSTALL_SHARE_MIME_PACKAGES_DIR}") endif() if(KLF_INSTALL_POST_UPDATEMIMEDATABASE) install(CODE "message(STATUS \"Updating Mime Types Database (update-mime-database)\") execute_process(COMMAND update-mime-database \"${CMAKE_INSTALL_PREFIX}/share/mime\")" ) endif() endif() endif(KLF_BUILD_GUI) klatexformula-4.0.0/src/conf/000755 000765 000024 00000000000 13046272677 017100 5ustar00philippestaff000000 000000 klatexformula-4.0.0/src/data/000755 000765 000024 00000000000 13046272702 017051 5ustar00philippestaff000000 000000 klatexformula-4.0.0/src/i18n/000755 000765 000024 00000000000 13046272702 016717 5ustar00philippestaff000000 000000 klatexformula-4.0.0/src/klatexformula-1024.png000644 000765 000024 00000034265 13046272676 022134 0ustar00philippestaff000000 000000 ‰PNG  IHDR½×ê pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe<8BIDATxÚìÝÑyÛV›¨Qñèrëÿ¨?¿òº,ËK ý§ÅÐÀ¿Ùl6«oýÿÖl6»¾¾ncÀÅ üGÓ4ëõz¹\xÀ÷`Wæóùùù¹Ë ’V×u{ë?¤_üÿ»¢(Ú¸¾¾véA@rªªjoý?}ú”àŸ=˲ùÓ  •»ÿÅbq{{›øyxÜ Ôž ¯ îþÓòîÝ»ö´X îþbwhŽº®Û»ÿ4÷ý?Wžçí¹21 ¢jšf¹\~øðÁ©x–²,W«•!ÐL{;ŸÏyâçkxÿþýb±p@@u]___ÛúÿrEQ´)åµbpHÿÏ)€çZ,ggg`/îîî¦Óér¹t*à`¬À3l6›ëëëö¶Õ©Ø»Ùl¶Z­<24ôÈb±1û›eÙ_·ÖÔu½ÝnCœaû‚@@_ôö×ÿyžŸÿa<O§ÓþAší¿ÔÚéÕLs0m\^^ú® G³\.‹E¯n”g³Y{—ÜÞñïåÙšIPUÕã?ûð'ýõ×_½@4A{sÜÞ‰~þü¹W·þ­WÝ4¿y°^¯Û ­½nï¶û°“>˲6Eæóùáߨ՞„ÕjÕÆÀQöA]]]µ_Ý·"h8„öÖóíÛ·}¸ûŸ?8úÓrêº^¯×ËåòÀQ$@À!\__úôéè‡ñþýû>Üýg³Ù´%ÐöÀÁ¶ ÉÐðŠš¦™N§GþÏl6kﳿóçYÚûòö s®>~üØæïOаg}÷d̪ªÚ>À²‰'€ýß˶wÞÇ},fÜåÖu½X,^µÚ:j¯‘ׇ€ýèÃð¶»¼v ´Ð~‰ˆú¥½mýðáà Ïóõz=˜ßpo6›6fnoo_ã?^–eUU¾iA@wGPQíMíð~·ÝVM[¯1\áÝa  p\]]-—Ë¡nniš¦½Yÿå—_öþ_þòå‹ÁÐ2Rxìýk˜SÚ4Ír¹lOìk¼¸ƒ¯_¿z@<‹÷0dUU=f³Ù` ®ëëëëö†ûÇ= €ÇÌó­Ïb€ÁÚl6ÓéôˆÛTN4Ð4Íb±øå—_zxlyž·'Ù7<úa”eô~´s/ᮞÈ^ b¹\ö!N&½Ç%”Ðpb)4IÙl6=¹ó.Ër:†;í1÷¤ ^ømàïhRq}}Ý“ØG\hÏ^¸ à¿åmÁ HE{ÛÝ“[؈‹ÑgþÊ:h’PUÕ‡ús?ëì-—ËÁÀ‰ux2Ï °¦iÎÏÏ·Ûm&ÏóX÷ m>]\\ ì[ <…u[.—= €“‡'“ÆÊ§X ì‘u¢Úl6oÞ¼éÏñ|ýúu2™D9{Óéôöövxß777ŸËf€¨zµù¾(Š@°\.€`ÈÚ»Ø^=Î2Ð4p]×` h’Ö4Mßîbí­ŸÏç=y—  ê]l @UU à}À€ -›Í¦o´4„Úæ“o!@Lïb£lZ­V½¢ŽÅ³Aˆ¤Ÿ¯µŠòa:™Lúó:…WâÙ ðÖˆ¤‡ß)Ë2J> > ÀЬV«ÞÅFù­ór¹ô-<²€0ú¹•å·ß~ëÿ<@]×ggg)|“¸±§°@ ý\8 ²О=ßBÀŸ¬C?Š¢Øl6Î^Oäy^×µ¿,ðCÖÀ"ÀK´•’È4p”7µ€[,ý<° °^¯ù>9??÷—4CÐÛE€(7é4Àx<ö÷žÂ<}×Û½ì!vŸ7MszzšÈ·Š„ÁY ×ú¼âv³ªªt¾[ì Àôvà$Î@p"ß*yžÛ €ðªªêómBüÖ9u»€@0}^Ȳ,D¤ó¼| Og&€žªªêâ⢷‡W–eˆ_±F£D¾a¾}ûf/<‘uzjµZõùð ôJQ4±ÕuýéÓ' ðBMÓ$ò s}}ío hb[.—=?B»Ï{åòòÒI @`MÓô|#PQ.S”e9™LœÐ¶^¯w»]Ÿ0Ê"@"µ4áõù‘ ¢¼6…ߎgY¦@[Ïß ¦úf>Ÿû[€Øz> pçí`‰°€ØúÿHГ8‹)¸ºº2 €Øú¿pê© ÃΕ,Ëú?:4ÀA ûÕ¹óùÜ"hb 1 |í—ëeYò»%ÏsÓÀ /Ä"@Q±~¹>Ôí@ËårØ« ¾¦iú? ñ–:ÐÎ¥§›Íf———þÖ€ ¶õzâ85ÀÑeYbÉ4üÀr¹tKýÆãñl6Ò·Jv ¼º®ïîîBjÄíõCÚ6óîÝ;»€@0Q¶v}ÆN{ÓœeÙ¾OÚóe½4 ¤‚>cg<à1šEQDþÝßß; Ñf³yóæMˆCýí·ß‚nDišf2™ìv» ß$Y–Õum öÅ:Gè/qŸµz)  €ªªì‘uŽl2™„x=p{'Ú4MÜóÜ|Û0!Nõÿ €¡¾é ŽÅ:Ç´Ùl¢Ü•F¿ Çá«Ÿç¹ ÀÐzÌË^¶ÕþÞ½{åh‹¢hQ€`hªªÒŽ®O8Íff@0@6Äß ô§õz]EŸðýû÷íA Ð P íéyžæ–´ýƒTUÕÏ hÏóÍÍÍb±ð·4Ãè•OÛ•ÞÏ x÷îÝf³Æž+Ðð7lêC\]]õá`ý¿\.íÿ ÀÅzNå 9ýø´Ð?fYv¬ch¿t{u]ûõ?’w„pçççwwwQŽvØ—í-øõõõíííïþçüî4Iho:ÏÎ΢íãƒêQÖëu{G~€ Zyž·ÉáîŽÈ^ Žs»èhyMÕååeÛf¿þúëëÍ Ïf³ß~û­ý*‹ÅBÀýSÀáz5X: ðèúÁf³Y­VmªíeY ½õŸN§íÖ}?ô„½@ZÓ4§§§øææ&Ù‰Õ6ª?ìv»§ÿ,˲m§é·þ HÝz½þé§Ÿ°ÏÊ?ã­M‚úÁãÿæq=gòàäáACí}ÿŸÿ#Ð[öp„t´ý|ŸîQ´·øžà Ã`&€C3  HH¬×k@ÀKÅZ8è‚Ä™ àзÔ~í ù 4tî© eY†[¸ø!{8œp÷Ó† @À“Åz3€†Ê<R×õÙÙY¬cö) ’u$ÜF ²,]5@@B `# àE h²Ùlv»Ф"â›¶4  ¡0 hH«,º3  H‹a €Ð Ђ ÝФÅF €ÐÇ4º¿¿wx=ãñ8Ü^ ŽÀ°YàÕu. º³@ 4€@h€2 Àkišæôô4ÜaûdÏ:¯%â"€`@@Z `#  »Ífî˜'“‰  žy^í3f4 wÌ777ÓéÔµ4<[UUáÛÇ"{x­wÌEQ¸p€€Ž"4tç¡@€„Ôu½Ûí4€ Zžhè(â0€`@@w†4i¹»»Ó€TЀ€Ž"h@@w×ò<Ç®   oÐ$¤išív«4©ðv0 @Z hÒb @–ˆë“ÉÄ…4tQ×õn· w؆ yC0€ -‚4 ï²,3¤ftï,°Ÿ•Ñ(Ü1—et @gÖØ  ÒjÀ€´À0 óìÇùùùÝÝ]¸Ãö9hèú‰b  {ØoФÅ@0€@` H“yöÀ@0€ ±“€ÁEQ]¾x!{x)Á€´Ðh Ð_æØÃÍ´` @JŸ%‚ó<¯ëÚµÒd//b @– ¿M×€€Ž‚O§S×ÐPXRf&€—}β¬i×H–uº³ Ð4¤ÕÖ i5Àd2q퀔™ àŸ"‚[>û€ÄY £ o+ËÒµ4ta@ 4€`¸ªªŠxØ‚ÌÐÑx<ÞíváÛ€uºhš&bEáÚhº0  H‹a @Z‚®L§S×ÀL0]L&“ívî°¿}û6]>@hžÿù1…;æ<σ¾Û`¿ìàÙ‚Ðtä¡@  4ÃtW½xd&€çxβ¬i×àÄ:Ïe#€ -6hÒb@/ˆÎL0Ï3w»]¸Ãöyð'ë6F£pÇœçyÐå €Wb€§² Ð@0\‚4iñ`P€a0 ÀSÇãˆ/ öIðëÈ0€ £ Á  H¨²,Ó€„À0€ £¦iv»Ф‚4i ú`PÀŽ<`¨F÷÷÷ÎÀmÔx¼EŽø]ÒQÅx<>yØÕþK[GÿâÌà߬V«õz]UUÄéXøÛ0¸¼¼œÏçb4ß[.—‹Å­?ƒ”eYûíÝ–€S€ÿÕ4Ít:½»»s*¶wïÞµ­ë<€H]]×ççç~ýO"nnnLQƒH]VHGY–A ¼„gƒüÇb±$åöö¶içRcàwíÐd2± ˆÔØ ²ð»õz-H³~ЉZ­VN Úl6Nh€DÝÞÞ: h€Tx4 É:??w@¤¨®k'4Çc'4€ h€!ñxD’åå åñˆ¤)Ë2'4 ®Édâ$ ËËK'4€€„ .H'AEQØ  ]î„HÐb±p M£ûû{gàäa;Ðv»uHDY–UU9&ë¿»¾¾vHDQëõÚy€dYøétz{{ë<0ø¨ªÊ ¤Ì:À¬×ëwïÞ9 U–eïß¿ßl6gà{u]/—˶Œ0³Ùìò»@ü Zs“ßMOn6›ÝnçÑEQüõþþüü¼ýÛN&½4ãúúúÓ§OáÛ§@æø_u]‡;æ<Ï]8 @Gˆ4™L\8 @›Í&âaO§S×@PXФÕw Ðü˜gƒp2ÂsQAÓà謤.âSAO h:³@ ð`P @GUUE€—°¢º®#vžç@Ð…` €`:ºv€.ªªŠxØ‚4Ù 2ÏHNÓ4§§§ÜgÀ^XHNÐE€²,]; @A‡lÐtä Á€´}A˜Ø3Áéýè"ö·oß¼$`/¬¤%è0@žç@Ð…7 Òt`:ºv€.<3Á‰ýÜ9üåË x¶ÍfóæÍ›ˆGîÓ `ìH«"vY–®€ ‹ Á  è(èËLh:òP N̤£®ë³³³ˆGî£ `¿¬$Ô;Ïs×@Ð…a4@Z  4€H‘™`€d~âFûëׯÞ°_Ö’tàÄ Â4ÝÝT–¥k H¨ h: úr^ƒ™`€4~ÜǾ¹¹™N§.€ày6›Í›7o"¹)€×`/@ ñ°‹¢pí4]@¤%èË<@ÐQн@¦4]Ôu½Ûí"¹½@€Ž ñ°³,Ó€.  Òt@h4ûá=ÁCÿA?E<ì/_¾È À³UUuqqñÈ}<¼{†,èF ¢(\; @B `€ ­ðf€We`Ð?åcßÜÜL§S—à•X¬ ‹'öh’j€<ÏÇã±Ë H¥ hÒj“€´À0€ ‹º®w»]Ä#·@Ð…‡ 4@eYºv€„À"€ ­0  èh»ÝF54]4Mszzî°ó<úNþÊ^ €#° o@¤%è:Àt:uí4]ÝUo`Ìã‡ïhî˜  †u€C3 €H‹‡ 4@‚4à¸Ìü'¯`ŽÊ:ÀA@h €Ð=c @VX3Á‡ý±k €c³p8ž €H‹@h €` @GUUE;;ëóz"{aàwÐ@0@öün:ÞÞÞööðl`_¬ü®Ïpb °_ýßt}}í2 Ri€<ϧөË€H¥l@ìYÏßl#{ä¹@? G£Þ[QýW ëРO  ö¬Ï;mf³Ùd2qЩ4€EöÎL0ºº®ÏÎÎúylY–µ‡7]&öÈ:ºž/4Àžõy ØÐû×Ûu€<ϧө €سÛÛÛ~Ø|>wuÐ{Öç@ž€Ø¿ÞnòZ4À«èí:€i`^÷IǻݮoG•eYÓ4®¯Ä:®º®{'Я¤·< P”ei PØÀk3 C¸‘­üíMíùùùøÁùƒö_œ±GMÓœžžöí¨Lpÿã@Ä›×õz½ÙlÚ;þ»»»ÿ?þî%¸yžOÿø†‹$Ë:„Q×u{ë¿Z­~xßÿDEQÌçóËËË4Ú?û/¿üÒ·£úúõ«a4p²zðÝoô÷%˲6‹Ej·žçççûª©}™Ífmæù†@@ºš¦Y.—íÝÿv»=À—»ººj¿\"kýøí·ßÚó€€tïþ[~ƒU–e‹Å"…‡Ó¯×ëŸ~ú©W‡”çùã`7¼6Ï…Þioý'“ɇÿ Ûö+þüóÏÓétð¦éá@°÷‚p0Ö _7¦í`6©gYÖÌùùùPOu߆Ú^×µ'·pÖ š¦iïþ/..zrcºÛíÞ¼y³Z­†z¶û6 œìÓ™8 ï€ãÛl6í-àaŸåíÛ·'C|b}7- 8ëpdËåòÍ›7= €?3`x«}k€²,½ ©¸¾¾þùçŸ{~óù|³Ùh€W=Ãþ.pHf‚á8š¦™N§}Û•þOòÇþ^ÐO£ûû{g^®ªª‹‹‹þ¤Y–µÁÓÿøé§ŸŽõÕó<¯ëÚ_ zË:ìG:÷|———ý?Èã.Ø€ 0(ýßÔ4Í ,Ëëëk#Ð0|é ÷  €Ýnw¬¯~ô’€€éÿù½˜Ífýu=â]øÕÕÕùù¹¿hÐÃÑÿ].u]ßÝÝåKgYf 9Ö}ç!åyÞÿ@G¼ _,ž €%Ĩë±^ VÅ|>÷M@Þ{ú»4 þÏøíÛ·žÿž» €·oßåKßÜÜ„xuœXžèêêÊ4ð?y÷î ë°§¿KC_øúõëd2éóëUÍY–Õum€@¬?öþýûžÀÉñ&Ú¯+ˆÅ:ìéïÒp×Büž»=³³³Ãݲ,«ªòý@,Ö€X.—&þ©ŽŽµø/aöôwi ë!~ÏÝ4Íd2Ùívþº?~ô}:äW|ÿþý`F>À^ Øçé›7oÂv{w»X,ÂåÖíííÉw8ø±Fò<_­Vá~½ÝóÛ·oöå²,«ëÚ. †Ä^ اËËË(‡úîÝ»Íf.š¦9ðû¹¢<)4h€T–åÍÍÍr¹Œxk»X,¹Òb €A²ö¬ÏÛòᾪª‹‹‹ƒ}¹Ùl¶^¯}K0<Ö`Ïú¹ÐÞýÿúë¯u]Ç €¦iyðEQ¬V+ßÏ ’uس¾=h6›Íçólhià`Ïõº4Ðp|í½ãÝÝÝq¡(ŠëØg]¯×?ýôÓÁ¾Üo¿ýh¼4ß^ù§,˦Úû×@/üú¡º®Û¬:Ø”ÅÇüè!Ð0í-øv»=ÀÊó¼½?nïûÿ9È“yÈu•««+ch ‹×X ho÷Û´Çí=ñäAû/ƒtý!ÇŠ¢Øl6¾{Ð@Gû] Hó÷ÓËåòçŸ>XTUåu`h »½±¦–‡œβl³Ù iˆ4Çt:½½½•´wäíÙ;̰' €}ÞÈîý]³Ù¬Í€aoY9d´¾|ù"HŠ÷Ã+jï,ß¿¿ßÿæçÏŸÛûã®8~ýõW@j¬À!J`ï¶Ì²l¹\^__ €ÀðÎ!hò}íÀö 8 {àÕŸŸ/‹×ø/þüy2™¬×뜥6fÞ¼y#à¬À¼ê»®Ê²lï¡ã>Ú²m¤>ìË 4€€Chšf:î}0à¯Þ½{×ÞLÇÚÔž–ËËËý>AU€€ÝïN&“WÝî’eÙüAˆX¯×ííøÁöÿÐp‡{mKàòòr±XôvwP›Cí½øçÏŸö‡ú$%Ð þËl6kïzÛèÕhïÅÛ>9ä¯ÿ½ 4$”­<ÏÛ hcàè7Á«Õª½ûßn·‡ü¢í½^ ÐVü5Zí—>ä×mš¦½û_.—¾ûoEQUÕ`^¡d@GY–Mÿ𪿠_ÿá(̽C 4 $.//ÿÛñï”eyþ/ü¯Õu]=8Ö­ÿ£÷ï߿ҫÙ@/r€÷þìîк®—ËeÛƒY(Ër>Ÿ_^^º¸ €³þCйá,ËÚûþöîß#ÿ@ÙlvùÀ?@/RUU[í?ïîîúyë?NÛ[ÿÉdâb€ö©išêÇí<ϧüÖ4p8m lþp€$(ŠâüüüñÖ߯ü@Ç×–ÀãBÁc<þoºÍdYÖÞîÇãöŸ“^ë ˆä1 ¾«…ǼÅÿóÿéñÖß h@Ѐ4  Ѐ4  h@Ѐ4 @Ѐ4  h@Ѐ  @Ѐ4  h@Ѐ à,€4  h@Ѐ4  Ѐ4ÿŸý:äo=Èe8à€8à€88à€8à€8à€8\%À¯â-ÂÖ}#0IEND®B`‚klatexformula-4.0.0/src/klatexformula-128.png000644 000765 000024 00000002524 13046272702 022037 0ustar00philippestaff000000 000000 ‰PNG  IHDR€£ž¢ pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe<áIDATxÚìëqâ@„‘Ëÿ¥ „#€ ¸ È@Îg`2@ØŽˆ@vÈp}¦Šãö!ûx¬4£žWåõš‚ýèé™]éí÷û£Ö¸ãƒ È€AdÀ ƒ†Ä} ?óûûûr¹Ä¿eYâÇ~¿Ÿ$ɯ¯¨ç íÛóù??Ù'_?Ђ­V+cÐÙ‚åy^ñ:èÝÈàÌp®¬“A…ÊÐB³O>Ó ~n°+ƒJ)ÌV¨ƒ××W{•3±ø*"Œ?>>r¿èÌp.+߆€]A±6½4¡W¨ØJB;v(dQ;Þ,BÜ·!6¨}R箵ʺU©o¡yŽV'Ÿñ’ÁMÈŒÞøÛDD×gð¿f@Ì á "M×üb­?>>œ=u(œnȪMDªø Ù>3 ƒÐ šÜµ…Aós‘žº(Š"{0MÓÃÔE@d | ‡ ØPš ¶Ûíh4Š*Ãw‰Jô]$Iâ;z#ƒ¿‘çùÛÛÛ^|·Ûùüœ þÑAGu8ÓŸL&åWT¦Îã³Á`ðí‹Ã´Ã]G¤¸O†ñ:ý@ÊG_!S9üDdÀY _w&¢3 ÈàÆ² âë"¹ÇJt z«N f ž3 èÉ·1䎜] ñ:ð‰@Ð.…x:Ì@§È þæ@ÐN‘xON’Äyt#îIÕÁv»uhþÝz¨1Á Ô˜B4ÿn= Ô4‚ë"Dzu ãØ@6ME‘TšÌ€: '_Õã8zuðE@­îΤ2PfÈ"(kDz²óØ@®!ËÓ‘Äÿ±N}†¬‡u@Cn™8;d‰Çg"ønÿ-a T²0*Í@‰È fišŠ6dI ´²$Z Y­†LÁÅ ÄÝö$˜Ïˆ@ ‰O{ÒÆÀ™ˆâ8&ƒšu €lŒF# œé—eùðð`o6›0Ϙ¦Ü"‡:f &É``2*"M îküv®Êê÷ûÕYeµZÙ"P“ˆþDøÇL/‹4MOßC–e“í÷\…¦çn‡f0ŸÏ_…étêœq{HÙ³Ï;à“#R¼óOì]¹——28?ª·9íùèŒ9Hb{u®.‚ÛîZö:f³YG]Ü…,„*~‹žËÌóÜpM%iãúûAeYºQ)‚¦0Çö&èÓÓ“Q8)8:®¿?@ñc—CΪԨ ôÕ£µÕEø¾ŸzT>Îrè”j!ç4ÖEçúqq—Ë¥ó2X7òÒñ†'ÌGu¤jg¢öó{‰ñ#}·Û… ã·§Bëõz ýRÆ&î!±8+Q#²,Ó‚jÛ/:FQ°cóî  Œ¯×ë}k¢þ³L¸Â±}CÞW[€6Ç"ÏÑÈ€AdÀ 2`0È 5ñ[€µÖ5a Cª°IEND®B`‚klatexformula-4.0.0/src/klatexformula-16.png000644 000765 000024 00000000445 13046272701 021752 0ustar00philippestaff000000 000000 ‰PNG  IHDRS pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe<²IDATxÚœSAÄ »ÞÜ¿Šp@¥Ôu€€ƒÖH( ¸|¯t™öxì ,!™dj­¯‡ëÝéDZ®ë²,Þû»c `Œ1ÔŸF¥çÜZÛž÷0x1„pƒ« FJÙR‘<ιiš.[¤û¾ !žyÝÁÚÆq¼4€Ô–s.¥ ™Ú P˜O;/¨1ÆyžÉ9iE Zk¤”ȬOûmÛ”R§3Ãá+À¯Bj­NfFoIEND®B`‚klatexformula-4.0.0/src/klatexformula-256.png000644 000765 000024 00000005105 13046272703 022040 0ustar00philippestaff000000 000000 ‰PNG  IHDRÓ?1 pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe< ÒIDATxÚìÝáqÚZ€áø›ü‡äT€S¾@¦ÓÝAHÆW®À¸“ ,WàoÇžÉdr‰8"Üç<ï;s'B“Qöݳ+•N^__?¥ò?— @€ @€ÀqòÑ%(Šº®—Ëåÿív»ggg@ÎÌf³Åbq¿ö€N§œŸŸÇ‡ÃaQçÄDX®DÄO&“ˆþ———V?¼¸¸¾QÄezEvÌçó~¿ÿ‡QUÕÍÍMö×Ê «Õj4ý®ÔÙ‚i:žžžº „C' ž(âS¢¿ÿF¯×Ûxdœ-Î(p¸o&ö@Äk¤ÿ”%bW‹‰D¤ö[;£=Hܺqܪò±û$ ÛÛÛ‡EI“xÂô>Ø?‰ñš(@è´õ¦ÑtÇ€¿šþÓ£óOêøÄ›øÛé?€Äèüy2Ø €ƒ¦®ëÄôŸ>á¾µUUå4GO€#`2™NnN¿ÇJì†ô¬ôܼ*Ng<Ùlöýû÷ÄèL`»2&TÌ©&Àqð_Äôp8ܸŸô.//ó{W ò mUÓjÔýââ"½!vý鯵j[ÕD:¤žRYÝÜÜäúbd’þ·+ë#©7ÌÁDèGâ×P®WØ‹±šÓÓÓô¸®ë?1íýý¡?\zOhf-/މÇÏŸ?'< Z-P:­¶ëþ–s”Þä´?G „·›““ôƒŸŸŸ³¯×­êŸõTU%ú  d@«yE0²¢í´JÆ_p!€úgN‡(wРè@@€¬¨ë:qœ€:`@ è€A€âРèXýC0PdL½ôû}WŒå   @nxL  þIÀCdE«P÷z=WŒ:` ZÍkPný£ @é°ˆå ` €E   @ÑhÆP.6A hÚÞ%À®øèì„ét:›Í¶þLÝ^t»ÝÑh”ß·¯[á 1; ±ÕC܃b>Ÿ—ÜR+vP¾oôoÑ~ˆÈ…Âûiì •<Þ¿|§Ó)ü™þ”Ñht¤³)ýÓé´ðÏKº ´–ËåÖ÷@ÿùçŸôƒ¯®®vuÔÄžì½’nÛC‡C«Êjéг \ ÂÀ ŠM È ƒðþS1C€¢P ÜØ <r£ÕC Š.@€Üꟗ—@ú×€›p”å `Š@ýC€¬hûEx04 @©XP®N§ðÉ]-€ôO€Üx||Ô@úOÂ=Pè€A€¥ Ðï÷]1”+€€Ya €Ò¿€HÃC”+@UU®Ê@ýC€¬0@é_@¤á!ÊÀ»  2¤  "@¬ÇŠ@@€¬0@é_@¤á!ÊÀ× rÁ¤ ` š©ªÊ×P®Ò?r£Õ ”&€Axè€A€Œ¸¿¿O?Ø#0dÅjµÒ@ýC 0²b±X¤lžE¯êdE]×á ý€À  &¤”Ñ„'€ôO€ €˜þ Pá P.@ýC@L€i5 )ý 7 Â@ýc 6áMX(ZéŸE   €Ðƒ¥ àkHЀ¥  þÙ;'¯¯¯®Â./èÉIúÁ°šþ;Žè'€úЃ€&¸ Ø•·”›þ{½ž+F€¬h5¯þ!€ éoÂê÷ûöÀ@Yÿ ‡CWŒ…®¶ è@ú'@†¤ I@€¢;`+Ê­ƒ (WõŠ.Ô?Èôï÷z=¯%@¹õÏx’&1ú#¾ö–ÆŸºó£:‚*(â>–ˆ¤ÕW*꺎s¾¼¼¬ýÓ/_¾xî{¬d9å°vT%ª-ƾÞkFã´ÆJL„‘é×ö»¢ù û»QàˆÚ§§§”“D“PU•è'ÀQɾa~0D¥ô;"ô#¾›o‰ž ÈüÍpËår4mܺüÞGs¼z#~õ»~÷0ǰ¯»@ÇA]׬éÓñŸšM§Sß9õàhèv»³Ù,Jšµmq:ï¯ÐŠÅAô[Ž•Åb1™LÚ®ïã]f\OQ4{£ùÍ÷ïÌ¡O€lex¡ü±-b=ŠœÓ7ÄM0@€ @€ @€€}ñ[;#ò‘ƺßIEND®B`‚klatexformula-4.0.0/src/klatexformula-32.png000644 000765 000024 00000000711 13046272676 021757 0ustar00philippestaff000000 000000 ‰PNG  IHDR! Ú† pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe<VIDATxÚÜVÁ±E@|¶þý Adðd  2 ! 2 2@~—­z7ìt½½ü9¨¥v¶õôÌÎ8Çq¼,›zÙ7cš¦0 Óâ8Þ¶írëAÙ<Ï¿§5MEÎ)ËòjóG¢(Š}ßàºn×uøò}`_°Á:IPY×õj3ƒÑ÷=c¸ŸÑ|<ƒ °˜WÈ(<‘T1–eñèì|Ÿ¦}ßׯçÞÑ1¿K–Ó¨,Ëðª•Gî>’&ØÀ ¿oî¢8ÁbškÁ=ÏøHc¥½uæë|GâÏ!²ÖbÿW!½© "qeê¡[p©¨l .‹•ôJg0´àÆCpëºFÝ}z¸y5­sè¾ µu…çyN`¨ÇŠÓM¢ª*€¥iÊLJ÷·ÎE«ÀtƒÅ'hR»›áPk Ò¶-æ3,À†øœ2·ÿ 0êW/ø±ÅõCIEND®B`‚klatexformula-4.0.0/src/klatexformula-512.png000644 000765 000024 00000013556 13046272677 022056 0ustar00philippestaff000000 000000 ‰PNG  IHDR{C­ pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe<ûIDATxÚìÝáqI·`skÿˆ`´Œˆ@&+‰0 ÀÊÀrˆ#@ŽÀãGÀíOºûÕ^–]l©{Ôr?ÏŠªÅc1xû=Ýg¦ûÕ÷ïßÏ(Ïÿ¸€@ €@ €@ €@ €ð›[/X»õOÿu4 wI/a¸ßl­×ëðû‡‡‡§|UUU£­áp~=??w' ñêû÷ïÕjFüðëGü_jšæ|k2™¸½ÈNô—Ëe÷Ó}—‹‹‹³ÙÌ À‘u]ÆýÅb«ÞŠªªB \^^ŽF#ÿè[Û¶óù‰Ok* €h…ýc­ùÔu=X¯ß½!bæîî.Êwiš&L<#$€ý ÿXÍÞÝóûÁ/ óÍŸÖëõ!yPUU¸‚ À³…!8þ–äa¾ÜÚoA&L vïï·ú$ðlQ–}>~ü¸÷ÐÿÓ$Øãu3 €gX.—ïÞ½;ä ãñ8\d8¦H¦···ÏÊ€zÂùsY(üýCáŠî£0™LÂÅ¿|ùÒ4Í¿$Ìc¼#&€_þ‡´|C­}}}=ŸÏSÎ0 o6›«««ðŸòçïîî.//ýûfΜðèßÿj{×uaNðÄ¡0o00^Âè ƒð}ß¿ÿ”?l`DýƒOŸ>õ¹CÛ¶aÜß½.ð¬†ðõõµ³mô¿ººê§¸Þ= º\.÷~;¡®ë9”™ÏçüñÇ!W¸¸¸ƒrêÏêýÅbe3"€lé@B)}àè êp‘¤r³Ù„ñúíÛ·±¶¢Ký1€Ü…õÍ›7™WÓ‡OPþ®ªª®ëü˜@¡ÂxøÀ}qq‘nôoÛv4Eý϶ï…õ°f…€LM&“÷w^,éf'aôµ5ôO¯ïg@@‰æóù³ü©étšh³‡Ý¢Ò#'×뵃 é@ZQ–þƒûûûÐÃè¦ `eŠòT¢ò×™èá¸ù O´G@Zóù<ÊÂz¢—~£t&ž>Õðó  mÛFy¨¦®ë¥3ñ¬Ù† ¥ˆµNŠG?C8¥{¦E[­V±êëDå¿uy<I ‡Ã瞦ûO¾}û÷xÅPþÿþûï=ß;™@–Ëe¬Ñ¿išè‡ëesG (BÄ3STÍG €þÏ®AÀ —ÿ)`³ÙDüx IùŸ"޲/Ûx<öƒ!@ùÿ u]G_:?ʶ<Ö(ÿ\þ}¾ü%”"×q—×£À±^Çíóüzœ|ùŸ¢p>ʆ<)ždE@FÚ¶»ºRUÕËX9¹¼¼ôã!@ùÌòÿ(BŒYÿð’u]ýñÊ—±qB(ÿ­ÿxÉÂè}oµÐs¨„òßú€.ÅÖʉ–€êºîí¶Ìçså¿€—l³ÙD9öë‡a:ÑÐÙÛ$ iå¿€.ÅÞjé†é~ ªª£ì9€^¥éÒ=4›ÍÂèÜC(¦8Åyþ)6×Lú hê•™ëëk~ž'‚Á¡õÍÍMô˦þ3âeýc†Œä>ˆ~ͦiNñcWUeôPÐèŸâhõú´£Ñ( Ö/X×õz½6ú (E¢½õûÙ" ÖŸ>}ŠÒ~ÿþýf³±ç³€²f§gÛ]šC†²â4¿~ýºX,¼ðuŠ4aO¡æ}óæMŠ+÷ÿår¹œÏçÏj O§Ó0‡xë7·²*ÿr|îlkµõ/ÇÚTUFüÉ–’_€ˆìˆ+黑ýl»¹éî蘶mÃïw)üjÐa,Á>°øúõëWþôé“·¨è‡&0dTþŸ9?™KôhUU¶ÐA@‰3å?²¶ÙlR¼|öRŽDÀ‹•hýÇ úà1Px¶Á`b ¨ªª®ëÜ^Ì SéÊd-Ýú0 3z¦Ï“¨Üßß{ 3ÈTº€w€5ë?‘é# k»]òÍP–¶mŸuhâ³h  Äòß YK×8Ê9À àø3å?²v{{+Pœtë?YÓF€@d:À(t üG@¾º®K÷ ˜@@‰åÿ™w€³¤Ù%Κ¦q{Pâ @ùjÛ6Ñ)`Yó @|:ÀÈWº@]×n/JœXÿA@¾t€Pn¤»¸òå*] ªªÁ`à# ¸Pþ# _IwÖ@@‰å¿²–´ìä+é3 fÈWº% Á# kwwwÊÇ+`(”ƒàP(»!À 2Á# k···‰®¬€€|%]ÿÑ@@¾œŒŸ% ”u];%€òå(ÿãÓ@@¡` ùr Ì"s ²f”È&(”G€ âóJ Ç kézÈÚÝÝ]¢+k _ëõ:ÝÅ5/Ï€"@DVU•@@¾Ò-i¡ßÜ2,ÃÍfÓu]Ïß:Ý3 áï2ŸÏs¸½ƒÁ`´å`2^}ÿþÝ] Ëå2Œ’écá¯Æãñb±05pd¡@>??O÷&?UUU˜ôhNK€,Ìf3£ÿÃ$À}p4¡ýüù³ûp¬›ï&8šÕjå&€ DIß¿ø“Ç@ @IìQ*à˜¼ˆt,ÓéÔÍ/™79¾¶mG£Ñãã£[ѧ¦iÖëµÌàÈ3€0Çc·¢u]üøq³ÙýÍÌÈE×uaTÚíÚç÷],‰æ¡ÊžL&™ÜÞÝ> Ã-?lØþoðêU¢+‡B;“] áï,Qº¤›áxÈ”VÛPbx® Y»½½Uþ#@ù“ò•ô…€3™t‡‘Õum£”8ÐF@¾Ú¶M·©}öu¤»¸ò•®p¦Œ€œy ²¦iÜ^äëááAù€â$mè# _IžE@¡` %@UU6@@¾îîî”ÿPþǤ€€BÀ …€g@`Š €ñxìö" SI°þƒ€Ëÿ3ë? @€€—u]Û™êº.Ý1:À(±ü?³ Š PRè _鎰  -ÿ­ÿ  Ð°þƒ3PRx %@Ó4n/2å(ÿãÓ@@¡ €€BÀJ €ªª2•ô ”XþŸi  Ø°þƒ€BÀÈŒc@ üL…€õPRx %@]×n/2•ôë?(±ü(74Phx %€c/Ç€@ùŸ ë?(4,!@€€Ì8ÊÿÈ4PhXÿA€%€—Pb8ùr ”ÿ  ^@@‰àäË1 Pþǧ€€BÀ …€Ì@@få¿ò@€@ìM…€—Pb4Mãö" SŽ€ò_€@ð`äëöö6Ñ•€|i€ P %Iú€@@‰3`ä«ë:Áƒ@ù™7/ ˜Äg8”MÓ¸½È—ƒàAP" Ê;À ñé# ÄÐF@ÖÒï0”XþŸi  ØÐ@€(&êº î02•î xå?òå xJÀ %I· œ0 (ÿ/Áƒ@ùŸ0òå˜D¦Œ€B@ù€|u]ç x(ÿ#ÓF@¡`€€@…€òYKw¼@@¾’¾¦Œ€|éƒ@D¦Œ€¬¥; Rù€¬9%ò0€@ :À(4”ÿÈš0”ÿ‘é# _éÞ0@@¡3€¦it€¯tÛÀ)ÿPè @ _mÛ>>> (ÿcòJ €¦iÜ^ä+]Xù€BgÈ—0”ÿ †ñxìö" _:À 0ˆÌúò¥ ådu]‡CwÅ€ò…€0Ì D¯¾ÿî.­®ë^¿~èâ~ø1€Ë¯€ kŽ€@d:À @Ö†ÃáÃÃCŠ+ûöm0¸Ã˜@ŽÚ¶M4ú×umô@¾¬ÿ€@D¦ €¬Ù’Ò&_ƒÁ Ñ> ~ìÁ €|¥ÛÚ+` Èš0€@It€A`SÓ4î-ò•®¬ü@‰å¿€YJÔnšÆp ÈÚíí­òűþ @ 65@Pb(ÿA;`”(Ñ UU dÍú€€´ I^†ÃáÃÃCôËÞß߇+»½ ÈT×u¯_¿Ž~Ùº®Û¶u{á–€ÈH¢õŸÉdâÞ‚ k‰Ò@‰3€ªªÌ@Pb(ÿApR<ÿ£ü@î5r—býÇ` (4f³™ €Àúü o“ÍÏâ«Wq/Ø4MºÃÅÀ âHÑö(N€Ìâ¨ëz4¹± (n ý ¿¤ Ìñ¥Øúëׯf`@qå¿õœ†è €ËËKw%Î4à)ô8¾Á`ðøøëjÞÿ3NCÛ¶Gÿ3ÿƒàTD¯ÖNCÜðÅÅ…ýŸAPâ @ùO§ ̱ãmZUU×un)˜pâ®ÿ(ÿAp2â®ÿxÿ %Κ¦‡n)Š å?<×onÁKµÙlÂð~m·ζmÒÑh4 Î·Ž»cZøl±^ /Û?€(]ë‹ÅjµÚø?îíímøÍçϟ϶»fÎf³P;åÙùˆ €ð·ðø?<—Ç@_ŽPïÏçóÝøþÜò9d@øÚž?pµonn¢\êþþ^@‰º® #øƒiÓ4aÞÐç0¾×O§)Ï5Sœ)/ž&ðÉ[.—a$=¼”¾»»F½í£ùß¶Äá´A”h6›½{÷.V+5\çüü¼Ÿ—icÕìu]kÿ‚(K¦CÁk ý¯ÐÏxºZ­¢\§ÿÖ¼z§:ú‡Rýîî.Ñõ¯¯¯So«å˜ªªÚ¶õü˜$éè–~U=ÖÇz€Çjó¤£ÿÙv!h¹\¦»~¬€Ýß@dµZE_÷ÿ§o”ùŧөgÿáz§¤ëº0äÅ=A÷_$úًׯ_~/@A.//{ýϜֻeýGù  mÛö³øó×R=Åe£¬ÿxú@AúòÍå?€‚„b¼çò?Ñ Ê ÊIúPæ?IQeþQþƒ'‡¯ÿ(ÿA¤ëºÔo~ýTô—l7›Í;€*ÿA”åX›ÝG?0òÀyLUU‹ÅÂÏ€‚ô¶Gÿ_Çãè×<0ìüÀ  çççq/¸Z­yþ§®k¿€(N?'´ü ú©¶çó¹òâ²Ð)ü#½zÕów åvÛ¶q3ìýœú fô$úbË«ÿz¿``ЇÇl ‡Ã½}ÿþ½3z*ÿãŽþ«ÕjïÑ?¤‘7¿@ÐSù}ýçú}¹\êý‚ ÑÜÍfs{{»ß×^\\D üÄt:>àî]þ‡¹ÈQv@@FR¼”ûwMÓDïµrˆÅœõ0†Ñ½^GÿF³Ùl¿/´ø€ÿˆ¾)[?£¸æ~«ÿu][üÀDß–ç‡Z;ÅèvÀÛd«ÕÊâþ/ªªŠ~ÙpÍ«««D£íb±Øï ƒð‘RÏxpJ¢/ˆO§ÓÍf“hͶm÷{{+LGlù €ÿgïnêO‡þûûûår™îh­ði÷Øù¹iKÿÐ'{ŒC¶Ó9ûó¹š õòúb±øðáÃs¿ªªªõzmñ?ªãwïÞ=ýÏÇã0Ö‡!õ|«Ÿ¹ÙlÞ¼y³Ç~ùò¥· €; ˜N§GYKiÛ6äÍ‹?×××׸€'Ò8%O|S÷ææf2™ô|ŽXøvá›î1ú_]]ýÁ €_ ƒìçÏŸŸò'w=Õ~VÕÃè~~¾ÇsŸÇš¬f§' —O|' ÇaPîá(•¶mþ Hn0<ýtÜÇÇÇ>„I@ºuwîýAЇ0à^__?ýχÑùíÛ·¡H]×]^^†+ï±îoô‡èœªç>ºS×uµ'“Éo…ï>ŸÏ÷{/Á3? 8Nì4Mb๯´m»ÜÚo诪j±XýApä økŒF£0'¿îÞþo*l6›®ë¸~³^¯÷Ûßí¿£¿w}ASšÃx½ÇB|ŸÆã±Mž!7šÀ'/ÔÔ¡BïçØÈý|üø1Ñ‘€(ÝîÙЫ««Ç¢iš¯_¿î·54 xªËËË0˜N§9|˜E¡ðßl6ýAÐÓT`¹\Þßß7v§Í(ü!sšÀ/ÖîX®›››ž‡þðMÓ5žªëºÝ“û‡<ÁùKUUM&C?2¬V«èIÐÛAc€ œ`½^ï^ì ¿îwxïùŸŒû 8á<1Ðnmw÷üûŸÙ½!<Ürp#N›Ç@€@ €@ €@ €@ €@ À~þW€Ìî‹VQGHIEND®B`‚klatexformula-4.0.0/src/klatexformula-64.png000644 000765 000024 00000001353 13046272703 021756 0ustar00philippestaff000000 000000 ‰PNG  IHDRAA•^ pHYs  šœtEXtSoftwareAdobe ImageReadyqÉe<xIDATxÚìZÑ‘‚@ æþÅ Ð °í; JèÀ°ì;P+ð¬€{s;“Éà}œË&° ù¸ÙYo$o_^6ÄmÛ.<·pá¿ÍÆa_C=ø|>_¯W³Þn·‡ÃÁþ»Zu«ª*ŽãŽØišÆî µ1œN'ãtš¦Ïç;ø{<±³\.o·ÛØ1€:u–ç9±0£Æ§qÒÆW°Ñ¡¥½¼T–åëõ2ëý~OÊæÿEѨ5M:´™eyb­¥ÜŠ4úx<(“rr¾ E±^¯Ç{?ð˜¡@2ÁÓ §ñÞÓ—Ë…ÖœŸj º’}Å”‘ \» ƒ Jî÷ûŸ‚ö ´ó@šH,¹¿paq§a$hó)§ÅMt9¯)’$ùȺ®{>Ñ=ˆ^ºAÐTe dz׃…H—zxסgQÉíÖBMAK$%X Ú#ƒ‚W«çÜ¿Þ 'áS­ƒP ©b¸Ý´1HTJš‚€ÖxW §P‡‰×m rbÐà '= r4‘X’ÊK(W7›t•!Ë'a·Û‰ÞB¡ï$ˆA´±§„÷c¤1ˆhZçµA–MAKaЃSÀ Z)Iiš :Žcž ¼áA™ \оbà<ôš$ù¿9ïÒ0@š¦:¿|Û÷Œ!V„MEü°±Iz%¬yàs¸‰ß÷‘‘Ô&=§G:A]n»é= u]stäÀF;4Ú£`òRQfQ–%-,'`Ôô@±%Ð/QMÓ˜Í,Ë”gÓziNÃc„~žçCè5G†ƒ‡Ç$î$Iªªj‡0Ùž±ŽÍsÆ3†ô0ü0t?\nkU¥IEND®B`‚klatexformula-4.0.0/src/klatexformula-mime.xml000644 000765 000024 00000002257 13046272676 022505 0ustar00philippestaff000000 000000 KLatexFormula Library Export Exportation de Bibliothèque KLatexFormula KLatexFormula Library Resource (Sqlite DB) Ressource KLatexFormula (BD Sqlite) klatexformula-4.0.0/src/klatexformula.ai000644 000765 000024 00000465530 13046272703 021347 0ustar00philippestaff000000 000000 %PDF-1.5 %âãÏÓ 1 0 obj <>/OCGs[5 0 R 23 0 R 47 0 R 81 0 R 107 0 R 135 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream application/pdf klatexformula Adobe Illustrator CS6 (Macintosh) 2016-12-26T21:29:06-08:00 2016-12-26T22:12:48-08:00 2016-12-26T22:12:48-08:00 256 192 JPEG /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAwAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FWCfm35x1fQdP0XTNCkSHXvM+qW+kWNzIglFssxJmuvTOz+ig6HapFajFUw/L22/MC2tNUg 853UV7Il/MNIul9ISvYinpNMII4IuRNeiD3xVleKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Ku xV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV4T5/wDLd9r/APzkH5X0ZfMGpRR2ljd64yxfVP8A Qgf9GiNqGtnHxSJ8Xq8z4EHFXuFnbvb2kNvJPJdPEio1zNw9SQqKc39NUTkep4qB7YqrYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXk3kdDrH5+ eftepyt9GtLDQbSXxLKLm5UeHGVRXFXrOKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kux V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVin5h+VfMHmGx01dD1qXRrvTr+G+cRs6R3UcVeVtM0RV+D 8t+vTp4KojyJ5Oi8r6XcwvP9c1PU7yfU9XvuPATXd03KRlSrcUUURFqaKBvirI8VdirsVdirsVdi rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVQM2s2EOmQ6lKzpaz+gIqo/MtdO kcS+nTkGZ5FFKbd8VR2KoXT9TstQWdrR2kW2nktZWKOg9WFuMgUuFDhW+EstRUEVqDiqKxVBSa5o 8erRaO97CuqzxmaKxLr6zRr1YJWvY/cfA4qjcVdirsVWTzwQRNNPIsUKCryOQqqPEk7DFW45I5Y1 kjYPG4qrqQQQe4IxVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVS7XZ RFbW7rZi+n+tW6wW5NKM0oVpejf3KFpOn7OKo26NyttKbVEkugjGBJWKRtJT4Q7qrlVJ6kKaeBxV LvK+iQaHodrpcRRnt1/0iSNQivO/xyvxHTm7FqYqmuKvP/y6sri680+c/MFxdG4SbVnsLRGjjHGK whjh2ZRy+GX1U679Tvir0DFXYq7FXi35k6xofmT83PKPk+81G2bQLKC81bWbdpo/TeeMGC0WTkSp aKarBG+kYq9I8geStP8AJflW08u6fc3F5aWhkaO4u3WSVvWkaU1Kqi9X2oMVZDirsVdirsVdiryr 89vzdv8AyVb6Tofl6KK483eY5xb6as3xRwqzLH6zqOpLuFQdCanfjQqvPPNv5o+d/wAvvzN8t+U0 12+803941sNdhvILSK1kN3JwC2aW8KTRtvUfGR0HxdlX0xirsVdirsVdirsVdirsVdirsVdirsVa d0RGd2CooJZiaAAbkknFXmOt/wDOS35L6PeNZzeYUuZ4yQ5s4ZrmMEbf3sSNG3+xY4qyfyZ+Z3kL zqjnyzrMGoSRDlLbjlFOq9OTQyhJAtTTlxpirKMVU7mb0LeWfg8vpIz+nEOTtxFeKL3Y9hiqS+SN DfSNAjjuI/T1G9kkv9TqVZjdXTmWXky7MVLcAfADtiqaapb3tzp1xBY3ZsLyRCsF4I0lMTno/pv8 LU8DiqD8reX4tA0WLTUlNxIJJri5uSvEy3F1M9xPJxqePOWViBU06Yqm2KuxV2KvFvJegaJrP59e f9QbTbR7HRLbT9Kt1MMZQyyp9YnYLTjyV1ox64q9pxV2KuxV2KuxV2KvljzMx83f85l6Tp/95a+X RAeXVVNnA19X6J5AvzxV9NzaLo8+oxanNYW8upW68YL14kadF32SQjmo+I9DiqMxV2KuxV2KuxV2 KuxV2KuxV2KuxV2Kvjf/AJym/OjVNa8x3HkLQbho9G0+QQamYTvd3Y2aJiN/Tib4ePd61rRcVe16 F5F8jfkz+VN1qt5pcF9f2Nl6+sXbIjzXVwwA9JXcNxjMjBEXoBuampKr481L80NXufPtt5x0nT7H QdQtZlltrfSofq8Rofsuqn94XFVcn7VTir9IMVdirsVdirAPKM+r655/8z6neiWOw0W6XStMjS6Y w1S3jkn5QqFRubTgknoVA/ZrirP8VdiqW6h5k0DTtSsdMv8AUILXUNT9T6hayuFeb0V5ScAevEdc Vee/8482ks/lrW/Nk6FZfN+t32qwluv1ZpPSgX/VohK+xxV6pirsVdirsVdirFPPHk3XPMRtG0vz VqHls23MSLYiJlm50+2JFJqvHah8cVfK/wCRHk/XvPH5l+a9YtPNN/YXFhyB16FY2uJ/rEzKnPns OccJO3hir6x8k+WNW8vafNban5hvfMU8snqC6vhGGQUA4II1G21d64qyLFXYq7FXYq7FXYq7FXYq 7FXYq7FUl87eYo/LXk/WdfkoRplnPcop/aeOMlE/2T0XFX5/flBpVx5m/N7y3bXJNzJc6nHd3jP8 RkWFjczFq9eSxtXFX6B+cPKumebPLOo+XdU5/UdShMMrRHi67hldCQRyVgGFRTxxV415E/5w/wDK HlzzFBrOqarPrgs5BNZ2TwrBCJFNUM1GkMnE70+EV61G2KvfcVdirsVQuqT39vp1xPp9qL69jQtb 2ZkEIlcdE9RgwWviRiqTeQdEvtJ0F/0inp6nqN5eanfRBg/pyXtw8wi5KSp9JHWOoNPh2xVkeKux Vjvmr8v/ACp5qns7jWrNprmwEqWtxFNNbyLHcLwmj5wPGxSRPhZTtTFU8s7O0srSCzs4Ut7S2jWK 3gjAVEjQcVVVGwAAoMVVsVdirsVdirsVSD8wNb/QXkbzBrIbg9hp9zPER19RImMYHuXoMVeKf84U aH9W8i63rLJxfUtQECt/NFaRKVPy5zuMVfRWKuxV2KuxV2KuxV2KuxV2KuxV2KuxV4z/AM5b66dM /Ju8tlYq+r3dtYqR1oGNy33rbkYq8I/5w30MX35qzai6kppGnTzI/YSzMkCj6Ukf7sVfbuKuxV2K uxV2KuxV2KuxV2KuxVKfMnmvy/5asUvdbuxawTSrbwDi8sss0n2IoYoleSR2psqKTiqp5c8yaJ5k 0eDWdEu1vdNueXo3CBlBKMUYFXCspVlIIYVxVMsVdirsVdiryD/nK7XP0X+TGpwq/CXVZ7axjPc8 pRM4+mOFhiqbf8456F+hvyY8swMvGW6t2vpCerfW5GnQ/wDIt1GKvScVdirsVdirsVdirsVdirsV dirsVeNeYP8AnLD8qdE1q90ic6hcXFhNJbXElvbqY/Uico4UvJGTRl60pirwn/nJT89PLH5i6Zoe n+XEu0gspp7i9F3GsVXKIkPEK8ldjJXwxVD/APONX5veRfy3TXp/MCXkl5qZt0t/qsSSKsUHqFql nj3ZpB92KvdbL/nMD8pLq7htgupxGZ1jEklsnEFjQV4ys33DFXt2KuxV2KuxV2KuxV2KuxV2KvCP NXnHSNY/Pzy1azW2pTaZ5a02+vLi2Gk6lI5uLsm0DG2Fs0jxhfsy8Cm+zVxV7L5d8uaF5c0iHSdD s47DTYCzQ20QIVTIxdjvU7sx64qmWKuxV2KoW81XS7KW3hvbyC2lu39K1jmkSNpXPRIwxBZvYYq+ df8AnMCS81q/8j+RtP8AivNWvXl9PfZyUt4GNO376SvyxV9F6Zp9vp2m2mn2w421nDHbwr4JEoRR 9wxVE4q7FXYq7FXYq7FXYq7FXYq7FXYqxq7/ACy/Le9upbu88qaNc3U7GSe4m0+1kkd2NSzu0ZZi T1JxV8V/85QweXrL82bvSdB0200u00y0toJLexgjto2ldPrDOViVFLUnAJ9qdsVfQX/OOH5V+Sbn 8otG1HXPLum6lqOotcXL3F7ZwTy8DM6RLzlRm48EBA98Veo235Yflpa3EdzbeUtGguIWDxTR6fao 6MpqGVljBBHiMVZNirsVdirsVdirsVdirsVdiryT8tlOrfnV+ZfmEj9zZvY6JZt1p9Xh5XK/8jAp xV63irsVdirsVfPH58/lF5g8w/mfoXmw219qvlqzgihvLLSvRe+jeCZ5aRxzywLxl5j41JK7/D0x VlflTyJr/mT80pvzP832B0tbK3Fj5V0OZ0knhi+LlcXPpl41kb1HKqGNORr9kYq9cxV2KuxV2Kux V2KuxV2KuxV2KuxV2KuxV+a35r63+nPzL8z6oG5x3GpXPoMe8Mchji/5JquKv0M8h6J+gvJOgaMV Kvp+n21vID15xxKrk+5atcVT3FXYq7FXYq7FXYq7FXYq7FWKebPzK8t+Vdc0jSNX9aOTV47ueO7V V+rQxWMfqyvPIzLxHHpQH6MVSH8gdD1Cw8jS6tqcLW+qeadQu9eu4ZBR0N7JWMNXv6So1O1cVek4 q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUq826yuh+VdY1pjQaZY3F3Xr/AHETSdP9 jir85Py70Ztf/MHy9pThpFv9Sto5z1PptMvqt9CVOKv0wxV2KuxV2KuxV2KuxV2KuxV2KqF3YWN4 EF3bRXIiYPGJUVwrjoy8gaH3xVXxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV5X /wA5Pa4NJ/JbXeL8JtQ9Gxh9/WmX1B/yKV8VfMf/ADiZof6T/ObT7gjkmk211fOO3939XUn5PcKf nir7wxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KvDv+ci/zI8wadqXl38vfK101lrv mqeOO4vojSaC2mmECekR9lpH5fH1AU061CrCvOWh+b/KP5xeWND/AC70jUIoh9Wm1DWWmvbgX4eQ i5+ttJIbb01QfF8IIO9Rtir6mxV2KuxV2KuxV2KuxV2KuxV2Kvmr/nN3XfR8s+W9CV9728mvZFHW lrEI1r7E3P4e2KpP/wA4P6ETN5p1512Vbaxgb/WLyyj/AIWPFX1birsVdirsVdirsVdirsVdirsV dirsVdirsVdirsVdirsVfLDlvNn/ADmiqn97ZeXhQf5As7Qt+F3Lir6nxV2KuxV2KuxV2KuxV2Ku xV2KuxV8T/8AOZmvfXfzOs9LRqx6Tp0SuvhNcO0rffGY8Ve5/wDOJfl79E/k7ZXTrxm1m6uL96jf jyFvH9BSAMPnir2XFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWJ+evyt8heeTaP5r039 Ifo8SfVSbi5gCCTiX/uJIga8B9rFXyx/zjb+VfkX8wPNHm261fSzdeXrAoNNtfXuIhH9ZlkaL445 EkbjFFT4mPXffFX1j5J/Lzyf5H0+fT/K+n/o+0uZfrE8fqzTFpOITlyneVvsqNgaYqyLFXYq7FXY q7FXYq7FXYq7FXYq/On8276682/nR5gNkDc3F7qrWFio3MnpOLSAL/rCNaYq/QLyroNv5e8taVoV tvDpdpDaI383oxhOR92pU4qmmKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KsV/NXXBoX5 a+ZtVD8JLfTbn0G8JnjMcX/JRlxV5V/zhhoYs/y11DVXSkuqalJxf+aG3jSNfukMmKvf8VdirsVd irsVdirsVdiqR+efM8flbydrPmKSP1hpdpLcpDWgd0U8EJHTk9BXFXwVd/n/APnDeeYRrX+Jr2K4 9QPHZQSMlmKGqx/VR+6Ze3xKSe5JxV91ea/NzeW/y7v/ADPqarb3Flp5uZID0Fy0Y4Qip/amYIN8 VfJv/OJX5eXPmTz+/my/Rn0zy+TMJX3Et/ID6S1PUxgmU+B4+OKvtnFXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq8U/wCcvNd/Rv5PT2SvxfWL22s6DqVRjct9H+jgH5++Ksv/ACI0H9B/ lB5WsSvB3sUu5FPUPeE3LA+4MtMVZ5irsVdirsVdirsVdirsVSzzN5fsPMfl7UdB1AE2ep28ltMV +0FkUryX/KXqPfFXyZ5b/K7X/wApPNbX2vfl9N55gtpPW0nWdMeWURFNxI1qokHJaVHqKOJ3BOxx VlHnZvzh/POSy8v2nlq68neTo5Unv77VVaOSUgVVvTYRNIq1+BEBBahZh2Ve/eQvI+heSPK9n5d0 WPha2oJklb+8mlbeSaQ92c/cKAbAYqyDFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWKe bPzU/L/ylqtjpPmHWYrDUdRobW3ZJZGKs3BWf00cRqW2DPQbHwOKvFv+cpra582+fPIH5e2RJmvp ZLm6C7lYpXWISkAHaOOKZj7Yq+kbeCG3gjt4EEcMKrHFGuwVVFFA+QGKr8VdirsVdirsVdirsVdi rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVeN/mr+RVx5p/MDSPO1gLK+m sI4obnRtTknt7eUQSNJHIJrdJnrVqFGQqRiqe+R/yy1W185aj5/843NtfebL6MWtpDZh/qdhaKAB FAZQrszU+Jyo77bmqr0fFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX//2Q== uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 xmp.did:0680117407206811822A82FE73F5DC9D uuid:85378e9b-2104-8344-9526-0678540bacd5 proof:pdf uuid:4df742e1-b560-f343-bc30-f4939a8dc13c xmp.did:048011740720681183D1F98A17CA7014 uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 proof:pdf saved xmp.iid:048011740720681183D1F98A17CA7014 2016-12-26T19:54:37-08:00 Adobe Illustrator CS6 (Macintosh) / saved xmp.iid:0680117407206811822A82FE73F5DC9D 2016-12-26T21:29:07-08:00 Adobe Illustrator CS6 (Macintosh) / Basic RGB Document 1 False False 256.000000 256.000000 Pixels Cyan Magenta Yellow Black Default Swatch Group 0 White RGB PROCESS 255 255 255 Black RGB PROCESS 0 0 0 RGB Red RGB PROCESS 255 0 0 RGB Yellow RGB PROCESS 255 255 0 RGB Green RGB PROCESS 0 255 0 RGB Cyan RGB PROCESS 0 255 255 RGB Blue RGB PROCESS 0 0 255 RGB Magenta RGB PROCESS 255 0 255 R=193 G=39 B=45 RGB PROCESS 193 39 45 R=237 G=28 B=36 RGB PROCESS 237 28 36 R=241 G=90 B=36 RGB PROCESS 241 90 36 R=247 G=147 B=30 RGB PROCESS 247 147 30 R=251 G=176 B=59 RGB PROCESS 251 176 59 R=252 G=238 B=33 RGB PROCESS 252 238 33 R=217 G=224 B=33 RGB PROCESS 217 224 33 R=140 G=198 B=63 RGB PROCESS 140 198 63 R=57 G=181 B=74 RGB PROCESS 57 181 74 R=0 G=146 B=69 RGB PROCESS 0 146 69 R=0 G=104 B=55 RGB PROCESS 0 104 55 R=34 G=181 B=115 RGB PROCESS 34 181 115 R=0 G=169 B=157 RGB PROCESS 0 169 157 R=41 G=171 B=226 RGB PROCESS 41 171 226 R=0 G=113 B=188 RGB PROCESS 0 113 188 R=46 G=49 B=146 RGB PROCESS 46 49 146 R=27 G=20 B=100 RGB PROCESS 27 20 100 R=102 G=45 B=145 RGB PROCESS 102 45 145 R=147 G=39 B=143 RGB PROCESS 147 39 143 R=158 G=0 B=93 RGB PROCESS 158 0 93 R=212 G=20 B=90 RGB PROCESS 212 20 90 R=237 G=30 B=121 RGB PROCESS 237 30 121 R=199 G=178 B=153 RGB PROCESS 199 178 153 R=153 G=134 B=117 RGB PROCESS 153 134 117 R=115 G=99 B=87 RGB PROCESS 115 99 87 R=83 G=71 B=65 RGB PROCESS 83 71 65 R=198 G=156 B=109 RGB PROCESS 198 156 109 R=166 G=124 B=82 RGB PROCESS 166 124 82 R=140 G=98 B=57 RGB PROCESS 140 98 57 R=117 G=76 B=36 RGB PROCESS 117 76 36 R=96 G=56 B=19 RGB PROCESS 96 56 19 R=66 G=33 B=11 RGB PROCESS 66 33 11 Cold 1 C=56 M=0 Y=20 K=0 RGB PROCESS 101 200 208 C=51 M=43 Y=0 K=0 RGB PROCESS 131 139 197 C=26 M=41 Y=0 K=0 RGB PROCESS 186 155 201 Grays 1 R=0 G=0 B=0 RGB PROCESS 0 0 0 R=26 G=26 B=26 RGB PROCESS 26 26 26 R=51 G=51 B=51 RGB PROCESS 51 51 51 R=77 G=77 B=77 RGB PROCESS 77 77 77 R=102 G=102 B=102 RGB PROCESS 102 102 102 R=128 G=128 B=128 RGB PROCESS 128 128 128 R=153 G=153 B=153 RGB PROCESS 153 153 153 R=179 G=179 B=179 RGB PROCESS 179 179 179 R=204 G=204 B=204 RGB PROCESS 204 204 204 R=230 G=230 B=230 RGB PROCESS 230 230 230 R=242 G=242 B=242 RGB PROCESS 242 242 242 Adobe PDF library 10.01 endstream endobj 3 0 obj <> endobj 49 0 obj <> endobj 50 0 obj <> endobj 28 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 64.0 64.0]/Type/Page>> endobj 51 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page>> endobj 52 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page>> endobj 53 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 256.0 256.0]/Type/Page>> endobj 54 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 256.0 256.0]/Type/Page>> endobj 55 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 512.0 512.0]/Type/Page>> endobj 56 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 512.0 512.0]/Type/Page>> endobj 109 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 1024.0 1024.0]/Type/Page>> endobj 147 0 obj <>stream H‰dTËŽÔ@ ¼÷WôÄëg?® ˆÓ ­8ðpa‘–ý‰rÏ$3”iWœrÙåäéË¥>=_¸~øx©å­pV¿^¶uýó½|«¿ËÓå+×ý½òúÕ÷Ðg@?ßË[•Jm1ÈǰÚZ'3êþZòÖk‘IŠ£6 =2HÅê^n±vêøšD4µÁ^¶ÔÆ™û«lÑ)y ñ”îN,NŽŒÍÙèU5ˆû¢0¦æQÕñhÙ,(™zÄɦœá^ LÑO œbBAò†Î$ÓCi Î½ÐÏ©U‚Œq_…ÐÈ1ÔHª¹2‚†@Ĥ6éNŠ!z§ÑúîÓeµ˜1 4‹–¤¡b:ÌŠôÀc(Y#( I V#çvD ¢°5Ì'CXÛ2p¶ëÑ ò…sTñpƒ'&‰Ùå#Fˆ1ü”{·O™az<ø§X?S¶Ô>Ûü/^&])nçM%Ùà/N©Ë…zkÀ/qõaCWœÿ2±wj &D"ª5Ñ¡3Z†§YÒ› ° Ÿ±›ƒûpÞPkS0¥ç'²– µ!éžeð4´?"Þ¨(Ã!z®Y¢þÚô-l’IÖ;ÇAÂÿAÚòóñ9ï0=PØD×JmÞÐ_“aã=•HêtlZÞ¼gõ±Þ”͇ÐX:$à‘Ìk'/\’C‹e3Uš=Žå†,ß ó!KÆ©šC˜˜Û‚{vnx§µ¯öÄ Ÿ“œõ0LYåtÔÓEˆumËx^Žÿ(/åÓ3¾i/å¯À\ðv endstream endobj 135 0 obj <> endobj 148 0 obj [/View/Design] endobj 149 0 obj <>>> endobj 140 0 obj <> endobj 139 0 obj [/ICCBased 150 0 R] endobj 150 0 obj <>stream H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤  2y­.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é @8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚óÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW= €x¯Íú·¶Ò-Œ¯Àòæ[›Ëû0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçL­UáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.òò· åÒR´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(ЇR¡,¨*T2B-Ð ¨ꇆ¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r 9‹\A&‘GÈ ”ˆrQ ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½Ä­ÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD ¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…寒°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 N'çÎ)Î].ÂuæJ¸rî î÷ wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=GTB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßY Õ.©=bàá?SŒîƕƩºÈº‘ºçõyõ‡Ø Ú† žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹­³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝ­èþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû endstream endobj 138 0 obj <> endobj 151 0 obj <> endobj 152 0 obj <>stream %!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 16.0 %%AI8_CreatorVersion: 16.0.0 %%For: (Philippe Faist) () %%Title: (klatexformula.ai) %%CreationDate: 12/26/16 10:12 PM %%Canvassize: 16383 %%BoundingBox: -425 -1053 1693 511 %%HiResBoundingBox: -424.7539 -1052.6367 1692.1826 510.0825 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 12.0 %AI12_BuildNumber: 682 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 141.0146 254.0825 397.0146 510.0825 %AI3_TemplateBox: 128.5 -128.5 128.5 -128.5 %AI3_TileBox: -18.9854 26.0825 557.0146 760.0825 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: -676 875 1 1688 952 18 1 0 -4 38 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-272 -428 %AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 153 0 obj <>stream %%BoundingBox: -425 -1053 1693 511 %%HiResBoundingBox: -424.7539 -1052.6367 1692.1826 510.0825 %AI7_Thumbnail: 128 96 8 %%BeginData: 4300 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45FDAAFFA852F87DFD7CFF7D527D52FD7CFF277DFD7DFF7D2752FD7C %FFA852F87DA8FD7CFFA827FD7EFF5227FD7EFF277DFD7EFF277DFD7EFFF8 %FD7EFF7D27FD7CFFA87D7D52FD7CFF522752FD7EFF7DFDFCFFFDFCFFFDFC %FFFDFCFFFDFCFFFDFCFFFDFCFFFDF7FFA8FD7CFFA8FFA87DFD04FF7DA8FD %07FFA87DFD10FFA8A8FD5EFFA8FD04FF7DFD08FF52A8FD0FFF7D2727A8FD %1BFFA8FD45FFA87DFD07FF7D52A8FD0FFFF8A852FD1AFF52277D27A8FD3F %FF7DFFFFFFA8FD08FFA87DFD0FFF7D27FD1BFF52F8FF7DF827FD37FFA8FD %06FFA8A8FFFFA8FD09FF7D7DFD0EFFA852F8A8FD19FFA8F852FF27F852FD %34FF52FD04F827A8FD09FF7D7DFD06FF7DA8FD0EFFA82752A8FD19FF52F8 %7DFFA87DFD33FFA8F8F827A8A8A8F8F8A8FD08FF7DFD06FF7D52FD10FF27 %7DFD1AFF27F8A8FD35FFA8F8F827FFFFFF7D27F827FD07FFA8A8FD18FFF8 %FD1BFFF8F8A8FD35FF27F8F8A8FFFF52FD04F8FD07FFA8A8FD17FF7D27FD %1AFFA8F827FD35FF7DF8F827A8FFFF27FD04F8FD11FFA87DFD0DFF7D27FD %18FFA87D7DF8277DA8A8FD32FF52F8F827FFFFFF27F8F8F852FD10FFA852 %A8FD0DFF2752FD18FF2727F8F82727277DFD31FFA8F8F8F87DFFFFFFA8F8 %2752FD11FFA827FD0EFF277DFD1AFF52F8A8FD34FF7DF8F8F87DFD18FF7D %7DFD0BFFA827A827FD1BFFF8F8A8FD34FF52F8F8F8FD19FF7D7DFD0BFFA8 %2727A8FD1AFFA8F8F8FD35FF27F8F827FD19FF52A8FD0CFFA8FD1CFFA8F8 %52FD34FFA8F8F8F827FD18FF7D7DFD2AFF52F852FD34FFA8F8F8F87DFD19 %FFA8FD2AFF52F87DFD34FF52F8F8F87DFD44FF27F8A8FD34FF52F8F8F8FD %44FFA8F8F8FD35FF27F8F827FD44FFA8F827FD30FFFD057D27F8F827A8FD %047DA8FD26FF7D2727FD15FF52F852FD2FFF52FD0EF827FD26FF277D52A8 %FD14FF52F8A8FD2FFFA8527D527D27F8F8F8277D527D527D7DFD25FFA8F8 %FD17FF27F8A8FD34FF52F8F8F8A8FD2BFF5227A8FD16FFF827FD35FF27F8 %F827FD2BFF7D27277DA8FD11FF7DA8FFA8F87DFD34FFA8F8F8F827FD2CFF %27A8FD12FF7DF8F8FF52F8A8FD34FFA8F8F8F852FD2BFFA827A8FD12FF52 %F87DFFF852FD35FF7DF8F8F852FD2BFFA8F8FD13FF7D27525252FD36FF52 %F8F8F8A8FD2BFF7D27FD14FFA87D7DFD37FF27F8F8F8A8FD2BFF5252FD4E %FF27F8F827FD2CFF277DFD4DFFA8F8F8F852FD2AFF7DA827FD4EFF7DF8F8 %F852FD29FFA8F85252FD4EFF52F8F8F87DFD2AFFA8A8FD4FFF27F8F8F8A8 %FD7BFF27F8F8F8FD7CFFF8F8F852FD7BFF7DF8F8F852FD4CFF7D52527DA8 %FD2AFF7DF8F8F8A8FD4BFF7DF87DA8F852FD2AFF27F8F8F8A8FD4BFFF827 %FF27F827FD2AFF27F8F8F8FD4BFF7DF87DFF7D27A8FD2AFFF8F8F852FD4B %FF52F87DFD2DFFA8F8F8F852FD4BFF27F8A8FD2DFF7DF8F8F8A8FD4BFFF8 %27FD2EFF52F8F8F8A8FD48FFA8FF7DF827FFA8FD2CFF27F8F827FD48FFA8 %27F827F82727F852FD2BFFF8F8F852FD49FFA8FF27F87DFFA8FD2BFF7DF8 %F8F87DFD4BFF27F8A8FD2DFF7DF8F8F8FD4CFFF8F8A8FD2DFF27F8F852FD %4BFFA8F827FD27FF7D7DA8FD04FF27F8F87DFD4BFF7DF852FD26FF27F8F8 %F8A8FFFFA8F8F827FD4CFF52F87DFD25FF52FD04F8A8FFFF7DF8F87DFD4C %FF27F8A8FD25FF27FD04F8A8FFFF27F827FD4DFFF8F8A8FD25FF52F8F827 %7DFFFFA8F8F8A8FD4CFFA8F827FD26FFA8F8F8A8FFFFA8F8F87DFD4DFF7D %F852FD27FFA8F8F82727F8F87DFD4EFF52F852FD29FF7D52277DA8FD4FFF %52F8A8FD7DFFF827FD7DFFA8F852FD79FF7DF827FF7DF8A8FD79FF27F852 %FF2752FD7AFF7DF87D5227A8FD7BFFA8527DFDC6FFFF %%EndData endstream endobj 154 0 obj <>stream %AI12_CompressedDataxœì½íŽ]Éq%úõu£òί™ºƒªŠEÖXì_  šMK³É›mîÓßXkEäÉC²å–Ô¾ðæÉ:Qû{GFÆÇŠ•ñýê7?»ÿòÝ?¼úY¹;noþâ/ß¿zñáÝûŸßRzû‹7o¾ýæÃ{ˆ~òëŸÞ¦óî°î1¾ð ÿû«÷ß¼~÷öçüù{ÿäW¿{ýæõ×_¿º}þâõ7~zû“ŸÚ¯þöõ‡7¯ì—ÿôæÅ‡Wÿçß½ÿêÛ7/î^¼þiœØŽôÌ~eG˙ϿLçm:~žòí¯~‰-^¼ýçß|óúÿÅïÏ2ŠÉÞ}ûöË×oûðîÿüüög5·ÛŸ¥£ûý,·-%Û俼þõ«o>Þ®ÞõV&7Îwg9;öÈwiäÓv³¹Ù¾ÏÞ½üö«Wo?üêý»—¯¾ùæñÝ›wï¿ùùíãï_¼½ýå‹ßÚo^Üþ?¯Þ¼y÷/·o^¼ü§{4í‹ç¯ß¼²§ðÕ‹vx&÷¿Hù‹‡o_¿ùò¿}ûÕ?¼²çsŽ qù‚‡ü»oìXvXü qÿâ_™ä7¯>|°k¶â¹þú¯öË0!??ùŸ¿~õÛ×|Göôþ×Oý°ïß}ýÕ‹÷ÿdû¦šîŽTÏÛÜ*ïë¶Ì.ÉåN±Ïß¾úêk¼>£”Ç&ÿÛ¿ø¶v‹z–iÜÍÑêm>uðÖüàýÜ~y’¯þùõ«ùùí{÷ö•×ýû¿ÑK­õ8ô¯~óëoß¼zÿwo_°Û8!šz^¿|÷å«7¶ýÚÿù›|Lü¤Ë¿Úào_¼ÿí«¦ïÞ|ûÊ:â ö>þúÅï_á¥&ào¾~õöoßýw^ãÏÎ~ÞŽnÀÔcŒÛÙòm<ôÏêmë„éò¯Ž‹£àqðn/ðWöJÿæýëß¾~ûóŸåž¡†Coû¯Þ¿þòò²íWCÿðîÆöwÆ_]¬Ý÷‡¯ÞúÅ›’=þrSšãî—¿±ó>½ýòñÝWxøß`ʶ¼5Ezóî·úÝú™¿±Ý¿ýZ÷Àï_Ø{úÕû×oqÌ›ÿÆßŒ/~õæ[ûÕ_½÷í׿xûïn~"cñß_½4‹`¯òËÛ¿ù‡ÿm_lØS‘oÿöý‹—vû¾¶±aÿõOÿàáìæÞ¿ºÕ/mO~ÿÿõ½Ÿ½‚}¹ì.éÓÛ~õæÝ×Ûa—äÅÛ/oÿÇ‹÷_ÿë‡þÕ›o_¼¿¥|ù¯_ÿ³ýæ…=©Ë±/²ïqPÓ“¯íápnòÑ þÀÛ¯¾Ç‰^|øY«Wo¿üf[_¯/\²ýx¿y |ûðþÛo~wû·ïÞ½Y‡½þÕ:º‹)Åöÿ>Îñ+îðöoÞê}z&ßàã3™ùùwwÛú»Ï`¿ü÷|ôÇoÞ¼þíû_ÿîõËÏà3¿_gÒïþÅúýWÿðîÍëo¾ºèÓ&ùÕ‹÷^¿|óê7¿ÿæÃ«¯¾÷˽}úòµ¹ïÆp›ßüË‹/÷ׯÿáý‹÷¯_ýÁчð¯ß~iºÿ›o_xuy@ï¾úîÎío~÷âëW¼¿{Î-³ؾ0Ó¿÷ŸýìXýyûðvûõ_½ñåk›OÌ•{xó­=³úýOo.?Ú¬•o¾¼ùŸ7Ç]›iözsØ©ŽVÌeætÚ£m ûaæYS¾©·ñÅÃûmO΀ړ?jÏÛØó6ö´3·æÑØ l>„Äf¾/þ¼ƒ<|ó§\EÒþœkX‡°+xx¶ÞV<õÏ¿ˆ¿z÷æËÛgæ¬Û›¸ül©zÿé&§|Øß”3ÿæ\ì£+ÿšûìÿêsú§¯Ï°ÏŒÏM¾÷ÏÃÕçÑ?ÏÖçÉ>Ïóór¬OòOæ_ÿÜ”øSK½ùϸägÜ Û˜¨œ¥—YÊcyVžêQ„µÕ³ö:íóPë³úTŸ7së[iµµv¶Ñf{híY{ºiÏÏdŸz6síÆ9Ïû<;ŸÎçý°,½ö³÷>úì÷ý¡?ëOãŒ2ìÕ síÏýxÏÆÓx>Ó½Ûb§n󜃗ü¼òÓÖç䧯ÏàgòsÏÏÃú<úç™}žô¹yþÿ¹: /Ù^H]{tǹ>Ý?ãê3ýsÏσíó Ÿþ÷äŸçñI‡ðGÿfþÍÔ…ÊO³Ï韟›dï Ù£N÷iò’Ÿš}ìM?û@¿?v:<ºgOöÑŸGû<ØçÞ>Ó>ƒ{±Ïìµ?3xVñ¹yf*EeMöáõóM<ÙÇПûÜÛgÚgاósÚÇÔëÑ”ï±ðcÊó˜ìcO¯•—Ì-ð»Dá“]ÕãÃÃÃýÃ|Ýô°=Ô‡b(=¦OvÅ÷÷÷÷ó~Ü÷ûó¾Ý×ûbÃ-ݦ;O7v;óaÎ9f7õk¦†fSì)¦`Ov›¦§÷cšÆvÓÜf\L“Ó8L Ÿì<š†ß›¦Óø³·Sþbƒ õãÄ%aÿÓ¿ˆqõ™þFôyXÜù³í£wó<=7óƒOâã°±7l 6‹Ù^öa/ô™ Ó{®§ Ûb8Ù@z´A=ë°!Þl¨§òÜ^øc¹·è¿—f–"—ÃLË3 ½ûí3·Ÿâ£¡‡Ax^}4P«ÿëŸßõ©ô§à¡ÞÙ 9Ê´cÏ'»ÆÃž]¶×Zíõžöš‡½î{{íöúŸÌ4¦Å£™‚tS”i ó`ŠóÌè¹éW2…*¦Xís—›¿ó“¾ãsõǹ4àøaþ$;7…Íý§›’{$n'hʲ÷d¦Q÷¡ýúp hØç™ ‚‡y¿  …´†Â‚ ƒÉôc@#à4åÏP|3 §ŒLØ­«Oæ§ð³tåC&~×Èû›ÍÖ?nŸ‹ýÇFÿù‡{ÚëÏõ?~éR‰¢{ÖŸ|8=»ºÌˈÚÇRŒ<<<){vOÏoì(ø“üødJûdj·ö4žÌ=ÙÔû$Ý5ÛS8×Þìsr"ÆT¬ÉÓ1Ìí3ìeø ÒĬ©¹Ûû5àôü8žÝp†Æ<•Ì*Æ$Ým‹iÊò`¶ó™Ñïñ´¿k¬|î!òsóÙ!÷‘ý¸ .8»¶ÁÈåÎb탩¤»Ã.´wûÁœ›Ã<Ó»jFqVz×î"Îi‘/¾æŸyº¼)ŠÍ’=üÆdS3Óƒ©´Cʆá=·:÷CóÎfðq¹¤æp¼2{™ÇÀv6ô‡˜¦<º½3ï‡:Ó4 Ãß$›f.GlíÎÜŽËõýÅUb³jÛ7©æ9³²‘wµs\îmÞ5ó´¶@áÞñ þîíÛ_½úòö·.ºM'|Fx‰Ý|\$NuæzÒË{FW.Ñm«ô &çÿGÌò - ƒˆÎ`a3h‰£@ënûï—ãø´|ÂBûú¡§;æT|îPq ]ÙÓÕµ]r¿ü’'ú!é4³a7Ÿh)híb£E„5{'¢›b:zú¡òv0Æã‡òÑ©Æ!3|àÁÆgöè²Ì‚Oަ…1V3µ°@ØTäÞTåÑfò'øt2Ý FÇg¸ÃóÀöÉ£K Ÿž™í‡üì¿ãpìá{îûlSédoº#cüL?Ø[çdeD“Õèµq®:³ý„Ú¹Þr~h>Ú0ïs›û~àk~YE§ôù¬×woñg ·ü¹Ñ–¯f †(R¦(PA¨¢`å`Pœ²ÆËѳâhDÔ“ñ5âlüyvc¡7Bp¼¶ƒÑ$Bt„êˆÚ½#ŠG4¨ñ½¦‹,|dY,˜D¨[X ÇÙ iÅ#sBÈ Ùßç6¦:ìo±€´XXZœ"QtÞ0W4Î{fŒ=gôÌ<_dŽ’çŽÂyE4=@ãóŸ¨?®(Eq "í ÛóŠW¼#|W¯A¼ÂxF0…±<£yçÑ+¦WT?é:w:ÒíûÏÏþà|ðŒé”{&Rú 3(•‰“Ä„ÉS%L‘ ¦F>Jz|4• u‡1PO»½éz ‡‡#+]ŸüùùæOÙ›~¤½1ÛÕ¶(öÆ{[{šÙµ—ÌAói÷ÙéÏgã³m\Mk4Ö×¾Ùýæ›íÞ|ŸåùÐ;;Ã;ËÈÏ–ã†IÖR“¬£L‹³/iÖ\K­žh¦±÷W©ÖäÉÖӇו˷ûju9~sóÚ"oHßíÊÛïâ¼Ù\¹í–ÖmeÏfWf®ûÕ-Þ3-ýŒiè'¤”÷9SO1¼É¾ò›œr=•y¹¶²¼Ë¶åÅìÂnVúë‘sú“§¼ök«žYÇ_\Ýðu…~öùÿ!ð¹?zaŸ k¯bXS‹ʦg¬Ë•W¦Ç+Y(o]̬W³ÌSýn3 #{1³õ†e-ØZZÛ(nÁ‰1÷ÎK¡ãrzkþi¶$}æ§íû ÿËëßëŸãf½ÝðŸî™¿›?e¨4Ðo¾oÉÄ+&šŸ.9J~"I‰‘¥±uIUÆ[ ËU~º òMT ¶ÔÓªA]ªP«eW‘voÈæ»ÌÀf F r/ ¯Œj?LËÓw †?ioåûzB¶Ë÷0¯J#eÊ{ú¼3ôGìóg®ÏFøýÏRµ=O.ÂÍVrÞ½¡Ë@ý×=¢Ë`µ‘zn‘TÕ5X³ÖËp5½e¡¢ôaF^¡sâ7W)ñOâªU#%®¤ø%-Îĸj×[n<ß0=^Y99› Æ)÷ŒY•*G¹j¬¢dE+•­P¸béêfU¯ÖUÃR+êX—JkY^ÍZõ,†…ƒ¥ÖûÇÇ›Ç'€™a½{RO6ØŠÄþ4¿w–ÑÕâæÃs»Ù´ä¼Ò“Ç@58–a·êR˜P)«Í ÀMs.º#íyF›ò|yÕú>P‘¨J7›.}lúÝø/}zdÐúÄ"UèÕ®Y>Ü0rÜ‹-Ï©[BAäM·B³î½àòH½RÍ%­šK½Ùtjl:õŒ:õœ•@£ ú\!ÔéæªÊJ(5Zù¬*|>Kü=òÄ®åæ3Jð,¼u·Ÿ*T@v#,‡l‡éÀM­®r­nHdJ8óÿ1ªpQ†ïV‡gHnVým,¥Áq“³#TcWŽÏ¨ÇkÈ“C`ŽMSvt.e‘’Ê„)ztƒdŸý·}ž®?ÿATºùîÊß4à‚¤¹ h>ÆÍÐ(ÝH%ׄuÁÃ4ÇÁ|jŸö¨÷ͼ¹²NŸNd—iìbŠb » §6ìu‹ZÈ©{æÀ5Õ¨(BLA)²)ÂÉפÔsIöNïíÝÙ°¿±1_|öÀ8¼r¨C3%›61<³ ƒºaH3'øÌç€Â`jxöœiàzÃi`ð­{J™9`d€‘ÿÿÑê¸ù3œØÏnþ7öû@n¾ög‡þ0³‰ç½ctN&B‹p:7fd1}$Xgš†tvª ;æë?7zFàÎ=¡;àjº–MãBxž™Q|0]œeܘbž¦ •hžD<Ï“)ð#ó6Èô«Î¥bòi †˜›O &Õ_~T…UáGUøQ>Q…-Ÿ)×Î"Âèva?FŒfÚ¥w}?‹ÿ);¦´÷Ǥ׾wˆý?~÷úëÿ¨vE ®¯¾þVÿVÿVÿVÿVÿVÿVÿVÿVÿè@ÿKý¨ ?ªÂªðcX}Vÿ1Ýó$Àÿ- ÿ¯¯ÿù•…ßüï¶ö»fOÕ.xÞež·©µ»yõ6§ygšTx™÷ü÷ïÿÅþû–?&¿ò¿ÿ=¿þWûñ›ð_ì@·¿¼ýŸÿë¸ýR»üÚþ‹“Ä!o¿ÿãÝþõ.]ô×Û>+¼Úÿ­ýýËû÷ž½~ ¾ïûs"ÿÿòáÝ»7·?¹ÿ…?ˆ/Ä‚ðÅË—ÿd‹´B_üšÌ1ÿÑvø¿í¯ßìø–xÆûùµÜõž2_Îæ ²/Ǽ±¦^û0Ð* Ðß¿À^¥Ý6vn{XÁ„æÍßvû߆Ï-6ú2dðî(Èåö%v«УaA‡|ÜÕ4'8¥ì2òD“Å ·ØëLv¹¹ßŽtgOÒŽ]Ï»’;Ì´cŸÅNÖïznçí(wGC'3¡=çLáÞÔ m‚œl+ FÅ÷RιíuPhQNÒ±ÑOe‚Vº6„¦%¯;k©ëصÚV­ß¥N¢óÎo:ËÝ0ùvf{ºC÷Õλ r“MÞ|³­ãvö»l.²¾›q3ýÉwfžü¾viµñÌíJ’4¾“ÔÓ.š3´kφãšO‚~¤¬ÍZí’4Úlªï–ïìe%ô¼Í†mNÞÃöŠN¾C³ø­=ܪ]ÎjÃ^™»ý/¶s«t;p5§½áRp‰ç]·(Ãw ›J%“W¤»Q“댻0½Ø2†x4û5èØ ¸ÔaOºƒ¯™§„tàíáÁærr»vø“æ`Pý3KrÆµš”¯‡ÒÆ­, ,:|Ã#ÄfwJZ±´ß¸Ë^ Þ¸Žo÷ØS¡Rôã3XFïF…ÆŸv~‹¶cµqe Õ9”f½³©±C0 æÙöO *gcÌâ@žBŽjPµ¡{“‚nŠ3íA²=¨ž ÌoÈ—Ý,r…°Û³â±‹ µ 4øý0×÷ê÷6ͨÏ„æ™Ø³œöB§]š]ªÍè¸3»‰awÏ_øË³Ç¡çƒsÁ\™¿pW0²ì–y˜ úçö$)´øBªjØÍf‹€)8SñÝš„öð~8 Ô<`œ,lDNÕ^æI‹lA;ã0›j—XíÁÚóµibàš1üucfõ 0fýÌ•i܉ÙQÎ1!@¿¬ýÐñx“Ÿ B{~r”APðfl€£B‹ˆïg<“¥<&…Å÷:Õ»ì5ÌPÙµÆq_úÃçdÑaaì†ðfÏfïÊf‘Üa£íåusU! ­Ö­%­›Q® bï~Úx蘕< ›NSûËq6$¡ 4;P´æ,p¢äõà8l{½òPo¤iÎÅ6et Ð×ÂÃÖ¸±l©TÜí( oÈTÚîô¨ÐE»°Šï¶¡½7A6ô2®ºÛ³Â`Z€iΙ³ÃþØ/xÎÚ7áÉ&`>i|ç¹!8`|Í~Ó2\ÿeÔ{7­†pÀPœ\Ø ê¯¹ÀTÕèË0®œíÿÓB³ˆ‡üS*sP*o,ÊÚÁ õÀë5—ª(£D59ùV[‡©µ“e¼e›âº4MÅÝ5ƦLN6åe4™nBS5Íœ6çàÁc€jÒ7aÑ+-ÇäFÙ<¾>ö’›àÀ”‰-`°ÂU˜Ã5Ö‹L;8v3§Œ‚„iމ=°u²cšÍ±Å\œÂƒ‹l öýÐ5OüÂîá4N7fOTÊaB¼M‹plw)CÃTÇ #ÔÜ»ïËpïpƒ~p#ÎbÝÃ'N!öúGzšÏbúÏôqï_Ég4¡   a«šØ3F†}ÅÿüŽ ;Õ™—#˜ BZ Ž›çNPI6Y»5âÖMEì qþÆ‚[±ÿsÖïΤ/݋פ[‘ë¯Éâ¦fNŸy€·Ån<ù„Å!ƒ¹bêJ Mtz2&Lxç¡2î&ùC>éœ Ãé8`†·ï¦á'wJ1«ÂƤ–Ã+2AÁÈ˸ä!¯Ç‚>¶–æãÖ\6N0—ß.Ñe4uh¼äø>ôæÂAÉÂÆ ·2í´ßÚ»¹-v§è¶‡¿S-Çã0Í O¬hs ¾ NlAᘴÁyØãÄnfðÖnó°A¡…ýÜjV³%& éänx=¥j"Ô­Ù5Ùœ ÛqàÍ@0ͤÝÚÿn]²ì3¼³e]8 áý`„C`cbXžp{çËyFP!®ÜßJÖ A£;lkmq,Ï»K±ÌöȾØ-SkSËÓÅÁ 'Ï.ú„†<º¿ÎÇÜ<²ÈÊÆ¥©5bHÚ² Cj6²Ú˜±ðÍwŠÝž*Â"{Ò,é(£¢ 7pJ»¿¶"?²Ž;³ïf9´Qƒî› qÂ<·Ä^‡=Î>­´[ `oÑÿ»aF1Á¹”ß.˜ÊÏ™à…­Ü‹f1Æ@Hg:Ç'„8KX3S€6«æG˜!ÛË/qñLé[3eÏe£™SÜÚÊüƒŠIŠhÈS¦†´Í3DÐ^M5níÕpˆÀ(`J¯Í'¿„ÉÁÖ®½„waÏfòª¿aè†A@uÿ¯ù@T8m±ÛÄ@2¡Þ,§YK>ÌÏ8NŸÀÖnîxÙ+給”y±40ª1¢&‰ÑüǬö°Ù†À‹î˜Æ=Öo1£vÌÐË:š'ƒã1ÍO LAa|¿žÆ!Û¶c'œTe rÆ»ÇalF¡`Äs4ÛI»ÝEX‰W{"ü3­¦s˜Rœ1¹.áð ÐÎq‰(ö²î‡é»tئµ 'Ã_Ùdq{Bd#}—¤CWDw˜tBÍÈvLìzeæjÀw«‡ffD†(dÁÊÎä¡ïÀ\…ç·!m ÃLhþ³Â1†À  VNãÀ'»•®G ߟßm2äÛ€[KÂG¸yË\¥$—Ö¦ùrð™—P³ÙyŽ˜ÞÁÈC L/þª9 ün©UΦ•Ùs )¦˜x‰“aœe3ȼÀ–AÀìtEáñÏC'Ã-Çnì,„o ‚ÓÔÈeVeÝøúJ×ñâÖ:¸jìeѺã"K‡‡ÑZR¢ÇDE.¢Âc´éÃþçeÉ^a¶Àý–°×°’65fOEAõ*†Šy/³núh±ݧA},zö½W×w³Í´„ÚÇeÈ„Òý°'ÉÉzº‚}ìC‡‹mòc(iÚWÚkYl;²@ ®Ï‡Ô»bBÍ40¤|JŠ– ”Cÿ{®ž-Át4›þy\|ž˜ 8æñ  1§@’^Lÿ v@’ÃoÒŒÈðjϳN;‡öäûç\Âg`Ҟщ/Cy‘ëÁ´Ç-Û°îÝSîœx›§âvsT4ºbhe˜þ;šN&(,. ‡â)aKà–éL/ É©º„ì³e›Ø˜#Ôž>RŠŒ8%Q¸M¼{JéhJHÂaŠ‘mÁ³Àlƒ3"cA‰)³_kõ(½d•P€éî ×100—á9øÉ‘Ó@Âl !RYHú¥&•Aú‹ÎV:Uüxé91™BHÏ“[5:.Lßµ. /ù; ºØ±ŽCRf½¸]F†Š»¬3žœ¾M¡é#½]3 fø¯µñ+‡\N>Û`p¥¸ºÛÚì•=J°Û!¬G6zPƒfòñŽ»?"[ìfu!Ü ”½F&“ðLJIrVŸ}®Ýó6)ÝÛéΧqdb)á¹áϘ¯PA’Ž% Ü,ÓýTƒ¿B~´N¦ži‚ÝÖáæa!íÙ1ÀÉ9_¤Ò˜iµûgîkå×À–aF&/ÑÂND€É¿SÉ9˜xéYÃÙ‘²6#AsŒƒ0õ k`‚„šÄtó ];”%MþB†c^UjÁpÁøepÉ—€w–³f2ÜsCPe†º 䡟YaZœ®#_aâTƒB‰ÞéAH–š aÝN$&PËBÈãÀÁ2AÁLf!ed Òe –¸[Fn7G™^ƒb¤hW=‹gW0J!ÎÃó¯ùÐð‡L9‰³ûpÓXoŠÌLÛƒïñ;JWŒjC ÅØKqbÑSÈÙS 5+(¶°@‚K>Ú Ë0· åIç°•¸²áIØeÎ(³( ×;3åÃÉ»DX—iк²›¥iFj:SÔ* Á „[žÃeÆN~em ¿Ïå² ÛY¹Ó&X'Bn«›ƒ—c®E†ã¹ch¼%jT¡oŸ`ÁvÍ"—{!{QõF":h°LÀŒ& e’£Œ´vbt4«J< Ð1ã¹HŠBvÃoMGMY2f|\!“lLãz2LôC½º§´,ð²GcŠ<1¯!ù†Ž/g¸ÔLWXGšªèêdÈ07Ú€ÖPa½°HÅ26 .O¥¸×^}(œr¢À±‡WÀ8Õ@r2gÈ:Óº·äUt“VÉ›…VçÀ -š=U ÊKgpçTˆ+>ô¢3Æ2‹o6À¦×®XŒ 0žðÌ‘?À…a,"¥ÙêPú‘’(°²@{ªÀkRfhy,V`ÍøppNæ&!YçDÎ‚×Æ C»º«`f[šùÁ9”Q”3×¼‚|xÌ‚ýÀEìÑ-Èî©Gøñ#¬2 ÙÊÜØxAêš5YMUÛ|zE—rúDit­²ŠF™9M–¥³œ úåp© é¡Q÷‡1J’_ËVŸ8ôËӇѮâšÓÓÇŒÝ0M>ဠ ­ÕÜU³[æd|"?q†ÍNòËo“eO¨Íœ¾'¤Ó5-v;ày@˜|™˜¡ppÅ–‡—¨ÎK˜‚Ý* 5ƒÙ9*Q­ò¬X|CñžùåQϼV7-YéY³§ò#8pC@g`d¬ Q.[õªgqŒÈPåbj®¡â)K-ª€ê†J) “hÐ+”F`© çÚ‡sB;<‹g¦Ì|#ÖÓ`!pÐ…è¨ ˜²[¦y1iU妙i†Ìøwy8EnIl3a{˜ÍÇyùŽx.žCˆ’à5iúük‘}”è©Þ!ÐÓ+òE.[e¥ní¥°²´ß¹ž¹d˜ÎaHìŽÁ·†Z*ß Æë\uMÈ<¨yuü<í)¢`Öù0qؤ^ç–sÅÆé pLEP&ìíK°2Ë£ªò!ËkD«MÉMâf:’ˆá½>ÁÀ¤i¯¨F”F™'¤:Xh긶‚EòìÍ7÷€;y „ƒq ˜%6[ÃÔzê~„ !‹­Ùc’>UOãl”t)ìuÄ£G館ǜJ›4>sDŠÌ¿ŽCøLË®„Ê`ÞÕ©“J!âl„̼Í*| q ,QÆY”{¡td‚|òÆe© ˜—½8e#ÙÍdêý¨ºc£¦¯ÈáਗbÝ —b"K¦dJÑXW#ËqÝ£J¼Úe7@f0U±(Ät‡Iðk{àjp©ÕœñI(^‘©Jš\Æ(è—må(¡©‚<ì1…˜­°"c6à‡V*cÝÓ8¯él^¼CmQ-n……žã2øǽŠhÛF^j¬wú¤;¦ªº!и¯ŠóÖV1þ@º Ôç1Q¡µªËÂ0áRäÒñ»Möø”Cš^Uàüõç ”nQ 8 W®ÀT ÷F¿Ðçc†ôrë|ÚÐżæÃÐ Ê+=B®M‡2¢/íé›4!¹±Ôr¨” 7¯^·[y¸ Žƒ\"\ÌLXƒR^ _ ]`z•UÔÒºT+1ë ¾J (d—­§ p2å±[VÚ™elÒGΫdOe1dO¬ @ÝÚº³ÑYøT#£j#¾2 ‰äßaX™$U­!Äì"-–@BXˆ-rxŸÈ8"üÊRnESˆ¼aJÙá…(Uã%j·CNg9džs”™Ìa£b|âÏ<º£óþîæ¯ ÇðЪO‡9}켡ñïì'Jݪ’Èt‡÷2U/U=8_……ÆÓ‘ILß%n¥t0²rpRCA­7°H•ñEòà|ЇÊÙÐ3+pŸŠÜÆE+ÄlY/.Ó”uO‘šSWEnñtñêh]™Ãª„f݇U)“1·Âc£ZÓþQ7§`\’DáØa%Ôz0Ë - ÷…%ø|e ?÷èúOO ¾®ˆ (`§ ¨ƒrPón™Ã]ˆ9ƒß‘ntB)ËCúK,ENk/"€²§e `pœp `0~DdüÒ3=$?&ÒgÈ1–¢ŒÞƒ¨’uú—ž³™®D€X%¶±¨^™œ¦Ô !+ àÝáâN9â-X$h5EÄ­ÔK¾§Ó÷VN™„©)ûÜ€™»Cåáµ!e‡LžLų£mÁ¹8à%·u‰“¨]b%L›ÀÙFeK»Äå§Ù¨3Â+™M±AnÐ!¿Ä žzœÈ&nuð²là'ÊÂù.Ú$¨\Òlš‰£ð ˆÃ³²>3Y˜T%Üb·VrÖ“ÏÜÍüN{ A©|5|ȱyÆñR™ùšqš³Y’ŽÞ^#…öù1vCTRrÿNǸ$wÏêa,íµÃ/9>áÀwObTs2ëîäÁ¼ðŠ ÄsÔêP”ŠmqSçD)ªwz„(Ï2%=À3ÓoFœþÙQÄ?4Àx_€KÁüãPtµÛ!KÚ6jë(ƒ±Z ŒŒO!¼ àÔXx@± ù(B!«vÃ8Çðßb/Öÿ!¤×ÚàÈua%Y ƒ¾3±’á¶.3þŽÀá­[ªÃ `S·Ýh¡xàu<5Þ-Nl¸ryú@hD^¦w͸Í-Ö£Ç<[«î.މ!ª¬.žM!50À-bY;ÁÂÊtœ>)Lç93¶ò2®6òTÄŽïtñD‚.èrøôÀ‰gÆb(…ö!Y6†,HÈ™KÓ¦ò½žpzrF˜©@ZQ¼% éÉ*ä†ÌU“9%aáìh:;ì Tæ£!ˆ¬ï<¥FȘM:<ÇŽÃ0wN‹¯sÁ™ kÊ P^ÌÔG‚9¦ˆƒ'áM·.ÓÈ5¿¡²“Hî(b îCšŠ ´ªÍKQÞžt&RÞ‡bË ÎÞ¡gÉ÷¥WÉžŽÊÀL޼¿Âʾx2…r 2†Pä¾)¨:n$ Ö‘Nµ¦àÜÉŠ¦¯ªÖÆl­ÝÓ­ÊŸK;ä ³z;© YÞ}×ãm[eŸêòà…SWóÈý¿/òiŸi°úÉÏÂMö¾zû—¿ùðþõÛßÞþäááþåËo¿úõ»\!þª³JWú„7$o2øÊ¥@*ש+”¤„ ’ÃñHÌ—L‡ù1"# …5¡äô3qJÉám/¬j­šëõ(o1ÅÎs²b‰`pzj1[HäFœB—\6›ÔsÔ–NEK^}:Õðôè{)HD˃ ÄK¬ˆÛ e„H5Ãs‘#ÌJ&ÂÃ;ä} Ar‰€Ó×;š/!%j†ö²ôèˆHêÒ€„V)b45. é.žn ÊÄÓøwÉaF³åƒú #„ä°Áš¿Cæж‘.„ Qg`&­!HþJ {Ánp°c7–»gW…vŠÙ½“HAçwN²º3pö膶2€fz¤™a iÅ4µP‡·ëÊÃýeÌnä`t6EÊ„®#.B©µcé~¥ÿ}¨ ‚ bRcŒŠù 9Ì»«¨‡ž6"©xÅYì1BV<4$CX]ÍYm¨`h)K ¦wóPè»1R^S`TÃ,5k…È'–óØ’ÛÅáÄçáö°x [ñ²þP¤_qm5æ46‚°Ü8é#}ÆÃ`?}zÖ^‡?éæ±G@À:àpEáCã!¯J76”å¬;e딜žÊ»çêƒ'ªttUÓ×V˜I1󙇠š-üè ýá¾d¾uóWGõ®ÓQ@‰’ói+J+²—,n¬y_䈱ƒª{í!2•Ñ¥}±=d¦9óA€°utÍRÜF§üÿ(ÒIóInS1J?ýVM€ãœI->ETÙˆ\¶û:‹êb,”áGŽ&#!‰vx%"êZüdUð`ÔûTeX(€[ ß`Áiª—g¯ùí&|w<0MLU6A»55³E4¾Xd©áÁ³bãßͤk®}\æ =Ü£Öžääf⬅}^­$€CÑ [[•¦ZWwôìE0hk7Ž&Ì, ØÁY›‡æ‡.¢þ0kTA„~"9ÔêT‡ñ-\?6p!\€}a,F%·"_Mc7D,&`>u3øH ùæe7ÆP87¡þãUd `4ðº–Âà†ŒJjŒ(ålÞá†àÅMf±ý%ÓiÂFˆI4 .7Ú59Z0˜šªÚñ(`fqǨó2ûðùn-;‡2O´º¦3à •ÃY´ÄwÎ4Už,»W q[ Ð5 C-Ž ›ÞòÖœ= p‹ÛJ#9 Ó9Q4ðÊènÚ*(qÁ–q¶ENŽ‚,ÕdõlÏ€m©ôŒV<×âm¥(=åú ÄÎH¥Ñ‘´l¤$„á¥ãÒ@Ãã±±Ε@|C*B ï±xÇ %œœ µÇð,B"†½¿‰ˆ8Ü;'ó@l”@9&ƒ0“âíÄzÅ»ƒ 4 ì6¤R¨¤R ,5$ÏÈqG{¡. »áùCâµ mxô“>`õœqDR¥­‹È?†ût8mVZ Ô¡“œÿÈïsˆ‰T`vdÔxK€¯_à©$•ú°]°`¼ûV‡ãqwu— ˜ãÒ½èÒÓÛR¡wIetéß'ÎöéÐGϾ¡¡çÁ^µ”AoK¬`ÄÌ ¹Ÿ…Û¢eÁcïÞEϱxoÙó0‚°AåÔ¬/#ï ¢ŒLóDåä<™2(taR_‚˜KüeíÆäÕe7ˆâà°D³|@žŒ~Y‚$Yà›®“@S0ÛŸ•0ãKŽ_v•ÈQw@zs@Ý ÒtpWñ²OÅ&¹‰ë9˜àaÛ R5…ãZ}„¬EÑXÑ¢ü”äÔ£ ¥§¬ò6¾3Ë…‰el'C–ºqvüÄË%a0XO·¸YÎ÷€gí^ÕÀ}rhm)T!'µÓPVvzÇ ³¶&DÏ\]fv"öòL"8[³Pdbœ´& Vr&¬Nµê` õzïŽõm‘T‹fê0«¯«RÌZ,Áf?>×:>NÁ;«'¡TºVReHûüì@%¥ áP"´ ò¬òçýµh˜DU•Y5ö#:x9ÚÎ_ |ubë9^‘øB;ñ î±Q€KDî¾§ËnÒøv©Ó¯Oa†˜º^ù”š¯Ä_fЬ”Nò%܆¦(¥Q•A¬Òõœ}†GŒ…ðOùíCœ!9oY¶qL !KáÀ!(EVÄÇj= ´yï €ð‰œÕ;DAcÞÅ1ì8ã3”g«ò‘‘r×S/rzÃaó† ·ÆþÒ”^ŽØ¢Â$83F,i#)ùè²€ŽBbYf/¬¢t5j¸.Y‰ƒ• 2®du®vî‰Øî´¥(êÒ;KÊΖSñߥ·èÚÔÉZ$?ÞYuϤW R¤¯‹’”äü€¥.CA\œ‹Ï¼Dƒùé`ñŒ[ ªxdŸý²¦Ê2½Çøô– ˆ_@“.²¿Å+R+¡ ©LG¯5÷+ŠWùØòQa–Œ¨)½4/rÌ'Q¶p¤5ï]TÕ½æ™Ó§B·6<çRO@Úä”›7yÆ^ #G´Þœähª…ñ+fÃæœÚ©«g£9L˜8ÄS€°:ó:L1¶õʲº «úN¸æ%&Ta6‹ç_[ßî(ª &ÁѤ¯ðCÀ†&P\ r_Vm$O³¸+ AœŒf«u!_ú$È ±Õ>Ñ/!­$!®7TœT{Áó64NP)9쿬t¡ÃŠgŠb7ΤÑ+GÌ?:U„Õ,Ì£áûåd]$%Ò‚ÌÄ ä¥¬ @ÍTá!,¦—¢„;Jõèã€û§‰¹D×êI˜50C‘@¡Ë†ì5ʧl‡±§žg¯QA@•NrUb7&ЂW½C‚—Ǽê;+ïÅûÝä·$é â 9–Íá>Ù™‚²Zª¢ö™QØ…3Ô“HÍ^šê8؃ õm‚pD /ÿ@À”Pòy…‚®Vº­“Q™¾Õ¹0¥Ó(ð2R94”=}w6T^ÕµÒ%£Óhv^WYFh»\²Sж\²jàq †î…ÂûdCÙ:=üé½á¥¾T|:ê¬_è€ææ&!¹9t‰Çt!1MMd(`ýUÃ.ö"pýH§hï6¹ÓÇÎ÷êÙà 'ÅÍHÍT Z4Š_ApõDU‡M›hdâݲwDE#ù'ù¬Þæuz+# Ÿú…“Š£B§t`nÇn!`­]"›±ŠËL£ƒâÕdÂ謢<ˆ‚ Àø6aeñßïÕÀ ƒyFû²£+†@µ6ÀÖj½l5»?u‰¢ÇÄúš'A!탔lœN°ty9ÔƒÇðIɟ؉ÓéðfCÖù˜†ó­(€EÁa¹€¢bîbš­ì^ÉMÌξò7}™µvGyˆ<¨pFÝ÷r!0 Ôo\Z«ì¤élI¨2Úþ!×fzÜÁY[M8Iªr¾Ç µ„ãôyÙP†Gôw gÊy+Åâ·ä¸qª Yt`aÏqå‘±ì ‡.%‚Æ­Ô܇³õ|h7ÓôßAø›¼0ÁJ@® ÿ·¥…¤.‚‚ˆ„PA3¸2>VlDšÌ0.d …{xG´ISaYwmÂww&8×àœŽ›ï^¿|÷‡ï좘Þñ…Ã,Ö$÷APåadbŒ\ ã”7}´2gP§?º:9)¥fÐ ;ŸTŽÇ GঠM–<ˆ²3«g) %äí“ÅP[4$tÉÈ3Pœµƒ0/íˆÁ‘¶ߎègï>p›O ¬š‡K üÈ©b„,yT¼¦£v>v†@G‹ðÝâ@ßqœÏ°àþâ›/~ýêëW/>¼úò ÛAGùüv¿|ñúíï¾þýïþ‘ì¹õþÝ·__wÞþä§·ÿ?n>!ÎýÓ(s?¢FÂužåŠ@ƒ3!‡æ qXÄl¹È$M{nã2ÎEžÛ’×¹sá’²Qç"ve,æ\„ vÞEœ‹ˆ‰Å²7Ð\’ê9m.¾ãRƒ5ßé4l¬¹ÜG³;3Y8nŠÜ. ð¼fÌþÐ=ìðcrŠ/·”…Ñy¡Ë:Õ²ØrÑyoAp"òv‘åîBrÁVø°A•[‹3µîL¹5X|ƒ)·Â·ÎåB”[‹zÆ®˜r«cQ(yÔ†+Qnóys'Ê`R7ΓËúvMž\äg4Ü7š\¤)rÉ–\tš2?ÅÖÜó¸æÈE‰=µq¡Èmâž\¹ü~^ÓãR6ç…G!7Dãâ\í¬×ܸ •-štQãÚXp5."1ñ#l̸ø\ĸ§3F/^\¢ÙÊ5+.|üâ˜$N–½ Qœ¸˜t½ v9IœšÏy!Äís£Ƌέ+>ÜhEr:\ôÑPnN­ þ¬jœÎ…Û‡ÇhA…Û«·SoL¸Ý3A„k‘“(Áƒ;½m§ÁE›äƈYûΤSàâ{W¸Ø…­ËbÀŽ–w\¸Lð´wþÛqªæô·Ã4ƒýŽa'¿ áApß²ÛÆ ¸o9ç‘•mg>Ü î[ÎzÎbKîÛÛ¹o‰#ã÷Pš¶W ߉O;Õ©h4¨oñÜ‘ ê[ XKÞ˜o§ÃE‚øVãì¢N|˹¬øVÂYA-ôÎÅ”u¨Ýlg¾¥² áÄ·tUÎqµ3;ïíôŒfÐÞ‚’¸˜›ßúçíTÿr0ÞFÀ„·Ó3G;ß-dLAw‹rÚÁv‹«hN•»tù§Îu ÅGt˜VàáV½0ÝN„½­-¢[jŽ)®óÜb®„ƒ»ÓÜ‚sáS°Ü¶)VØ`¹mÎϱ“Ü6G÷É-è0$ƒãl ðß)n›gº‚á½»8O0Üâû!’ÊÅŒ‡’Äh×ùm $/cÑÛÂ_€‡¾±Û’$*En{ªÔ¶HqCivj[6Ëž9˜m¯ˆlÑõðŽhlAÁò\ZÀvC6Û }[ãĖƇŽ}²~¿ºb›Ã?ƒÁç!¼SÓ6ôŸcâÙøkÙ 1/$·ìÌ%˜úQ–FȰ‘×¢‹qlp×¢#[O‰pA›2 €qmóÙyjq![xœUt´‹´ÄÄH;g-¾Ÿ$þR°ïì¼ÜkQRéhÖr€¢ÙCtuëëFW‹^8ÌFÁVk §‚¬¶!q§&ÊÅU‹Z6æþ ª î)ÊY¡ù›(&v¢Zx2ðƒ§¶„Õ §©Åïñv–Ú&>‚à¨Ei þwPÔ6´ åvÅP ™ÏY4Gøãü´0õŠœ.¹>›À;Œ† ¦c hlvfZ”q±NL âLyñÒV_¨`§¥%lᨋ• g¦¤,ÌóÎI vDôn%-½\ª3Ò‚W’ãx#¤ʬԼiÉ"ÙÚâ£Åw,D°ÓÑæ)R¶`£ÍÊø-v)튉¶i³Ñ¢>l¦cñЖ¢²ÓТH–EàMµ=Õ¿èeOó²íd;-ª¹,Œë‚öàû/óšÖô•|" Å,§Wä³½Mµµ^³ÏZäa‘ÏÂù?ú…{öP½òŠzüi½_˜g±.ïìA3·³Îb^B&*HgpÄ<±Hg+=þṟ˜ã졦¼E8;EtÅ7‹ZÙÑÝ,º^êâšÍ¹ÛgT-ñ.ƒj–Û”|aš‚[^Ív£Å3‹Ž5Ä]A3ßw–ÙÉìT4ïü±àòD”½QÌ¢aL±ÜU­‰ƒZß7~Ù½,ÚypÔÅ.ëj¶“ËNVˆëâ–Es<\” –=k¬.x₵,àlvjكȰ2®¨e1:Eìܲ?ÃIÅêä²›aS¹"—E{'Ñ"Á- ·ªôE-ËäpkW̲`+CËš²Ð.^YÑåšVÖÆ&†@Pdƒµ…`•……`dg•ų¤/0ûƒlΪ²ÓÙ<˜¦¸&•GVºpÊN ”²H³”qÅ(‹41¨:‚P°ö›ŠOvç0ÍØéd1¡l²  `gP´Å YTÊ—lö…šœJ–MËlÅWeßáƒîD²Ù \Á#‹*²‚ Ù”ÜÙXdᆡË4XdñŒpVB¤avÙ…,À c¤E!ËB^ (€"èJÈ¢ôü±ø= °6þØâ9° -Þ¢챨©}té0#³3ªÎ‹Æ÷Ib ÉÁHKÿmcŽ…×[ı°làR؆Èûnıô×ËEÆ¢òFßwâØ%sâØ†É¡ÎÅû±Çþ,2ÂN·µñÆj¡‹±hcSõ–©Å ìÁÜ䛊no,6cž>xc±L–VlØyc)%Ô:Ø_!Q$xc›þÎ|Í ¸ßÁeÇÓG[ÐÆR‹ÙicS Êæ ¨3u©&BȰJ;m,¹ÂÐm,vTU"hcI‡ÚƒwÖ “¨ÓÆâ‡áå:(ü%¥5Vd±µ\Xcys„ÿk,•œhwñSåá=rÁËŠÓÑæ…5–o†ærgE]Hå'gÅcRÑ"XcõæYìÚXcY #âÓIcÉWÊLŽ“Æ’Vž¹Ë4Ç:9Hcq=ª‰i,ÉìΛrp×k,ÑMd< ÖXJ¨æ;m,÷ÐËic)!X/hc!açÂm,)WýÕ“5éJ¶7-ÞX¦þX˜ÛhcYÓ@rÞXæxTöò‘8›£NwÞX0*‡N!½!A•Á‹µ§´úÙF;[ô:g,·êíB‹ã°“`#ŒEÖ†ï5øb™˜R…SÆâ>TÛ)cçô§Œ±396 cQHN¾øb‘'$•tðÅǯ,ºXÈ]¾³ÅŽìе ‹…@|Îõ‹+ªX4`·~!Šeú¬øúwžSw°ãQ,o™ð×`Šå«žqÓê`EiÉ(v²åÐYb‘«bâËYbñðF Q¹+sPØŸR§ˆ%‰æÑ®bÓáaÁËD9•)ŠÁ˜ûD¸QÄÒ‚‘^9(bùÈ™EvŠX>'üf§ˆeF½—ÅËïðƒ!–'–] ±*Á´¾bU%™y1IJŽŠ!WL‡&bÙWƒ9:bqâáÜb¹ZòA ³Î¡â±|$ìŠÛ8b)Ääí±lƒFú98b!`a爅0˜eO ¸®é(8b)à:cG,Ž@¹G,—÷hÊ) P€¾{Ì;I¬0v¶ ‰åVìvt’Ø<9;O,„¬.Ol #E›ÈÈ3®Xb!#˜0Xb)À¬,±p¡—&[Ü·N+nþyM,ªÕ´V;M,„týƒ&ò…M,lÔÞˆb%´§D±<; (özìD±\ÑwD±ê‹@q±ºiwü(VëdeÅbíNØA œsqv×EKð³È¡…—¨NÙë<±üNÞxb)TGd­DP%ôåGÔ …ßib™Îª:•Á5|0ÅMì‚Cï4±té4,'Ïȃç‰`^?ì<± -<±øüä<±”0¦ßybÓZÀiby(’M,ðïszŸ×¢‰ÅMÊà šXNŪÎ:÷<èvžX›€ šXì§Æµ ‰ÅƒuÁN ¼ºSß:M,ôJhÀ ‰MÍW€¼¢‰ekLX Á‘PŽÅib釓 e£‰¥î[ÐÄJâ!?î~¹ö0¦‡á‹'VL¹-žXXW‹'V/žW<±Â žX›ˆåà‰…€ÓÒÎË:ùPýh]§$žX z½â‰ÅÙXJžXŽ ÑCÒ“Âìà$c ¢† z1‚%–…Éœ,LÑ8ËQ,Œ˜—)ã ÀaN{ÂÊåŠ%²Ãù\‡6a‰E±@äÂiÜ(b¹Âœr»ÌµÎ;å›àëì銖kâ*·OÊÀî¯ÎüŠ`Û…,–>s=¹¨@ømÁ ß7nØ%rnØáo¾‚ •m93l÷~ൊƒÖ¿n¤°!qJX»p¢œvüo#„Þ0„°ãð‚…W܇s£ìt°Ã[zƒGEÙ,Ø`Ç!ÍÝÉ`»/f\°Ýñ±A ÒâmL°ä­eÁò{ª‹égØ‚2hy°Àâ;Ô$H`‘¢&KìÆ‹ua«lHJ£°LRçtÅ{º“°nຠØ lü¯à„:gYô¯XÀ%´`=³Š÷ù+E"ÈeÍ»¦Ô¯`õiZ¬,‹ ¼*g[į(f¦^÷dW=·+ÚWbќ꬯(Íjµ:±r0Í_úç+×(eC©(_£`‘vÆW\EÆš¥á+¯TZÎ÷zz¼t¯¤ýžhc{eG쓽²í ºå\¯—c\¨^×’“Îôk<k‹çLÔ8»?'"ço±ÆFò 8—:!}›©˜)(^Ëj'x%=¨âd”ñžhð»ÇÅNï:œI6è]rgÓ’³»‚«–z'wÊï.nWÄœ\¾Á{€ãûÆìºDNì š^àáÌo¬®Ó `‚ÔÁ˜÷Ì;CÑÎZþi‘ºB($±²Vw´ ©+c §k½,A æ#¶3„cÐU7¬¼±§©+¦1šß u…cYDÈnÁáEðÒñŠtAéÊ :´‘¯ä”Õs³SºÒiÀ½¥«á:œÊ—Ý)]—Ë”®°”®°ey£t¥ËÅ wJW2&p10§týÄõx¼ù·¤te Æa§t¥eu§tUn­ôÅàÊ”ÙÛ7JWfFàÀ¥+yxpQºNïìß]q¿ ÒƒÑu„Ñ–‰ä#ºÑU«Êiñüž7ÆÕ•Õ;å Ô=©ç¼Á艵 te/.m'tez Ú„®L Ü BWf1X±Þ]—{è„®T?Œ¦ t½,}°ºîB¥—< „®dqhýŠÏ•8óª ®¨%H¦›ûâs½°Tl|® b–>Wѵ±ø\ñíì|®hË@(„®è&"o™zX§–ÌØÙ\LrÖhÚ7x¥Y5Ù×¢Ù¸\™ó`¯…“¹ rªõŽ“°a™&hçr•Œ4³Âôñ0bâŠÎÃì‹(nd®ÊÓ±ýÃû„ŽX€Kl®L3åtEçŠd `sn‚̕y^q¹:”¹ö452B]Y;k÷%îƒÅµ{‹h¸v;‡+ id8RΠ;f0¸öX.k#pí¾HKð·öî§®"ȳ‹|coÅb °§AÞzÂQ<Ò"o%Ùä<¯¸[A1D çnQmmQ·’“¨_·ž±ª‚x[Oæ\‚´õô²ÞÎÙJ€‡x\Y>ÇòY­êZ£¨‰ûeglåzÂ(’9a+[«ÓX|­ÕqR;]+kí³/¶V¬ýœFµ‚”²åk²V¨jWkå"ñsQµâ{ýŠ©5*¢V®‚“Æâi»h½"iEÃ# —ÁÑÚÐ.¹Zk|çg…¬·sѳ ÓZ_4«Ë "ÙÉYÓ=sq³6-¹íbW=®ˆYÑýMè¶ÓSÐÿFLç´¬h"!–yce§—ôpRÖæ ·'+º_@=¼S²B†4WP²Â7NB?G3»Ž±²¬ó±6ïÒ `ºÿ‹ÖKY„,¸Õ9ëbcEhU 2ÖákÃï\¬ÓC› b¾úN0±ÏK·‰ˆQä̓ˆàc„ßÁà p2p k`˜ƒ…uz;HXñ=N$¬LËãÞ‚„52èÁÁ:Ö¾S°¢)¡§S°N'ë ÖéùÜ€¢¬ÎH({ƒv€UkÓNÀJ!y°&2eæ¹X™ÎÎzï‹•ËU#û ¬˜Ð™Š Ökl ¬—CѪæ¦/(X‰ßGt§`%_3#NÁÊJ(—Âv V•ek½¢`¥ËÅeú¥¿“FÛ¹¼òÔ"YõѰNO\q°ÎX¬ÛX‘w-žw¤‹É<9#ë²L'$[ô«sƲMξŠÝX?ÙÉWÙ…X•£#÷êôÔ TU²ÌÝÄżªÖ€–·í°k¨Á½z©ëlä«t¿ÝµPÿ¢®`XƒÜ-ÈTvU&ñ÷Þ==7ŠUW¾N[ï§5t‚yU 13Ý.êUJÈK³S¯r ˆ ^å=Ã1têÕõ}§^eB—ÝùN½ª^Ü1õ*ËWUl¨FšÃ£È ^…H¤E½JWœª—fB¸Lpù‚yéw®ãÈ[lPDóº˜WyE¥.âÕËñ*‘û0¢;ñ*…ÓëEnQœx•¶ #i'^¥›'šÕ.ÇÝÎà]…€—¶¯2’Äu;ó*1 þ‚y•¦aä+âU–xdA¼ æ¼Ä«*,–yE¼Jö¼ô ^Uq;§E½ŠÜ<çN½Jî¢ûzÆnA½ª”~;¯¨W‰`@Ž(¨W)(¢Z=ªÚñ*jhzÒ-ŠÝSÁR¯b‹æýã‹xP¦ù‚x••6\aPªS6"V•†*Ók#xäÍwÞU”=¨;ï*„,ŸÉÝïè ^Ey†y¡x•$c4ƒxfƒx•¸ ;ñ*ÙxªrÇž³¿¯r7ö¹lÄ«‰åZñ*ZZ«;¢‘ç*ÜH0^ˆWU·:Ê"^åE7¹Z§8¯×N¼ ¡NæÄ«©4o½qâU ›íÄ«¡ī܊À‰Wyà䤢‹h5f3 o–øÐ ^]‚{õ"tòUœyˆ UMÄ—rE¾Š’)óYk«ì±K¯^ùêùj N® _ }ܹWS=í*{„Ãí*kX⵿,ÑÙ”k¦á‹¢‘`]eª(«¸¨æUO¾©ù95g]åoá+î´«ä±Âh ÚUã´8fÄÙÙ›¨.´«¤þ;8vú$ØCЮr,yéx[<¢Ò-pÞU|%K]ð®B@'gç]…Ò ^¥ÀW ²7âU>g8sN¼ÊÚj¤5É—Ó=Þ‰Wñ†•R âU¶ìw­ñ)LPöf¼x• ,–s èì$²‹y:Ç®˜W!m1AIW¼¶¶˜W)azg^åñHtÌ«„ʱÌ«¶ˆWé[²ôéÄ«ô>ÉWÄ«•±oýB¼ºd‹x•SÑôEGõñ¨H6¶¯B*•râUX¼\Ä«ÜD Ÿñ*¥|CA¼*ª¯áT¬b]ȲwWÌ«DϱÜÌ«À~ˆŸ)’Z)ús®¨W™£å3êU6?䤪TzÞ÷F½Ê€%]d3¸‚êo vÞÕ‹ÐYu¸2…¯p*êÛÝëÔƒg#™%.¬«j(O‹tžºVvwÎUdo‘tÞ)WO%ãê)Xõ"\ê^¿â[5Y»ª´  ÖCœmuÄ‚Ù*b¸sߥ³·(˜VçyÅ´Š@t8€ëfˆuÄ×Ê*,î<«ÀZ£¹ÞyV‘òB³lp˜‚=èe2@¸ƒdɹc,ŠUÀéÑ%³3¬–]¸àŸVñ}r)?¬â;:©v~UrÔÚ@zU€Î_X—p-C… mëÄãjõºÓ[À½§ t“üÍnUÀn°ô³ìiA"]eN¬ZN®s½±ªÂ}ȈœT•ë©eqª‚¿®ãšRµÁ£*0àèÔ_­ tE¨ !ª~Á§ŠÃâ½øTKÑ ¡Wtª|ôYdª¨¢í)Ô5fs*¯¨T+Õ~.&U¦¿fYDªˆÔÙ¿ñ¨"/Q/,ªè2ÑÄ«ä<¨Àr‡\(î ÃDP¨bŸI¢Ï-Zœr'PEO"_˜ó§²Çq‰Ó§ê½ÚØS6É\FÝÞ€A MÜ©p ¹z÷FT…(KZÎœŠæÎÅšÚ½»o'MEÙ["ÝI‚1»…bcL¾%«ïQ=ˆXPñìÁ— V©è¢KÅÝ‘™ÕÙRq÷5ž—Dâ0i1¹š"ã&>D¦éYŸ®c1¥²j>ÚQ*dðU‚'5Ú‚ƒ&•µt¬¶±¤r9ƒRIêjôtŽÔâíÈ;G*zY|ŠÂ`1žVƒ!ÙWÖ •üi.~T®á,‰NøÞƸbG… í·AŽ : t—7*Γœ+5\kdQ~fTxPy”EŒŠ–§zM‹Jœ Ί ~Œ'EÅ€rçD… ùþ DÉ"ræÁˆ ¾èÞÓ#j¨!*¾ƒ„Ä QñøƒNgС–ÓñÎ$‚žè >ìõR/6É-/*TôaÜíL¨Äý#[ÞcÅáÕƒeɳ_± ¢z,¨øª AÅw´–쨹ªíxQ V×1 6škT”5¼cÊ ºæ ?…®Z°±ŸšŒ\ttaZdqÒ¹O‘‚¶sŸjÜt¡>­ì²¼0ŸÂjqM|ÚDr³xO“Ï–N{ U¨éŠõtpùë´HOõ÷ÂyŠ ‘·»Qž‚DèÎxмað›r±ÞÓËš¶SfÙiw ‹sfïºâ:5ÅÃÄ¢:u¨èb:eGþGD§\,±^xN5q,–SûJÂÎrŠœóÜHN¡ª\À9N •)×§E~K0œfŸ•ƒà”­¼­^ñ›LqöÅnŠØ¡i Z‘›¢ûçH‘›ŠÊ2¸MWkLAmŠ-€;µéž²¼8µ)R‡¾v² "Û[åK.nSäÐE =‚Ä=Љœ’ç÷‡ôŸa51twnS€ 3Am„IÁlŠ¢x«vbSáp—‚×mÎðIƒÖ´yƒÝÎj +4¢ôŽÿÉòœ7Šà{ׯWØÐ²‚‚Ñ%A`%ƒÐ”´!g½â3mÞª b0#ÁèO)h>¼0µÈLGCHÈ'Ãp*SðÑ8Ìj1™B†!˜L§Sé;‘)8 awS¤°)š_˜ÓJk¡fwÓ1Ô±$¦Ã£Ã 'í^ÙÛ)L‘Y›j[ ì„éÁ¶Î`ßwÓiw¾Í &íNZ²³—YÉä‡ËF’7Ü¥ëûF]²`.ížT âÒîÄ ;o)`¥U\¦Ê·6yÁZÚ»“–v_`68K»ƒ[‚¡Ê]´ÏJù‚÷“ë@:aépÚîà+¶-ø9ƒ±iµ¢•˜ˆàwQi©›*|ÓNW:œ\&ØJ‡¯§l¥Ã—qÞÉJ‡Ç¶ÎU:ìèT¥QþܘJƒ°'ˆJÇð_‚§t8”⊦tx!2XJ±Z;F^”‚5+W¼8J)ËeQ”rŸ‘C)ZS0&v‚ÒyYŒYA¿ö3èIÙá‘Û;)¸ rÒéj‹›”ÏÑ×3YԤɃ˜U53:/)®„Ëëî´¤A;»XIqAl RR´œ° o'%E^´Ô™OJ] AIz9ÄÆH:¢‚脤C%–`á½³‘ë(®S±‘ލGÉh¯Î?¶s‘‚ðƒŒv!D¡e^ˆH îóš‡üÇ™.4¤$ÄhãÂBÚ‚±“v_Çyq "±(HM æ·ôD¶·§ )BMråél¤™HHOgfYT˜=®j£ %V…[y,€®’39³89o¦ØH®(H3og,šg|:ñó"Éž'\CwRñCñØ#X÷œO¶ùîä£àiFfq¢¤EJi§íAz»S¢|Èõ´œy”1Q×Fè %ýaµY€(ÐTü扫Yð¥Å;Š Cé²v´"ã—òåQCP²ž=G$íTF2ìµcz+8GI1Ë¢ýØGyüýŸ)Gÿ å(Zby ¶Ô¬¬€²ÅÉ ¸´:íÖ_:}Ùtd©¸ö’œŽ–R)X¹r;és8ÁP”B]5HO‡ø)&q’ P-÷¦eFqç<C…¸/;%8‘s—¢³¥L(A˜N@DÉpVpD…—õ[©á²HfŠÐjìøß¼çùâ.ÙÈÇ€F'?K¢Ncú *ûzÏ`çñ(ÒÈdÅÓ /ðàzÎêÜlžfÁRµ—Õë/Ò¬lNjÞ@ ;ßYhå7”tÙ³qá×ì¦ ý(Z¡)&¦• ‘AÁß|¥h.áŠÈ—˱O­N[fÙÑU©5]sÞÁåÃXe v˳wI ÏzÞá'×â=W» ‡«…¥„ -ãé$`Xm˜£\d‡A&è{"PÒZ< ËNKc0 A=ãw<ã|°Ñ/vI âBþq €Z@c[¬êõó 9ËeÅwf!3Þ5 È13 ÊÝwŒbX4zpYîZ´Ô@ËÊiƒ©háµ#×=œG k ¥ÈW„0 ‹ ( ‰yêö}…ʨZ´(l±ÄOŽ–!hn¢Ã¥]9BérZÅ™3kìH$aŽ¢$Lyð,.AÂla°ߖ8 >âûNuÉ@)èØƒ="–ì»`Dû`1..Œqý¹\Yxr±d_û †<)L6ÇC˜ïá$~”ô®í@SEA#ªúTÕfíXøëSBŽÎ}Jöˇ¯b)I4xOoì„Tˆ8²˜r‡êá¸!¶]ão“@èóáØ~.¦¨•`޳œªo–R6s` }¡â°<‡ˆ™‹ñíçØæð,W¸&l¼+ ÅíÄà3pQ22@T}Ù®Î̊누!†¤—ÄŠ‚4"¦A·Y´:—Y@«vÔvÃ™ßøZ¹ð â˜HQZÙ;35©,èê ïÄ·ákЧsLu¦$ríúnj‰Ý¼™~ø¥¿â8¨ð~ך¸P@;ÀQ8S¹}Ýaò"¸%o!fò5ܘ ã;†v À®QŠƒ”ëÑuðNÒJMwÀ‡a!^Õap¼–ëg»C) &Àœ ²ì -I€å{f§Ì‹¬zH. ¢ZÅÙžOIRR† lI¼‡îu:ö× º‚|¬¼J°èœYR–ŽÈÕ¯ºL%dD9ðKI‰™ÝŠ ø–º|Šc˜b~“ÈÔ¬ÄÙ$L3)¿=ex'±v^Á!‡g «d¤åA+Êrô;÷ÔÏ,³0KÈê_ׄÞ]£ÈœNâÿ•Y·Ã@iÉ‚â9bŽ—xCï›\¤…õ!.ëÆV!HZ½øX¢üçûF8 W À €Û¦„üк¼:äpŸÀ€ËÒ` аU7¿|v…%æµü.Á—ê$'ܨŽçÓ@1„"¡˜Ãû›_†')†¬êëÅŸ¡U±Øç• PÁwéSp­\.{úÊ«gÔ!‘U:ƒ| :j!"RM˜K¹)pH¬¯eMHg „`q&v,‹J\ê,K]P–ÁÆ ò\(µX2ex:\ÚðCYîIdRÙk¤ÔnÁé¡Mu&÷ÄÞ/€5û#;3í¶ìbñå§8s9>–’e( «|}V—¨UU÷¼l‡%ï8öPÂc­.ºy¬ –Úô… ‚+ID\¨YbP£ÜÜ6ÙSP3&›bu“œ"qEΕU,¾#a 1~^à¢"iõˆák•Ó¯=Ã$ÅAc¼[æ%{ó#Ô‚#,\Eɲáóò'¾u(•H&½„ei‘–ä)!mN¿&ü,œpT‹¯ä;äµ´ï©ÅδY–dœCŒzEKJ®âH ó±ÒâE­§G²Ô9T3H_H]ÜUDJÂæ@âù cGE)l˜†5$=Ú)‰ævvMî·­ïC'¸{ ½j@8áQ„È 4 Â8,+&rÊCü+BZâ§ ˆ‡‰N“‚ "4‹…Õ|+1Æ©é‡Î´ ä›gx”!¬^”âE"éà'^~DùiP,ª¨u±±_äì‘`vâ°Œyˆ½ê}fØ„³3ƒöê$n¹8$W_ò&³ ¹ÓNÿ¹Œ•Ú„ðì…€›‘¾¹ÈTAÀö> ªß<¤Ì—]íHì9Ÿô=îâUùØL™ØCœ*N÷œ=ÈÄM°n‰,)§Þ#h°:·á ïèP#X&` ç,¾ª8¯¡:@R1.ðHÒUN£ÙHÄšNÿXÙ«8¿:7ñ¿wxf:]<©¶^Þfs”OÉ»+Mó¶ósËK¬ ·ËÄ‘vôž6¼q®’Ñû¨~¤žFS™h¦X¢¹'é§yEIú˜suò`ëб”$§X,eÐLÄ1²fÙ×yÊ䩿AÅÁ¨^·P¹dHËáyd,­‚Û€ûÓhÌ´ö£C )3‚<"GHtÿ8!ú~%qøU&$¢úºM̤7W2òrwµEã93c ¿G\½EI:¤FÉÎÔT!!"}¥¾óÊ@8àDC¶$nÆ÷xø‚朹® ‚Éñõv‡ò!ç|Feí \M˜©Mp'@Ê@9ØIrë $- –\à– Cp® ˆ”ê¥&ªÆôšQ;鑳³˜±Ø„|žÁû8ÔÁõhÒáæ*3ÌÖ­KL»:ñlæÊvƇâ; ÐƧ”œ-ŠÒQ´ÙГ‡]Û1Ùœ¹þÝÈ.É—aEz2>&Ñ« qc;Ö)¡Çb³9šHâõ&§/];=ËŒ:{îÆtóŽçS•ݤƒ"Ð<DÎ3ûV3òpü$+¹&z.Ö…–¢Sï\ÈÙ¤áˆÆ6$Àb+à8ûØg¬¤ð úö,lî©E7Š–!лœè"/K? “»{ê¶wMYMç[õ›â´©Ê\ã¡Ç:”Òby%´…TÈ&¢íqµ`ÕΘ•Ón¾z4³ Öð%—5äæ”“´mµÆ Î|O)¹|@ùA~ X<Ð’P¢-ÎÆKÖe‰†ä‘À= \:ž°e™Îy9a²)Æõ¸Tf !©r |¹7\<·‘“4´¾6K ¬3¶K¥ w›ZPë >‰ô ¤$^¦”"M ‡é5l#ÅŸÊï¯=µ`ËGM^ËaSl:œ¢3šjüÕžŽ«„ÔŒrDM øœQ®óŠ#œA0³ÏPHŽÐ+‚%A#ŸÁ³„a˜×ZaNìB©bÍ>Ûa–å2§÷!Ùà÷Yé[V¡Ç<TŸl­†á@JÖ9›·Î£\¨i§º§K£äX~ŠöYT¹ƒNÅ‚9¡}šj®jCW™tH8áâzÎÍq°K èÙD¯$,uçÓÃ3ãâÍ,+K?•SS²xÀÜÌ%‚‡gÅž‚M G‡jv:õ!­}í:åU<°Øúº‚iÓeF ln:”9âúp§}†³‡j;“ ýT Lvò%<ûésBrfèî ´@ ›ô>׎Gör>›-8'¨Ðy*ú§De»óï`O_]¨hºÂ›\tÉ‚5ý…H¸zcм_îKiuW+vZ½‹wÒº@Ë¢\~Ù®×x6X3§¨j哨ÞG¶R|Tø;p¦˜GÞ˜CuÓn¤bD?½ï@%°R/Û±ÅFæóЛԞÍr@3E~XO»+6Z´£-_6'ò²Ýl"6ê£áã0Õ¤`][Bç`Å´FcÆ~òž‚ÓsHô`ÜkÛ.{2ºF7ã’0Yli^“T¾FŽ)̇Ê´q) ¯g¬T -k‰eêáY­6·t¤,ÒNÏ@<´ôa½~–DÚ|T¡(e!UoæGÐx°^?T‘BÖ™ÅfPüÐÚ4‘‰¡„<ðÞ€Å">«3\<´nªLÌ×VªJ~¬ƒY(­ÕxÙg4Ÿ\´W›©Ü VÉãUt­êÿÁ¡jð%aI¦P˜"q?«§MI5æ“Çá{’ú-6a¢‘~Ê:á!†–X¹ìþÞùpFŽñqx¾d×Ë¿‡c´1;Sés¥Ó )ÛžNoòÕàfB6àP*AêGƒd+lžrT‘SÆ‹Ë)3•å}²i­gŒ5@rlw/M@êÛyðF úyYÂ+WéÅÅÊ‚”54ä²i. aÿö9/D4-v<ƒýuj%$%zú©°û¡ÒåÉúZ“\¶:w)Ê^ô0Òn?BÂÛd¡éÔ’,IÛe/p’Æ“èõ•]$² Η{Ùn Kêê!@†èÒCµe²œ¿¨~H ‰ð?ÀŒòJÌë±cqæVQûÏËÇd/> ÏY†Û„Í‚ŒøFº»¥)Å=»ì¯±Zø&Žñä"#Ó³Á¬(]„è¶§z'¦21K õ¼;ƒÓ3ií%á`Òâ)8•ªŒpJkéxn§<ð…Z!¡³Âm꥕”søLà—‹e€„ Ö2ßo-4Ô#-RÄ›Æ\9'QÀ¸J29¾8î‘€ÆZþ‡HÏ™i_}es>®â+tS:=1ι6“2t¸$1C’„ŸS:=b8ˆ¤ñ(R( ¦'ùò<%„ÔgªÔŽG¬ópÄZnQ‰CŽ’ð¬ǛK&_æIªÂ•G‚RhO‡’1+™NÇéO@²Ö’ˆP äô ø2ÇnÊ\II@÷’}dzuÅ!ÁúVœ "ôÈTj¥Ç¶g€‹7ø°B8É׿¶’£ÕéÑÚUr´*E —Ä‹@÷­XUƒ¢’ó¸ä8…æc[r’Û+:ô°·ªXNð;Ä{sÝg¸Ç±P®ôÓ¡)´z9ûÒω-Ýi,õqéдD ë €¯0ÔÊÞ&@KékO‘ OE—ËÅ5È3<0Ḛ́­|„Ç<r’4vˆc‡TçSeìŽE*4°™+Ä«„Å7Úˆ gIáhΚ‹×°rÀ€à©•= @LLÂùCY!F@‚—¬Ó¡Ö®Ã±¤µÅÜ`pZ12iK†L»ÃQ°É³É, ß{¸I‡¤GÈHجŽÏü'3jlÆ…O!;/ÏJä Í Ô‚Ó)°ñ „ÿ™-–Eól8OÎè*±® –Oª@Êcag€¯²²’މ|]]Ò“à-xVʬf²MoŒ, çÚ‘M/£¨g9ž€vyx²ƒsJ[¬+Õƒ .By: r²!üp$àžGD(ûÃ~Œ­jrœ8°·ME;AÉ»§91^ˆ’ŠÀ‡ù%®†€{ížF…D³d÷"'‹î¤œ%¹Ò¹ÇZBžÖžLl!YåÁ.‚ – ·ŽdGIS5w4;ö)ü!Ç#oP7V$qJF8Κwûó:´ˆÖZ¸²ß¹û:´¬,2#×½U ­¾YÄ=; nAÌbVå¿iÎìeCâ?#@\PlDjõ.ÂùùG_‰Tïz ˆÁè6‡¯iˆàŠ!L¬;O˜?qh^‘„©§-ø9ƒ°ôlĪC2]"ü.‡fÈÿzw:›"¥­ ¦•Øö=µæ-¾à­NxØó6u*ÇÉdØto…L±4Å£1:'€lß—‰Ó®þs%C˜@ ”<® íÝQâp4Θóˆ/‚'ù¡ÆV·?½»‹ø7d)8U¿±±§:@xððA.ú“Vty‰€mj:â{O¡hå¿ÎHâxÖ]è °p&fÿDeGìz¸’Š9}é"x d¿:”÷RQU;Lì©Õ˜°k‡*¸ œC´#ãÙ°Ëj„@|Ì’G”J³Ì«çÛï Èé·¤°kÕBÀ|2‹,‘«?Ç*øÃéôU”WÍàP«þ7ž½ç‡ï£õp˜²3õö«Ù'€Ä«•ZØkÈM˜ ¡ZÄ åì†<"ùðp.L‚?øJ»\×Ä‚Î!º¹©ðãT–Uô’ç\KU„h›€”^: äÔ!¤J檱ّR«Íî#‘°@–ó Eãé)ŠOÑÈ;þpLÅtI¸Ü20³ùÊ¥ì™g"YŽ[W`LÉY½)Cë7Ï †ŠÉÃê~˜Ös†„t¤–›·sÐqf»T[1NŽ¢—ͦˆ®ô*:‡Úy’¯ 9+§V¾l¦vö{)¢‹ò–øšáužè`÷©Fªx^bš`šö`«Jךö+M{ðÖ»@ì¼°ž¦K²<@­Hp½çáuÌäè%JšòâÞ`“¼ù„q« Ø¢9® öÈßj…CiÓ%a“ Ãb±£¸?P cØ’»ÄÒèô7Ib_yf·Q³cªfGEpIówË~{î9δö$!¥©yYU½‰ êÖ)‹÷JqÊÖMç „«§› ~½Éyر|xïIeˆ}K¿¬ÊÏé9â©ÖF„ Ÿ—E”ˆäró‘–„„AÀáë#’û«Äû¨bд˜¶-‰(Éu]—ûÊòúý!6±ãóá¶S× º÷1Ũö [ Þg4,ÄžZ ‹±Z•¹¬k"ß=^Pi´ä¡H]Œ¶ý¥å刧_=Š…à‰>FB‘ð>0tÛÎ ˆ¨i蓌¢§ô§z5r fð¨tÔcªØuΠæ^¨r'‡ÊCÎŒE9˜}igT,³Ä±è‚ c‡Óss.‰Äõâ6Ñ?ÁÐ{ÆØÛ™†`w4Vì!ä+ ä(Í7_¤RM¡;‹"$àžêq;ŽDiVþ#êx>mzè„UçØU š>ªŸ*6ñɶfXT¤©ò¨õvÁOÑI)W½•¾DüZtʪÆ^€ÐueÑ{ Iõöɵ¦2¥TôÙãs³)3ÿ<¶ÌSUnD;6­ C†F~¼òÓ[µY‹ïh--1û/a´z"ì9¼UŠT&îÞAð«K ð$y{k;1««®ªyk“ ÷8¢Ý%MõÌ¥‰*˜êÔ^êÊ*ZiQ{®bä8Cð¸óð5æðfBTähðpóÉRgqÇPãžK½dõGÚ4#ü]H Äq4d”3›OšŽÄÅC(Iz?[‡V 0àæÅdZ›åIfàâd\q =º¢VuÍ$È$YØ8±rhaô5GÄÃA`C÷°/¶2QV•(“_}:•°CÃæºÉä©Rè)˜žHžSV! QUûŽ{TupkœˆŒ¬¶U!öª“è0Íá 1„t[ø'$ 0ÏÔ½O’Œ’Åûy¡tHdë¦/ºÔÝ€RMP€¢V@h¦ŠÞX•nùXÅWƒ´I_½+p@@”ur_{ :/N Ì!Ý¡—!Êt·‰ÁéÕŠ[­G¢Í—ó­Ž GÂÂè1„áYÒä0„JõkãË$2–iãrÁñçâ°DJ9Ýxñ›9UZ\6Úá)_¥|U€á bDj6x!F„\Þº‰ç¬&h2®w A’*Dœî13ŽÙYäHsñžÌc‡¬0Wo"h¬8,•’•Ü;æ&%0†ÈNègÝ$X̤FÂõ"=½¡ ›$ ‚tñ÷þ‡ !ØX!2¢!½fŸ$— iêJXï¸F";–˦éÁ6)BÍ\=­ÂHÙ”ì,‚(ƒy+ÍéžDòÉ‘89€}1cµ²´Î&…ìUiÔ_ù¥Í5®±wÙ3Vމ3Hâå¬Hó”¬%gÅÌì¬jãéêTðHR÷ˆzˆwJ³ÔÙëõ1SV¸÷ÿ±÷®ÍqGšð/àÀGØŽtê^5ú$B¶_ï–B’w±±Á€@PÄ.ZÒüú·òÉË©šD7MÝpÏ„E qNºfåõI®Ã¬YjQ2Ñ{Ï%¨ZÅ•îû´8MMK:ó›Iv^üÎ!‰ÃÎàJWdÆ‹‘Ò'a¬w¨zEO10·u´JÔ äÉý'‘ì(¢n}ª¾KûÀkŽfÌmAñ–EiŒ.À¤D™8Ø_Ê©¢JìÆTæœvŒ9Mb ¼‘,ŽWÆ\‰NAÏ'„ßÔè¢ÂÔKF}§£2h¶ 69Åz¹9¥Rò´Jí p:ØD©Ö¿®yg ¯p[­¿.%3±ËSvju§Âmb{iäy$«ÃN˜®$)T‡ îkEë>›#À—A… »i-„K‚ÞRüº ó› *N*‰ºéÙ.OLœ1Kª rR¬§Óœt…‹¢°xñ³RÊ\ÛIn7œU:Kl!r‚`Àô 3y¢ØÆ¯«Jáôf9¤Nœ`¢&~Œ³‰QXÃE“‚åŠ^j§J~hƒIL!pÑTaƒ>ìól8Œ\†þ!NR uHækÒÜa懲˜œ×DGˆ¤îQ›/" `ÖŽ~ÖÊÙx g¨g ;ˆó YŽÊ@}Ïæ³rìH[‘¿ÀI@ÆUë”yÿ8±G诗XÉ÷¬¼qRnå%"7F¥X¢s¨Ú|¡”àï$!œy>¥ëÆb_$Æ(ká(Ú"A°nˬ½X¡¸Ô>i‚dC©åÈÍÅŠ~Hv Q‹Â(S¼P%ò ‘q¼–Z_Q¡áø`fÅh ðPøÑ3%ÈÉ¢VRrÒIÊÂè[^öÔq¨!C !Å«qV6X~BÛ›ne89¡=éÅE·0l:Ae¸—%ýöX¦ðmáÒXËuÙ ’T¾Ðyã“ t©I£¿Û`tŒ,´Q¹ x|‚JH&3ÈìµJƒj$F›CŠ78Á©)r‰ñ*2¤àC·+ÉDÁAØcJ[@ §“(|IMB#Ón•êÓˆB‡$Ï!I•…P&Î@ÏéeáH€›80ÝŒÄY˜²¨|R•±™¢àÎÌ„ËÛ‹ÑÐE½#7œ€ÂMzƒ¯‹iBæ¼yB€ÐŽšW½\|'Å@#rQÙ„KçP[MðÝÄýg勾À‘d¼BXP”$^ªÿ\ê¤LÕ>Ôh ¸h³àVaƒ —Êå‘@E8V;)'×§å–'G’—a«B¤e›X·Pï&[¡'¹œè1lq²="¼¡ ž0(&iP­I'!àüir”²©QžlˆZ×èÌ/D¡¥¡²Ë° ¬Cé·Vf 7•¥'{ Õ‘ËÓ$ìÀ(-Ž/fÍQ›º‡°²“xV¹V m"ø•ÂRcåÕšŸƒI_<+)Ž¿OsQ1XÜkÐ(s ¯„LW=¦ùÁÁ]\†¨”‡ nÐFQ•ó§3Bs?HÆA¤2qgyŽ1'šíÀ7‹(ü¦ï•”bÊ@„AVc/H• » ¾lÕ&ɰrÉàŽ J: íb0+@¡ëí “/ŠÚ€Ë›×1&‡°Á25áwolÊÄ\ÂyJ”Ʊ«?D/Îe*ì´Ê?4†ÙsŠÕäd{Ô"Ш2Ý'äh”9kÉnÈDr°M:µÌŠ[¿éD,n"-àMÄÒÐÇ=7Ųg“Ä~}0áp/”Æ9T *Å’&ˆÔ$4žòì\õ0ßQõSNy ^CÆ#„0xiÓÀFûE VBÊn嫉 ˆ„î$`ƒÈÌ#–FÎs×È ˆ²-#Ç:ᑪçµþ’¾ˆ+ž¨ˆÙITeÉIµ©ªëš:Ÿã$°:MœpHT†è§üÃ(¼bM¶£! PÓä‘E·i:*ʬMG§˜åÎtÔÀ…™&×CÆ ÊtÐkv™&Ÿ;hc:J·ALŦƒ†’(Â4mr½`UF%ÌÀð¥=å™8~‘Y¸ôžKÓ[rqZšípl}E–&cOF•KÓfn’B¬¸Ò” ïáÉí–<©hÑ™ ,/€Jgñt)m‚ŽéùêFœÚ„ý!Å fHi(hiF”Κ¦ÇxÒ“xèà¤%ïtF“žÄe`Ò“¸y°¤'ꛡ¤'Q i¬Ü"Œ4]œº$(Ò…V9ÌÓ#»kG é Ë3G 3„ô$Y † ÝÄ“² ÝÄí§øÑPafðhú! ã5î%ØÛ°£ñ”œ°…¿qÄì"r´Xè 8:svøŒm„6ÚˆŠÝÄ8¡`аº2ÐÇ$&W{J$cCŒž 3`´Ñ/Ú[V§ÂEëVÑ¢ÜíqOÁ¢IYB,™bEO°B *´Å˜R kÅXÑ BýŒ=!â4ÔE¬è 苈õ°è}r³ ‚± EÜ_±#Z4ÉYRÛ9ÞKp! +Ú+þôMŠ6üŠÝ ®r¨XÂÞ"N4eÛL í€} …†&š2òe„‰&¡ˆ…‰žæ® !³é >ö%:×’Ãߘ¥ÐT9 Nœø ¶|"Ú Ø€!DSy΃€hb[B4àCSˆ"·:xq>+:4qsläíµÚœbC{©èkÐÐD€˜<"C{ñ*04yå³F þ6‰%k„…&É£%3ÙߕNJD?à¸æº· mDÅ„¦$ +&4¦H$1Kˆ ×eÇQì#„¦' 'Œ€ÐA-€ŠM¡È„V8h꽄£X#°Ý«›Á CN¡XÐÍ6@ASüX•"AS†€Åã™ ‚0Ô *FˆY±…Ô#ôL$èÔÄT®@Ðwdj¹‰ þÝÍõvꌰ8$ç)4â‘N0AÓAÅ™2 hzŽšV›+t @Ð "Ô^ñœy{X0ë‘cšý"4í0ÿ°÷2Wúhü^sxš±Ó  4…=zÅÎc“.§4@¹¡8Ј „³Fq ÙSÖzR%*C 4ÖGü\œå&}*ÉhĦÔVgh<â6{†…£Xzäb* 4"S¨*0ÐwÃx„# 4¢ØäW` 0{‘L 0д'Óv„F³/3 4€q`(Ð |Û" ´sR6ÉP )Þˆ½…Џ`XŸGh¢2š¤Â@#Ä Æ ¶ùˆ‘S¢8РAÁp ‰Ûû4 `Í MaÙH‹3 hD Ác9à@£R®ž#ÖïÉvÅÞ@‚&£€L h2œÁŠ«8Ð-q\«Á@Så<®ã8£@·¤‰Ê‡Jš1 ©™æ ›"Y+4 n0þ*4 Q^ Дùƒc ÐTšÀ™Š $]ÍVh²ˆ^ «”¡7üg¼®šhðÏTwi¹ŠþLFßðgz- >´a?“Ñ.±*Œ‚hPägÔìfÐù#öâÕ`§Ô$…Ÿ ú™’[sò{ ÈÏ-pî—  ’Õ±Vö%¼3?a¨ÏD ‚Õ KµÂaÆ|FeožQÈg‡hÇIYRRFÁMó™ï‘ÄþÃ|fˆ· FQà X ‚Öø!‰Î>b>•“œòªÛ¢Ï (V´A>ƒŠ$$…|FûÀ±WÈg¢†xò™ÌÍ òi ÈÒWÈgàåÏÈœ@Ȳb>S:#s)æ3æ‡ó)ÐgP‹#±i‰aUÐg$2@šAŸ‘GbpÑ,IRÐgP¸TâúŒÀSRÐg䜢>ÓÅ‘#ê3‡¢Ò7õÏ%¯”êàâÏY~†Hõ øÙBV÷™Qà› ö™ˆß)°Ï çDaŸAáBRî3ÌpŒlÈS“Ì÷&&p¶÷ŠB÷™(‘ÝA‚û ã ÈÏLE¬Ž ?£-NTeäg"py†ù¥N± ÈϬ´€!•ÝŸ¹°_–"’œ¼äžWäg(+ŠÔlÈÏÊàgÄmó¡àgPxûÀÏ Šo,±é®p«á>㋌X0à>s¼ç4Q1 ’3Oðå9–_ÃÛpŸ!2ì»?ÓŒiÀ€ŸÙ!ÙžsœY38‰¶)¬p”ûMŸÙ¸‘CŸÕ'Üg6Œ„0ã>ØÒœÃ>هɚâ>Cþc϶*«t·"5u~&E€³Nµi?œë Üg ­9ñïî3L¾\¸ApŸi—Ábi¸Ï.iùÛ÷©Rˆ°QÜgûãà Á}†øû÷THŠûÌ”)͸ÏwåÓ ˆýNÞ¯ÀÏää4:~vÀ·@é<•ïéXn#ð3¨ 99ÙnŽ1Wàg¢púüLÔ\‚‘Š&©Q`ÀÏLÏk~¦Or¡)~&×$[+÷™¼y Ëg°ÏðD"/IaŸ ŸìR!‰Ñ©ÌŸÉ"È.Y!¬çL îsŽš 3À>q n"0˜Ž€>ç8‡x›pŸÅébÏY™>•zið¥Ã£V™“Ó&±xÆEå²Óˆÿ Á)I™K%ÖÂ9Ïöl„ìy& Øs•KÝ0œ ¬‰s¶¨ç’$žbxrÃyÖßG”g£1ÆsÉpªÏ„áÓÞÂ3°®Ð^K2yz ñæŠåÜ lý¡œ³Jø‚äLY®Ò%€c=â8#†eÜÆ™Þ¬¼ Š3Í+Jõ Î(æÜÚŒáœ5½W!œ©;ȵœÑ'bŽ àLsŒ£¯øÍD€ˆ>À7+,¡7#s0–¼ylư›­ô®B7u$)N³±‚¸™P9wWp›‹T08æªåGÔæš% Ýžj¬èf3Eô¥²€Ø KÍûÿˆšõ,€ÍUãHF¼æªÑŠ×Lù ðÏ)\3ARãjÑšÛ$Ak&…¾kÁj¶ßG¨æ™(HÍᢥƒ‘¯UÅÖ2Â47ÅDR”fR(MáÔ„´Ky:Ci&*ë1jyCNPš¡$)ü²•æ¥ð&`O)J3QŠÀgÆþ§gZ #J3Ý¢|A(J3n4“rƒ1b4÷KÄ0šÑ+L¯b4#‰¿*¦²¥üˆa+F3²ø«]s±@§%µGŒf,&r$£›Þ:Åh…ágŒf~Ô°Á›d>.cÈÍwå¡ÃgŸ£¶A€ZÍ "ÎA1šÙdÊŒÈ [ ƒ0ša² Rqÿ´°òÁh&ÄE좙Îi… Ñ*ÍHûši”£¦Í´ë¢IšI¼ã°²¡y–c-lv'TuEhfŠÊ*Ch¨‚ÐŒŠ¼p±)B3Q&64àÚ´4;ÀfKÒ<çõSX-¸ËÐLû•£Š Áyœô*Í´¼œ„<4SR໡™R´]Òª—ïY€g¦3‡ÔO‚´÷’œÏjÊÎ 3¸µ¢3Ã̃ Eg%Ýgfbâʉ¦­èÌø"—‘ЙÙX)Uæ9ÓlšØhðÌ­*~öŒÏLY4°&)8 6ÌWÑ—c‘Úö#ú2…Mq²«€/SÐ;²˜{9j´Á½L?Qäeñ’NBŠ#pจºL)· Ì  Ë‰mq™”"¤Ž€ËDäŒ'I!§¨%˜Î4™âš d@[N’Ža`ËI æoÔqiÙJí(Ð2Tè«‚³LA%ð-Ž0Ë4®=$(ËIK_+È2åSq£c9)¢‚b,“ï¼/÷™ þp;Â2Ý%°a(ÀrÒäPçL’n¶€¯Lb; î*¼2õ ›ZÑ•)À©¬cWnª¡)¶rKZTO •[–°ÙZ™‚‰óªÈÊ»³ƒ+™1(¡Z˜°CèŽÂ*7qª2ôc†ª 7pUY}ªL^0 Ž˜Êµh¥ÁTn £©ÊM á¢2¹Yª#›E^!4šŠOÚB†¨ * Ѝìu+ñv"4F-!•‰Ú߯ʃ&†B*;«p2B*í ¦2Q¦I1•“<·Le€b`ÍSÎæ(`C\ýÈ1.b*C„$¡˜Êpòâ:ST廢£õ>ª2É“Ôr5PåÖ¨`Ê”%j¹Š¨Lbƒˆe 4"w \FЧL/™7€S¦×àŸÑ”‘ +æS€)7DVŒd6'Æ´¥ ð†€,J}Ž ¬`ʃãl@S†Jë ¦ MŒÜ÷Š¥ §fŽ"2 ,-XÊèYˆ3”2dì(%^dç B)ƒÂ°”Eó;¼ä XÊHæàÚ°‚¥ŒQŸ,e£ŒXÊô"Ø(–2H`÷–2ÉS‘SV,e¢r‘^ÅR& E‹í–2oHž“ZI<0¢B)(Âe$e<¡”Ñ109ARvVjD‘”‘¦; )ƒ¥Â#lLG”Áó‰2")C²TØdÖ#gh2Q8j`DR†Þ‹ÒG ¥ì8¦—û@Œ£úE$e(Â>æI™´WÎQ$eöè¢þÔ€¤ s p9IŠW‚,eÀ E¹Hgk;Å p²ˆ`)­6†áâ•õ ø5b)#’†1ÁR!rræÂg‰áœ$erWÊì ’2E‚pE&ER¦gx¾F$e@(ÂÊ¡HÊpk¢«ŠL’y¡•ÙS%±Æ£«‹Ën2i‹¼wF eØ–OV€”I¼di^‘”É`ÀÖ¯I™AŒšŸ‘”öÇP”AAÖˆ¤ÌA”%ÌHÊ hÔܬÅU’ìØIÖqÅÓnÈ®q¢å(’2ôG†”Ù58…IÝgÌAR&»•À] HÊD•O2’2Ì[Ü3ARf I™¨Œë'HÊxŒ'C”ѶX`CR†bÃP,ŠeI!zU KÂÓd„Ly  š2}€+Š’ #ûï4eÒÙvgÏyÕªMy  hÊ3UÑ”¡Î±·^ДuË.€);ßàð2ÊuGÄ€â(Ãs(1,NÄ&r yòBKbexÿ8j€QæuY pLâ^Se<MwÄQæHdªýª8ÊlÙºl( ëT•:Ά£ xÎ _ÁQ†ëŠ£ŒÃ§þü¡PMd¡C”‰áEU e˜³¥1)ìER…ï0FR£ $eL?ÜÕŠ¤ G7W%$e2p 爤 «(€ÂœøBŽØ"ETXÑð’Hº€¤Œ ¯ÕÀ¼¢C+”2l%(Î=B)Ðߥ VI¡”AAd⥌ö’£PÊ0˜ „µB)æ2•E$eȲ^JEˆAŒÔ¨œg$e8ža@Rž©Š¤Œû­å6#)cÊP.~DR&*o4ER& I)’2žAôÓˆ¤ *–J‘”M¯ºJñƒ\§cHuCLä$°ÐoãÌ<Ű”á’ñ"(–2 ÕÄÜ K™»ˆŸ©Î˜Épµ°™ì%eÆ“‰Ð¤ )#[°-fp>5i0Œ—L5/éllªöpÉ”±XEKV,$CKZ¾yK¦¨)²(T2â‚I´P¤d‚JZ„IIEHAIZiWA’áRšê"F2¹ŸÙ%É” €ºÇ ‘§cDH&|ª 4ÆO’É …rË#>2¥À4?£#“se{Ù?”k‚ÒÒ#6rlÁ­ÐÈ0èµ0##gÝ‘ÉeXdŠ;›¢"SUtqEÎ"Ö&2½„c…D¦va•‘)ˆ¡ ˜8£sP™o32ÅÞa×pÈT¸»\Ñ)nW¡‚!“Ǣ戅 kâLR|©0úžÂ Ó/¨A3¢ “Â'4` C¤3©ÈôªŒÈdg±Œ¤ÈF âSd ­óRöÕði¨Œ¸,ðÇKIlC‡ Q( 9 Kš˜a#J ²[~ND1T~‰ˆF>¶”wÅ=Ί7£SvnŽã>0… 2*É4ÂFjÏ3 0éC^l¡æz%•Š„2Ã&Å+Ií9œ3"@úÑ„ p¦ &LC '/XÂEÁ¬g,á,R% ­¸J°¥!," C(snV}Ö€„¡ñ沈#Lº1€Ut²£äEŠ0ì=‚tŠq*ˆ0DZ˜1„oË;‡ŸP–z áµ°ßײ¦|ñÝéñ¨Á«ë?œŸ¾øÿNÏ~z-8Åiï‹?_Þ,yòÛëÓžþÜ{tþö½ÆòìÑé«›½÷¼¾º\µÝï®~¾·Ý¯Ï.hFÎNß¾ø_§¿ÊÓH¡îgãƒCüϳ—7¯ïkþ‡«7·zß×kúçøÇÞ0èèêdîPšÞÛêÿ·§×'§—7óó·ÖòÏ~ó՟Ë?\¾”—é÷D¿¿øëÕå·}“Ýô}¶¿Ïäç§?õxö×7ô—Êy~ýîíkmç·»¼<¾8}¹—÷lÚûªÿïï??{×ÿzÚûŸý‡ÿꤟ÷âÞ_öþÏÿö^Ò³ß=Û$›vÆÿ\tÂT' íh‘V¥¼ñÑðî2š¼{‰Î|ó Pe5ÌO."æéŠÈ!Âui9R©že )\ßu¦œ~ kÝߥ­Fnß~[_Iäfjì70¡âG¡ðQ‰:Ù‘’Áä.Ø5y6v>, ´P¸ÕйÁÞ¯>{E¯“ Ìè[äM»P2™Yñx#á³HåGˆÿáiȪGË9’ÖÉ—\£þaŠÒ:ùP'ÇdÄz1Ñ“"Bxøƒ•®_á,;”~²Îr?RK»—zG¸×ý*ŠB&>¬ä–«~®ø,-#‹|iuš[í"—(9“= Ñ<ùU‚[‘T„ÈQ½h »WȉÇØ)¢ÄªD "e‚0Ñ{ßù¨ú>b!6ß”˜÷–`Ùb»²p•äQy\Ç56´É}°[‹TÝ™Kð&!_§±¯–g2‚㎄ܢ2°íqpN01¡Ap‚³¹ü8~RW˜Švé„ÁÚ³´[‡ÖßÄûž\í.ç$ƒŠH»#¥2t"‘}‹Ò2´ &N²”·[—¢B7àÿðçpäˆmN%I#££¤n€4;„špÞ¦Çܳ B·Î­nÍýí\SÎU綘yÒ>øÐtû#…?FW£<Ù‚0™TÓ¼wê$]€]@¶4AápÈ´ìû‡Æu\ì…Oå:¤¸H†‹©u‘S¹C‰UŸ&‰VÉUv‚-œðße]&¬ÞÒ¯i7êp #Mæ…½S2ï˜H`–áäK‰žCÔ3‘ _ ül0&W8H–÷0 èÒ…\á*øAÕDÙË“1Ô“)…AïhyÜ8µº(3Hºô…}“ú>ÓÀÁ!c4[’÷+o9<åý"W¹‡jÊ´šô¶ÑP³¸[nrövóU†’4IÊ®°Æ>­K»(ãrð].„¢ò×”K“NÀׯDß>Ð3zT7\(%Ê£ˆ–á÷‹ÌÖÚrÂ)$L°[NΨY`¯=(|@²#ƒøxä ‡‰Ä¯R´Ý©ÙÊ_Èr˜Ã@ 1…½¥›{Ü[¨*pÅy¾çƒ°Ø3™Ä<&F§üÑQ SÕëfc}´éDf+’f-z··´_óé‡)\zÖ¼~dGÏ׌z²yoå½S¡ÏÆvë>¨ 1ÇÄdÜêV´k…­‘«¿¨ðU8ăźXª272±À8E3[~@K¹Fc¤)5áð¾°ÜàsnŽìŒeß?±)CÐÓ‰çÃ$£;‹¡d‘PŽ©››’MD ¥0¢¦Ü.×|†¤RïÏÍK×”ïÂxñ¾çåéØd "ûhy#3·CÄ 3p²ú*·k2FتäøÝÜàzЫj8<•SÈC Êê¦I¾ZmÊ?kKJ,ɘ Ñ¤QÜ>@b± i{iïçÚtâ «£šl=È>'4稘ƒšÚ±Éyí3\þ”N-ÒP—}_™°àÞÉв^.oY&ׯ= Y#B LxàÈD&F¸ô•<…»Ï–ªja‹ÍˆIW¬Øë·º5oØOy³’ ¤›ö¢Ÿ3Idºò³tóÑF|˜gL&ÈnYâdck1}x ´ˆ|L¯¾2©^K`YK0_‡pÖÌ’–^‡mªrËÁ ÍDxÞx›Mvõ¥G÷> -¹y4šõŽìŠ©^‡·:phs§7Lš°mÞêdÄHsbÑéb±Ý›u5§lƺ|¦##µZ‰ª ö«ÀŽÄbîí.0Þí&@NEKÞ ðŽ/î~©ÎÛɇÎeŠzï’f¯ScÏN¶›Þ3´ÀðHn`ˆéÁ¬¢QfŽÎg¢È%™Ó™65¯§œÐsÂÈ_Ï´–‹ÞBÅßw®$eY#1wyGˆ¤³ð}é&oï#áßb•)gQoÌè´I &iGÒhÌbŠȯ´IY¶ æõóED°Ä­öýä[vL4‰Äœ¸œaʱæ:3¦[ó¤dîAžÏÝ,Ÿf†)Yº¬ºÞ‚ËÀóMŸ¸2âÕ™’|NŠÞÏìQ––lm²¿äèyYâ“NW“-£ìp)H DBáB5â]ö,u?äÜ$?wkq GÆÛ€à&£Éx¼3,2䨻Á{W-æMÅ鉳¬ äP£ŠHéâíL"ë»YÞ(Þ‚°nþجp•9lgoDñÆö«¯sªZû`ó’©¼êkÑF— &H-/p´ÙfîáîãîÖשêXUÁ$ZÓþç¦Rìú~nÖ¬š)É/T¢IÌ“[FŒin7« FZ!&•àŽèrU1R+svͺœì[fßÊÅkÊ5 ó¢Ä›&;OVŸ»[ÓÍóÒbÔ…!ï¹<›UŇóž¨ÌˆÈmÀlµ+ñžœŸ¼³gSX².K–ö}¬ÃÛBÓ ðåóÞ^zfÃMcž9ÈFå½Î¹î˜Ò²Ò|F¬ò~PÏQ™±SÝ­Y½ªAlh‘ŒoK??÷+ˆ‚~c³~¹]2Ç׊YLn‡¬ksIú€zgª¹Á) ̃ðú­Y£\>°É%„ì:(~\‚« Všåœ:* ;H«ÉÈ7©g¦ßy½ÈJ‹aôI›ZûJ”ã©ÍÂ2RŠD?¬ÊOÁš—Îë(}É] éX…/=¸d›Mºï&Žéœon#·"O÷{&ÀuÜ‘èUe›µm€ø.ëÄ ØT×g|[± ì×û{æL0-oD/4u=†Yeuº6›^¶NÌ-%bVA—B –¶!mÈSæsÛ8jãBÈYoŒv$ä”’§Æ·Ùæßmpi³2S±˜Ù8’²ŽZþ$Rf3òo„¬’Ce ·årlêM[Ò®|Ðs™åøâ§#r1?$æ˜8+%žY6Š˜©23¸4“kÕ5DŠç‘5k·!I\Lˆ,lÉ{Kû%F”RnªPJV vU¦õ+L8^ç¤Y‰EŸ¬bªâ"j­ªÐõÑ(òZfÉ‚‰zH2tK}ÕùÑhª‰ZB«–öòL±˜ˆÎâ6<€Œè#!O"—TÆà&Zò¬0î%íÊ)«·èF‰êtBoÍBnN¾—$˜R¨ ¥ˆ}¯ñµ¹´Uùêbò…Pš&÷%Ë0½*yø|–ƒíÕBœàÌs»Ìýñ-3n¨Ôx§ó™SïPœ½5tFgE9ŠXNñú¢S:{ÓÓ쬻P¹µ]³Ÿf¢„šq,NÞí€NY|ˆ0»^ ‘LŽlÏ!bPß"âÔ˜8 ŽªoÚPçQøð.Õöƒ3wFd—•}ÞUuΖ‰ÐÝþËÀêÄÌ? qóBɱÿÄ=¢ˆ„ »,ˆµÈvDÖî¡6 ª©±hYU9ïn´gÕÜDd9m⡳WÔ•U´åʨ‘BäŤòâj鲈D4-B•rz½ªVžÙg¶äû'rËIIc^!§šÂ0v¼ä‚d¢c`{î²÷—¶ªwjfƒ ä¾P²áûMˆE­éE1ù ™ku¶Xh'<š=³ø÷úJ…½¥y àœÅh‚¾Prqa +QÅSÛ”É$;!jÁ;§¯2©k¹óýC[ YpG2™­iµÒ/@Øè.™ÔpSÌ­/Žn]!O¢˜<ÛäQgúØÜæ­ÏÏýB”8·;‰wÏËRNŒâ¤^ã¦I–:¥bô¶–Èá]VÄhŸq ñdÞéÁÜ5½ ¥J¢v-ÎÌ(žP´݇§ ‰‡ò¬ÍÄRFþà™(ú$‰õÒ¥¨Á#`àK»/{4u g¿jðˆÂIŠBt¬ü+}Ãå(ÊûQì.¢v Qìe•7æ²ï«°W°gó|€<%%óó‚ÃÇÄÈÚ-SÓ(¿òPÈÚ3}k«Yz–Ù%㥾™ÐÔM|·_†(©H–r!Tç£ìR?k†•x?ø=ìÅvx-ûõâ÷ï þ8N áû‚D¹ !«–Iø>FdŽQ 3´ä¸T Pba§fYBEÌááòO‘ˆ U6ð ´„8½.§ ÷{œZd2,æGB.Ò*2–„ä½Ü‚!é—0Á´¨¶µ(øôÜýÆv$0•M­WU­=¤ EáÐx8¡2 .Uó¯\Õk¹n$B’mtÔÅUhÞ¦ô]¦!5Rèý¬}µ³Nz‘(r„¸;(VïÑ·S8o"fÆBáI˜Ø[E‰žMUæ1d³ ó•9›‰nrú~r¢ZŽÉªÛUÖŠŽ„ ” Ùû2`ú˜W°~Œ Idžs»ýÅ´c#[)‰˜Š<eÇRtœduàyág:‚L{öH¨bà§f+ ([DÙ¿DŒRàû»m6rb7²v©é|@J)֪̑µ[NœÍ´\”oá¾c"eº0Qm¤RL; Þf*­ÃK$c]ÓJ²Õ£ÔØ^¢ @«‰¦#ñÌ„a Ia"ò$ â—}TO ëŠUÛÁ"û*` ˜¦^&Šá«$Êï('ǯz ÈkŒoÆïF‰ð¤„ ™hÁ7‰f^Мšü$GÎIQr<*,™Šè‰Ñ¡rñ!~ŸRlb\ü¬“YV]©¨ðÔ¬R“^M~ÒÝ6™ù½òé¢DVUëÔo»ÅüI„$Rœô!‹·Ÿžõz¼ÕW-Þ«²·UßÇväk%ñ¾‚¤-›…õôÊ8õÜ&aJ²ŠýÉqËì~šwTŽ#{ˆ“›¹ÓPä1)#¡ ÊD_´«)²@FIRu’Žêðæ†$.”ÂÀLÔ¨¢¶ e¦ &—ªF_Ýë¨nÅŒ¢\3dSõ(DU7{¼ÍÈAãYlv„% =Y16’)hBÝïµÙ‰óÌŒã¡ßR›M0šºÝ2WyÑ÷QxÇÅiȦeö´J›Á‰8糓a32÷£›ÍCQâ÷Eßÿ€ÍJ/ŽÂåOt^½4Ú%5N!Q¨ØA¦ ¯  j}ÓdQb çíiYÊn¸|`{hjA'PÍІÅ+dqKWÆ•± ìÀõ”I©:RäfÛ[é¼Û¶hzI#ø›Éi”‘~Æäh®ieg¢O"¨t”hÁ®-²a†!˜ Œ5y2° !z•IÀ5íuq Û¦Ï϶=\þLÌ Q;Aç0šG…ƒu…&÷SeÓ7cÖi©No~ê@lò>œžGJ.“<]$È‹Æ .âÊ‹ÄDç”Õ){k¥xÇL‘Ÿ%/X“Aîb"X¨0#}ß›Ãhèò$À2øûÎi›ð˜ð›Xoª³˜X›­^+F!jÌ^™/Øà¦‡„C&‰Â&§¢Öï ï›5$a¦Ì38qÉn5ËÊLüa»!Z¬ar–¸g®W ò@µ[‹{ȳbB¯ÝT$|(JŽFmÁÅÞOªFQM}µ`%AfPå)–¬æBy9r²—X½ê_.Î'œ9Ìû•ȤûSMC„•“Šç"0‚Lecš}}Þ‡±éç5¦˜UžôMˆzw`YQ=À7ýNUs>Zl“MD˜$ ”Èà9‹Ê>[ZS±+Ž`¸t³ÏÚ nd_&íIɤ҈^*q$ŒVž—hóÍß#8#êj“Šåiöø4§×qÕé \‡™‰Y%%B¼sìG%?‹E„Ù’rÔ5d^J){Èr¼ ÌQ<ïR†‰¨Ð9ǃ{å8#4ì`~ßÙ%“¸4lâ²ï‘<=»É'¨4»ˆ…£`˜8³ãDr¸v×ÛùD8 »˜¨b`fY…Z•PìÊjí/FMm“VM§ÂãPì:ªÿ†¶‡6€R{ Ï27‘› ­*¶û‰ã™…ÈÖn"6Ó}«Þèà³*¶qiB•Åg™E1ñ  fCPŽÞ”LŒùÎç‰í~2ñ–̈˜´ûÅ©‡Ã‹…Ÿ^FP…IÏ‚çå"dÔZÓÝ5éqE V•ƒ#EÒ™¨nºgxPT¬:ر‹*¯Ƥ2Ó$¡D@ÌrÏéL¹Ù®B&µÁpeQnª±‰®lfP´Qµv&.Ñ¢ïk%N}Є~XЙüb¾ ,àÐèEŽ-œÄÄ"Z1;µT— yŠÖ@òzùá|ÉÇŠMaâ•%âdRE)s‡Ê"ZTPy)Ê~%´Ð¦‹²:¶‰ì“pž\e¾3çGKe>뤠 UF'U|xo6¯SöIB7ó3 NQ„7+®)óú¤¦¤îg  'üKų¦²„8eËÉ!⤫ÈYŸK=D¦x­¤ñ•"k¸pÎ*2ÙZÁ\ ѯîÇù{Ùð‚šÊc6„Q“ L„WRå5p"&r¡Ü«ê½ñ¶ °²õ}ó/–—PM½PP±Zu*˜ÁŽ« HN1ó…›ÅÕ"‰·('Q‚…%5~Ý™ù#³Ù\ºš¼©ˆNÝàÊ +Î6ESáÛ–l¯dñ„ˆ’Hj¡©ÈÇ$Wšdѳš˜¸þ%§9É)"pÓ9A2ž‰ñ"Ç(KÜZ3 Pd£77@š‚Íȉò¬©ÎªuMÿÁŒ„]GLV?"EþÚÇ$>(“mÂz¥1oˆ¾Ôו•gާ>Òq9 qKÞk *Åe3\Sá¯G WY7YÉUE "¯ÍTÄA@Ãhiç5 Wa—\\“šDr‰JÔô®ÁžAN2ô¨#!ëÕŸvŒ‰“Š/ƒ‡M!rÎνšæ„{ŸÕ;«¹Ru€‰ê–IŒœª~B”âM4% çÊ­ŸôÄP¡”¬é1J¨¾€˃€ðer—ñ¤Ù ¾ƒ)Øf‘ GQ#@¹SRsBĺ¦p‰ÑXy\"OTÔÇ[ÔõÄ_Šæ¥‰ü· !Âÿ™8XaŠÃlaa˜ØYúˆô  Ì¡¶êǦ™ÍšÏ^*³\«%¹Í}ǼJÒ®çËdÍ)ãY6a¶ôƒÀÅkµâŠEd}vŽ&Ÿ’„ë¾ß1\5Ûmr“nYÝѲYió["”oqØqk¡#R Ch“mâÛ.o}¶Ú³ÞÜãY£ä¸(á·àîPýÜ@Ñ D+ÑòãEúIJ~*ªüG34}QšL¬E»¢Ó3S£æÍ¡L–õ@ä51¢0ú8Ó&sK«Û%±È«ü!á [âO±k#²¦% 4ÍEà²6 ™ê‰­3GJŽÚ/@I3÷šÐiQ÷uÈX™L‚%ä§¢«ˆDe¼ºâL˜5Ù_³=O{SoäIª€ñû’‚AŒ»Z¿DÅsGøF @œ¯DKq£·Ž”œm#КÉ žíªƒÿWnp¯ÁV}Í’H@Kã¯Òœ’àÙní¤R"÷6±ýضz}ú µ:¤ÚõEÕˆEì¿f!.LŠ yw„&Á•Ä¥šv,YIJ”ÄÚg™=™rÀ¸2Q%£À³J×9h»8G¢7q™ÉÞtµ~G.wÌDÔ‘VëUäí[L³5 ú”†9% sÍ¢½`’h¢æi¸ndñRÕ4UI£ùÄI%´uD ä1ssÁÐËF5UÃþƒ²í³½ÁëÉXõúy¼aJ;‚nÜ,öÀÜ€ÓÌ"Gš.¦$}V¢Ô# Mû –”hñü¨òAváoYvMU㊳ÄØfˆ1¦œ×ï«!&ÎV¿%½òl¶lbµ&Ó_£)šD ö)“f=Šfë LbÉ¡âézÄ¢Z¤ª Ïk®sÞªŒZLG†Ÿ3Æ";[…æ\¯I§&š5)pèç@À !É^‚—„ «›ÏjÚ®˜¸â2(DDÉæ<ÕͶ7ÀÍóÌr><U)M\ôyV>U^âÐåWà9>_í®&uTµ”:K3HÙÌ0yÀG‘4\ ƒÍ/§=(Rb K}_ö&113þæ©ÎYþjUKmb•Oßo*GÆ™¯%‡ÂŒ¬)e‰¯.&Ö¤‘‰?˜ØÙ¨žÙ¦Æ_MÄJ–dM‘JQ7‘ÙøªF%¿5Û¨*‘Ru“_m¼ÍâÃHRKg3Ù•fVC(¼EÑæJIMcâB5ûì² ºÞÙrŸ‚7l†$Û07#ã•fÇhŽÅ áÀ’#‹:×ÉÁó')!˜g†øHT'J<0Ä‹TÕ¹ÕL¼ëU…²€hpúCuùEÍÚBô:‘ƒ¶ ›±)RÅÄ5e¥]“ÎThD]²9óÞ)­X2]¨0“³å  LœôJü'AÝ aI ìt1s´{Þ©/tŽ@ϳƒ[uçÄ3ú¾ìh¼²/.Wµö)RM°sBA½ê@£{_³~Tï ™Ë¯'ó„E½¨XõzV/ª¹÷s<ƒW'®G¨ñ !Æ¢c 0Ûà;²Æ8¨hœ§ U@¨šÎÔÙìIf¥Z+b^O f« dQç¥*â‘gŽ…éLvi§ÑûP™&h s±˜¢„‡â£4Í3º!ûjWnœSÃ˰¿¥S{o1A„œTׄ'ŠÌ jŠU¿¡¡Zv›¦.Æ0¤tI2?«×ÕsÔfƒE¢eS²(€)+Æ‚7Ä8¨nÞÌpQN”–\b°Ô‚ùÒ%¸ÕbÜÆÒu)4+i&WtÕŠÞdÊ쨊xRtš:¹¹8H ¼×аèªEK°O4€‡`©€(¥8i½ew¤!“CÓ(âÒAw¾útbÖ0ãȉ~L›³¾wÈÄä ˜&*s ú?QoWͧºäÉÒOųëp¿×jP]¨NC.‹Ú*`tUâ’—:Hš|@ÂQ7ý$®ÔØ4R#q)q~¿™ëaN$InÈõ÷bÉ$¢$s‘'?˜5ªfÕ5+¼ºJ®U%MI²tT&Ƹ)"­˜¨ñ:éÀ²© Žù½=‡½¥`®¢Ò’êù@-ç×ã )k H¢c¢â Î6Õc´$ÓÙ¸ØÉ(ŒÃßšòœ˜¥øOɼž)²Ã °Au—,õ¨—#²¡­V‰fz‰ž£TLþ6±%Íù*IÓÀ±SMò‚ºSj4Œ?ÞÏ˧üµóxTR8Y§0¨—äY„Ì)SÕàŽÆvgbžES“º^Pí}gáë`=GÂõ®šÓ&K1¼¨v FW\šû†{B¯5$Vg÷žË‚ð|É •½é Ä!¼·\Ñô¢._«¹Àq-Â8¢r¡>¶qÝ"–g°²Â ¥ÍHKÛÕ°†Êjµ’Ÿ'½z³i6N…­„iÉdQ”Øc¢†iü“Z¤\Ò¥I]d&³ e JêĤ1é3†cšqæç g²ÔE}?K$K¢@LM~OQoŠÔÌGFÉú¼Õ Ò½àµMŤUP–FŸ2[“òS3ÙpÆö!b4.a)æ4,Iro\ª‰“íZõº&bIa \œM•ê EIý˜†5 î£p–-1©'U.MÈc–©INH"gçŒ ‰ç!c©„Å7–`´]W5ÓKØSµ(6:$UM¸Ê–ëìª#jÕDïIö³]ÁkD¯œ ÈÙð1S1C¾¸ÇŽ„¬¡ó‰N³^&µ3˜¨Æ]Z§`1¶¬7vÑ”û÷äìkÄ`5·yLsiÕnõ`À}4—  J *LÂ넘DÍÑïåÖ†ÒÙŸæH—fë¼ rY§Šr³œÊûpƒ\9šh-ø¤é+Gнú<2*¹žÞ¯†”!þở×ÃL¿äf¨ji‰GT¿æ”ª5øªˆ¶Dô4¦˜ô·B†4¯€7úl“ø”†O‚}t·_3¦½(3«8†i/^$BPMŠA,e$ ÷$@JvEvuFm‡‘)rêYPñ£‚:ÇIà弡ÊfË`¼Û±yŠ;Ÿµ¨?O±Z‹YÅcšæÊ'.Øç\Œ¬¾¨9ž…È~µªEœý—šß1J.¾”ih¢DÔùé$¹âNçuTÑBØ»W®xβÑbaÑÅÓÌ}£e ÑI²¤ °Wõ (cd 7?«Pvw:0£ñU‹¤µòÅ ¢á̱i™Ê4“@qC¤\ø¡¼¯pf¬ÅêÍjxûóó.PÖÌGCwe1sô‹´K<Å™z«£³QÊ‘fŽAS˜K¢‘ôUMYRŒ¨ÌY·BtŠé%–šNé-žRk¬w>h.›ó–-³Ø¯Ã—s±aí0-§-ßDõ5z´j¾I?¬ “,ß#«*[È:µµº†S&°d`Æ-Ó¼N—I}ít¸“³™œÝ¼0-oDog@s‚!dÕ ÀL›q³ñ6›õ—²1³"ÇkerL=b&tú\›³‹>4½Þ¥ýRäÞÉ´7Až¸²†$+GD©#P8ðˆ‰š›_f97ƒä-ÿÚ1ÆMÿE0JÞKæ­9·Cç¹Ü¼O•‚0&HwÉ‘~ˆ$Ô¬ˆ#Ìe щ䆘:; #ER½yi”"V@äáä£[dÏÐCs§–PìÕW½Ÿ}c‘Év"žJKM•ÚpQøŠ'SD¦oÝ®6Nø_£\¾….Ò'¸®ä¾”|»‹d4j! ºK™_}õ §ßaüý;b|—2…Žå2öó.Å^¥~F²2S÷|¿m1§.ÏSéèÿiö<@+ åÒ‘˜Ê[v!ªH?ï~þVg )ÍsP¡nØ;”…~.ЫO~Ë­#øI¡cÕ{ÉŸõΟѓ„nRN…?Ü:`D¦4‡Þ’Äì€6F{/g’ë…O¾‡lŸü×OðܪC_á MÈNz<“ó0bžˆ»ô3ø¥Ý¿KžÙÀ':ôCÓ‘1êxh(ß”òÑ"kÔÆ÷gÞK^˜Ÿ[£YB¶O~*Ž1Ÿb1Ê1¢ÐªòÑ"ya#bì-‹h”…IZ6¥Àø„8ü?wóæÐ@fשּׂ EÍp»$=ŸßzZ8ím²4rN’Ï­UÅ:Ï;’Ìï¼õÈIt¾üøÝ%£‘óÏ*¾´OÆ;ƒãºró2ÎüÇKö.Ex§vâSpP'ý¤¦8gÞx™«¯òzPæL>Z$ÓÒ‘P?¦~€Œ¥KBž?ùòüÉ‘êbÜ o¿Äæ·[ƒœÉ´Ÿ“/wù2)¸å‡<ÎÔ{æuÙ*| ¬‹·“é{æå}³HyLõä{§ëS0bÝw?{ñN†å»ŸÈä›cvíBºÝ÷÷FºlF.æö¾zc ´\3æð.r—ÝŒ\dþÔDŸ;¹}!ŒÓFÆþ‚ò|p<ßÔ” ರÿùiº6œŸG¼Øñíß¼øâ«ë›¯ÏNnή.¯ÝûNú-Á¿å. ×ßí}ñýÍõÙåO{¿}þü«““wß]ÝÓ³¿ÛûýÉ/ûÿôˆPËŽ+Z^'Ñ[¯q0Ôùø(-Òäæ6¼þ©:¶üRºÿzJD|ñ׫ËoûnúGö÷™Œ[kü󿾡¿¸‰ÿôýÿþÓÏÎ{3Ͼ°{Ç¿øû_Žþzõò”~\Ñ{ÿðåÞo¹8¿ìÚïݺ>ûñÝÍé[YŸ”ëã[Oœ¼>;y}Š‘û½/þ|y3ÿþsóë›SúÛoÝ4ý¦OÜß.ÏN:Yço|ôŸÇçïøÙŸÏ^Þ¼þðÃt]Ó³½+òôÿØä½>=ûéõÍÊCÒÇ|L_ýùÅWço^¿p«ŽììåpÞ3zæÁ‡rõãžÜ<¿zwù²÷íùÕ/«ŽèŽNôæíÊ ¶ð΃uõ}øëÊ#úu£ÇqÏbãøEÿýpw7…MÞ¼»þñÝùéåÉéªSÁ¯®8ú•_u0—ï.¾9¹9þçéêGo|åÁvyõýÍÙÍÉ=—Õ<¾·xú‡³ó5¸ð΃6䪣»>}ûî|õ[Nx>s0¥UÇôãñÛÓ?^Ÿþ¿wýL®Î=o½µ zÏ@ܲüân²ÓVd's×?°¼Jß_½»>9ýÓõñ›×g'+‹#—+¯ÑÙå#l½ûú7äêÍéõñÍÕõÊã™_Øh&qvyÏm°°DþÏáÕÅ›«·g7kœÏш–«vዯO_í}¹S7oD[§Æ ¸S7wOV|u}Üõ™ó¿^½}RJàÊüd§î”À‡PW¶qîtÀ¸Ów:àNü×5¦øätÀ5F´E:àóÓžžÿúøåÕÏOÀ¸ïŸŠ‚´ÎHž¬ŠÄbÌOE(XY;z{óòëÓžI¼ÉÊêÃøÒƒîÇów÷Ü^Ÿ@x$ áOÇïÞ¾=;¾|~ï7QÀ^yÛ½\-¾| ¾¸ú@VçŠ/Ùð³²éLíêÕ«·§7÷ŸŒí=ýß`„ÛwîÏI²¤è“«ó«ëÿøùõ½*Îxýz¾ºµQž~ßÌÊãyszòîüøú¿¼¹º<½\}÷Ý}ñáG¹î ¯.ßÞÄ ç|+k¼}wýêøäôû“ãu6èÂK;~ÿ/Œ…öÊ7ïîÙ[Âì7…Ïvu­ÿߪòß+ÏÅ?†êéÖˆ«Ñi¡|r=ú³ˆ"ß^]Þ­c`ú<¶ÊÓïåÆ8cû¤£5ùئ³å§épø(#ÐÚ~‡ÍÞyÛ¦.}„;eSxÂÊ’ö?ÂÊëA>¼ã{åÜcS7Y÷ùÇê§þqèW_‘{†<Ä=K~bîúãë³›×§7«h›nѵEM¿AÏÏn¾=>»ÏÀ±»BW[M¹}×·$¯ÍVi=ÿrzýÓ)Íäö‰Dëµ'¼$Ÿ¯»À£O#,º]àÑV^]?¿>=ýï•ýQuôo”²¿ÆfÜtËðÊy²ñUî`åŒýëã—gïVߥúøvX 7[1}yv~¼º×~›”Ò•—h[’MVßs/Wßs/SD¾º~óúêüê§•™ùæ¨-O»íxÚÆó´'—@·z¶Ïާ=€üýTy×H"ÛlVöãÊþ©­9ñë%mÁ‘ßÖðݧаÆÛðÓ¿rÌêíàîíàÇÕÕƒ-aÜÓêÏ'Â:ØØ%Û–›i›Q¾ZÙ|øúøòòôüûÓóÓ“uô¸»/>ø–ûne+ñÇòî‹>È{BÙ.¿^ÊÅcåZ<ñb †·ñ;?®¼Ë¶å¾]}DÛr}}ööÍùñÉéÅéåÍ_ŽßlßtqÜ›ZÙ» º’–ì˜ööîüè~\uÔøiu)]ßäãµél|e³ÝÖ°¾õ`C·€õR†ô_V`›ÈöÖXŽ ?*«g:o#@ÊÊæ¢­á+è3ðM9}¯ÖŠc{uv~¾N¸×ùc÷ˆƒ!‰ŠR­n@â§Ášy¹òúS©¯w÷û§‡a¯l.Ç|u}u±úÆÃÃ>˜ëSè+¯ÕË—g7gÿ\c¥ì…‡OÁYùÂƧŸÿ+†°ê ßz„ÜœËÓã•38NŽÏOþrµzþðÂû{Væ‹/W‡ ãg>˜èüçã_WO—0nޝגHøùÍuÉÝ\­®û_=šfr|yv±Æ]ô™rT¶þn¿îÂf6LÏ;yra3«h[L"»°™÷]c ^c‡møé_µo7³ÌŠõ˜q3'O0næÁ EnìšmËÝ´ œÙÎ<þ WÖ+¶#pæék0¼œ9yr3«h[®£]àÌÆiK÷DË<áÀ™5Ž×¦³ñ'8³úˆ¶…õmuàÌ˱áGåIΜ<¹À™ÕG´-|່¶'üg¥\—‡<ÒRn1Xái»ÅØ^¼’íY‹Ï×ÇíÓŒüêÏ/¾Í‹õ¬O,ˆuu#Ó–€%=I”òNz,ûð<;þ¶ËÿÎümåÁïøÛŽ¿íøÛVñ·?\wÂN|Û±·Mgo§´QwÜmÇÝÖçn;ámÇÝvÜmÇÝžwÝF/ÖsŽ?1&·òà?‰w«¼„»C´Æ!*ÿ·håÁïÑîYÃÓ^Z9‡ýݱ€Ã.–uþðíÙ/§çßžÿúb½$Å•˜Ãç1Ëmm¼>½¸ºc»0iÎ._ž¾:»¼·$ê öæôøæë5†7>^y‡¹³5˜;O¦fÅ»mÛ1jÞ¾!”šUǸM5nuF²©y,·ç¾ôÓžKý¿Ó^ÿß—ýçþï—ý{Ÿ=åQÔ–µl6E”z‚5%VK~èà5ÊÇoKºÀ:cú7MØäÙpvp_ÿ>‘×f;|lŸ~uñæêmWƒ¿ywãúlî‘XáŽqûøÂʶܲ3¬=úðöˆ•rãjH| Y{å¬~ôÿñ'õ¹gÈã@Ü–°°M¿C¯Ïn^_œÞ¬~Õlß]º¦´M7é燣|Wéö¸?>jiwYˆÑÿyç^Ãÿ¼áÎÿ¼ó?ïüÏ;ÿóÎÿ|ûtíüÏÛí~º5Rvþç-ð?CÜ$´Ÿ¾\KôÜùœ7×Þ²Ù²ÏyçsÞùœÆ“Á{æûµ@ÇÞÙ\'Í˳W¯Þ½==¼ºìwçåêÇèÎ{>Ä_OÏϯ~^uœçg?½¾éß?!|Õ•‡yûµ‡—,Vfóï®_uf½MºøÒf³Ä ¿å@<µ[kÍa=á²Ä;Üη·3ÁíLpëÛ¦V=vv¸µÃíŠo¾Žu‚/º>=½ü²K—§_ö;îì§«/ÿyvu~zóåõéË/¯®/ïó³ï tH´²Åôô¼ÿ²–-kxãá¹F]y`Çÿ}vñîæžJ—#«×çÍúóõtÿ#ºß9vækVSŽäªÝ¾àVWôßœžt)íú¿¼éòà&›»/>‚3kÝQ®m˜ºûâ#Ȳ÷hÁÛo–Zc»îìRj—Òó°é-›ÂnwÆœ1ggÌÙsvÆœ1ggÌÙLcŽ˜nؘ#–ØtvÆœÍÖewÆœŘóÚS‹KÚ ËÔ÷¢m¯iê#4ÈMWŠŸ2BÇË*Þ,ûÅga[ ϱ:†ÂžcÓ²áð«ãŒl8<Ç“,Nò´ñ9ÖzÜø[ôüìæÛã³ûÜh»+t“³vWèÆ­È†_¡Oáj]öµ»=óöü(ƒÁ¶Ü ;d«'…lµö²îP­>¢Û‡'ƒjõÕŸ_|ÿúøåÕÏ»ºCû÷À}z‚À+C–í€ 6K@Øîdÿ•˾\¹-}ð-¶ú@îa©ã@~Ùð³²éLíêÕ«·§7t2®O_®Å®· |ƒ‘þ[鿸OXYØ”ÅyïÊö¬ËN‰Ûp%ÎÅé7«îÓŸÏ^®D&O?¼½<¬>¢×§ëÄdÙã>¦YÕÞA,ÿ+ªöuߥ•·âêrþcˆùëŒduAÿ—ùã‘5…¼3l§â³ÝæúTÌ«dgþØ yÛ¸ÀÎü±3l_ß™?væ­2b}s¼FäÓN­Þjö«ëã“›ãó¿^­OÍ/¯83ú¥×Éç‹ÚXP¦ËwßôÅüç9Ôã+>²Ë«ïoÎnNî± Ž*7=ýÃÙù\xçáwáÊÖÉmœžV†–úñøíé¯Oÿß»Ó˓յÖ[omð’íÀ´wøKƒ¿ô”ñŠÖà9¯®¯.VߊxøÁ‡ó„á—Ö`ù;ô¥ïÑ—vàKkHa¾4¬\`ìæju]íj51å3XPÖFSú,–¤Þ]ÿøî¼3¯-45®!¸n¸Æ»ƒùø´»G2DvÚÎ ûA£Ï“‹B[cD[…6ß/îÉÿߙ̯>d2hjå͸Ùqh«ãÉF¡Ý¬(´m—cå@šÕÿî×êOòéÙý§‡6ü?’(»Í:à:;o§î´ÀO|tvZàN üw×W¾%wZàN ÜiŸl žj ÛÊx;=p§>„¸ò†Ü©;5p§îÔÀø¯*MéÉ©kŒh‹ÔÀÿ¼ºzùÓõñê,k§>¾¸ïžŠ¸ÎHž¬ø$Ëy¬,sïP)6CMZ =`Kªöm7ÂÆ`ôCÙ!lü‹òÒÃ#l<ÊŸOûdx!mí>ïª9ÿÏOþñå“®ÞŸœÝüúkØéÞÞüz¾º\ž~ø¼Ìu ºoË¡ZkPÛr¦þHqûŽÔzk±á÷ÑÓ´šþ+PG›^ÀèéKoØzøYÞ¿C}CÞ7ߟ¯!,,¼óðVæ•5%®'zxu‰ºô««M·ß{ð!þüz Dƒs©q¿¿ÂU7ŒòökŸ¼²$ûîúÕñÉéz{tñ¥ü/Œeͺ¼Ûrq­[nøéâÂ䕱¨NÏû/kY¡‡7þ¦+ó˜ãÿ>»x·†‹ÕžðAo?&šÑgµ¾>Ã]{´ŽSø3¡|Í|áHîÇ-”ýV>ÎZ3ö¿¼¹º<]CDºûâæŠÚ×µåÀ»/îÁ øo,~D‰éψ4¾)ìv'=m›ô´ž>›ðô½°ˆí•ž>‚Ém:ß~šnƒ‡ ¶ÞüÝ·mÅ<¶Øª¾òMÿ{Pƒ†õ G>ßgåÜo0$nô@V?ùÿxŒƒ¿²:û{žâ-?±HÝãë³›×§kÐØ¦›t]KøÆß¢çg7ߟÝgêÙ]¡›ì˜Þ]¡·"~…®¾"~…®Ë¾v·çcÞže0ØÝ OçÝSõ®¨äKFŸëoÏ’|¾~lß¶xªHO°Êü®¦ßö¢:­ ´}qŽ;ˆß-àòǽ©•á8¶¿»½IþÙOFYuÈøiuf¢oÙô[íOýÕ·÷‡\m³.x~uý—à&2Ž'(F=iX”M|¤µÝ"û+‹K›Ž)²ÿd@EÄdõÀcúæáSƒ‰l+ÇڒϦo¹§øñióý0ä§ ‘ýð ÓOÀ³˳éL­^—}ðqÉVN£Ü¶#µÝø“»wiÏýýÕéõÏ®7Áв)ë|süãêk¼ 6O¿·²cÿßë5Þy< °w—'ßmSyr›í ìM{ÿÛíO»íöøÛÍý»0·ç¨}ˆP~¸>¾|ûjõj›³û?FàÙt!îiO>2]gì&<´ ‘¹w–“ÅB4ÞWçç°4›2%·gwa ÑÇíÃÇ”°úÍWvÓ‹?\¾´RVDJDyñ׫Ëo{ñÙgòóÓŸÎ.Ç?<ûë´ùOßÿzñãÕù³ß>wssuù»gÓÞWýÿùÙ»g¿×G÷uÿí›gsÄÎßí¿üÏþÃuÒÏ{qï/{ÿçÿN{/é¥ïú~zæëÁ4Mioß¹½‹þ~8z¶?ÿ¦ïðË~ð{ûíÀOµUþ¥ì>£ ô{øãDOâ%7´Öö¨±þúá3þ÷È>Š_èÑ©âm¡7FŸñGŽž_Ö¨Kc÷Ÿ½êCúúYpýÕ ú§äTýžoýßzwìùþ#wg’ÁÊôd¡^ô~Oý›ÒHö ?óx÷ ?Ð_“/{öê~o‰gO>±¦çŽâ7éý¦­Ð7¸éCÂѳç?ö5ýíß.i[½ÜûéúøåY—/÷úÍL‹»ßh¡Ý¢åöžÿôl¢/M´ ¾w'×=!ôÏÕÉ·½:•¸÷÷‹…Óòûâ=?Y±Åç+µ˜<µH õüù³ßÿíYëôµ´í:ÎÓÅ8}òÃþҟƹ_XÐ}™Ñ…½³Ú¼ç q÷_Û>çφm5ï5Ù$ºGÆÅ}æÉûÖ9¬¼Îý¡œ&;L´*áö:‡å¶|{ßßâó•ZLaXç¿=ûÍ‹~MÝ,ÜÆ¿y1í}ñüêê|ï·Á¥oÏ~9=ÿöôúÕéÉ ³¹?\’nùSÄ`üæEÜË}äµ31š‚/¾;=>çè¯þ74¾íãéõeûþüŒ‘Ã:ýÓõÙËÿ¥M$aÿÃÃßu¶úöænä&øÍ ÷AÂÌ»¾™qCçíôøOïÎ^òÕü›ýxÑ÷øo·÷÷ÿ.fãK{&~¼¢ o#k®N'¥¬Ä×óžý©oü΋ÆùÎõÀa·ö_Z§É¶¦i_Ó¿ØØøAw¶¾CÍë'ß·«Ý:»Úǽ™Ðw•£.-Û×ôÕå7êÑÝÝýÞ–oïï÷·¼°Ç.]žg+à†p·V#/ùiœÐ…™–ùç…Ðu5VNVóp^Öýf?Í«/?:]ÿ…êAÁuëp'»™ñ uÇ@àŸô}‘†ªÃïnXë.ëƒ[X†‰×lÙm¶üÑ¥÷Ù{[½{£-táNû›÷é ·)ºSK~¢œR+±ŸbºŸª£¼ýïïÇýzÂn£›8¢ô«£_7ú·£þ¥OÂPû—'ÏP¿?=¾>y½ÀNÝÞWoÀQÝŠrr¿Ä}?ñÁ{+}<˜\¿ô\9pž„Ð|Ð/½Ð_ןú£?º6ÿqxqhñ2‰kSL]TÖ×ú¿Ò¦þtòL¿§”á½…ûQÓ@ý篗óàò;‹íw±dÏ¿v¡=RWKm.–´—]Œ%&Çç1@_3ÙxúAÈtºTS§Ø[ÊÍÓ±‘³°t“.èä{_üõêæ»Ó“«ë—½Ø«uçöv=üêÏ’ÑýðêêúBñgúžzyõã鋯þÜ^ô}OU“^ÌÝvMÈß_ÞšAß Þf[|–MJ·76ܰÙ:÷ýKß"õ ¦.wö•k¥OäH%¹h¤}ZàP j *žÈ¾Ë¥$­†ƒ–;×Ρ r$Gº "Q\M‘B?íé 9Ùˆˆ™§ÞJò/yß·R'…8ñ3n¢û$L¥dÜ…µõ·]<¨5C¬vàd{þ fäFéû±wï ×P!¡÷kžH5×ìÂvè­á„®¦Jlã3¡o-j¤8’òûê÷yê“Ðß }ûõǃèCr¸ôjW4Žˆäƒ§xr%ý°÷?¤B„]H4-ĺëAó5Vúv'åØ5“F{­zÆ×’]'ÄRÞ€ÞË\zÇq¶Kèç˜Ö %wé}s¼N…düÞ±Jc²…¼µØ‡+S_·×ùï4ß±•öXï¾[²íè›%0a_é§³ÒAªtDûhç# ÃA_³Ò„œà|,ôƒïwW ‹©ßå¥/z¿†")It™å ·Zö8Štoñªæ½Ð§å¿ R½ÃF¢eÎ}$à&b"$’ø®ôxL"µOp_„>U-eÇ‹ÚU´õ*Æþ0õ ö‹Lh‹ÚÇç¸ÒëB_²~ÿ:¼T¼ï«Ó7RË;¡†™¦•¾Uqòºô‡ì»7/¦°o¨Nêû'bNéJD(SYXT¸c\x¦÷…_й‚ÐO¾Ô·š“ÜE„BvJ 0ý°M÷ÓWƒK8}¥FbEÓ.ðÁ§\å8×hÎ=þåéû¡Y¥à<ö ‘ÇeY\ºÃg„%Éþàç5Eû1 ç¿9:ºÞ5ì{º!ïØÿáÁc!O¿0èöcÕ§]ïóYÀkšË£ßïëÓˆÐ7qÄØúþ™³Æ„ß)¦È{ZÆÆ3Këo/—g" l~¦ôT<Bæ8‚ùôAæy?¹ìiúØbGÆ|Œ`©5ºÒ{{¾®2ÓÞ_ê‚aŸ’rP;_B;}'”¾*ÏõýX*ŸjŽDò©Òú™pýˆÎ3|{ï. I„¿ÿ[ q»¼´›çd¾¯ûïLï…o¯ÁEZXÈzëö‚Ÿ ±3çLœÊÑÄ£÷sKž®[S¦nÏšº3¯wfþöêp·n­"w«/~è'®{g’Ü®¼ƒ†xk“,›,jê’øõW— Ùçõ÷ïÄîúÝ¿ÊJ¿zÖeOf©ÿ>Ðݺ\×ïã‹®ëùêX a’sŸ‘„Ô tþö\?ÄEînp¾Ãg}hØPûà?4#¹/ Y»úÛxŒ… ¬^f¶¿Ô™àDªæÉaÅi{’F¿kçô÷Ãg½G0SÂA<)ƒ5ÄF;¡’_èZÌ ·h¡J{‰˜t¦þôžN½ºÐ¯ç¾Iˆ;ÓŸ:3L›?ÓuL·÷qò5@JìÓZæi¹3uý®K›ÿÐW§D¨YĽQúÄ©¹ 60>ÇÜ+êݽ©ÿ4á°Nؽý™Îüè‡Ôo0ã‰5;ÈLý U‘¥¿ï[…M´óíŒ-sgÜtø=¸vì÷4±ê.IbèýÞ‚6ÐW(Ç.âÑõ@Íœ¹yô÷®”“U›Qú0¼ ¤zæ–}ÿC?ÍŒ‹mõýÎPJêíÏVO^ë§³27ïÒ^¢ó‹…HÎCûïÛ¨w¿“2﫾Gbâë-ÓMÓ·W¨‰ÏT™&Zò;$˜ØXÐ"> À¶·ìðέ(F‘Ú^R¤Ù!БÕYDæ]AªÓ¨"HÉ/¤ï'º#"©ü]²îò R?vý€mÙïà~`Ùž¤‘~áö\ŒDêRmÿpÑ»²ôÝÙ×·\›è÷)íQêæŠÌë3=ÜW ;€.ϾĴ}:_..Bš‹LJcåKþèî÷ßëLèzLß­[›”ºÎVk_VÒZS\&döû²s ,@ÿ!`0Ó難Й'‘“®8ºÜÑ5 ²Ð„@ŽÎd ï%o:ÚN1×·r¥%~~ò±}¾âG§ÜYNgÀ°åôEé—È*ÆkµhL{'äÑwùrïíëã7§{ð—šRéí ·®ä%[Äõ7Kíîv¡ ìö†!Ú-³¤'G¸éþÕáËM¹Ca»X¿*é–««K‰NÂÄä" »}ÿÑuÒ5ÂŒ Ü~>ÿB8!;[ËVRçÂýÝØ˜ÏнJ³—Ü$];ô¬vâþ¡©žpõúK·gŸÚLÞ™.jOtc;ÓšcÞßWgÖdÌ]…ÃDf~WüÐ{ïÝžÔlöy¾ õÐ÷5.‰Î©sâ‹wJm 9]@ɵ%êfïC “î–IzÕõYèO. ¡~;‡%³·ÝE'¨ó…w>Ìò¬#+UŸ™ÓVßÜsáäY¿­'HŒÔ„¶]ÔWO!ñ…Ù¯³Ff)Ò®suÌ?Ý94˜".’1=×½ÒŸt‘I~ò°cùÞFдB„Pkák7BîÅ¥“|wïÂD'²Ѧ‰[™:é_ò´&ì,î7b€¨'ŸîšzîkÛ Õá‚ï2ÊäEüÉâ`îrÇK_ó……Ž.PôîÝÞ»ïuâ¨ð}Á»\O 6“h@¦ ×[\Â^I¦ /uU=ЄïwÖÇ–ø¢ÅíIž‡~Sw©ªvÑ„„…FüÕÓÕFâíVç—¿Yhk’»²Ojÿ@cöú‘}¾âGC—¡HK쇣3(F¿ t¬ˆ‘²è¢$æÅÓ_ûFò$;Ò!éS^’‡q €%á„Ø†On¦`­aÚ÷hH.ÎØ¼¬ñ É/‘Ì´‘Kèš¶)N?ÍFî# -Ÿï:–´«nAb,]“ ƒZ¡½ ³N?°K6Æ3µ˜‚Ã}Á¼¼s5ûÉŸ“Ol1ÉajàÄ"XgHzÏ䇷Hú0~kîÙð¾Fê#mxÏÖÂ~rºÜ¹L¢ KfåÕ*Ž\ ]œ6SŸù~X¨;Sß®‰ì3µ‹Ü][‚Ó‡ô2ùíûÞÍ)¼çÕ~äÅ¡òÔ_íüöüG~õùª_ }ÈbÕÏ\WCröü»eÖà¾+|ß]r­z1¡­"üõ-í'ØŽr¿)ت°ØÔ…?âãÉ“g«¯Ù‡éº ¡ß_w—*B¼²Ðst*éDàdç ^Ü‡ëØ…Ñ'žŒÁ¤Ö^@ôç‘îTW—¾I\!£îTSg¼Þºüæó¿™û)ªNE¿¸(ùÝ#¹Ý]²µD°; ·¤É£ÑØÐE¨*–Oàÿë}I{‘<´^¤óKn3üÓgñþpúËÍW×§ÇË<‚d½é·ƒoÏâR?íAýP¤?ÃFCáJÕ‡~®ÿþÕò@;ØÃBWïøK¡ §Yïg{þåH~Ù—ßîþ"?¿¥-xÆÑÙOí»êçg¥êZRÓöË‘ü²/¿ÝýE~~ûi¶”ˆ]®«Çø¡‘K7 þÙˆ}õyüÌ´¯þ|ùæÝÍÂÆš>åÆZâ™Æî ‘Üv~±%¿ÝýE~¾³£°'H†±}„_lÉow‘Ÿ?Ñ>rlêÿСJ»gíàÊùöü]ÿï7?þWŸ¸gìÔÞ{~ýîí뽿_ÿtz½÷ÍõËÓëß}øo{üÇÃãóó³Ÿ8…Džü¡틽°÷ææ`ï;Ò迸ûlžývñ….À|è;­£‰þÂ7ÿ<>×çû–ùÿÙ{ïõu\ô}¾ÃÐ;¤@è ½3tf˜B‡¡åìÙóÇûìÏv IHB(»çÞûÎîþX†8’-Ë’,KVe :4NÎú»á¦¿|r>eÆàáxÇ´G žFt[þÃ|»]r힘9’€@4æË?@cë“‹&3˜‘h}Áÿ1ˆÿChO†xùÃÅ.÷‘S#µ @¿ÎW”fÀ»ŸØÍå~bÿ )å~B.øi¾žNqSè&ÐÿÎpäÖ±•]âaÐ-˜·€%û$À>AËçì±&…Ò‘^¥ ý7ô@7M"DZ*IÑé±Ó Ÿ°±L{»¸Þükþê–9™t¿€Q¡ ! Šÿ³OÝIÆ]K'¤Àö€)æë'ºA†ÉsAê–i‚2gÚóýè9ðBãÐ.î‚pmýý|xzæ’Æa·YŒŸØ«Ëpù÷™òË囫¿šÉMOxiÌÏ"úT¤|JO íZ7çŽ@x–•ÓØ¡QŒssÓ͘)yzÈɱZ£§÷±t†Ò“æÉÂë Êtʯ÷s”ðŦ8¥æûí²ÿoúO&ж‚èWiʰ¯ÑéO`ðO! gw˜®Är¼]1ÛŠÄDÀN´”!t³ðép"Àé}™Þ+ $¹YŽóƒšAð¡<œÿ!÷=ˆžœ­ÞÚӌו*“ŒüDe…<31¥UGU^ð†¼4§iäú÷ÿIãNÿ9aÐ:mRBÑLJÿ¨´ÿ=*MµpøGý£Žþu$¥ƒ® ˆùG ýÇDüíJÈÿúG ý£„þQBÿq%tÍÁü?JèÿJ(µÛlŸ³þhó¯ÿÙzH4ŒôVýþÿ±¯béÜ(ëþnIu+.I…1Ò†€ƒ•ìØnçêÏ¥ áj`MEêpZú¸W%ú¦m)9ei'¬Ïï£Pâ?…ü$ôK|лУµÌ?Qs?\îø÷R –k4Y>ú ûÉ2ÛìþüðÇx‡îGCÇ‚Ìo›m(°@¶ý9ëÅØ&£þn~a0g1÷;Åž£Ù¢í±§ôŸÛ>¦‰ñd³?µÇ»=s üÿAÝ¢J€¼ýÊ6þ‘ÁÿÈà{¬EÄGÖ§³Ã§w”£má'öDzü” fÀአ¸¼^Ìÿñ´½Cò\k!þ¦´‹ôÃfxüEùaD6<ó(\ÉEy±<ÿòã^ ÞHáò<8î¿Oß¡ÝþOйÊv=»ÜüëÉû´=ü#îþwÿ MÎßmqòAýo68 ‘Á)eNžÛŠÿ؆j„æ;øµ\>xâ²1_m—œ¸¤E§÷qzRëW0B¸‡x„8ÃU ¼n£8¢ôztŠ"ºŠTí/LJÃu¾:Pß]Ë;?àöÊÆýú—Fü»¦:<'Œ¥3ƒwe£gW,0Ÿ@° ]å1[¥Á³Ôƒ ëÙÄS}ÌG¢¨oî%½LGÙÂÖÉ÷ÙÆÒƒùQ€™Ç ÏžN$a'à­Ätc€—Ÿ`0ßÓGq8µ-÷§ãõ¡Ï4Ç)Áxƒ ›±öH®C@à§l$€ y1Üb¦˜/À# ³xéaðr ð{„ƒO ã ‘ðÞV26ð> Éï!Q°lTØO8 o¦¤!ya—`o€e-ÊK´ ">d Á¸ø…„ÿyB‰µn,$R‰Dd"HðzÌGC‚ •”±‰}°sg€pDn0G<@^ÂÃr»ßÁ$MŒeæc©³Ñ™ù÷`plØ#ŠäÄfˆ Vf€Î"rlȤå‚& É‹È Óí#>Xø/Í+$Zé‚‚qÑɾ4‡ƒé½†p Ð/¿Ÿ‡ºå$§X’û€Nðe’ >ó´W4&ŠºƒCW‰ ÝÉåõ²£$½úbZGôë8;qÜ(i~¥Án8΢(Qóx½è]ðŠÏÏ^|Çå„Pg‚Yq@Xþ~êº-^tÃû´PÇ` bRšLp’d/ÏCó(ìAP,Å`ÏÐ=`ù2—` y Ÿ¢^y]{4Ð%¿Ÿ_>¯—Ù’Áë•1Ô'Ì„îÇÈ 8›§©dzDx4BÝ!$³) âè9ô á¸ßçE+ H²,OÒp–GåŽa,Á¼^xýd”ÿÏtCo{N²ôŒ ÓcpÂ+?@רYôÂÄa¸p1xmư&+YXYå¥g]<>Vx‚ébà`™Ð‘¸ 0ÆÐ딤Õ…ÑGÀË ðN¯l-@ršË ûã'½(@Þ^€9F`ðþ˜ˆŽ„Ÿ`t7YA° œä_ÞEáGK’€¢ e;-@aø*s'ÚIDyg…¼¶^´…®b7"qŒQ`ïŽäËT~ƒ_8­@ÜêGìÏQÎëñÓWé¾E˨! -t …|$b~8Œ¼ð@~áæÂ NzÐÒdW”ÇC‘~z@ºÂÜKÐú‘„™ì·ºáŒä&ùÚ,r¨à û}£xI:n×C ì/¼ŸœðÓ¿À¡A&`E33-†i¨~ØU´T)–ûÌCùz ùabƒË 8ÑCÇ {üˆ 9 NÁÂ6‚7OPˆ x)´DX¡IÀK¼‘€WL¢HL„HÉa>z`8ÿ‹‡(°û8ÌØeàRp!ãH×ø ŽËDG“ARäBa4i$!ÀÓ<$«^ Â×K Ÿ`d7ËÑSê¸?\pjyzÚ£OÅ¿/¾Ì5„ïÊ»?yoC?'ÝV–$À7òÕ)\X~‡½€SÚZ‡“ÇDÇûX6òŸôhÎJˆÎ.tÅ«¼^­»LKs@|Äï^vÑûNú @Â$°ž»>$0c^4yx- £“=Lß|ìÌR¬Ñá£Å ‘€}ò˜ WåF}Å.ˆVÑPs ,êz‡òyhæâG¿¶û¡†K|a¤;dCx¿R„³®¾êZÐü€©úàƒC`¤Ÿ–×Ht{1’N€ðø|Htl‡Ä_h>´¡ùîãD¯7àA2Ñã…M°ß륥姯ãþñ•=ü„b‘•_À "}~F× ›ôÓÖ-¼Ã™!^¶Wâ/ \‰[´åŸ,\ct¼u ! Ð=iP¹b8`tÅ׆´êò’BmHx‘\:&€T0Ôà­|HŒÐÚÅÇvLü…룵,²O|œB‹í1á½wÒú`³€´,¼A Ù+~îÃ$˜™P€Ovû‰Ó7ßs@ æ=c­Ø‰¿°6†6B— vw,‚Þ~AA‰lB ÝPGoie"üv«‡,œbð‰ Uœ „õt\“†Ušï|÷ð€úÜ›~:F<óÅ P7U ÂøyéÌÿÿô€«Ä«4ÁÏ]çîK%-Ó€ä;ÄP"µWãõ!Õ?ôÑUßÌßçÿOuºÎÊ–»BÙåtÁ«ÿ<ˆÀ—©DuJ6—ªEeü²˜Öû¯?ú»}Èz¡0h ßË´cKRq=Ù þú_JÁ|=CÅU±1>¼ 2\¦¿µãïãz³–ë2|ËÍp1©ÛòAÓçè•j±¿TÍëÞ» †ñ/Îäÿ¦…üCõR‡Mÿf.†Ã‚ÍÂfõ÷J²ÿ÷}x¸ujÙñ?¾.0PÿLWþ/¬Òýä_ÿƒµñß¼ öðöÿå³LàèVkŠ;ù–ì¿æ£ÃLÍ3 ÿ^ Ë‚Á}‰KÚçÓ™©Áµü{æÄá¥}è®Ð #û·šAýûo‡ð¸|^2pi8ª/÷p¸Ð¹a 6`3º*'‡Ên>E%‘/Žêüÿ6~tè bûÛ ªþî.¬Æ‡þØD÷ö#pg?ô#Æ ¡†»xË…¤Ø•¹í˜ü¶êï"Æßo7Q«þr¾gÅ2{‰úh;wÑ¿yØpü §E/Ë?ŇÍS½¿?Œwó¿$.ÈÄŸØŽ?-Ö`›·9ž¦»Íq«Øt¾ß,û‡ñÓF>1iŒ‚Ƨm;Þ=íç«ãÅèy¶èïƒM7z}Þì„r>?ìúëý¶æsøoЧù@c‡£ü²°žг£Ú¦Sm£®íŽÝS^/é•o‰ó:p±)¯ÛrÀ)ÒOr-YY²¿þ£¿optÂóWÝ÷ãÝã'è¸{Jæ‡þ`¾œýey/Góãê©>ó{d"®8ÞG 8Ç0ÍÛ§Ì^wµ3`žNü”DGRïg#"Žà¡¡ß 1Á•ãa ¸QùÜÃÑà¼w¥þzzìOÇOÕÍ–ÇÑ4ŠÄr<AuÐ>­yv]%w›-ô{ÒÁÊçæ´Ü•ù}œ™0Æ—{"‡ŸÀ<ôò>/°=87YÝÌ×(,õãr¼ã+'¶;LÊp™ÉÅ3ÕßnçCtU—¨¨<þì@«ñ:C߀îáõ@?:¿õñ²¹©ÓÈQgª›ýŽ=%Xbã4/ª¾r\`Äß@>E’.?o‘Ç(Ï”é?qê:º9=8,‚«à¾kiL³ûò“\>X©Î «¡÷R+Füy%ÁHXæ¨ðWÓ‹ôûéwYùñߥ·ØjÈw»=ÿ ) Ðýõ£žA2ýá8¾ž./6F$µ–ç ÔúŒ…½2TD­9Σ5juâ %BMy\aÁ=.Ì…ñ<°@2dŽË%ëådR¦ÁS«¤ú`5ÆË\ÿÞ-mÀ”B°ç \™¶ £ã]>ÅoÉÜ„A«P|Æó8ñÕØnIèµ.oت®žg›ñÃqÕŽ}(,ŸJã?ÆKŽœœß{šp^æÍñ°œ¯ÇO‡ñŸ‘p•i¹G·$ìÏÁR¼Æýõaþ:Ñß E±xŠxäÙ(·ÙÍÿÚ¬s¼“n¯’¿“;äÛvþÞÞ잀2;­¹q —ó-ª›»ÿù´OÁ|ï•ߨ²^ÿÍãÝFßîYßëy.®gÚK¾žïg`ºx«Zµ@€ª`pcZãŠAøW€Æï}¹uÇ5G— e ¥ÒXù-$˜¯g¥å×£ñŸ™ùn¡âWãáfÍÈL‚õÃR¥jiÕ9_òû)Ÿº™eì£;¦A¸snO0ÔMä4¡,85ô;Án¯0ìâûcx¶ùDZñÓ‰–ÀªkÀ¢ÊlÀR¬CUÉYv!Øœ»™B$ÒÅW¨9±#žây¥S:¡D„ÆPÆ¡(äÎuù‚ÁKB”ddP]N¡¦F 7äİ U“ë|‰‰šÐÇ€î6-*"Q)hZÉ95çšéjC=™`ã t¢!ª#Ýö"¥„ͤIE·QG+žˆX8ÿ½9)§ùš®×¾Ÿ³ íwžHì>ÅÖ¸6×–•믧¢N5ƒxûË¥r«ýb¾€!.„BCÜl¬‹Ý~¼Aµì[7Ë%'L,ç»iq{öþб¯œ¢8™zHèÂf_O6O'Ãê¢àÝ£ÐY8°1$pœõtXºF4DÔa–`h_cÚŸbcÔ¼³­ÀãåZu§¶#ÕÀérî ©9ßnwL3yì° ƒÙà\T¤¸/vÓmÅ„dý–ç­æ+°T\K èÕµ€ä m†»ÍöBh Ͷ¿ÐlÇ»îìRètôw{…y<È@žzQÑø°GÒÉ·åéJ¶õª¿[ì…ÝPј놊¶¼nH­¢Éúà-•EÝf»›lÖJò6ÛƒÍÝA^l÷` |G—T‹ÁÚzŠMÖãiÿ(Óh(>dmÔÍZÖ¢³ Æ“)-Ú@»ý¬L챕`£ñz¨Ö oÜÄHB¶òIÉù?·.ë uMªÕn'ŽõÊ´œŠ[Ê´c´ À©ÐŽvF*·\ÎDh}•}Á¾S¦áf;T*¨Á^aÆQƒÑQq ­ yÁëÊfØ/í/ëÔjr\¸„nÃlÞYN¹ Ð;ýõš ³—Þ«¢V—¶ÃÏ\²$7`ë8zÊT²õ8xêYòÊNPŸ“æéY/lÒVÀªã™~R2´Û¬“ŸIº ëù®þ­°9æ5Ü ²ÎŠ'mjJ,Kº€¿‡P!³ùÍ%7dàÇý8µ¢C]É-uœ}‘·©æûV¼§ÐñêüÏñ²:ÞÑõ¤8)ÁÆ¥Ó.¦,[oÞ`K‡¶+³Ó/• ß&¾£_B!øgÑìL´ƒæZTô[*p]9³W¥þþÀžÙçSb¿R@ kÛ_³ÚŽÄ=<¬è4Ç?ή݉9ëîˆ7’ù¼ß›Ã%jµÚô1P-$¾´Ýh”L¹+¹@(Ó7î"‰Æ¤¬/‘¡­v×Á´&O® Vb‡À4Fø‰¦N^kÂLžmñFÿÈ{jØÒèuÎö/ô#xü\Ã4?ÁÏ‹9ÛV„³SùOòõSo}ˆ[µÆ³Ÿì½¸ðl¢ûV×GϦDÚ­÷ÀþX\ÓßO{*ºˆ¤M›W[6Ñ£¾‹àÈûí΃pyÙ¿ñÕfzÌ„3ù E‡íä<’ ÚÓåû}úìéRæ…" Çá_¹…¢Ö=ì| …Ö…`¼áˆ­“óéè 1úV½¨+5Þ?ûÒo“L"|ùY¸‹»Ç·zÇ[¢Þ”Cù}®’`Žc¼ØÕOÀLþØÎ@í=•åÍcb[’‰¥×8ðùÜû ß ó¸}ø€ËCW+Ì¥M¼qÔÎì‰41ÉÆñÓKšq¿Ó¥KMœ=2•(—£â)¥çò/ÄÃiõVÜ©ÕE¤Õr?Zmªã<»KjµÏ…ì§Ž™+«íC§µ¾¼þjmÁ€ ñ8šWЂY±–ø—>cÙø±¿¨Žsií­S?|䄼­5iu¦ VïH½h „} 5úÀÒ5E*^Àûæ –ÕZž—ïZkº±ÑÚŠ!—Ö^Ó%´Žög[ë쥴®ÓªuOç-¶ªÖ´øÞ7Ö’úƒAK[”Ök ´”Cÿ©õá_;­?V&µŒ'§ ¶´ŸÚÐpfH1u|Úh´PÑ>·#SmlÛµ‰ -¥M¾ë¿´iÓΠÍTcÚœqÛÓæ+[½¶è<Ƶ¥¾ñKûòl·j«&*¯­ âsm#_öh[ØkKÛ>þè´¯GZûö™,½×–OûY[ö´ßM¯C;h×ÚÑëÖ Œ¢%í ˜)Ú… ËiWÁî¯vSqeµ¿Ãίöà r:m¾Ôé·‰²Î”Лt–ÙkKgO>c:çÞø­ÃÊýŽÄË+Qçý tþ³E ®{º¨¹ÖÅvÝ_]rVoè2ŸE.ÿ‘_êJ½\EW•=ºú²¶Öµí¦®‹8½øR§ûjh¿tƒÀ< å ݼ¬ôÛݶêÏ,s‹Òë;ƒÞäyžé­óAGïlP9=Nvýz¯‰´ëý«þ^þMô±úÏ›>õR¨ès ,£/u}µWóè›?§¾«·šõ­N߯öwúñ´±ÒÿÅQ¿®'gú½)>5è*σّœìŸÙ™  ^mkeô¾~ ÑâVkH¦p³!GƆ²½ã5Ôûˆ¡ã f =w»jèõï†I¹83,¾÷GÃöuµ¡cDc4š^_JFûÑÜ3â/ýµ‘:ÄíÆð‹)jL`“†1;«ÍŒåbÄjlø\1cWwx5~.¿ÆÑÏœ2þ|}WÛÉpeÒŽú“y1ª™\¦ÕÖäñéB¦`7Åæq‹ÆhÊRí¢©üºX›š&GÄôVËL}lî1MÇÞwÓ:Õq™ŽNkÇlÚwœfçØýjö´?\æP-Ô3'Š9_iŒÌÕ^ôÙÜ™[¶æÏã¬lžP]»yUÊ™‹Ø3æhDkqM¯*@ endstream endobj 155 0 obj <>stream -‘ÿÁ’΄^-e -ÍuÃdéõúC˨°-Y– Œ²EÕœ­î¤½jõ•JQëóçÞeÍþ¦öÖªk1²¾’ë÷F[´Î£M€Åú»ô{mÆÔ¯Ýæ2½ëmÔGê×öœó,l9Ò0¶ÕL›¾­»ÚË~϶˜¼Û›¯w»Õ:ý°þÍ—=”Ó ì©olbq¤–öNùugïëöFûOÙï²tuŸÆè°|é"“q„›wGzŸ™;*ýÞÑý¨’Žá7™v¬‹ŽS·n.œNcÔîôqgüå·ã,.'gÛÛ#ß½NÙ¹pÕgÎãô sÙïee,]±Ù`qÛ–Ž«] \ýb+çZÖK·®@†ÝÎz}àöô^wò˜ûtW‚ÒýÖ*|º#zÝ¿ÕÏf±ÄÃÙÒ/°go?ƒU=Öž¦:Ø Fz±5À‹ó–’ƈã/V7iXgx¾•ñÖÆGà<¹Á×¹j›0þÎã1Û‰è&½$ŠÉÏ.ñjse °!ñ¿%½™´¦k’òX¿É¤÷»EV}‰ù0ÄÈŸÒÔïÑu*˜Æèq’vO$ì3y ]»Îój3<ã®aïÙ“†½×¾°¼ŽOçÍ&“FoË]±z‡Î)æýuØ|”Í–x¦üøwŽÊ$Ü ªYo|Qƒ¥eIýº&Ÿ­ç¡|ë(ôYö³øêkG‰…o´ÛØ|ûÔ-åJÇÎå¶þb2áñ¿EC/þy1öÐWbD€«„©½ ÔÒ³pà{lëÝvmón-Ìè´@f=gƒÝñlœ7#)1d(.7!O2› ¥Ræ}¨™ú(…F‚9tèc0fÑ{ñäÏ<\ ó᾿g ÿNÞ¾#Îçn2µ¬‘—þlùjŠ‘mÁKFÙâ.I >¢/E[>úõV³Ýη¦g§3¹x޾ì>ž+ÛRõ¹Ÿq¤žwÛ~ æ®dݱ¸4Ç£66Z-¶qíçÇ"Nößçñô¨;w¦IüÇÜŸ%ÌáÅO"P;®Å-¶K|&²úÄv7´kŒI׋LƉR4Ù8 ÉÉ ÛN^£”¯ò²O*.Wê£3‹§¶ßåFÚmŠÎÓ ¿Íšnõ´ñôܶêfÌŸ}&äž2/ãE+3¨öYmÐÉzþÏlÞú°d?ŒÃrö×nÝå°@1™KUw‹Üë,Í­lËiÞÑ,Fóq«õ'ßz&ó?ì®`=/…èXo/4š³Â¬=Ž-•÷}1òöÙ.‚ LÈËù¡dñﺥÈ‘ÐK sÜVšµßÊV\Û.Gç‰d¹ÙšåŸDHûb÷Mg/q*ýþÒñê_^Vá^ªâ*gB•Ô'FTÞuGGå7½0W‰Y__Í?÷ŽÕ¯Ã硦ý˜kþÌFW«,F±6±SÖºÅ]ÅêÏä¯Þö»Ÿë«—V¡á›Z¬»>h|V¬Û¦V׳7ýÍçp³´TšÓÃdв ÛúVâ½l½5bµÖ®Z´½Ÿ¼]žEËí‰)ýÓ±&±ŸNZ7¿Q×ÙM¢éW*÷ñóZ±[B¯ÓEyص|ÝÔGkÐýx'üoÚþ|òœ•žßšŽàæm•¶–ÞñÉÞö^$§Ÿï£ÏA´g µ½¤qþÖë ¶Ñí‡Ë¤1~„^‚ƒV­QúØ4—¾OOŸÒV´o“ϹÏÖúrµZ鯼÷} _göo«'üN®ñÅ÷çûaØ7ä½þs¬Ýé¿Åªþ1_­ Bõjuе«ƒmPú_mqØØãïÃM1ßQŽéϨ6Äv£UûÝ:ö0ï¸yKŒ—ÉP}Bæ~‡“Jçõ8YLbä”$Èü´Ò0}MÁ._;#këЬê^µgËÅn7÷ô¬¡y­|Ÿ¯_JÀúü¡ªÃüO£g_ýl§ùÈ"`ZŽíTÜ·ØÿlûËpºæ_vøx¥{]EW±pcµú$2…µÙ0¯Óf¼·º±ÈÆás6…ÙÙÌÑð–À*úmµñõ½Ýصñ×ÿõþvò}ÝNKºÆ»˜ë£½û²ù²{«qø£œ3Ab¿šB÷T¨:¢ç¶~ºý¸^Ú· ·ðÕT櫼Yo†³Ýf5Nmþµ¦¯;Û÷K¿OÀ÷é”{ô¹>0C„¨«›åœ=†’ôÀªkTê}¼Ö`@0ãLkÎÆûñS7~:ÌÆOÌùûÓ~|€ˆîŸþ5¯Ÿöý? åúk~éð'4;ý=ü™.:p÷W¸žZ{| ý{s|Ú‚î>mÖOãÑ>A¨ipSX™l.@äxȸW×c0݇ 1?ÍQÌLÿiÙÿ7¼V£¿Ý2Ò×ìÃì^~BgÇ'04¶uùt½ÛLNèçû§ãz+¹”ù†Mz¸›o/N½5fÜgŠ-Ñ4±‰ ñ©#Û¸¹›¯`’Êþ2\.érSúî†ùzq™¥‡þzÔß)¸˜Y õñ”×S™–=(0—J^ë©–›]Bù(N0¦¦âáš i‚ç ½ÜºÄ?â“íoµ?çù‡‘ ÖÑ—Ä‚Dð¶W‡ªûB”¦ð>X¼LÂIzɼr1p\‰Ù[UâÃÝfÐ?”úÿï”™H)ô\iPŒHί‡@þ\?2ùÐq™Ã<Õ·°\8l‘˜å4ö´~’èìL<^EEB¹É»@ˆ!ûÚ)*å^54¦Ù¿_Ô¾]P¹7À€Õy±.’g,œ¬E‘O`))þ¯ÍnÁ[Éןõ‰èc Qí½ÉQæ“9{&uÝ—œdßl*ÆȾƓ±21&b­Ø_ ŒˆAQ•ð•S ŠG•!ÈK3,ÎÙ ä¹7ÿå“ý˜‡€ñÁæåõ*kž°¢”wÙwa¡Š&à~ÁåUŠ­yCcRˆ¸YSû¯s„Œa˽¦@Er ßU©Ä$ÞTKH$4ÕS’‘±×“Rü¢ZZ¢÷n%¦èåk¨)zõÔ]Å)€š³7gÇÕ`ÝŸ/U˜‡`sl“uG*vL*eø¢½ÁÛ…¤é­J²¿¥/t›O§ààZ'¹í$#“O#º ”Û íÂ^œDRØ ž*ô#^V„Ò­ç¹bz·‡;s¨ÿê(¦Š3ÛeW³àt­-d´‹99ï»öª•KSú`¬•–=ÏÁRÏ\ŽíŽC_&M”ýFÜãÑcØ>õ“š:0C,ôé²ÅÂŽí>¶/n1*iwl£Â!1ÍÕJ±°gÜHÎ#ÑaÊå2OÏP•F]€Ï—ʃ¾·ì!õó‘ð¼9ñÕ¦´ç‡™=Jé™”ÇÐIü,Í15Á I`_`âk×Þ{ñfÒÕ–GÊoüˆ…™XpïZÙSã1cÉŽ&#"Væ(ÁÔä£ãƒGo¯ÁIbvHÎ|o¸€ߦÔ/ýÆÂÏæ tyŸüœ~nÀ7Ó/<½Ó&œþC¼áÔ¯é>¼öGG1ðc±ÓCoÍ’œy¾Bḑ4Ù/Žoxl×Ê$ÇG[´]ÐÏBÃa¿ÍíéIiFcÆ1wß·›¾ƒóÏÂ(±4>›;{ï/5L¿°ÿÖX¨0#5F*ÔþˆÅ×CóÊ)‡Ü¾U/2œ qâ0UØ·Ù|汯Cb£à<éîƒùÅË‹Ó1N,}Õ=‚nÉKæÃúNÚðîÁ¼äß)}Ô—Ü|ÚÃíÑ{è?ØèÚ¥lz8%ïT‡ª­!¢‰…•r2¬Ù•0üC_N¹ûaSFkÛA,|ð‰  &#6Ðå=è»=š 3ßÂt‘nžt¤¿i`D—ÈÖ}ÅìÑhÚA¤ž§N'~^>ÑLrð* /ƒ4J¸|œ:€["uØhìA¿yµ‰Ô"5<äõPoÔÏ0ÞLýØSwñ7Ýï› jЪ…s©¯h¼9âUðo$˜ý¸ï£«ïŒÞÒ¯ßÏGŽD4× Øôsqæ_ºv9vº›Ô¤‘!z°}«=ªuè‚5Æôno'<¯…Ll·›µ<ÁrçÍß;ßQ`òl{bø“R8p>ÝY:Ñ AiŒ!{ähɤ–x+xƒà#‹Íi8Qj°‰…š]¼Y8ÏI)šIÝÙ‰ÝiáoM Ç~]ó¸˜NÇz`œ±˜¶Ö䌪¿¥XØ–ïvl\„¸ŽÐäàˆQÊÆ¿ 8â¶°ó;WjÑ•ÊÿøúôÚ§'Ôßø]ã•ÏD9“œü^Œ2ÉѪ‹„§ÄdK*Ò9Á¦¥È["×ÔGD}ÐA/Æ•TvaTµ0:ÜÇ&ÁÎæ¼·âvCðÍqÈnuƒ@Àò¼ˆ(Êï7“ä|?§ ´t¾W «>Ÿ;*4šV`%×­½ÊöHá­À"ö€#ÁScÉ–=|VñÆw!åžG,ÀÄœ£âÍòfk7óýLÚ_{ÕÃv,ÝãȱM;6/DÆD_Áœéáâ×Ä"@ dÙ§³éÝ\â1bŽ×—[¿]­ŸâÏìñÕg6W¼Øm¬5FžgŸÅš>S%Yúmâ•a3¥&qó§@Ô3™/«v††dîz –”w zÊÌ>|¾hÞÛ6 D³›´£9Œ*Ö:`a¿ìÑE¢§Lȼ6‚CÓÂ&ÍT±˜sfÂi¯=…c™ÚÖtóf9fL, ˜ ÎÕûi}úüÏs›'Öc>ïÛº…-«4ø%°">ŠÓß ÝH|{‚ßú1þoø4¤åé¦eŸy±h™&ÙÀ7k ŠÞaßf ßèË6Ú=×Á·ŸÝ6†Xðmšß=؈aY¥Ä xçÞ(,F)¦7t—`ç„u A„Z ú7Âß“ˆéò9ÒRÑbA-ïϼ· ‡J4j=ƒ÷8Ÿ”tãÏKÅpGšžoæÊgœ‹`¢¦öЉM 7„6Ë t”iþeé$ Ýîô'Í/ˆs fAÐX¸¹ŽEÍ” ÐߨQ1Où,rŒq‰-Þ´%þ¨N¬rγ‹,±hz#J°äà6–$*â Þ˜·–“%†I¿Ãàã@{à ÷=*@ á¤h^8rÐX„³JÓB¤û(!µTºÃ×àà3)=4ƒèù¤VÇ/ˆä¯QÄÉ`pÌ;ÜÄŸÞ¡—á4y"žF«’‡á¶Rö=R°¦‹›m ð’Ñ{ø:^ŸL‹À¬,nE #Þl×™Ž/4Ƭ1û̯…âÙ&Çš1œù:4m±VÕž6"èíÔÔi}¦M¨J2Q匕l;`[V¦Ã’Ì~Êi8(ef3¡Í ªí¼-žøÇëkk29ÚE{@Ñ×s'í ½•ÀìÇ=KðOÍ®lGX0}¬m¶dÓö—Í(§¯GB¢§‰å²§:ïÁT!¢5ˆ6i¾Ð°UûzŽÔ•ÒZܶÍ_ÑHy[3<1˜¦Æ¶t]N‘Ãz5áé!vg¥(°§]¸ì¡Apæ{´Ù ­ áü1›5F‘áÌšÍhhôf7÷¶ `æ­LéoŸEw¯khQz‚£Õ⛞¸¹dLà’­˜IYGÅ•À~ŸvÃNNí>ÌË;9µû8‘ÛÉ9OV¡Ú…€N¹^ª˜ Ì€A¬Äöñœ5#¶³/˜ƒMþ·‘ÞšœÎÒ{†çßˆŽ¨#ŸèåKf6ª Ÿ·Œ f€­°ùå6¼ŽVsËöiŸ¶«‰yröžÛGªü}öPÍX«ËP&å}#ìÑì·“á1 Ÿêfm1å~Í=ƒG5izéÔ˜§æ[U¬Tlàr²ë*„=‡¾Ëu;‰MÉ<7ûÇ.fÛD.á9&0ÜÑÚkÙòáóòþ„ŠNîÇìÑoŸ¯iƒiZxx»ÅÃÖU³?·û¿,”¦z®Š]àþ™–㬠t¨TâìèØí‘ki¨£a‡Áý±‰1ØØ™&ôƒçÙþˆhŒvç¸Ã’ j{÷ëzaÖ¥p?³ÆxÂͲ$•pz./óùaÓgÒëã7a ¬ü'Ø~ß°THÔª1°eì®^O œÚK£X=@»$VóÎà&™O-_wÔœñf²ÕJ÷¿§v{ºýšcå}ö}so2–bv'¾€Ò¿IØò$™ÝrcùÁ¬JŒ â¦ÔÀ3nHqLÀÄ„~>0•«Wcäé@Åõ †‘s¦ ;Û÷åÕËë\½I +›å‘HÝh •(}ͰL/F !BçÁôý´ÐN¾·`pZD`ù«×ù^Gô¤w¯ %êû´ÝFMN*ʹýJ|ÆÚ†Ãf¾H±ù›rgH· ϵ°IÆå¸ìÊãÀðèÖ!:ÑjÞ­ ƒµ/4<¼™”ƒ²q¿ö%cíV|Õ¹yBÛw;ñzÓÞKSÛüöÃEKlz÷ Ö ç#È~šìøº›iiOkÖô*ôÁ;ƒ F†¦TÆä~A¿%–~³•‡¹oÒ)+ ˜4ÖLö5‡ÆšäÓX°ãûøÔÔó1¬ à“êg,LißCY?ÙäŒ`fýóD?ýíœ.’)ºÒŸýFîx<ÄX}‹´ˆéüÞ]¨ƒŽ^¨gê5›|I¶ñ“åÍðêÔ¸lЙìy ëë¦&“!AO2vj·PïWm(aBféÀ‚æÏy®ó%ÆiÅr -“ά—öó"ŽnS#a!úm8xãõ– ô:°†ÆÓ˜ï€u²ñYÙ“ÑZï’Mü³Ðko­öœç‘&e`O7ã¾@ðPGÙŸx±“(‹@fѿÉ/'V•¨WÝH3OåP¬!ü˜×*²\°Ó”sÆÚÅ×ùÉ Og’|ÑßXfS-Ì šqÿ`;=­5zö›¾]ÙâÏÓ6’GþH‘4bù÷l˜y›1Øir_°åWÔÔˆìÂŽnؘõôÛT±0Yä"=!â¨+k–y¼úíÅÇæ‘1Õ¨–£xbù3Zpê7–1w¼˜ú“e×;PK–/Ï9ï¿9àÒt Y zÀì 0æX8²hîöSÛøùíסNý†›1r9§¦¼–ûˆWZ¹L¼¾‰|ŽùÐM6€ã‰ðä$¶ŒC`b&Ê ™dücšI>‡(ÞZdÍ Šg`A@P–Àüù°iàgg~•Æ­é#œHfÝ’Xc港a*¤&ñ4°$&_‘sbéqoî#x*©yW/…¥l‰7<_Y¦C¼¡Oâëœí7Î ÷jV*d{nÇ§Èø8Öý…7@. ;Ïí ñ] §ŠM2cÙÔp~ã@|x¨c`L‘ÏÂf Ÿ[Àº¨kG“Ûµ!'öÞ™Êç_ p+±LߺxÍænQ8ÓC# ÷®íî;R¾ ›¤bžLlyEøsã«íÖ ÊX…“ !ÖHô ,–6³[¤rú¸ß‰›–’vq:ããô e©OÙÝ~ þê-‡„Bq‚%`ÑAµõ{HeÒå¶_ɰf„ÿG™éælŠ_+<iR…J( ßpÖhGÎÀ”l0áiµw6™Ó¥ô!ž .6J Ùu')T(.k°l'ßãͦ±Æid´â½‹ßäKº6M,ÊvÜ“› «á3,° ècÓ÷;òI¨]—ðÄŽ‘6‹• *8¼öÀœz} Ê^:aöÀ½Ø¹ñ*iÁ2´ íÈ÷mÖ˜inËÕÆ/Ç÷lüù-ZÜXª&{$^1¤”oCÒÄëÚ"Œ€• -þø¤Í5ëÉ—Ôþ *‡D¨hHõR™¸© ç’.!–ZOÔrÂÄž3•í|^¾=@¬M¶ñúÚmŠôRÁM*?ªR‹%ƒNScíÖ…ðˆ0~89û©ÛªøVý¦Ú·Ñ»K¾ÿÛ[_u@¿@%¶üE #aØAõÍ×ü:®¡¸Š¤¦^Jv{s*úkK‹¥'¸8™ÅjiFNí™m$˜ 1óéR(¢tå#ékŒ6áìÖðé<¹ƒ£Ñ°$ú¶jbéÄ›Ù×·×ujR;$NîIºÉËçà˜ùþ8ÎPþ4ò… ±ESŒ¢~ñ@X3L&†úL’´ÛÙtjYâëÁôd  ~«LròLòâ.hiÈmÇÞÏ#’c]#_Z2ÏÁF£åkžhXÄ~J`Ü«Ž`Ë iü݆áÛDZðË–çœEŒ›0‡›@ÂØæî!°Š ¸Ú DÓ<¾™Ul§å#Gyvr³# LÒÄ0^)æúÐôéB:¨K`÷Êtª¦K»ã÷P¿³ùI¹Ó?`Í<ýù:k팳+Ýø›jUÞh•Ð,ez"اƀbÖCh“RVo¢lµÎ}ë|Í~E½¬xÃ[ÚÙõOžéäÍþüÓ1‚ro£~‹ýg°šÆ þøx,[$4."'µ-‚ãk/K`I­V¸°Ë²–œÅF@.“ø&>±¢¡N úæØðÆ/ØFSÐEaNºùi[t:«`~óíZX§ì[ Ö©ÙM(pGèé‚ô#¾~ÖV­÷AÀÅÐK´Œ×9ö×g(_ÉÕ©àkkÆ2΀=r~ÿñ…¬ÆÈ‹6…æ’ è9y#¥‚úUáFÞÀ—=]¶Àª³;ÀjK)=ŒË;Ô2m Vúݘvv g94÷?éðÐGA?î”ÿåó÷ó[ñn5QΓŠ*œ¯ËýÁ5ʽš4Ò¬ïÓ̺$‘~^€y"B{BJÍ‹Y£4Ò°Ö²ÛãÆ4Ò*Þó舠í„Tc<¡Ý›e§ RïÌÒ7wÓÒH=Öž=LL¥GªË|ÃAßÚ.KRcÅ2‰bL)¥7¬wÖˆ Òî'–™¼4NHQ¸.‡6« ›ðÂWSi6G4eÉK¼E›ß)àÅAZ8§Àɽc´ÑZÏgÕÒ%ß—¸ õlÎX©„%¤U³Y„Ôë]}mOHOœL£ýÚ}ÌÖM¤±>åËpI¤ŸÏßu9¤@¥HK¨'=Ö°öc¯ŸëÒHkIkô×°*I!µ‡–Áè )˜!+Ùžßbi¤žn˰I¤ºÌÔg¨¯ˆŠRË||ddÆJé‹u9)‡´eßmi¤Y,n[|]„x |Ð;ž¤]§EDàçO„!oº·È¾…±’ωC¤6Rq¯Ë7T½ï$ZßVÌ¿¥÷·¾ RJï[Œ2ŸrHSXÙö@H!‰Æšÿ Æ~v/uI¤™”EZ7HL )”üžw'Öø²ê¤Æº×sã—÷7«EiÛ¼žÊ"mÌjß„Tc<ë{k·ai¤%ÒØÊÄÂi¤Û‚N )Émû+«;Èø½‚už‹)i¤åhúë³öñ!‰ô£²È#¤P¿œõ§ëedöüØÇ~é”Fúò³]U~R„`Ah¿òε,wƆ]+ƒ´ÛÂÒóUA©ÿũӯ>œ@Ž´Á_ñ¢9~ù¾¤Ò*Z4Ö·R߆æ¨%'i û¶ã©ã„`hØŸ_VèGvb¤û) =<ÛE#ÕöúïVi¢‹ç…‚б۷¢Z€ uK¥¼ MÎDaNGÑHŸñ¢S$[Ï ­iHC0YDH!­a·ëÖ)&BºÛÅÇ– ZÒ½÷'Èhšç`Í%"¯n3þnjûaÜÿ¢„ʵLŸ› ìÓn _µåžÎ°Ü·ñxzz&ùèM™dÞs`²'Ù~ýŒ}¢§”ÿj2O÷ ÿÙª¤Ö3Ý«ÔsZ(VóÁžìS?a«Ë?õ?ÍÅÎŸÇ ÓÛPöiɾ~&äŸ*“Ð驈b”¾¢r2oûs¦\¸µ§ŸN̿ѻ-ûœ5N'¸.xF±Ö ÐXK=§¥\ʾØÉ>ín­üÓ^*a)&ñüÛøé3È>ý9T·9Ù§‹6‘¨žžQlµÈD?åÞ]ª…¼²O „'ú*O1ãp=h”äÞ6iMùžMöi:^ŒeŸˆg.O±¸–0Xƒ2O½9,±±cZB¢§öfmÿÌROì‘yhý/‰éÈdÒŸ"ëŸCJŠÈ ­n¤Ù¥©µ‹v¯|´GY¤Èú—A öƒÀúÿè8}D·–Q“Ù¬C™Dï÷£[kxËA´ Ñ@Îðƒz dßS@põÓ3yM úhÚÈ|8Ê2Yœm úÙÒDÞ' öîÙ8eä>ê|‹™ñ™U¸Æ)ˆ%Ëîwá™ñ).·ªà4h6–:´ÝΈcÞª&!9è0Vðè2dG¸K’êÔ"uŠß¥¯£°nÙA˜Ÿ1žMäD$Òòã˜(^":ü`:Ooæ%ÆgÖÊŽOc<}ÈÎ ; ÝåùÓsã³1<&5Bh¼¶ˆ¥~þ6ˆ?é…Jb)Ãm‰ŸŒ,(vg‰r^ÅY'¾hdš³²½ßë)/Iw`ܼ1œ|7å‰Ä[  Lw<±„¢Çz.z>ÓBÑCÊŠÍ%ÖM÷ò;>¹. h¢E4í>ÓІa,ÓGÚA0´Ã×Ò´ë:µ²b[nU"œäкºë‡Æ×bhpäs»Y¾DêlÑÄœ&Hv$eНÅx£W]&föÏÄh`io®”„¼¶s¯<ÚrËÏçßVèÜkJfš[¼o0çPh?ÿ„Áäµôlc°œÃãdäÔ‘†«& ÑwÊc;_wýŒÚu§¼ê€®ìë^Šs©Ç-Ü?Þí¼CŠ3¶’Ñ’.JM' Bá˜Ð“#úœ7Àø8)xΕ×%^¿ÐXYÉžE³ƒ½Ü cØøÐrŸYaçSrÚñ•íçS2Ê^²ÂÔŠž…¯1Ê*&6ã©1°fÞ²jIc¼f~³&¹ë­'©µ?Ê å´±Ê›“âUèÒá¹ «++u¦?jL:Ð%yƒŽ:QÝ ‚]¾¢aqÉæÌàÚ¨hX\1ÙêêŠæä;€5Ö*úSŽÔ*”kûÅžð2ÀºÊ›˜kÉ·êî¦Ø×îJ´+ûµúa¾}»³ë!º¿Ñ:œ¿€þä¤6ƒr­¤‚&¯3í9Æ3°¥WåáY÷°U™xý5\·Q¦ÏcÏf2LJ'ÚÀøõÔéêLj7œm)¦NtÏ©å‹niÃ0' ’ëåò4E÷Ê[ïÊ) ª#"Ûò6š\Xö¼ŽÐ{d»ŒŠšæ ëúýŠ=9}() 2âb{ˆýÀÅshƒoyÈóé+È85€%¨U°a$ŇÌÉ+›ã5Òß(„Ò.¹ƒQY-«ù“P»ß—ŸYÉ5êˆ.°.û3Ä–üÉ×÷“‡‡zG0Uꀧ?öÙ“dÄÂIn|döä€÷g¤ZþdN¬”ˆ¥~‰Ën{Ð. ëÊ%. ·ÄѤ!°p xŽE¸Ä%wÝ—½K€kuê<$J¾„‚Ø%+î’KVä!Y„¼Ì¦ø²K ·˜Ù¿ÚMR€q eµî n—$îJá(TË7¸7üh@(Rål¶ÔÏ•H§Êø}4F%/ݪw»wù} Y.ûúD¢@Æ_©C©âdžÜx¶S:v›Ò€䉌LVaLC*Ŧô5´£í1Ô£rÔúÈç–Ï,âÞ^ì*EXY·­—`ͪ<´Ë|^<)?N¿ÜàÞÅzOn@£§Þ*½[ÀsËèÕ\˜su„ùºà¤×ˆTœ- ¨#Rt—ôß–¥ÇÂSuð°ÊÌ߀£¿©aÙUÇãä$èë:Ÿ÷ù˜_RÚNx*ªú“ó·Jy[é…œ¿»bñIï—À¢Ñï>¤@³¦¬ò4ªá7’×õ†9§áÜ»i(Ünò…•É×À¹^ïqû} `‚Â딨ð|ÐŒ¬ ‡Ehq&Q˜êCN’(øTc¼¼ U¨Œp]}Æ'cDÀXN›*RòÌÏà¯@‹‰%Ú~a=“hû…øO…D“ô$ab¿÷J´ÖI¢±»×k,x1°ËM£ò »]¢q«2ÛÞ<@¢Y“’hW¯}çz‰væ» áÜ/Ñ ”ûÏ^…Ó GÂÂâ¸5F)k@ „Ú¥4ÿèPÚFñ8êÂxK°ç9óÃßî=€eõËÄü+/†TZfI°Î+©ÅL{௳X[{•ÕeÅìÑÂÅÜF{iÁNüÌš(¨INÂ\†£Î´—…‚ü0Îý!ŠÌ†Ztò~ŽðÐ]¥{Yâ4{„¯šÖ…`|vh]µ!øÕy}ÏcÒ¾®¾¿{Ç÷ÚQëÍâù.dµaç*û^Ù Ýoß÷~¥táµZ ÎÚõ.­s-áÜcßó pºðv-†àHØ÷RP¸Ý« µÚPY" Óû½[ tá—øœa¿>$ ÊÉ8,FW ‚§Na²¶À×NaJø¤t¨8}{}½ÇW-òó`÷®n^¿$Ö¶r¬µÅT™»ìLB,r;"0—.Uë\áô4 èÙv+x®T„Ó‰º$Ë(¶çâò+¦¤Ëy¦–’.·ª}¥ ÅD$^G²áyò‘k2û}Ð3B)U,®ÁþqѶ˜ìÙ çíQP€‘†P±ô  ˜ï:C&Îä—K•–&³Ø»ŠÁ·4GhXÿ½ªN©äˆ³ÅÅhdzéžôYÔ[^Kî,˜9@Ùrû©Ö¹®}iíÏ´Ö'?aÞ\Z*ƒŽ¾¹åþ:¾;Ï e ÝœC§œA‡dòrèd‘¢ :ÙlÁ+sè”3èøÙ‚÷äÐ)gÐ ¬¾;rè”3èÙ‚wäÐ)gÐ)d ^•C§œA‡²C§ÜŽÉ­¾;‡îlá 2è¸Å9tÊtÈ»œC'HVÈ0«š3RÖ¶| ¼|&(ØEE—$=½©ËÛ6uùRÑùæ`Ø”Øú•p¨õô¾§„Úþº©ãñ¥Ä7Ó)d°«0W”Óñ5É`ãŸqû’ExƧL9KÝø¯ïRæœêñ‰œÄ ²I\·çà ¢¡ØwÌ·ß;JgÄ=:îâ-ɇœX©µ¼-N¼“;Ö™l÷gÖC÷°˜HJ)g[ª‰‰loTÅD^Zûûy¯D÷g£#8ŽK³¯Žš<Y(´=†à< “ë,’A!þ²DƒÉuò±óxg^-™ˆgó¯í,âÙü{a"D‹PÖÛóÚ¾gž’x^…{—!¦x­Œ”“]†Ý­Úe¨`Cz_·_”d´ÇÜŒà\·|dò‘œ‡$B¦Üê´ØE8òWËܦ%f}~%ðÅÛЄ^iÑmVǹ &Ÿ)_ìtqCÍe¤âº[Dxc–»Xø¦ŒÔ¾îKE©ÊŒÔ¾n Æep!Õï!©½ßÇd¤B8ÈH…ùb÷g¤B(ÈH…pÔ]-ÚKÅõ¡"iêÕAFV'3ûÂeøz÷2¥ÂI˱G§Â¡x~ňžG¤ÂIÎËÃSán÷[ )¦¼w¿b_yG*ÿ"” ÷I…“ð*üRá¤ýc*÷g]%Ã/ ø÷'+%>ÍdcUÕÜ/´Ç’® Û"µ^”W•GQ…“¿ÙîJæì’ákxÙè]•G8J·óQ.¥òNX.'7‹óêz²×ሕë•P§õ «Æ9¤ð1s€J\F+³ì²ÝÿJéGÇt&`ˆ}fšÑj:æ>˜äÏ4Ÿ}]T6<õ–ÞÅâ9ªYH&\Ãd2á.Â"-«ŽŒKa—“0K*ë î’˜¥wù¼3-Xå³—0Ù-4¬”ùÎgRïÌf k7rvžî«R²ÛÈ-‹Ë4JvÆÊ¼Ü—Cú­€4ë ðŠs±‚ö=Ï 'Nvó¼ÎJ\eBQ ˜Î¢”솻DH…õøB+¹ ;J¯ÿ¥Ž=¹d·w¥¬³•r†Ý¦Ù”Ej*g#9¤cåz|µWy¤é—÷¬,y k2ô%‡´&̰C³ ,3jôáó Êv!©v´WAÐÒÓ+©‚è±VévŒê,Q†è »KŠfŽK±BUò«¹Z°ö5=ÁQÕ´yLjÏåU±×D¾ŽÕ¯Š.ñÎÅ:u)8õRœ½{}d%9©²#wª¨ð.)U’»Ê ÷žR"y!Ý yE\ߥ"rŠq}êùéB9ÙñIÕ}»TlDíø.×PMôKuFDw©ÝQ?NýzÉŽå Ɇ»ª-@§ìé½%›î6?̵ÙtRû¶çã²éTÞsg6”OP¼^îϦ“Ê¥»5óQ>›NÊ/iO6€,Ìš•¼ì®l:)Pn¹!›îF|e6Ô9 §+–M'•KÇßï?&›N*—NelÏÙtR¾v¶ûã²é¤fyzšM'eÜðcG“M'•K'sÛüÙtç]šéå-¥[³é¤ŒSñÑÙtRó' ug6ÔÅšÂ7eÓÉٖͦSO±{²éD Ägâʦ»‰bWgÓ)æX=,›N:·úÑÙtR–gÓI–ˆbàM'%„»×GdÓ]8yP6Ýeýòˆl:)bœ¬ñGeÓ]ÊäzL6T.l=¾û7€ÎÓPP_쪫›ä«x©׿P™øô{a± ˆïÙÈÕ²¹½^ÝY—ð”çÑõêä­ ut:ØÍWÑéD%A$$ÌɼhX¨dA‚‚LÖ³\§D]R+ TT—LÝÔ%H1Щ«Ê.+uI:BVÂ(ÐI¡ì²ŒÈ„ZL¸#zÆ {ÑŽˆ4¶ ›+{æ¸jYJ…îî.sÇ»çJ¥I~K™;ÙêrEU¹J*ËÜÉer©K¤S ¡Ÿ|*twß\e»[5Uf½TªÊÜ]ô(BÂÜ]掱a” ÝÝ]æŽÎ}»PèNÝáѶø€{®Èç®<‰êó,Š QÚO&÷͹<`h«Zþ”=åê.Æ^âO˜F7ÏŠxU‰tj"š5—3 åƒ8Tç, a‡W‘AêȺþ„œ¬®ÂÀ¬7‹ó‰à¥©²c–ºJî¼'[]ݘØ%ˆ†Lu!\u4u1~Lu4¦.¢[9°ɾ‡d>Þ+ *\Î̾J8ªj»JAáEv5±”³LvÉLá˹옪ÄZ¹âÄÚÆú<±¶±~Ü­€ØC #½U#ÌøºK–”M)R^¬÷ªCm;?Ò…™xçÔŠ;q¹êñ~ñÌîæãë-‰sP¥ã£*‚Uù#bÕk¿uU¡j¹Ó7Xxíns‚†¢ÕyœÜ@ù·Z5 …]„R7^«ÚR‘ÈpÕ ¯Õ.± Û*Tyàï®pÇæWÊÕ¸»aJWÜZ·úº wJ™w,C–ј w©”w1ŸH]¥¼{ó‰¸Jy÷/C… w¼$5ù!·T¸Sª÷ kÜ]_áNí­æ0ûéþÄÚÞïÉ̑۽ªN¬À.›95†]›î¶ÄZqæ£÷^ÿÌ/,K¦C_wÏ‚sƒÜ<»#ÂyH>gS·»G>V”Ĥ¹tÍ*—wM~»TÿT ÇÙ2 Z.L„ ¿[÷Me“š$&säS¼åi15iLÂA^ðž@qó"›Æ´¨ÊPWܶs«2hQ³*Õ$1™#k±ñ}ë¾òõª$&¹"X;QAÓ^g¾29¼wÜÊ/2 %.K|íÒ5 ‘ãštÉß*÷/×V¤»ªÜ#"¥¼=Ö}ÜÕT]túö ×®ìÕT×Û0ƒýUå/TÊsߘãÊ[Ÿ\†Š¬çË9® Kª³ž•r\œˆ’OkúÁŒ·\¤™ZàÉ„»ÐIéÇ…†Æ˜z¶7š‘Í·ß²U”Ý—yíeF„9ªKÑŠ¹vy¾cæ› ïå¹ÎG*ȇÓ÷úv·ÊwU ë°“ï]™|8«|ÞîøÄ…2Y”†‡Ùärÿ(½ÁW·~È%áõd‘‚±è2[Rv¬XVÿÖ’EjÎ\S¹:lÖR.“ëDગà!¦¦íÍ>Ó©Ž )Êr´Zžß—RH5FH`qÍ9A^_œûÇ'o1\•AJéž—Ô÷É+ΈûR@š5PòH³5ý›RT÷ÍŸ¤VБ֕êÛòHÓéVFÙÐàs÷IÂ<Ú"náìË´#“˜l;~~%öm ÆU@´7‡ôIM‚1w=b£“;¬a¼=Bå™TðsŠNeØ$ ª×ŠNƒUÌ.NªÐÍvDœØtÑC"Ÿ’tZ%Û%ÈÉòJªImºœØ´TeäнP™E­')¥Z%;ug•Y‚Æ5!hJYw¢›'ïÈJ»¡ISI£ŽŸD‡^׎óZü»««,Êté,JK¼^Týª(-Q©Sò~â뺤¥|œÓŸ³ØX‘¸J÷¢6ááuú¼fÊm[ ;¯âêë >ØÏô£.oì:µên8T‘¤è^V{Êó™¾ç&ÚSNâÙ•q7%»IY_u¯õgúFϲðM˜xï%´RwÅÉæ‹]Úµœß§°’ö ƒF$ŽXû™«êÈK˜ÌÃöÈýŒXÂÜzêM'ÜÉ­ctbu¹| gb?ÿe—ªÇ'ëUñüž,ü»ëí™ÚOæÈ«üáàu‰dgõ,î(˦œÉtUŽUàª{x]忌²J¾ã‹Ö¸ K¼P}æ´š·j¯L\T¤ròï¹RH¼TÒøÂüNÞGÙˉ:ª™AT×X²ÊÌÀ.UÑ1‹³k€‰´Ê}»˜Ë£~“Ë;)v±žÎU+yz2ÀÎÒ…¥¬C†b7fªÍT}‰\‚˜ª@…ètY€jsÏýÉ×dªÍäßpx} Ú@äµ¾9 PÀ* ;LqìuY€js!ÅnÏ<ÑSYns¬®ÍT›Èí‘oÊ”éÒY ÿ¼’îÏù¨î/ʧ¾"Û=Eùxcùå;ó*üGŠò]ªÈö˜¢|tΈ²rQ>QÂ*|xQ¾óúÈÿ‰¢|òõ‘Y”OUýÊ{Šòñ½ °S”l§]J –¯êwÿÝP…GÜ ¥²®Ÿª»¡î®ëÇÚ«ëw]œÒ­uý”«úÝt7”D]?e¯ôNüúº~Ò̧x7Ô uý.sò#êú)G†pž«;ëú]ÊäzCW±ªŸÆx•CW¶®ŸòÐD¾‹›ëú :rVÕï† ’uý”$¡zK]?ÉtD¥[ÍÕFu¦¬ä]Ð7ÔõS¾ù‹;¿³®Ÿ¢¢K"-ö€º~Êná«n R¨ë§¼Õ•Œ‚¾¡®ŸTšäiéÝWï9ïWÕõS†ýü¨ë§| ¢Q çžÄwqFê­uý$LM^U?~u쎺~¢eˆ «ú îìº:=ãêú]Ì{}H]?åª~'ßY×O9àš—‘zW]¿Sþ–/Šî¹º¹®Ÿ2‘û€º~ km¿ TϦ Eu=¾ åäT×㻫®Erù\›ÍqV×O!ïáb´íøÚº~Ê–<¼ñàuýätxûü$ñ¶ü-æ<{’xi^ªë§|Þ,Œ"¸½®ŸÚâÝâ­õø® Ò¯Ç÷€åÃUõ»¿Ÿš$¦K·7œÇj\WŠOœ‘z_]?cû¬ª1t]?.UJ©®èÝuý”Í»º®ŸrU¿»ombêúÝéëSY×OEÞëêú)Wõ»ºßMY¸"iy^×ïödx^U?–»êú»’ùUýän9»¶®Ÿrx—H‹Ý\×O9ÐIäSº¹®ŸÄ¼ðªú)ß §¾®ßí~K!Å®Ïy’ÙWÞQ×ï$¸¤ªúÝ=(ªë§È¼ ÷ÕõS6 éÝëýuý”b|w]?á ÅUýÎì1Õ7Y ëúÉA´ sá&+•uýTÙ0w×õãÏäùŽBv­Ìú”®ë§¬³8–Kë}·„zxS²Ñ*-éˆñ½R3úFE‘®¿Ê»v•ïEi‹nbyìtzlùyð´oŠAehH׿DÌ]S=_;ÑÒæ¾û™¨•‚ÖþþbÀܯ ÝæSi åhÞ…YÖZ÷ð}ë!w³B&ºüÔZ6‹se5'~Xnú×ÿ”¶×‘àÛwÌèõ‡r¦rå·îý]tß5FŸ×åúË™WWѵÓzKYÏw¢¾h=eª3kŽ_¼¿mËxbèÄ­žÔ®Y/.‚ËðëfülYÿ~ù~»ØšzÑv^žÍÒ’¥Œ“÷|Þzœéß=›Þ8Ȭ}”Ûm5m­ËþÓÓß¶=LšcX&QL`™É°€e)S}·ûXv{'¿×Rƒ½wð^å2-›öˆÛÙq‘¥€ŽM{ûqïö½ ,6ÐÓ¹Õç2D_z+}âÃÚn¨¹°žäñ7Úâ±RAŠXˆ`¸œÒ •+Êh´ôÍ㪾ýÖŒÖ;÷ÿWÛ·¶E±3kÿ‚ù ¢ ÃÌt’NÒŠœ‚‚Q@N‹¥ (Âû¼Ï—ýÛwÝ•t’îY,½öåµX3÷$é¤R¹S©ªÌ,=”ùéÍýóãÑcÜ$}^]½™üž¿D¾Ú‹ ¾“8:»ôöíXöàä˜Ïû›—u“ý{cùÐÐ6ç“KsÑßš hm˜¦ÍØüMklagéd›@s~wùõ¶y9|o¦ýäùLÿçñã¥òþÙæâûµGb»˜^>·ýivÅŒR;ï~TͺŸÏ3‹«Œöf¯^ñ¨f¿]B“g×Þ¿ßï,¾Û^Á+ðæy—v'ݱ~Z¸â“SÖ¿G6Âþµcâ¾î=ª^‰qö“Dì½µ|ë—gõ;½}:É sÿíb¯˜ïU—úK‹òEAÍ®d…ɱ›¥ñ•ÕU1ùèïo‹Gg?ʬ?mÛÜQtnWLÌ‹Çó_ú‚>xÚI>8x0ÿ´5V}4ßɹ­gÕ«áykéóºVÿ®ó²M”qy&–×ï¬ ·ÆÄò^ï(|ÔMÚYþ>•ë{ûH¿ÌpËè›X1ëo¥kûpo,´ýªãŠ~°Ð_uìùhzéV¯z®Ð‘™G;¯2$‡]‰£• ~ë›=Úù(ü\}Xêô_¼9SôéÛIþT¶ÍÔqõз½ê)YûA‘Éó7c‹“e›´#{÷ =ï÷a9§ þ#ïò¡ûNÙ‡´WÏ¿{‹YÒ¢èßÿù¤³õøÊLoå/gíîñ8VÝœlï¼eUÄ>|”aâ?«Ož|^Úo\“í›ã³jèï'ã„É…•§Ðé÷='¢…Uü\8ÚÐþÕù–ô¯n>îyÛR.¶öý+yªÑ„vMìïÌ Åîk\ÊýóõÌÕÞ¿yíÛþÜÞÚ¶#“Þ|~|ü•?`‰íäaU&cùü~t;Íc¤)¼ž;ïNÌnýµ¾°¶:ú&IæÌçÀÃÄç#‰sjìfõ¤êÏnŸ‡¡Ê­œ{«>þ¨ý«…ƒ/¡œòåÞ}›möfcþíîÒÂù½£Ù×o?=j-vgÞc³~Âùl~í_7n-ÖM‡zøa7­ òfµ‹9¼9µ»q9¾ø~îÅó¹öù¾¤À¬Ì-f½·ƒ¼ÙüÙáGßz æß8¹‡>Ô¿zc<ÎËöèeÑwWs>Vv™ƒ‡^"åË—›¿VA%±›Q–X9ê„™ÿüør­¾d¤¼û“ž~h¨D0£:µßÿ\‰ ïG´ÆÐŸ³ä7¤øëœ~¾ Bø” áæãFAã+O&‡‰š\‚šy5>î…pðlc01BðM§ä6„›õü+¬ýsíµ „•ÝÞ½¯[wÐ—ç”ØnœyÈÁ" ¶ ¿Õþ+=xä¾RÂõ[ž¾®J·5ÀwE§'î ¿îÃÁ½åÎí} ±ÜÚ‹T~k¼Uû½aÐtÖÿålÄ>ܲ*ÓÙøsAc©5qWIŒGQþzϦÎ.¸þ®›‰ÆÏ°GIÜÒ‡[D9;[Yxs‰ù/›¹¨—l»oQr_œóv.Lü‡ÝÆäÄr¿­c)ëþžŽÑ–Ð :ö[Mܾâï¤c©$~KÇ¢š:vw5MVü/¤jÀ}ŸÒ€šòåÁßå8ÏFl êØ›h§ñK9Ôh5–JûOù·²oÕ'±»ÎF;ÎÆíJÕèCâ·lÿ)ÿ¶Ó鬉ÒYwFœÐ5ŒÄ«ÐþqÝY”wÚ‘G-|zå›?÷êMLüéúœà¼ ¯—¿”Äí}¸Ã>¶¼­©^þŽFL°VVûçhÈ>4qW­ü5[Nȹb5y»{=õ<¾U¦æ×\`æäëIŸ©éá®ðîórg´[twèüÒ9ê­ŒNn´'Ù¿€°Žw<¹_ør1ÆÙñÇìèÜ[Ú߯¡›—•ËîÍw1yz:ÍŽŸãÜì¨Ü}~‹4…qÿêë ¾+dÅùõ1€¯…_éø·Sã°Ùkÿ5ÿ·YÚ˜;/îµ»¢ÓK7çÃu5o«T‘ijñuÿö‡µ7äþKÒâV[4[O§æg·>þ<ÿ·]û>ûvö‚^¥œû8±ç}GÛÁ{öVE‡{k,ßÃõÉ0e´6ztf?|íòHËj»W÷Þuù ýÍ„{5·£Vàüø wož¬ò+?±‡§Úyà»Þ³u¶ÕïˆàÙêRÛ³ãî\é¾7gÑŸz˜º|ÎNójUîÄãÿ!Ʋµ‡õgúÈìtúON^<ÚZz²˜ð´,o¿òy5îOš®š'©.^죇d[R¿gyÔ=ê÷óŽ{•ôûúT1F´ÖYlôÆì|[9_økìçÛ™'϶óÙµíì>šº3½üjÜ{:¿Œ=ôkŸ)Œžr2W…uhÛòNÀçßüB¢vvpï9ÏP§*òîv©œÝpF|ú‰OûÑ¿Çób¯8†â‚ø‚ÂZ åMî ijüGEG3]þúIÐÕNgzòÑœlÚ'ާ‰½>þâÛæÿÚ›ùäïá>@ÔܾÖN骼[®uRl½Ê\ëzïàéÓþÂó'—ÖþôR/!.²3ίa8É.¯ßëÉ…îÇó–Ô ŽëzÇ(Q˜s>zúús=Å;\AVÌzl;FXºÞ³<û?Ó­"3j„ÿô_ßœŸ\m\}9ýr12ÙzÜêÏ® ±uq|¹turòöäÿ_/\Ý|;¹¸™éϾ™_]-ôÂÉÑåñÉg/éÏ6¨qד'4†]s1²w|ná¯rùlåþë§ e¦Þq¦Ê÷·?F'ÿþºâvбÑÉý㣓réÍèøÊÏI¼ýàü/Î¥94’Êš>qáäjîf±óbý}#,ÀŽ—òóÛ姤ßïçN^Ïôž>é¯Ìî¬-ì,½{3Ó¿Î.j»f-] s‰Š“!pýp´ýäe>Úí?z‡èøåÁBÑlÏÌ}>Úyuï%Æ÷<íΪãÑÉÛ+£?î_Á»X¤\|7ã 5Ö0þOŒd“×̃áÆA$¬»Œ‘ËÖØ/c—éÊz|:[}°!â.ï ~ùéDb$O^žŸLâ¾{é³áy'®"[pûSÇ-ºÝŸ_oèƒ×‚ß·ÒÛÍ™Øö¾gl.ñ.>‰üTpÞzA$¶AS»¹Ñw†ÂÜöôvK8»ÀmR›UˆX’øï?¹ÏDê÷ÀëÑ”ù\=ÅÓzkìnÛLHËØfJêáÅüíÛ–;;ݹÅê°¹ÅöóâUY,/Í<:y»°züt´2"¶Eµ¾•©-(Ûçû÷½z}8È“ Q¯Ã gxÛìp«ïÕþp;‡ë«mzõQø-êpON—«’æêðY2þõqÎMø©={ÝufRçèíve)ž}̪W{"1 =[Ÿ®L‚c•|°7ªöi,.bùâGeGŸ}3ÿÞKþ4­°ëí^²^޼²\ïebY̌ӫQ½:Ž¦Ì‘ßM®¿æ½Ñ×ï–&ÚÓí»î½KŸ_Œ9 €,›‡û?mö|¹ƒhï®ñ[8Œ‡ÛS@ªËÔ¯6Oÿ»K4ûضG'ßí-)¾ßm¿Ü÷¼y3µ J¥“UûÙÛÑö—óéÑîÅ«OàÒûƒ$jÊùénž~pT,¼‰Å|óÝ:øÑ­2=òñ˜é’3qÈlÙñl¹ùð[Ê–>²÷H>šÝåi[Î÷&ùpÊiÿËöuÏE"¿LNu8NG<¶ø|Ø-s²‰_®5flys©¢VÇc»~ 4x•ŠD©è;ÂΜ12¹gCÀ{-‹AÍÆA+#ìk(\ø^,o!¨é#¤Ë§9$ö²ç-’3Î$â3–#Ï„±ãAës'¹ÆòVcR*‘yÜ}Ýiºy##ü¿¡êòÐ÷tú½jø³Üѽ›Æ еÀãõøÏÐÄæ`àqb¹—¯Ì~«Â›—Õo5Õ"¤ÝI„t¼ü jRstlîÁBÕÄë\?i@,m/ éú ¿ìIÓ9¢Õÿ2½µÈÆmšõ¼ÂÞý¨°Wý/˜YÁ*W‹ÿû Wù»CØ+¥0ù{*üä°zˆü5Â^Ñ;õï}쥻Säï¶ð§ø„°—Š€L^;©¨7õ[ýgÅ÷þl?ƒ»ô¶Èßmαn‚¨Oïã)¹ƒž^sž·ÿFøÙÔæõ‚Ÿ>§phÜÝ$þƒ8º»é2î¨Mð¯¸Ý­.g° þª?gìWKª5ö;ÃØšêÿ«PôતñÄŸè4\ƒF^bw•œˆÝÆÁ“—±õñ\é­1ù}>:Œ;Š'zÁ ü¼·¼2× ¿ÝÑ›øx¥~$%—ç~´}É¥¯¢3äW>¼žì?úC#eüÏtl=ïÅ~©c·6±7“ý©Ž=ú{üÏt,»hÿBÇîÜÄzgò$m€Q×±=Ûû“Ù`×Ò°HÇîÚÄòú½^®Ãðy«0øîÌ}Ãû°×.Jô3Kþq6ÈÀüÇ[µü}êÏfVíí¢äýå¶a¬t—þÝÚèƒY1«ì·ÖÆÊ³×òúp5ÝÉŽ¼’_÷¶ž$MîýÙpxÚ鄜ÂÛzqK¾‹_+U£~í7{qôÀvÿH#ŽºO{Q” [þÃN”6aæ‡.ñ_öa-ž­>Kß®l̤o_mÍúÌb-\>Eüu2îkÑ=Êžuö·n–×çwŸó}çaÐ3•ãÉÅ ž«ç±ÿújÅ.V„(æï_­¸ÃÅ KíjEðž6=ýáNBÓÝn;¬¥·jÇè~ý)ßçOÃGœ`ø[_¦±Râ×+}™ÆJ‰ôB¬Gk:R ¹”z° ÿ¥ð§î› …ɾòçtÒø)4™|qé"¤ÄлW}ÅâÙªó'¿òÍ’q³*qJ®ì_ùPf7‡r¾M#ÛÏfß!E¿Ê`¨Ò´~T)úe{eéÉ¿NúOyh°ÅWëOchB_o>8YÞÝ)NgßÜ<ø²¸s¼‰¬ó·"ê¯Ü½Ù›©´{*ø-óšßrá™ Êò¾ëoU¼š ½ïWŠÿžÚ>ÜÅùô½¨\Qï9¤€ÐÃ{^å®ÅÇß ½ÝáS_²8â‰ß ÷lv²ðJ¤*ä^ˆ¹î¨ôƒ…³•Kò«¡Ló{·bâŸæ–Ý^|¨zØÞ€Pwéχ÷ã¬c»‚_ã•LK¾8ÍåCîÔ¼ZúüîÃüB§h/--¾xWTžÐo:;9œ2÷ Nç·wu þ¦c<ö/\ƒ¿élý;×ào:[cÿÊ5ø›ŽÁÖØ]ƒ—ÿ3ÝzÜC˜rñâ8 Q¶ÆÆysr}óôþÜÉé—‹õƒÿž\µÄˆû—Ñ?üµåˆÅˆÔšÞh ë‡­q.;"Ú#ë­±ýþìÕõ—£ë/—Wÿ™´ýb}kuadjĕݧ²GÆ©7Ù>•¦Úˆ‹îS÷[ÙÈ,ý·ýzøìwzµÑÊF2ßüÛ>he¾KTì¿ôæ9½øJÐFD6òbäãn6rŒ&^·TI‡‘ê1É ©G¾µD.ØzÄ´È*,Ô†%uÿB©£½RÈÜæ#YÏÖÐGYψ²P–^”67¶êòAK˜¼g¤#Ý¢ìÉL tË”½\d2bŠž’…ŠPy™µLö¤)õHÒR@tOdJGdž†¬{6I©ó–ÐYOæ†ÚÒ¶§Kê²Ðªg2U7ÏQ!º§iø#]%{¥R}ЦWš¬éJÛ…0ôDÑ+KM-IÑ3õLÑ“¢´AßUO*£’R–JÙŒz*UdGúVM‰¶u¯,è£tÌ’¬é1h=Ï-µ¤¨^amŠØ^™—õ–ËžÍñ8ÙËòœ'iYÐã¬éé¢HªVÐã¬MKEOkc=E‚XrMs‹z& #½ááéLSKÂP7ÑC½³$Å€@œ–†\¤¥r e€sz5 h…R ˜ê)j]ªœ‡'-Í‘P¦'¸ÍlQf41 jidM5jм¦ PzhzT¢Œú 1Cé<ú±Ji³²—“'ˆ .Ó("B}%iNf#F} ÁÐ=!D/·šz/4ÍWY@24DÍë“Cã$ ³,ÁL÷r!‹f˜>§r‚ƒªÑ“´,Õ=¨Ì²“¥ï|Ê. ˜Ø‘œ¦NäL5²ШsÒ1’yIO#Ñd4×Tƒ$SXBH§‰þ"‚^“´hòc!A… ’qN]“9­]›µÈÑtNÛƒ¬––ÍUÎÓ†PR§h”% ;AdO(…%1b.¢'MÏ£nÒBM ©!¤tØ…BõȰT¥LKÁJ±$±œhI+:}D„ÄbT–s½ ++há`|šô}$/©ç¥E? Ú% ˆ³ âô˜€IQ #¦MMÑB•4ô"R˜êYj]‚ÇG$F$æˆëi¦ƒ’î•©`£D¢)g ˆ "E¢Íœ6 e‹l]z|ļ¦J cDˆ!"4e‚Ðói1‹R«ˆQÈ ]#¹B±ˆ¤;3˜3Zby¡h¿äiS£L'dàCzÕË$D‡­ŒCh%G¤Â)RG€ª$3²(b! ë‘vÙˆÐSJìĤ ¤‰†«‰™€¨s:£Á")E)¨`ZO•ÓfF#¹jC"Í¡ ßÔ2|lD¨žðvI,E6{ýÇj/dõËX)×G˜RŒ‡”¶¬dZ™<‘G±JÁT&…hBrÌ3«°%—¤ú¼?¡ï¬€´PhÆhŽJ0=dŒ|FóM+ÍR°ôH¦*Õ€A&?vy×dz% ʈ¡¿#^2"€žž‰¡õFòxŒ$¯rmª†"@ Ðb‰Ð<ÕcKœ·xž„†Ã ™ü´x©.‰PQe z4Ñ8'a§Ï°ÓãvpîFáØŒjzdüXZ¿ÆÒˆ± 媂•Øš÷WÍüvË è8ŸÓhc|”ÅYVa Ä‘e™Õ3’åGÑàËÖ•/sØ\ T°'ÅÕ¬@ c2wÂ%ëͶ – ºQØ,P£¶°Ñ“rX‰Æ²¬Íó¢âR÷ÐÒfÄÆ¿ V&Ã粆¥*œÈD’òòe½OÊÑÉìi4•¶h7®Ë.3å‚ì ¤@¸–u¾ÅÌCº,L]GXµA¶8&°{®Æ¶\2L:5ΡÎTñÁ¤¹ˆU”°ç´Fº%, Y#]ÒUv–¥¤‹ÝÔ4X—tŸ¬·ð^UaçSbĹÔJuU•î$ès/ÐSf]¤Òø¨@ÍîN]t·@h‹w1 íg‡“â›S⪠IÕÍrN!´Ëq(2MÜYÅh³3ã¤ùˆä`6Õ„¼;­rFCV²Fù=ÏtK­‚¸*5“éf9ë#ZUª~ ±“ËWõ KpÎ4Qº0zÏp>U*#ãÂÓ< .¬J çIÄdÆ:„3qôÖ«hÉ+Ùn<@ƒ·.ïÍ"Q ù!\ †59\s9Ç ‘—JLù­E[–s5FÐàÂzà Î?(°öR0w šIkâ › ó-“ÅÔž· X«ä€ ð¦™¡‡ O$øØ _=AÔƘ) ¼F‘t%$§áâ¢fMî“}¤rRkÃ1dlW‚þç~ý‡R0p øÛq'ÁЮè¼]KžÕ [ÃD¡-%¦•v6‹üþˆÐ6Î.ª0x±ì“ì²@v2|ÆžÅ]!T¯ ãH³Ó¶*UjÌ8<ªD¢¸&sÕ XNÎhœ†:“±jÂa‡ûC¨.¾1q’4غ ¥p㈃öy #›zÁLˆjÄG- çŽ°ë—æHÃaé‚ýY HŽÔ03| <¨rÝ«©ýϯìj…ÜU—‰2‘½"4çC§ W`dØsL1ø N™ Ô[ÙØ¤ž`Œ|8—ž0uŽý¯ä">•¬d[¡+ Qj:÷:‡NΑ:Äh8yÙ_‰Ôe2 m}þC€ŽZHЧ–RIè9.Þ$Œ4Ã{2S5çÌ“å;Œ'¾p¹Å „;M@ÒëZ"…I9¸wD!­¡œï;8;ÈCTÕÊêæS(§ ¿XÙÊÐáÁ›ñ‹Ôˆý"Oá˜!HDw)´QJDÎKÍŽ ÆAvM„pÇͱ HIÑQÙ­ûLîþ4Ðiš"åriW28𨚎 ¡Ñ:»Zd?5Ù5€‘>†A817Ù•t¯É®ªØ5 )»0eWx] ®¨5è™EM~5´&kØßScØ¥ËU‹f$k”dYÃRušEFLg òÕšDkpµ£Î´àÀÕ(åÚX.R«±ƒl[ Ò­‘E“o lã:á(eÜX.P.>lrn5ü”t |:uÖ5SÖY7Q“Ⱥ‰šDÖ `dÓa|OMÖ ŠY7Bë$eÝ&¬Kvx“uéÔÜd]2YW_4iWd¹jònÄRâMJæM°@½d1ªAî%T6É—¶Á¬É¾Œ Ð/õmD…ÁMS˜_`¸´Yºû› ~DL4m1`¤ü>è°yê" &KKâª/≹») (¾ë‹ôÇ‚ã4&¸^é¹k€>øÉñyBµ Ǒٽ+4‡êá’*h:èèŒ>âFE‚`,Š£ëyZ ·¢°¬‘‡­p"̾Š{BŠSº[‰p´àK†F`ai᢮L@)SÔR°Q‹ ~N\ %UòŽÑ€¡¶¡Ÿáp|,Iû4½ó ¼§¥I»È W; EÙ3H­åQ;5ÜQ9n.Ó¾Yh„q=Â’.|âkU ì’óåRšm¸™àk­–—J%ªJ»mø¶äªàJ6‰»ýOr¥É¥ŽäwœØ—žh*‘àÊîôDkØ£ÇîÁ¨uìnFHs8F‹SeìÓNÑ ñð­J)j+C•Ê%`ˆ/¬ã \¤©C°âør5ÙšÚ9l®¶ñ-°®á¥ÉlrçÅ•aŽˆÜÖ.$'¼ÀŽ»Iàþ:Ù­œïcÐÒp µËoñØ.$#©XØZIDTÙW[”p ¹%„{tZp> ²øy‚a›6¸ã]Ç2¯ Š/Р=ßlCÌ•cÛ)àÀ±Ü"gzóež Cmšb·¼V.5b¡à äžG –„Û#´Äå"äCÐsü=¿nIÂùæ©Ð* "Ç] ^…±d­•R;.eŽyŽ{1装‹Åù3Ió°Ç³7,'ÖR¸òŽ/¸áKÝdpkvé׸u~(7ƒ³×çÜ7-^ó÷ût»­±±ÍƒÓ“·W_ÎO®Z§?þßÉÈÁÅÅåõÁõÉwúdäôêäçõåÕÉÈÏ¿/ÿ„ªTÅÇÆ7–Zÿ òú€ endstream endobj 146 0 obj <>stream H‰dTAŽ1 ¼çù@{íØ±“+â´B+<`\X¤eþ/QÎt϶@£™‰+NÅUv÷Ó—K}z¾pýðñRË[áÚ¥­ï–?¾—oõwyº|åz½U^Ÿz»ú èç­¼UY Tm“šªÔ§E½¾–Üz-“zx&)X‹IÂ^¯eñ7<ê={˜¦ë\˦Aé¿ÊÖEoÕ•ZVÝq›u¨› ’‰óÒ¨ë"NÚ@ÐŒØ2©u_'îQéý¡2ð€î™B¡˜x¢Òæd z×nÃFƒK˜ à¾f”ÁÉ»ÂÙh2È ’¼Ü ÓšÒT;¢kI3Á¹Çùy“{$¸·³ ùpÈY³Üð %ôê(½À]hÀl O2F'Uàwø!zƒ?è܇i[•NÞpÜñ{“ŸŽS·„1$ÒdËÒç°ÿâìJ[;À¹'„ïZ² ŸK¤ÓŠ5øc.ç7(êðt›1Ci‚Ê#7R‹ØÀ 0ÄêýйÈ:‚.i4™4 ¼Ã ±¹zü@Ö$áb—s– ·3JH bÜ›çl¬¡ÞšOdÍzB°èÿ ²×ùÀY-Åt'˜ êFî0n©Û‘<˜/µsÖ˜ë©9/Ö3Ò'fz®s ¦†$9J‘Ô2™šÊÙ•Ù{î§8aË$̾ç(‘St LÕrÄ=_É'ðï>x"ËvR<ê ÑÕn^þQ^ʧg¼²^Ê_nVé* endstream endobj 145 0 obj <>stream H‰dTAŽ1 ¼çù@{íØ±“+â´B+<`\X¤eþ/QÎt϶@£™‰+NÅUv÷Ó—K}z¾pýðñRË[áÚ¥­ï–?¾—oõwyº|åz½U^Ÿz»ú èç­¼UY Tm“šªÔ§E½¾–Üz-“zx&)X‹IÂ^¯eñ7<ê={˜¦ë\˦Aé¿ÊÖEoÕ•ZVÝq›u¨› ’‰óÒ¨ë"NÚ@ÐŒØ2©u_'îQéý¡2ð€î™B¡˜x¢Òæd z×nÃFƒK˜ à¾f”ÁÉ»ÂÙh2È ’¼Ü ÓšÒT;¢kI3Á¹Çùy“{$¸·³ ùpÈY³Üð %ôê(½À]hÀl O2F'Uàwø!zƒ?è܇i[•NÞpÜñ{“ŸŽS·„1$ÒdËÒç°ÿâìJ[;À¹'„ïZ² ŸK¤ÓŠ5øc.ç7(êðt›1Ci‚Ê#7R‹ØÀ 0ÄêýйÈ:‚.i4™4 ¼Ã ±¹zü@Ö$áb—s– ·3JH bÜ›çl¬¡ÞšOdÍzB°èÿ ²×ùÀY-Åt'˜ êFî0n©Û‘<˜/µsÖ˜ë©9/Ö3Ò'fz®s ¦†$9J‘Ô2™šÊÙ•Ù{î§8aË$̾ç(‘St LÕrÄ=_É'ðï>x"ËvR<ê ÑÕn^þQ^ʧg¼²^Ê_nVé* endstream endobj 144 0 obj <>stream H‰\TËŽÛ0 ¼ë+øæŠ‰ÒµiÑÓ¢XôÐ0Ú^vØæÿí8N‹ ‰fDJCrì§ozz¾TúôùBå£TÒÖ·ï’?~–ô^ž.ß+­WªÛ‡®+¨¯ ~_ËÉF Iwè³OZßJn½ç+ðµßÿ[sZËŽ:OsÚ#÷uer[¯e‘ÁSü ìlÑÉ„;Ò®ÒÈà¤erA­³F&÷Ž\åŠ#…РÜt’q›ãkA¾øŸ;6(Œk"cU;…++Xã¡"¡â„u«p‡ÞÙ[£`G¶ãÚp‚êÙã@kÁ¾ß°ŠE"Ô·;j"ˆ½at{TM©c8…B@ª±¦@ýèZ³/\«Q¬Ú!˜—Ú­(tÎ<á:¸!Üösd÷s0­r…¼û`Ž­qà äΩÿ¡}™»ãŠ;ômU9zÚûÖØ=†smrxÊAÃCiñ‰&á?:f'T4m‘ª›òøÉ‚–/‚œ†,V8ì!^Ù¶ 8Nõ$Ò+¸Óä!f mC‰Î}ä)a[’onåö¤“Pg…§ÿ!ê6À“’ÉÚÑÚ(!õJÖ¤ÛÕ]ý$4` ‰‡˜‰)ëŃƒtÈÓÔ'…& k‘O7ôê¡;±ÏÕ"P¼&®Â–©WÖ>stream H‰\TËŽÛ0 ¼ë+øæŠ‰ÒµiÑÓ¢XôÐ0Ú^vØæÿí8N‹ ‰fDJCrì§ozz¾TúôùBå£TÒÖ·ï’?~–ô^ž.ß+­WªÛ‡®+¨¯ ~_ËÉF Iwè³OZßJn½ç+ðµßÿ[sZËŽ:OsÚ#÷uer[¯e‘ÁSü ìlÑÉ„;Ò®ÒÈà¤erA­³F&÷Ž\åŠ#…РÜt’q›ãkA¾øŸ;6(Œk"cU;…++Xã¡"¡â„u«p‡ÞÙ[£`G¶ãÚp‚êÙã@kÁ¾ß°ŠE"Ô·;j"ˆ½at{TM©c8…B@ª±¦@ýèZ³/\«Q¬Ú!˜—Ú­(tÎ<á:¸!Üösd÷s0­r…¼û`Ž­qà äΩÿ¡}™»ãŠ;ômU9zÚûÖØ=†smrxÊAÃCiñ‰&á?:f'T4m‘ª›òøÉ‚–/‚œ†,V8ì!^Ù¶ 8Nõ$Ò+¸Óä!f mC‰Î}ä)a[’onåö¤“Pg…§ÿ!ê6À“’ÉÚÑÚ(!õJÖ¤ÛÕ]ý$4` ‰‡˜‰)ëŃƒtÈÓÔ'…& k‘O7ôê¡;±ÏÕ"P¼&®Â–©WÖ>stream H‰\TIŽ1 ¼ëú@Óâ¦å'Èi rÈI.3&þ?¢zq#0ìV±¹Y”oßîùör/ùÓç{N©d–>¿Küüý™~ä?évÿ^òúÈe~òc…é+L¿é#ó4rîBÊx(éè–×÷ö÷ó0œ`w=ŸBÒZ^Ó†”¬¶¼ynçBb¼Ÿ×´ vô––FÜÁÒ©Í‹“iñ¼¹õ,X="•º"S¹…Áå”ZõÌÔÆ8Àš"A;`¥.à"T»æN%SEŽ“3ÃÊ4QUïpª´w¨$˜%ò"ZP´·ì4wk꤭Ósy¢p –;MÉa’µû@íÚêfㆠïxéG?:µ-ÔG=XÙ•ЍiÕðÞHœ3WÀF¥èS 4X@íÔy´Ê- j£þ‡¶ÁGì†Kލ†®ãä¤=v$˜À*±SÈ‹ú½ŒZ#—a@à£PÊE»CÝ2ûAŽœKe2 Ožc[Z!®ØÓÊ'Ž1¡_< µ_0Ô6¼¯úÔ*"b7Ãblù‰…8>stream H‰\TIŽ1 ¼ëú@Óâ¦å'Èi rÈI.3&þ?¢zq#0ìV±¹Y”oßîùör/ùÓç{N©d–>¿Küüý™~ä?évÿ^òúÈe~òc…é+L¿é#ó4rîBÊx(éè–×÷ö÷ó0œ`w=ŸBÒZ^Ó†”¬¶¼ynçBb¼Ÿ×´ vô––FÜÁÒ©Í‹“iñ¼¹õ,X="•º"S¹…Áå”ZõÌÔÆ8Àš"A;`¥.à"T»æN%SEŽ“3ÃÊ4QUïpª´w¨$˜%ò"ZP´·ì4wk꤭Ósy¢p –;MÉa’µû@íÚêfㆠïxéG?:µ-ÔG=XÙ•ЍiÕðÞHœ3WÀF¥èS 4X@íÔy´Ê- j£þ‡¶ÁGì†Kލ†®ãä¤=v$˜À*±SÈ‹ú½ŒZ#—a@à£PÊE»CÝ2ûAŽœKe2 Ožc[Z!®ØÓÊ'Ž1¡_< µ_0Ô6¼¯úÔ*"b7Ãblù‰…8>stream H‰TTËŽÛ0 ¼ë+ø抒(‘צEO‹bÑC?Àh{éØîÿÊrâEXCñ9CçéÛžžo™>}¾QzK™z‹ï†ß¿ŸéýMO·ï™öwÊóCï;L_aúýžÞH¦Q¨ ‹jgw/´¿¦¸xM°ûîãñ„µ:íéD£V:g™±£;-ÛÊ;m«™Ú I7„WÅäaiŒTÒ‹CÉX$½à‰jeoeEôÃ0 ý ç! Ô‹{ql€ÎÆU|âŒÍŽz±'F@‰µhÐÚŽ‘$FºcP17àaiì!i‰â1CÇæÛcè.åÆÕ!sV›<Ö‚fœÛ|P¡jTìÄ&ƒƒ 8ÅPïÊ<ù-OÁ~¥—ôåÿ/é¿$“Ðl endstream endobj 7 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 256.0 256.0]/Type/Page>> endobj 8 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 16.0 16.0]/Type/Page>> endobj 25 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 32.0 32.0]/Type/Page>> endobj 26 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 32.0 32.0]/Type/Page>> endobj 27 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 64.0 64.0]/Type/Page>> endobj 160 0 obj <>stream H‰TTËŽÛ0 ¼ë+ø抒(‘צEO‹bÑC?Àh{éØîÿÊrâEXCñ9CçéÛžžo™>}¾QzK™z‹ï†ß¿ŸéýMO·ï™öwÊóCï;L_aúýžÞH¦Q¨ ‹jgw/´¿¦¸xM°ûîãñ„µ:íéD£V:g™±£;-ÛÊ;m«™Ú I7„WÅäaiŒTÒ‹CÉX$½à‰jeoeEôÃ0 ý ç! Ô‹{ql€ÎÆU|âŒÍŽz±'F@‰µhÐÚŽ‘$FºcP17àaiì!i‰â1CÇæÛcè.åÆÕ!sV›<Ö‚fœÛ|P¡jTìÄ&ƒƒ 8ÅPïÊ<ù-OÁ~¥—ôåÿ/é¿$“Ðl endstream endobj 159 0 obj <>stream H‰\”KŽÛ0 †÷:/`FR"·M‹®Å ‹Àh»™0Íýþ”å$(’Øü$¾ôÓÎåÛ•./×LŸ>_)}¤L­ÆwÃïïÏôƒÞÓåú=Ó~£>stream H‰\”KŽÛ0 †÷:/`FR"·M‹®Å ‹Àh»™0Íýþ”å$(’Øü$¾ôÓÎåÛ•./×LŸ>_)}¤L­ÆwÃïïÏôƒÞÓåú=Ó~£>stream H‰dSK®1 Üç¹ÀxbÇŽ“-bõ„žXp€°¤ÇÜ_¢ìîž7šŸ+.Û•rÏõË­^_n­~øx«å­´Ê#Þ|þ~/ßêŸr½}mu»×–¯zßpôG?ïå­rråF2Wþªè¬Ûï |“¬$R~úÛêVN¤]ëÁ<âÖp+&ž'üU.æš•i9t6sÖþ `c{Ô¡ÂÎÈC«’Ç(±#†â33­#nÇÔ ¢Ó2~HE³•õ=b5Än° ­]?& ¹Ä…®ìñVÐYý@LºFT@êC¿z²)±[è¡Ñ$¶µ‡û»í>µ‘â•ô!‡ÆôptŽ1½GΧôeõ"ÄbïfwÀùn6ðé=€ÿ@Øšu ã\ý8$…„1# éÔ”·$8 K¿(9.¥ŠÃAËžcy½8 Ÿ‘]‚ì—£dø @EL8“F¬ë )Ï@:ÇΖ\¯'rr8ü„¬?q>jdñ°ˆkÁÕªå¾ß³ Æì<ÑÄu}çØ5Jt_Ôü¼XÆû:ô‘<Ù–þt Ô-‹möÝä6ÓÍwÍ„ZqÉM´\ÂòZ>½àÿZþ 0WEÁ­ endstream endobj 156 0 obj <>stream H‰\TAnÜ0 ¼ëü€¸I‰ÒµÛ¢§ z茶—$@ºÿ:”×ñ¶‚ÕŒIjHŽ}ùv¥ËӵЧÏWJ—ë÷BÛêú£Ûö–._Aý¾¥B…¤õõÿçgú•ÞÓIä;ûƒÞV`ÙsßQ$Šuã.‡Î>û¤íuE¾&c'ð¥ü·f´¥užj´GîçÂ6êý¼¥\O9ð °±z'­Ü‘žkåRÙœ”'—éÔ:‹G²sïÈ.(‘Bºs“IÊmŽl ùÕX•»áací q ¤,¢§pa«<¤QC$TÜAeYîÐ:[kälÈ6\ëFP=»hK¸Â1ç;E³H„úöZ„TÄÞ1¦=Š„Ô1Œ\ Ôh“ L­ésu.E)Öã¨Ø—Ú-htÎ<á2¸!\ž+e5d÷s1­p¼Å4”-~Çrç”ÿо€ÈÝqÁ“;ôu*ì=ì‚çÚØ,†º:Ù-ä`à.”mbHøõΊ]G…‚¡åZdY!ÊO®y®ÈHƲÜ`j…U`‡ãDN"¼‚;µ>Ä ŒmÈ#ѹ¨yl¹”aÙ“NBŒžþ‡(k'U'KÇh} …Ð[£'YWw±“@Ò€ª?ÄL¼HѼ1(ü@`B¦>) q`Yy@D¼5Ö¸bVs؉}¯úæ%p©¬‘ªpe‰Jó0™âňK¼ÀŠuùª…¿œkЧkÃÛú,¼àóœ¾<á›ôœþ 0_±ã» endstream endobj 5 0 obj <> endobj 23 0 obj <> endobj 47 0 obj <> endobj 81 0 obj <> endobj 107 0 obj <> endobj 121 0 obj [/View/Design] endobj 122 0 obj <>>> endobj 93 0 obj [/View/Design] endobj 94 0 obj <>>> endobj 67 0 obj [/View/Design] endobj 68 0 obj <>>> endobj 38 0 obj [/View/Design] endobj 39 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 136 0 obj [135 0 R] endobj 161 0 obj <> endobj xref 0 162 0000000004 65535 f 0000000016 00000 n 0000000220 00000 n 0000040256 00000 n 0000000006 00000 f 0000154000 00000 n 0000000009 00000 f 0000149372 00000 n 0000149716 00000 n 0000000010 00000 f 0000000011 00000 f 0000000012 00000 f 0000000013 00000 f 0000000016 00000 f 0000154823 00000 n 0000154854 00000 n 0000000017 00000 f 0000000018 00000 f 0000000019 00000 f 0000000020 00000 f 0000000021 00000 f 0000000022 00000 f 0000000024 00000 f 0000154070 00000 n 0000000029 00000 f 0000150066 00000 n 0000150417 00000 n 0000150768 00000 n 0000040524 00000 n 0000000030 00000 f 0000000031 00000 f 0000000032 00000 f 0000000033 00000 f 0000000034 00000 f 0000000035 00000 f 0000000036 00000 f 0000000037 00000 f 0000000040 00000 f 0000154707 00000 n 0000154738 00000 n 0000000041 00000 f 0000000042 00000 f 0000000043 00000 f 0000000044 00000 f 0000000045 00000 f 0000000046 00000 f 0000000048 00000 f 0000154141 00000 n 0000000057 00000 f 0000040316 00000 n 0000040408 00000 n 0000040874 00000 n 0000041231 00000 n 0000041588 00000 n 0000041945 00000 n 0000042302 00000 n 0000042659 00000 n 0000000058 00000 f 0000000059 00000 f 0000000060 00000 f 0000000061 00000 f 0000000062 00000 f 0000000063 00000 f 0000000064 00000 f 0000000065 00000 f 0000000066 00000 f 0000000069 00000 f 0000154591 00000 n 0000154622 00000 n 0000000070 00000 f 0000000071 00000 f 0000000072 00000 f 0000000073 00000 f 0000000074 00000 f 0000000075 00000 f 0000000076 00000 f 0000000077 00000 f 0000000078 00000 f 0000000079 00000 f 0000000080 00000 f 0000000082 00000 f 0000154212 00000 n 0000000083 00000 f 0000000084 00000 f 0000000085 00000 f 0000000086 00000 f 0000000087 00000 f 0000000088 00000 f 0000000089 00000 f 0000000090 00000 f 0000000091 00000 f 0000000092 00000 f 0000000095 00000 f 0000154475 00000 n 0000154506 00000 n 0000000096 00000 f 0000000097 00000 f 0000000098 00000 f 0000000099 00000 f 0000000100 00000 f 0000000101 00000 f 0000000102 00000 f 0000000103 00000 f 0000000104 00000 f 0000000105 00000 f 0000000106 00000 f 0000000000 00000 f 0000154283 00000 n 0000000000 00000 f 0000043016 00000 n 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000154357 00000 n 0000154389 00000 n 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000044046 00000 n 0000154939 00000 n 0000148793 00000 n 0000047038 00000 n 0000044352 00000 n 0000044238 00000 n 0000148186 00000 n 0000147579 00000 n 0000146948 00000 n 0000146317 00000 n 0000145670 00000 n 0000145023 00000 n 0000043380 00000 n 0000044120 00000 n 0000044152 00000 n 0000044389 00000 n 0000047114 00000 n 0000047315 00000 n 0000048376 00000 n 0000052886 00000 n 0000118475 00000 n 0000153361 00000 n 0000152822 00000 n 0000152260 00000 n 0000151698 00000 n 0000151119 00000 n 0000154966 00000 n trailer <]>> startxref 155159 %%EOF klatexformula-4.0.0/src/klatexformula.desktop.in000644 000765 000024 00000000675 13046272676 023040 0ustar00philippestaff000000 000000 [Desktop Entry] Name=KLatexFormula GenericName=KLatexFormula Comment=Generate images from LaTeX equations Comment[fr]=Générez une image d'une équation LaTeX Categories=@KLF_INSTALL_DESKTOP_CATEGORIES@ MimeType=application/x-klatexformula;application/x-klatexformula-db; Exec=@KLF_ABS_INSTALL_BIN_DIR@/klatexformula %F Icon=@KLF_INSTALL_DESKTOP_ICON@ Type=Application Terminal=false X-KDE-StartupNotify=true X-KDE-AuthorizeAction=shell_access klatexformula-4.0.0/src/klatexformula.sh.in000644 000765 000024 00000000432 13046272703 021757 0ustar00philippestaff000000 000000 #!/bin/bash install_bin="@KLF_ABS_INSTALL_BIN_DIR@" install_lib="@KLF_ABS_INSTALL_LIB_DIR@" script=`which "$0" || echo "$0"` file=`readlink -f "$script"` dir=`dirname "$file"` LD_LIBRARY_PATH="$dir/$install_lib:$LD_LIBRARY_PATH" "$dir"/"$install_bin"/klatexformula "$@" exit $? klatexformula-4.0.0/src/klatexformula.svg000644 000765 000024 00000002557 13046272703 021551 0ustar00philippestaff000000 000000 klatexformula-4.0.0/src/klfaboutdialog.ui000644 000765 000024 00000014076 13046272677 021511 0ustar00philippestaff000000 000000 KLFAboutDialog Qt::NonModal 0 0 717 395 About KLatexFormula :/pics/klatexformula-128.png:/pics/klatexformula-128.png QDialog#KLFAboutDialog .QFrame#frmAboutArea { background-image: url(:/pics/helpdialogbg.png); background-clip: padding; } QDialog#KLFAboutDialog .QTextBrowser#txtDisplay { border: 1px solid black; color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 200); } false false 10 1 1 1 5 QFrame::NoFrame QFrame::Plain 0 0 5 0 Qt::Horizontal QSizePolicy::Fixed 200 20 400 300 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> false false 0 0 0 0 Qt::Horizontal 186 20 Qt::Horizontal 185 20 250 0 OK :/pics/ok.png:/pics/ok.png true Qt::Horizontal 186 20 btnOK clicked() KLFAboutDialog accept() 289 386 246 407 klatexformula-4.0.0/src/klfapp.cpp000644 000765 000024 00000004406 13046272702 020125 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfapp.cpp * This file is part of the KLatexFormula Project. * Copyright (C) 2012 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfapp.cpp 1011 2017-02-06 19:54:48Z phfaist $ */ #include #include #include "klfapp.h" KLFGuiApplication::KLFGuiApplication(int& argc, char **argv) : QApplication(argc, argv) { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; } KLFGuiApplication::~KLFGuiApplication() { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; } void KLFGuiApplication::saveState(QSessionManager& ) { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; /** \todo .... */ } void KLFGuiApplication::commitData(QSessionManager& sm) { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; /** \todo .... */ if (sm.allowsInteraction()) { klfDbg("interaction allowed.") ; // QMessageBox::information(NULL, "info", "Shutting down.") ; sm.release(); } else { klfDbg("interaction NOT allowed.") ; } // just don't cancel the app exit as the previous version did... } klatexformula-4.0.0/src/klfapp.h000644 000765 000024 00000003537 13046272677 017611 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfapp.h * This file is part of the KLatexFormula Project. * Copyright (C) 2012 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfapp.h 978 2016-12-31 05:16:11Z phfaist $ */ #ifndef KLFAPP_H #define KLFAPP_H #include #include class KLF_EXPORT KLFGuiApplication : public QApplication { Q_OBJECT public: KLFGuiApplication(int& argc, char** argv); virtual ~KLFGuiApplication(); virtual void saveState(QSessionManager& sessionmanager); virtual void commitData(QSessionManager& sessionmanager); }; #endif klatexformula-4.0.0/src/klfautoupdater.h000644 000765 000024 00000003760 13046272703 021352 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfautoupdater.h * This file is part of the KLatexFormula Project. * Copyright (C) 2014 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfautoupdater.h 909 2014-08-10 17:58:33Z phfaist $ */ #ifndef KLFAUTOUPDATER_H #define KLFAUTOUPDATER_H #include /** Minimal interface for an auto-updater. * * This removes the necessity of having too much sparkle-specific code in main.cpp or * klfmainwin.cpp etc. */ class KLFAutoUpdater : public QObject { Q_OBJECT public: KLFAutoUpdater(QObject * parent = NULL) : QObject(parent) { } virtual ~KLFAutoUpdater() { } public slots: virtual void checkForUpdates(bool inBackground = false) { Q_UNUSED(inBackground); } }; #endif klatexformula-4.0.0/src/klfbackend/000755 000765 000024 00000000000 13046272703 020225 5ustar00philippestaff000000 000000 klatexformula-4.0.0/src/klfcmdiface.cpp000644 000765 000024 00000011366 13046272702 021103 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfcmdiface.cpp * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfcmdiface.cpp 952 2016-12-26 07:36:43Z phfaist $ */ #include #include #include #include #include "klfcmdiface.h" struct KLFCmdIfacePrivate { KLF_PRIVATE_HEAD(KLFCmdIface) { } QMap objects; }; KLFCmdIface::KLFCmdIface(QObject *parent) : QObject(parent) { KLF_INIT_PRIVATE(KLFCmdIface) ; } KLFCmdIface::~KLFCmdIface() { KLF_DELETE_PRIVATE ; } void KLFCmdIface::registerObject(QObject *obj, const QString& name) { if (d->objects.contains(name)) { qWarning()<objects[name] = obj; } // static QUrl KLFCmdIface::encodeCommand(const Command& command) { QUrl url; url.setScheme("klfcommand"); url.setHost(command.object); url.setPath("/"+command.slot+"/"); QVariantList args = command.args; QUrlQuery urlq; urlq.addQueryItem("klfUrlVersion", "3.3.0alpha"); // klf compatibility version for (int k = 0; k < args.size(); ++k) { QString key = QLatin1String("arg")+QString::number(k); QString val = QString::fromLatin1("[") + args[k].typeName() + "]" + QString::fromLatin1(klfSaveVariantToText(args[k])); urlq.addQueryItem(key, val); } url.setQuery(urlq); return url; } // static KLFCmdIface::Command KLFCmdIface::decodeCommand(const QUrl& url) { Command c; if (url.scheme() != "klfcommand") { qWarning()<objects.contains(c.object)) { qWarning()<objects.value(c.object, NULL); KLF_ASSERT_NOT_NULL(target, "Target is NULL!", return; ) ; QList gargs; int k; for (k = 0; k < c.args.size(); ++k) { gargs << QGenericArgument(c.args[k].typeName(), c.args[k].data()); } while (k++ < 9) gargs << QGenericArgument(); bool r = QMetaObject::invokeMethod(target, c.slot.toLatin1(), gargs[0], gargs[1], gargs[2], gargs[3], gargs[4], gargs[5], gargs[6], gargs[7], gargs[8]); if (!r) { qWarning()< #include #include #include struct KLFCmdIfacePrivate; class KLF_EXPORT KLFCmdIface : public QObject { Q_OBJECT public: struct Command { Command(const QString& o = QString(), const QString& s = QString(), const QVariantList& a = QVariantList()) : object(o), slot(s), args(a) { } Command(const Command& copy) : object(copy.object), slot(copy.slot), args(copy.args) { } QString object; QString slot; QVariantList args; }; KLFCmdIface(QObject *parent = NULL); ~KLFCmdIface(); void registerObject(QObject *target, const QString& objectHostName); static QUrl encodeCommand(const Command& command); static Command decodeCommand(const QUrl& url); public slots: void executeCommand(const QUrl& url); private: KLF_DECLARE_PRIVATE(KLFCmdIface) ; }; #endif klatexformula-4.0.0/src/klfconfig.cpp000644 000765 000024 00000131344 13046272703 020615 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfconfig.cpp * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfconfig.cpp 1014 2017-02-07 03:26:28Z phfaist $ */ #include #include #include #include #include #include #include #include #include #include #include // icon view flow #include #include // "My Documents" or "Documents" directory #include #include #include #include #include #include #include #include #include "klfmain.h" #include "klfmainwin.h" #include "klfconfig.h" #include "klfconfig_p.h" static const char * klf_compiletime_share_dir = #if defined(KLF_SHARE_DIR) // defined by the CMake build system KLF_SHARE_DIR; #elif defined(Q_OS_WIN32) || defined(Q_OS_WIN64) // windows ".."; // note: program is in a bin/ directory by default (this is for nsis-installer) #elif defined(Q_OS_MAC) || defined(Q_OS_DARWIN) // Mac OS X "../Resources"; #else // unix-like system "../share/klatexformula"; #endif // in the future this variable may be set by main.cpp by a cmd line option? QString klf_override_share_dir = QString(); static QString klf_share_dir_abspath() { // Note: klfPrefixedPath() expands ~/ into the user's home directory, and considers // relative paths as relative with respec to the application executable location. klfDbg("klf_override_share_dir="<(); return tf.toCharFormat(); } /* template void settings_write_list(QSettings& s, const QString& basename, const QList& list) { QList l; int k; for (k = 0; k < list.size(); ++k) l.append(QVariant(list[k])); s.setValue(basename+"_list", l); } */ template static QList settings_read_list(QSettings& s, const QString& basename, const QList& dflt) { QList l = s.value(basename+"_list", QList()).toList(); if (l.size() == 0) return dflt; QList list; int k; for (k = 0; k < l.size(); ++k) list.append(l[k].value()); return list; } // ----------------------------------------------------- #define KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, f, fps) \ if (!found_fcode && fdb.isFixedPitch(f)) { \ fcode = QFont(f, fps); \ found_fcode = true; \ } void KLFConfig::loadDefaults() { KLF_DEBUG_TIME_BLOCK(KLF_FUNC_NAME) ; KLFCONFIGPROP_INIT_CONFIG(this) ; homeConfigDir = klf_home_config_dir_abspath(); klfDbg("Home config dir = " << homeConfigDir) ; globalShareDir = klf_share_dir_abspath(); klfDbg("Global share dir = " << globalShareDir) ; //DEBUG: //QMessageBox::information(0, "", QString("global share dir=")+globalShareDir); homeConfigSettingsFile = homeConfigDir + "/klatexformula.conf"; homeConfigSettingsFileIni = homeConfigDir + "/config";// config from a really old version of klf .... homeConfigDirI18n = homeConfigDir + "/i18n"; homeConfigDirUserScripts = homeConfigDir + "/userscripts"; QFont cmuappfont = QFont(); QFont fcodeMain = QFont(); QFont fcodePreamble = QFont(); if (qApp->inherits("QApplication")) { // and not QCoreApplication... QFontDatabase fdb; QFont f = QApplication::font(); #if defined(KLF_WS_X11) int fps = QFontInfo(f).pointSize(); double cmuffactor = 1.15; double codeffactor = 1.2; int cmufpsfinal = (int)(fps*cmuffactor+0.5); int codefpsfinal = (int)(fps*codeffactor+0.5); QString cmufamily = QString::fromUtf8("CMU Sans Serif"); #elif defined(KLF_WS_WIN) int fps = QFontInfo(f).pointSize(); double cmuffactor = 1.3; double codeffactor = 1.3; int cmufpsfinal = (int)(fps*cmuffactor+0.5); int codefpsfinal = (int)(fps*codeffactor+0.5); QString cmufamily = QString::fromUtf8("CMU Sans Serif"); #else // mac OS X //int fps = QFontInfo(f).pointSize(); //double cmuffactor = 1.1; //double codeffactor = 1.3; int cmufpsfinal = 14;//(int)(fps*cmuffactor+0.5); int codefpsfinal = 13;//(int)(fps*codeffactor+0.5); QString cmufamily = QString::fromUtf8("CMU Bright"); #endif defaultStdFont = f; cmuappfont = f; // klfDbg("fdb.families() = " << fdb.families()) ; if (fdb.families().filter(cmufamily, Qt::CaseInsensitive).size()) { klfDbg("Found CMU Font with name = " << cmufamily) ; cmuappfont = QFont(cmufamily, cmufpsfinal); } QFont fcode; bool found_fcode = false; int ps = codefpsfinal; KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Menlo", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Monaco", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Courier 10 Pitch", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "ETL Fixed", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Courier New", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Efont Fixed", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Adobe Courier", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Courier", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Misc Fixed", ps); KLFCONFIG_TEST_FIXED_FONT(found_fcode, fdb, fcode, "Monospace", ps); if ( ! found_fcode ) { fcode = f; } fcodeMain = fcode; fcodeMain.setPointSize(ps+1); fcodePreamble = fcode; defaultCMUFont = cmuappfont; defaultTTFont = fcode; } else { defaultStdFont = QFont(); defaultCMUFont = QFont(); defaultTTFont = QFont(); } // by default, this is first run! KLFCONFIGPROP_INIT(Core.thisVersionMajFirstRun, true); KLFCONFIGPROP_INIT(Core.thisVersionMajMinFirstRun, true) ; KLFCONFIGPROP_INIT(Core.thisVersionMajMinRelFirstRun, true) ; KLFCONFIGPROP_INIT(Core.thisVersionExactFirstRun, true) ; KLFCONFIGPROP_INIT(Core.libraryFileName, "library.klf.db") ; KLFCONFIGPROP_INIT(Core.libraryLibScheme, "klf+sqlite") ; KLFCONFIGPROP_INIT(UI.locale, QLocale::system().name()) ; klfDbg("System locale: "< colorlist; colorlist.append(QColor(0,0,0)); colorlist.append(QColor(255,255,255)); colorlist.append(QColor(170,0,0)); colorlist.append(QColor(0,0,128)); colorlist.append(QColor(0,0,255)); colorlist.append(QColor(0,85,0)); colorlist.append(QColor(255,85,0)); colorlist.append(QColor(0,255,255)); colorlist.append(QColor(85,0,127)); colorlist.append(QColor(128,255,255)); KLFCONFIGPROP_INIT(UI.userColorList, colorlist) ; KLFCONFIGPROP_INIT(UI.colorChooseWidgetRecent, QList()) ; KLFCONFIGPROP_INIT(UI.colorChooseWidgetCustom, QList()) ; KLFCONFIGPROP_INIT(UI.maxUserColors, 12) ; KLFCONFIGPROP_INIT(UI.enableToolTipPreview, false) ; KLFCONFIGPROP_INIT(UI.enableRealTimePreview, true) ; KLFCONFIGPROP_INIT(UI.realTimePreviewExceptBattery, true) ; KLFCONFIGPROP_INIT(UI.autosaveLibraryMin, 5) ; KLFCONFIGPROP_INIT(UI.showHintPopups, true) ; KLFCONFIGPROP_INIT(UI.clearLatexOnly, false) ; KLFCONFIGPROP_INIT(UI.glowEffect, false) ; #ifdef KLF_WS_MAC QColor glowcolor = QColor(155, 207, 255, 62); #else QColor glowcolor = QColor(128, 255, 128, 12); #endif KLFCONFIGPROP_INIT(UI.glowEffectColor, glowcolor) ; KLFCONFIGPROP_INIT(UI.glowEffectRadius, 4) ; KLFCONFIGPROP_INIT(UI.customMathModes, QStringList()) ; KLFCONFIGPROP_INIT(UI.emacsStyleBackspaceSearch, true) ; KLFCONFIGPROP_INIT(UI.macBrushedMetalLook, true) ; KLFCONFIGPROP_INIT(ExportData.copyExportProfile, "default") ; KLFCONFIGPROP_INIT(ExportData.dragExportProfile, "default") ; KLFCONFIGPROP_INIT(ExportData.showExportProfilesLabel, true) ; KLFCONFIGPROP_INIT(ExportData.menuExportProfileAffectsDrag, true) ; KLFCONFIGPROP_INIT(ExportData.menuExportProfileAffectsCopy, true) ; KLFCONFIGPROP_INIT(ExportData.oooExportScale, 1.6) ; KLFCONFIGPROP_INIT(ExportData.htmlExportDpi, 150); // query display DPI int dispdpi = 96; /* if (qApp->inherits("QApplication")) { QDesktopWidget *w = QApplication::desktop(); if (w != NULL) { // dispdpi = (w->physicalDpiX() + w->physicalDpiY()) / 2; dispdpi = w->physicalDpiX(); } } */ KLFCONFIGPROP_INIT(ExportData.htmlExportDisplayDpi, dispdpi); KLFCONFIGPROP_INIT(SyntaxHighlighter.enabled, true) ; KLFCONFIGPROP_INIT(SyntaxHighlighter.highlightParensOnly, false) ; KLFCONFIGPROP_INIT(SyntaxHighlighter.highlightLonelyParens, true) ; // KLFCONFIGPROP_INIT(SyntaxHighlighter.matchParenTypes, true) ; QTextCharFormat f_keyword; QTextCharFormat f_comment; QTextCharFormat f_parenmatch; QTextCharFormat f_parenmismatch; QTextCharFormat f_lonelyparen; f_keyword.setForeground(QColor(0, 0, 128)); f_comment.setForeground(QColor(180, 0, 0)); f_comment.setFontItalic(true); f_parenmatch.setBackground(QColor(180, 238, 180, 128)); f_parenmismatch.setBackground(QColor(255, 20, 147, 128)); f_lonelyparen.setForeground(QColor(255, 0, 255)); f_lonelyparen.setFontWeight(QFont::Bold); KLFCONFIGPROP_INIT(SyntaxHighlighter.fmtKeyword, f_keyword) ; KLFCONFIGPROP_INIT(SyntaxHighlighter.fmtComment, f_comment) ; KLFCONFIGPROP_INIT(SyntaxHighlighter.fmtParenMatch, f_parenmatch) ; KLFCONFIGPROP_INIT(SyntaxHighlighter.fmtParenMismatch, f_parenmismatch) ; KLFCONFIGPROP_INIT(SyntaxHighlighter.fmtLonelyParen, f_lonelyparen) ; // invalid value, by convention ".". if the config is not read from file, then settings will // be detected in detectMissingSettings() KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.tempDir, ".") ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.execLatex, ".") ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.execDvips, ".") ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.execGs, ".") ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.execEpstopdf, ".") ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.execenv, QStringList()) ; KLFCONFIGPROP_INIT(BackendSettings.setTexInputs, QString()); KLFCONFIGPROP_INIT(BackendSettings.lborderoffset, 0) ; KLFCONFIGPROP_INIT(BackendSettings.tborderoffset, 0) ; KLFCONFIGPROP_INIT(BackendSettings.rborderoffset, 0) ; KLFCONFIGPROP_INIT(BackendSettings.bborderoffset, 0) ; KLFCONFIGPROP_INIT(BackendSettings.calcEpsBoundingBox, true) ; KLFCONFIGPROP_INIT(BackendSettings.outlineFonts, true) ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.wantPDF, true) ; KLFCONFIGPROP_INIT_DEFNOTDEF(BackendSettings.wantSVG, true) ; KLFCONFIGPROP_INIT(BackendSettings.userScriptAddPath, QStringList() ); KLFCONFIGPROP_INIT(BackendSettings.userScriptInterpreters, QVariantMap()); KLFCONFIGPROP_INIT(LibraryBrowser.colorFound, QColor(128, 255, 128)) ; KLFCONFIGPROP_INIT(LibraryBrowser.colorNotFound, QColor(255, 128, 128)) ; KLFCONFIGPROP_INIT(LibraryBrowser.restoreURLs, false) ; KLFCONFIGPROP_INIT(LibraryBrowser.confirmClose, true) ; KLFCONFIGPROP_INIT(LibraryBrowser.groupSubCategories, true) ; KLFCONFIGPROP_INIT(LibraryBrowser.iconViewFlow, QListView::TopToBottom) ; KLFCONFIGPROP_INIT(LibraryBrowser.historyTagCopyToArchive, true) ; // "My Documents" QStringList docpaths = QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation); QString docpath; if (docpaths.isEmpty()) { docpath = ""; } else { docpath = docpaths[0]; } KLFCONFIGPROP_INIT(LibraryBrowser.lastFileDialogPath, docpath) ; KLFCONFIGPROP_INIT(LibraryBrowser.treePreviewSizePercent, 75) ; KLFCONFIGPROP_INIT(LibraryBrowser.listPreviewSizePercent, 75) ; KLFCONFIGPROP_INIT(LibraryBrowser.iconPreviewSizePercent, 100) ; // User Scripts UserScripts.userScriptConfig = QMap< QString, QMap >() ; // can't query user script config here yet, because this function is called before user // scripts are loaded } static inline void ensure_interp_exe(KLFConfigProp & userScriptInterpreters, const QString& ext, const QString& program) { const QString & curval = userScriptInterpreters().value(ext, QString()).toString(); if (curval.isEmpty() || curval == ".") { QVariantMap map = userScriptInterpreters; map[ext] = KLFBlockProcess::detectInterpreterPath(program); userScriptInterpreters = map; // can't use "userScriptInterpreters[ext] = .." because of KLFConfigProp<> API } else if (!QFile::exists(curval)) { klfWarning("Path "<= 4) return s + QLatin1String(KLF_VERSION_STRING); if (N-- > 0) s += QString("%1").arg(KLF_VERSION_MAJ); if (N-- > 0) s += QString(".%1").arg(KLF_VERSION_MIN); if (N-- > 0) s += QString(".%1").arg(KLF_VERSION_REL); return s; } int KLFConfig::readFromConfig_v2(const QString& fname) { KLF_DEBUG_TIME_BLOCK(KLF_FUNC_NAME) ; QSettings s(fname, QSettings::IniFormat); qDebug("Reading base configuration"); s.beginGroup("Core"); klf_config_read(s, firstRunConfigKey(1), &Core.thisVersionMajFirstRun); klf_config_read(s, firstRunConfigKey(2), &Core.thisVersionMajMinFirstRun); klf_config_read(s, firstRunConfigKey(3), &Core.thisVersionMajMinRelFirstRun); klf_config_read(s, firstRunConfigKey(4), &Core.thisVersionExactFirstRun); klf_config_read(s, "libraryfilename", &Core.libraryFileName); klf_config_read(s, "librarylibscheme", &Core.libraryLibScheme); s.endGroup(); s.beginGroup("UI"); klf_config_read(s, "locale", &UI.locale); klf_config_read(s, "usesystemfont", &UI.useSystemAppFont); klf_config_read(s, "applicationfont", &UI.applicationFont); klf_config_read(s, "latexeditfont", &UI.latexEditFont); klf_config_read(s, "preambleeditfont", &UI.preambleEditFont); klf_config_read(s, "editortabinsertstab", &UI.editorTabInsertsTab); klf_config_read(s, "editorwraplines", &UI.editorWrapLines); klf_config_read(s, "previewtooltipmaxsize", &UI.previewTooltipMaxSize); klf_config_read(s, "lbloutputfixedsize", &UI.labelOutputFixedSize); klf_config_read(s, "smallpreviewsize", &UI.smallPreviewSize); // klf_config_read(s, "savedwindowsize", &UI.savedWindowSize); klf_config_read(s, "detailssidewidgettype", &UI.detailsSideWidgetType); klf_config_read(s, "lastsavedir", &UI.lastSaveDir); klf_config_read(s, "symbolsperline", &UI.symbolsPerLine); klf_config_read(s, "symbolincludewithpreambledefs", &UI.symbolIncludeWithPreambleDefs); klf_config_read_list(s, "usercolorlist", &UI.userColorList); klf_config_read_list(s, "colorchoosewidgetrecent", &UI.colorChooseWidgetRecent); klf_config_read_list(s, "colorchoosewidgetcustom", &UI.colorChooseWidgetCustom); klf_config_read(s, "maxusercolors", &UI.maxUserColors); klf_config_read(s, "enabletooltippreview", &UI.enableToolTipPreview); klf_config_read(s, "enablerealtimepreview", &UI.enableRealTimePreview); klf_config_read(s, "realtimepreviewexceptbattery", &UI.realTimePreviewExceptBattery); klf_config_read(s, "autosavelibrarymin", &UI.autosaveLibraryMin); klf_config_read(s, "showhintpopups", &UI.showHintPopups); klf_config_read(s, "clearlatexonly", &UI.clearLatexOnly); klf_config_read(s, "gloweffect", &UI.glowEffect); klf_config_read(s, "gloweffectcolor", &UI.glowEffectColor); klfDbg("Read glow effect color from config: color="<(s, "keyword", &SyntaxHighlighter.fmtKeyword); klf_config_read(s, "comment", &SyntaxHighlighter.fmtComment); klf_config_read(s, "parenmatch", &SyntaxHighlighter.fmtParenMatch); klf_config_read(s, "parenmismatch", &SyntaxHighlighter.fmtParenMismatch); klf_config_read(s, "lonelyparen", &SyntaxHighlighter.fmtLonelyParen); s.endGroup(); s.beginGroup("BackendSettings"); klf_config_read(s, "tempdir", &BackendSettings.tempDir); klf_config_read(s, "latexexec", &BackendSettings.execLatex); klf_config_read(s, "dvipsexec", &BackendSettings.execDvips); klf_config_read(s, "gsexec", &BackendSettings.execGs); klf_config_read(s, "epstopdfexec", &BackendSettings.execEpstopdf); klf_config_read(s, "execenv", &BackendSettings.execenv); klf_config_read(s, "settexinputs", &BackendSettings.setTexInputs); klf_config_read(s, "lborderoffset", &BackendSettings.lborderoffset); klf_config_read(s, "tborderoffset", &BackendSettings.tborderoffset); klf_config_read(s, "rborderoffset", &BackendSettings.rborderoffset); klf_config_read(s, "bborderoffset", &BackendSettings.bborderoffset); klf_config_read(s, "calcepsboundingbox", &BackendSettings.calcEpsBoundingBox); klf_config_read(s, "outlinefonts", &BackendSettings.outlineFonts); klf_config_read(s, "wantpdf", &BackendSettings.wantPDF); klf_config_read(s, "wantsvg", &BackendSettings.wantSVG); klf_config_read(s, "userscriptaddpath", &BackendSettings.userScriptAddPath); klf_config_read(s, "userscriptinterpreters", &BackendSettings.userScriptInterpreters); s.endGroup(); s.beginGroup("LibraryBrowser"); klf_config_read(s, "colorfound", &LibraryBrowser.colorFound); klf_config_read(s, "colornotfound", &LibraryBrowser.colorNotFound); klf_config_read(s, "restoreurls", &LibraryBrowser.restoreURLs); klf_config_read(s, "confirmclose", &LibraryBrowser.confirmClose); klf_config_read(s, "groupsubcategories", &LibraryBrowser.groupSubCategories); klf_config_read(s, "iconviewflow", &LibraryBrowser.iconViewFlow); klf_config_read(s, "historytagcopytoarchive", &LibraryBrowser.historyTagCopyToArchive); klf_config_read(s, "lastfiledialogpath", &LibraryBrowser.lastFileDialogPath); klf_config_read(s, "treepreviewsizepercent", &LibraryBrowser.treePreviewSizePercent); klf_config_read(s, "listpreviewsizepercent", &LibraryBrowser.listPreviewSizePercent); klf_config_read(s, "iconpreviewsizepercent", &LibraryBrowser.iconPreviewSizePercent); s.endGroup(); // Special treatment for UserScripts.userScriptConfig // save into a dedicated XML file KLF_BLOCK { QDomDocument xmldoc; QFile usfile(homeConfigDir+"/userscriptconfig.xml"); if (!usfile.exists()) { // don't attempt to load user script settings if file does not exist break; } KLF_TRY( usfile.open(QIODevice::ReadOnly) , "Can't open file "< does not have 'name' attribute", continue; ) ; QString usname = usnode.attribute("name"); QVariantMap usconfig = klfLoadVariantMapFromXML(usnode); UserScripts.userScriptConfig[usname] = usconfig; } } // POST-CONFIG-READ SETUP // forbid empty locale if (klfconfig.UI.locale().isEmpty()) klfconfig.UI.locale = "en_US"; // set Qt default locale to ours QLocale::setDefault(klfconfig.UI.locale()); return 0; } int KLFConfig::writeToConfig() { ensureHomeConfigDir(); QSettings s(homeConfigSettingsFile, QSettings::IniFormat); bool thisVersionFirstRunFalse = false; s.beginGroup("Core"); klf_config_write_value(s, firstRunConfigKey(1), &thisVersionFirstRunFalse); klf_config_write_value(s, firstRunConfigKey(2), &thisVersionFirstRunFalse); klf_config_write_value(s, firstRunConfigKey(3), &thisVersionFirstRunFalse); klf_config_write_value(s, firstRunConfigKey(4), &thisVersionFirstRunFalse); klf_config_write(s, "libraryfilename", &Core.libraryFileName); klf_config_write(s, "librarylibscheme", &Core.libraryLibScheme); s.endGroup(); s.beginGroup("UI"); klf_config_write(s, "locale", &UI.locale); klf_config_write(s, "usesystemfont", &UI.useSystemAppFont); klf_config_write(s, "applicationfont", &UI.applicationFont); klf_config_write(s, "latexeditfont", &UI.latexEditFont); klf_config_write(s, "preambleeditfont", &UI.preambleEditFont); klf_config_write(s, "editortabinsertstab", &UI.editorTabInsertsTab); klf_config_write(s, "editorwraplines", &UI.editorWrapLines); klf_config_write(s, "previewtooltipmaxsize", &UI.previewTooltipMaxSize); klf_config_write(s, "lbloutputfixedsize", &UI.labelOutputFixedSize); klf_config_write(s, "smallpreviewsize", &UI.smallPreviewSize); // klf_config_write(s, "savedwindowsize", &UI.savedWindowSize); klf_config_write(s, "detailssidewidgettype", &UI.detailsSideWidgetType); klf_config_write(s, "lastsavedir", &UI.lastSaveDir); klf_config_write(s, "symbolsperline", &UI.symbolsPerLine); klf_config_write(s, "symbolincludewithpreambledefs", &UI.symbolIncludeWithPreambleDefs); klf_config_write_list(s, "usercolorlist", &UI.userColorList); klf_config_write_list(s, "colorchoosewidgetrecent", &UI.colorChooseWidgetRecent); klf_config_write_list(s, "colorchoosewidgetcustom", &UI.colorChooseWidgetCustom); klf_config_write(s, "maxusercolors", &UI.maxUserColors); klf_config_write(s, "enabletooltippreview", &UI.enableToolTipPreview); klf_config_write(s, "enablerealtimepreview", &UI.enableRealTimePreview); klf_config_write(s, "realtimepreviewexceptbattery", &UI.realTimePreviewExceptBattery); klf_config_write(s, "autosavelibrarymin", &UI.autosaveLibraryMin); klf_config_write(s, "showhintpopups", &UI.showHintPopups); klf_config_write(s, "clearlatexonly", &UI.clearLatexOnly); klf_config_write(s, "gloweffect", &UI.glowEffect); klf_config_write(s, "gloweffectcolor", &UI.glowEffectColor); klf_config_write(s, "gloweffectradius", &UI.glowEffectRadius); klf_config_write(s, "custommathmodes", &UI.customMathModes); klf_config_write(s, "emacsstylebackspacesearch", &UI.emacsStyleBackspaceSearch); klf_config_write(s, "macbrushedmetallook", &UI.macBrushedMetalLook); s.endGroup(); s.beginGroup("ExportData"); klf_config_write(s, "copyexportprofile", &ExportData.copyExportProfile); klf_config_write(s, "dragexportprofile", &ExportData.dragExportProfile); klf_config_write(s, "showexportprofileslabel", &ExportData.showExportProfilesLabel); klf_config_write(s, "menuexportprofileaffectsdrag", &ExportData.menuExportProfileAffectsDrag); klf_config_write(s, "menuexportprofileaffectscopy", &ExportData.menuExportProfileAffectsCopy); klf_config_write(s, "oooexportscale", &ExportData.oooExportScale); klf_config_write(s, "htmlexportdpi", &ExportData.htmlExportDpi); klf_config_write(s, "htmlexportdisplaydpi", &ExportData.htmlExportDisplayDpi); s.endGroup(); s.beginGroup("SyntaxHighlighter"); klf_config_write(s, "enabled", &SyntaxHighlighter.enabled); klf_config_write(s, "highlightparensonly", &SyntaxHighlighter.highlightParensOnly); klf_config_write(s, "highlightlonelyparens", &SyntaxHighlighter.highlightLonelyParens); // klf_config_write(s, "matchparentypes", &SyntaxHighlighter.matchParenTypes); klf_config_write(s, "keyword", &SyntaxHighlighter.fmtKeyword); klf_config_write(s, "comment", &SyntaxHighlighter.fmtComment); klf_config_write(s, "parenmatch", &SyntaxHighlighter.fmtParenMatch); klf_config_write(s, "parenmismatch", &SyntaxHighlighter.fmtParenMismatch); klf_config_write(s, "lonelyparen", &SyntaxHighlighter.fmtLonelyParen); s.endGroup(); s.beginGroup("BackendSettings"); klf_config_write(s, "tempdir", &BackendSettings.tempDir); klf_config_write(s, "latexexec", &BackendSettings.execLatex); klf_config_write(s, "dvipsexec", &BackendSettings.execDvips); klf_config_write(s, "gsexec", &BackendSettings.execGs); klf_config_write(s, "epstopdfexec", &BackendSettings.execEpstopdf); klf_config_write(s, "execenv", &BackendSettings.execenv); klf_config_write(s, "settexinputs", &BackendSettings.setTexInputs); klf_config_write(s, "lborderoffset", &BackendSettings.lborderoffset); klf_config_write(s, "tborderoffset", &BackendSettings.tborderoffset); klf_config_write(s, "rborderoffset", &BackendSettings.rborderoffset); klf_config_write(s, "bborderoffset", &BackendSettings.bborderoffset); klf_config_write(s, "calcepsboundingbox", &BackendSettings.calcEpsBoundingBox); klf_config_write(s, "outlinefonts", &BackendSettings.outlineFonts); klf_config_write(s, "wantpdf", &BackendSettings.wantPDF); klf_config_write(s, "wantsvg", &BackendSettings.wantSVG); klf_config_write(s, "userscriptaddpath", &BackendSettings.userScriptAddPath); klf_config_write(s, "userscriptinterpreters", &BackendSettings.userScriptInterpreters); s.endGroup(); s.beginGroup("LibraryBrowser"); klf_config_write(s, "colorfound", &LibraryBrowser.colorFound); klf_config_write(s, "colornotfound", &LibraryBrowser.colorNotFound); klf_config_write(s, "restoreurls", &LibraryBrowser.restoreURLs); klf_config_write(s, "confirmclose", &LibraryBrowser.confirmClose); klf_config_write(s, "groupsubcategories", &LibraryBrowser.groupSubCategories); klf_config_write(s, "iconviewflow", &LibraryBrowser.iconViewFlow); klf_config_write(s, "historytagcopytoarchive", &LibraryBrowser.historyTagCopyToArchive); klf_config_write(s, "lastfiledialogpath", &LibraryBrowser.lastFileDialogPath); klf_config_write(s, "treepreviewsizepercent", &LibraryBrowser.treePreviewSizePercent); klf_config_write(s, "listpreviewsizepercent", &LibraryBrowser.listPreviewSizePercent); klf_config_write(s, "iconpreviewsizepercent", &LibraryBrowser.iconPreviewSizePercent); s.endGroup(); // // Special treatment for Plugins.pluginConfig // int k; // for (k = 0; k < klf_plugins.size(); ++k) { // QString fn = homeConfigDirPluginData+"/"+klf_plugins[k].name+"/"+klf_plugins[k].name+".conf"; // QSettings psettings(fn, QSettings::IniFormat); // QVariantMap pconfmap = Plugins.pluginConfig[klf_plugins[k].name]; // QVariantMap::const_iterator it; // for (it = pconfmap.begin(); it != pconfmap.end(); ++it) { // psettings.setValue(it.key(), it.value()); // } // psettings.sync(); // } // Special treatment for UserScripts.userScriptConfig // save into a dedicated XML file do { // do { ... } while (false); is used to allow 'break' statement to skip to end of block QDomDocument xmldoc("userscript-config"); QDomElement root = xmldoc.createElement("userscript-config"); xmldoc.appendChild(root); for (QMap >::const_iterator it = UserScripts.userScriptConfig.begin(); it != UserScripts.userScriptConfig.end(); ++it) { QString usname = it.key(); QVariantMap usconfig = it.value(); klfDbg("saving config for user script "<< usname<< "; config="<homeConfigDir: "<<_config->homeConfigDir) ; // } // } // KLFPluginConfigAccess::~KLFPluginConfigAccess() // { // } // KLFPluginConfigAccess::KLFPluginConfigAccess(KLFConfig *configObject, const QString& pluginName) // { // _config = configObject; // _pluginname = pluginName; // klfDbg("_config="<<_config<<", _pluginname="<<_pluginname) ; // if (_config != NULL) { // klfDbg("_config->homeConfigDir: "<<_config->homeConfigDir) ; // } // } // QString KLFPluginConfigAccess::homeConfigDir() const // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::homeConfigDir: Invalid Config Pointer!\n"); // return QString(); // } // klfDbg("_config->homeConfigDir="<<_config->homeConfigDir) ; // return _config->homeConfigDir; // } // QString KLFPluginConfigAccess::globalShareDir() const // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::homeConfigDir: Invalid Config Pointer!\n"); // return QString(); // } // return _config->globalShareDir; // } // QString KLFPluginConfigAccess::tempDir() const // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::tempDir: Invalid Config Pointer!\n"); // return QString(); // } // return _config->BackendSettings.tempDir; // } // QString KLFPluginConfigAccess::homeConfigPluginDataDir(bool createIfNeeded) const // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::homeConfigPluginDataDir: Invalid Config Pointer!\n"); // return QString(); // } // klfDbg("_config->homeConfigDirPluginData is "<<_config->homeConfigDirPluginData) ; // QString d = _config->homeConfigDirPluginData + "/" + _pluginname; // if ( createIfNeeded && ! klfEnsureDir(d) ) { // qWarning("KLFPluginConfigAccess::homeConfigPluginDataDir: Can't create directory: `%s'", // qPrintable(d)); // return QString(); // } // return d; // } // QVariant KLFPluginConfigAccess::readValue(const QString& key) const // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::readValue: Invalid Config Pointer!\n"); // return QVariant(); // } // if ( ! _config->Plugins.pluginConfig[_pluginname].contains(key) ) // return QVariant(); // return _config->Plugins.pluginConfig[_pluginname][key]; // } // QVariant KLFPluginConfigAccess::makeDefaultValue(const QString& key, const QVariant& defaultValue) // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::makeDefaultValue: Invalid Config Pointer!\n"); // return QVariant(); // } // if (_config->Plugins.pluginConfig[_pluginname].contains(key)) // return _config->Plugins.pluginConfig[_pluginname][key]; // // assign the value into the plugin config, and return it // return ( _config->Plugins.pluginConfig[_pluginname][key] = defaultValue ); // } // void KLFPluginConfigAccess::writeValue(const QString& key, const QVariant& value) // { // if ( _config == NULL ) { // qWarning("KLFPluginConfigAccess::writeValue: Invalid Config Pointer!\n"); // return; // } // _config->Plugins.pluginConfig[_pluginname][key] = value; // } // ---------------------- // KEPT FOR COMPATIBILITY WITH OLDER VERSIONS int KLFConfig::readFromConfig_v1() { QSettings s(homeConfigSettingsFileIni, QSettings::IniFormat); s.beginGroup("UI"); UI.locale = s.value("locale", UI.locale.toVariant()).toString(); // ingnore KLF 3.1 app font setting, we have our nice CMU Sans Serif font ;-) // UI.applicationFont = s.value("applicationfont", UI.applicationFont).value(); UI.latexEditFont = s.value("latexeditfont", UI.latexEditFont.toVariant()).value(); UI.preambleEditFont = s.value("preambleeditfont", UI.preambleEditFont.toVariant()).value(); UI.previewTooltipMaxSize = s.value("previewtooltipmaxsize", UI.previewTooltipMaxSize.toVariant()).toSize(); UI.labelOutputFixedSize = s.value("lbloutputfixedsize", UI.labelOutputFixedSize.toVariant() ).toSize(); UI.lastSaveDir = s.value("lastsavedir", UI.lastSaveDir.toVariant()).toString(); UI.symbolsPerLine = s.value("symbolsperline", UI.symbolsPerLine.toVariant()).toInt(); UI.userColorList = settings_read_list(s, "usercolorlist", UI.userColorList()); UI.colorChooseWidgetRecent = settings_read_list(s, "colorchoosewidgetrecent", UI.colorChooseWidgetRecent()); UI.colorChooseWidgetCustom = settings_read_list(s, "colorchoosewidgetcustom", UI.colorChooseWidgetCustom()); UI.maxUserColors = s.value("maxusercolors", UI.maxUserColors.toVariant()).toInt(); UI.enableToolTipPreview = s.value("enabletooltippreview", UI.enableToolTipPreview.toVariant()).toBool(); UI.enableRealTimePreview = s.value("enablerealtimepreview", UI.enableRealTimePreview.toVariant()).toBool(); UI.autosaveLibraryMin = s.value("autosavelibrarymin", UI.autosaveLibraryMin.toVariant()).toInt(); s.endGroup(); s.beginGroup("SyntaxHighlighter"); uint configFlags = s.value("configflags", 0x5).toUInt(); SyntaxHighlighter.enabled = (configFlags & 0x01); SyntaxHighlighter.highlightParensOnly = (configFlags & 0x02); SyntaxHighlighter.highlightLonelyParens = (configFlags & 0x04); SyntaxHighlighter.fmtKeyword = settings_read_QTextCharFormat(s, "keyword", SyntaxHighlighter.fmtKeyword()); SyntaxHighlighter.fmtComment = settings_read_QTextCharFormat(s, "comment", SyntaxHighlighter.fmtComment()); SyntaxHighlighter.fmtParenMatch = settings_read_QTextCharFormat(s, "parenmatch", SyntaxHighlighter.fmtParenMatch()); SyntaxHighlighter.fmtParenMismatch = settings_read_QTextCharFormat(s, "parenmismatch", SyntaxHighlighter.fmtParenMismatch()); SyntaxHighlighter.fmtLonelyParen = settings_read_QTextCharFormat(s, "lonelyparen", SyntaxHighlighter.fmtLonelyParen()); s.endGroup(); s.beginGroup("BackendSettings"); BackendSettings.tempDir = s.value("tempdir", BackendSettings.tempDir.toVariant()).toString(); BackendSettings.execLatex = s.value("latexexec", BackendSettings.execLatex.toVariant()).toString(); BackendSettings.execDvips = s.value("dvipsexec", BackendSettings.execDvips.toVariant()).toString(); BackendSettings.execGs = s.value("gsexec", BackendSettings.execGs.toVariant()).toString(); BackendSettings.execEpstopdf = s.value("epstopdfexec", BackendSettings.execEpstopdf.toVariant()).toString(); BackendSettings.lborderoffset = s.value("lborderoffset", BackendSettings.lborderoffset.toVariant()).toInt(); BackendSettings.tborderoffset = s.value("tborderoffset", BackendSettings.tborderoffset.toVariant()).toInt(); BackendSettings.rborderoffset = s.value("rborderoffset", BackendSettings.rborderoffset.toVariant()).toInt(); BackendSettings.bborderoffset = s.value("bborderoffset", BackendSettings.bborderoffset.toVariant()).toInt(); s.endGroup(); s.beginGroup("LibraryBrowser"); LibraryBrowser.colorFound = s.value("colorfound", LibraryBrowser.colorFound.toVariant()).value(); LibraryBrowser.colorNotFound = s.value("colornotfound", LibraryBrowser.colorNotFound.toVariant()).value(); s.endGroup(); // // Special treatment for Plugins.pluginConfig // s.beginGroup("Plugins/Config"); // QStringList pluginList = s.childGroups(); // s.endGroup(); // int j; // for (j = 0; j < pluginList.size(); ++j) { // QString name = pluginList[j]; // s.beginGroup( QString("Plugins/Config/%1").arg(name) ); // QMap thispluginconfig; // QStringList plconfkeys = s.childKeys(); // int k; // for (k = 0; k < plconfkeys.size(); ++k) { // thispluginconfig[plconfkeys[k]] = s.value(plconfkeys[k]); // } // klfconfig.Plugins.pluginConfig[name] = thispluginconfig; // s.endGroup(); // } return 0; } klatexformula-4.0.0/src/klfconfig.h000644 000765 000024 00000037575 13046272676 020306 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfconfig.h * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfconfig.h 969 2016-12-29 07:44:24Z phfaist $ */ #ifndef KLFCONFIG_H #define KLFCONFIG_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template inline bool klf_config_read_value(QSettings &s, const QString& baseName, T * target, const char * listOrMapType = NULL) { QVariant defVal = QVariant::fromValue(*target); QVariant valstrv = s.value(baseName, QVariant()); if (valstrv.isNull()) { klfDbg("No entry "<(); return true; } klfDbg("klf_config_read_value: read empty or invalid value for "< inline void klf_config_read(QSettings &s, const QString& baseName, KLFConfigProp *target, const char * listOrMapType = NULL) { T value = *target; if (klf_config_read_value(s, baseName, &value, listOrMapType)) *target = value; } template<> inline void klf_config_read(QSettings &s, const QString& baseName, KLFConfigProp *target, const char * /*listOrMapType*/) { qDebug("klf_config_read(%s)", qPrintable(baseName)); QTextFormat fmt = *target; klf_config_read_value(s, baseName, &fmt); *target = fmt.toCharFormat(); } template inline void klf_config_read_list(QSettings &s, const QString& baseName, KLFConfigProp > *target) { QVariantList vlist = klfListToVariantList(target->value()); klf_config_read_value(s, baseName, &vlist, QVariant::fromValue(T()).typeName()); *target = klfVariantListToList(vlist); } template inline void klf_config_write_value(QSettings &s, const QString& baseName, const T * value) { QVariant val = QVariant::fromValue(*value); QByteArray datastr = klfSaveVariantToText(val); s.setValue(baseName, QVariant::fromValue(QString::fromLocal8Bit(datastr))); } template inline void klf_config_write(QSettings &s, const QString& baseName, const KLFConfigProp * target) { T temp = *target; klf_config_write_value(s, baseName, &temp); } template<> inline void klf_config_write(QSettings &s, const QString& baseName, const KLFConfigProp * target) { klfDbg(", baseName="< inline void klf_config_write_list(QSettings &s, const QString& baseName, const KLFConfigProp > * target) { QVariantList vlist = klfListToVariantList(target->value()); klf_config_write_value(s, baseName, &vlist); } class KLFConfig; // /** \brief Utility class for plugins to access their configuration space in KLFConfig // * // * KLatexFormula stores its configuration via KLFConfig and the global \c klfconfig object. // * That structure relies on the config structure being known in advance and the named // * fields to appear publicly in the KLFConfig class. This scheme is obviously NOT possible // * for plugins, so a different approach is taken. // * // * Plugins are given a pointer to a \c KLFPluginConfigAccess object, which is an interface // * to access a special part of KLFConfig that stores plugin-related configuration in the // * form of QVariantMaps. (themselves written in an INI-based config file inside the plugin's // * local directory, at ~/.klatexformula/plugindata/<plugin>/<plugin>.conf) // * // * KLFConfig transparently takes care of reading the config for plugins at the beginning // * when launching KLatexFormula and storing the plugin configurations in their respective // * locations when quitting. // * // * Plugins can read values they have set in earlier sessions with readValue(). Default values // * can be defined with \ref makeDefaultValue(). // * // * Plugins can write changed settings with \ref writeValue(). // */ // class KLF_EXPORT KLFPluginConfigAccess // { // KLFConfig *_config; // QString _pluginname; // public: // KLFPluginConfigAccess(); // KLFPluginConfigAccess(KLFConfig *configObject, const QString& pluginName); // KLFPluginConfigAccess(const KLFPluginConfigAccess& other); // virtual ~KLFPluginConfigAccess(); // /** Returns the root directory in which KLatexFormula stores its stuff, usually // * ~/.klatexformula. // */ // virtual QString homeConfigDir() const; // /** Returns the directory (not necessarily existing) in which installed data that is // * shared among different users is stored. // * eg. system-wide installations of plugins/extensions can be placed in: // * share-dir/rccresources/*.rcc. // */ // virtual QString globalShareDir() const; // /** Returns a directory in which we can read/write temporary files, eg. "/tmp". // * // * This is actually the value of klfconfig.BackendSettings.tempDir */ // virtual QString tempDir() const; // /** Returns a path to a directory in which plugins can manage their data as they want. // * // * If the \c createIfNeeded argument is TRUE, then the directory is garanteed to exist, // * and an empty string is returned if, for whatever reason, the directory can't be // * created. // * // * If the \c createIfNeeded argument is FALSE, then the directory path is returned // * regardless of whether the directory exists or not. // * // * Note that a file named pluginName.conf is created to store the plugin's // * settings in that directory (the settings are stored automatically). // */ // virtual QString homeConfigPluginDataDir(bool createIfNeeded = true) const; // /** \brief read a value in the config // * // * Returns the value of the entry with key \c key. If no such entry exists, // * it is not created and an invalid QVariant() is returned. // */ // virtual QVariant readValue(const QString& key) const; // /** \brief write the value if inexistant in config // * // * equivalent to // * \code // * if (readValue(key).isNull()) // * writeValue(key, defaultValue); // * \endcode // * // * \return the value this key has after this function call, ie. \c defaultValue if no // * existing value was found, or the existing value if one already exists. A null QVariant // * is returned upon error. // */ // virtual QVariant makeDefaultValue(const QString& key, const QVariant& defaultValue); // /** \brief write a value to settings // * // * Saves the value of a setting, referenced by \c key, to the given \c value. // * // * If \c key hasn't been previously set, creates an entry for \c key with the // * given \c value. // */ // virtual void writeValue(const QString& key, const QVariant& value); // }; //! Structure that stores klatexformula's configuration in memory /** * This structure is more of a namespace than a class. Access it through the global * object \ref klfconfig. * * See also \ref KLFSettings for a graphical interface for editing these settings. */ class KLF_EXPORT KLFConfig : public KLFConfigBase { public: QString homeConfigDir; QString globalShareDir; QString homeConfigSettingsFile; //!< current (now, "new" klatexformula.conf) settings file QString homeConfigSettingsFileIni; //!< OLD config file // QString homeConfigDirRCCResources; // QString homeConfigDirPlugins; // QString homeConfigDirPluginData; QString homeConfigDirI18n; QString homeConfigDirUserScripts; struct { KLFConfigProp thisVersionMajFirstRun; KLFConfigProp thisVersionMajMinFirstRun; KLFConfigProp thisVersionMajMinRelFirstRun; KLFConfigProp thisVersionExactFirstRun; /** The library file name, relative to homeConfigDir. */ KLFConfigProp libraryFileName; /** The lib scheme to use to store the library. This scheme will be given the full path * to the library in the URL path part. */ KLFConfigProp libraryLibScheme; } Core; struct { KLFConfigProp locale; //!< When setting this, don't forget to call QLocale::setDefault(). KLFConfigProp useSystemAppFont; KLFConfigProp applicationFont; KLFConfigProp latexEditFont; KLFConfigProp preambleEditFont; KLFConfigProp editorTabInsertsTab; KLFConfigProp editorWrapLines; KLFConfigProp previewTooltipMaxSize; KLFConfigProp labelOutputFixedSize; //!< No Longer used (3.3.0alpha) KLFConfigProp smallPreviewSize; //!< Size of preview to store e.g. in history/library items // KLFConfigProp savedWindowSize; KLFConfigProp detailsSideWidgetType; //!< "ShowHide","Drawer", or "Float" (or any custom type!) KLFConfigProp lastSaveDir; KLFConfigProp symbolsPerLine; KLFConfigProp symbolIncludeWithPreambleDefs; KLFConfigProp > userColorList; KLFConfigProp > colorChooseWidgetRecent; KLFConfigProp > colorChooseWidgetCustom; KLFConfigProp maxUserColors; KLFConfigProp enableToolTipPreview; KLFConfigProp enableRealTimePreview; KLFConfigProp realTimePreviewExceptBattery; KLFConfigProp autosaveLibraryMin; KLFConfigProp showHintPopups; KLFConfigProp clearLatexOnly; KLFConfigProp glowEffect; KLFConfigProp glowEffectColor; KLFConfigProp glowEffectRadius; KLFConfigProp customMathModes; KLFConfigProp emacsStyleBackspaceSearch; KLFConfigProp macBrushedMetalLook; } UI; struct { KLFConfigProp copyExportProfile; KLFConfigProp dragExportProfile; KLFConfigProp showExportProfilesLabel; KLFConfigProp menuExportProfileAffectsDrag; KLFConfigProp menuExportProfileAffectsCopy; KLFConfigProp oooExportScale; KLFConfigProp htmlExportDpi; KLFConfigProp htmlExportDisplayDpi; } ExportData; struct { KLFConfigProp enabled; KLFConfigProp highlightParensOnly; KLFConfigProp highlightLonelyParens; //KLFConfigProp matchParenTypes; KLFConfigProp fmtKeyword; KLFConfigProp fmtComment; KLFConfigProp fmtParenMatch; KLFConfigProp fmtParenMismatch; KLFConfigProp fmtLonelyParen; } SyntaxHighlighter; struct { KLFConfigProp tempDir; KLFConfigProp execLatex; KLFConfigProp execDvips; KLFConfigProp execGs; KLFConfigProp execEpstopdf; KLFConfigProp execenv; KLFConfigProp setTexInputs; KLFConfigProp lborderoffset; KLFConfigProp tborderoffset; KLFConfigProp rborderoffset; KLFConfigProp bborderoffset; KLFConfigProp calcEpsBoundingBox; KLFConfigProp outlineFonts; KLFConfigProp wantPDF; KLFConfigProp wantSVG; KLFConfigProp userScriptAddPath; KLFConfigProp userScriptInterpreters; } BackendSettings; struct { KLFConfigProp colorFound; KLFConfigProp colorNotFound; KLFConfigProp restoreURLs; KLFConfigProp confirmClose; KLFConfigProp groupSubCategories; KLFConfigProp iconViewFlow; KLFConfigProp historyTagCopyToArchive; KLFConfigProp lastFileDialogPath; KLFConfigProp treePreviewSizePercent; KLFConfigProp listPreviewSizePercent; KLFConfigProp iconPreviewSizePercent; } LibraryBrowser; // struct { // QMap > pluginConfig; // } Plugins; struct { QMap > userScriptConfig; } UserScripts; /** Not a saved setting. This is set in loadDefaults() */ QFont defaultCMUFont; /** Not a saved setting. This is set in loadDefaults() */ QFont defaultStdFont; /** Not a saved setting. This is set in loadDefaults() */ QFont defaultTTFont; // KLFPluginConfigAccess getPluginConfigAccess(const QString& name); /** call loadDefaults() before anything, at the beginning, to ensure that the values * in this structure are not undefined. (the constructor doesn't set any values). * * loadDefaults() will set reasonable default values for most settings, but will not * start detecting system settings, specifically look for system executables, possibly other * long detection tasks. To perform that, call detectMissingSettings(). * * In practice, main() calls, in order, loadDefaults(), readFromConfig(), and * detectMissingSettings(). * */ void loadDefaults(); int readFromConfig(); void detectMissingSettings(); int ensureHomeConfigDir(); int writeToConfig(); /** returns TRUE if the executable paths are valid. */ bool checkExePaths(); private: int readFromConfig_v2(const QString& fname); int readFromConfig_v1(); }; KLF_EXPORT extern KLFConfig klfconfig; #define KLF_CONNECT_CONFIG_SH_LATEXEDIT(latexedit) \ klfconfig.SyntaxHighlighter.enabled \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "highlightEnabled") ; \ klfconfig.SyntaxHighlighter.highlightParensOnly \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "highlightParensOnly") ; \ klfconfig.SyntaxHighlighter.highlightLonelyParens \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "highlightLonelyParens") ; \ klfconfig.SyntaxHighlighter.fmtKeyword \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "fmtKeyword") ; \ klfconfig.SyntaxHighlighter.fmtComment \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "fmtComment") ; \ klfconfig.SyntaxHighlighter.fmtParenMatch \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "fmtParenMatch") ; \ klfconfig.SyntaxHighlighter.fmtParenMismatch \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "fmtParenMismatch") ; \ klfconfig.SyntaxHighlighter.fmtLonelyParen \ .connectQObjectProperty((latexedit)->syntaxHighlighter(), "fmtLonelyParen") ; #endif klatexformula-4.0.0/src/klfconfig_p.h000644 000765 000024 00000003245 13046272677 020611 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfconfig_p.h * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfconfig_p.h 791 2012-06-09 19:30:48Z phfaist $ */ /** \file * This header contains (in principle private) auxiliary classes for * library routines defined in ****.cpp */ #ifndef KLFCONFIG_P_H #define KLFCONFIG_P_H #endif klatexformula-4.0.0/src/klfdbus.cpp000644 000765 000024 00000014104 13046272677 020311 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfdbus.cpp * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfdbus.cpp 689 2011-08-01 12:06:27Z phfaist $ */ #include "klfmainwin.h" #include "klfdbus.h" KLFDBusAppAdaptor::KLFDBusAppAdaptor(QApplication *application, KLFMainWin *mainWin) : QDBusAbstractAdaptor(application), app(application), _mainwin(mainWin) { } KLFDBusAppAdaptor::~KLFDBusAppAdaptor() { } void KLFDBusAppAdaptor::raiseWindow() { if ( ! _mainwin->isVisible() ) _mainwin->show(); _mainwin->setWindowState(_mainwin->windowState() & ~Qt::WindowMinimized); _mainwin->raise(); _mainwin->activateWindow(); } Q_NOREPLY void KLFDBusAppAdaptor::quit() { app->quit(); } void KLFDBusAppAdaptor::setInputData(const QString& key, const QString& svalue, int ivalue) { if (key == "latex") { _mainwin->slotSetLatex(svalue); } else if (key == "fgcolor") { _mainwin->slotSetFgColor(svalue); } else if (key == "bgcolor") { _mainwin->slotSetBgColor(svalue); } else if (key == "mathmode") { _mainwin->slotSetMathMode(svalue); } else if (key == "preamble") { _mainwin->slotSetPreamble(svalue); } else if (key == "userscript") { _mainwin->slotSetUserScript(svalue); } else if (key == "dpi") { _mainwin->slotSetDPI(ivalue); } } void KLFDBusAppAdaptor::setAlterSetting_i(int setting, int value) { _mainwin->alterSetting((KLFMainWin::altersetting_which)setting, value); } void KLFDBusAppAdaptor::setAlterSetting_s(int setting, const QString& value) { _mainwin->alterSetting((KLFMainWin::altersetting_which)setting, value); } void KLFDBusAppAdaptor::evaluateAndSave(const QString& output, const QString& fmt) { _mainwin->slotEvaluateAndSave(output, fmt); } void KLFDBusAppAdaptor::openFile(const QString& fileName) { klfDbg("opening file: "<openFile(fileName); } void KLFDBusAppAdaptor::openFiles(const QStringList& fileNameList) { klfDbg("opening files: "<openFiles(fileNameList); } void KLFDBusAppAdaptor::openData(const QByteArray& data) { klfDbg("opening data: length="<openLibFiles(files); } KLFDBusAppInterface::KLFDBusAppInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) { } KLFDBusAppInterface::~KLFDBusAppInterface() { } QDBusReply KLFDBusAppInterface::quit() { QList argumentList; return callWithArgumentList(QDBus::Block, QString("quit"), argumentList); } QDBusReply KLFDBusAppInterface::raiseWindow() { QList argumentList; return callWithArgumentList(QDBus::Block, QString("raiseWindow"), argumentList); } QDBusReply KLFDBusAppInterface::setInputData(const QString& key, const QString& svalue, int ivalue) { QList argumentList; argumentList << QVariant(key) << QVariant(svalue) << QVariant(ivalue); return callWithArgumentList(QDBus::Block, QString("setInputData"), argumentList); } QDBusReply KLFDBusAppInterface::setAlterSetting_i(int setting, int value) { QList argumentList; argumentList << QVariant(setting) << QVariant(value); return callWithArgumentList(QDBus::Block, QString("setAlterSetting_i"), argumentList); } QDBusReply KLFDBusAppInterface::setAlterSetting_s(int setting, const QString& value) { QList argumentList; argumentList << QVariant(setting) << QVariant(value); return callWithArgumentList(QDBus::Block, QString("setAlterSetting_s"), argumentList); } QDBusReply KLFDBusAppInterface::evaluateAndSave(const QString& output, const QString& fmt) { return callWithArgumentList( QDBus::Block, QString("evaluateAndSave"), QList() << QVariant(output) << QVariant(fmt) ); } QDBusReply KLFDBusAppInterface::openFile(const QString& fileName) { return callWithArgumentList( QDBus::Block, QString("openFile"), QList() << QVariant(fileName) ); } QDBusReply KLFDBusAppInterface::openFiles(const QStringList& fileNameList) { return callWithArgumentList( QDBus::Block, QString("openFiles"), QList() << QVariant(fileNameList) ); } QDBusReply KLFDBusAppInterface::openData(const QByteArray& data) { return callWithArgumentList( QDBus::Block, QString("openData"), QList() << QVariant(data) ); } QDBusReply KLFDBusAppInterface::importCmdlKLFFiles(const QStringList& fnames) { QList argumentList; argumentList << QVariant(fnames); return callWithArgumentList(QDBus::Block, QString("importCmdlKLFFiles"), argumentList); } klatexformula-4.0.0/src/klfdbus.h000644 000765 000024 00000006766 13046272703 017763 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfdbus.h * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfdbus.h 965 2016-12-28 04:55:03Z phfaist $ */ #ifndef KLFDBUS_H #define KLFDBUS_H #include #include #include #include #include #include class KLFMainWin; class KLF_EXPORT KLFDBusAppAdaptor : public QDBusAbstractAdaptor { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.klatexformula.KLatexFormula") private: QApplication *app; KLFMainWin *_mainwin; public: KLFDBusAppAdaptor(QApplication *application, KLFMainWin *mainWin); virtual ~KLFDBusAppAdaptor(); public slots: Q_NOREPLY void quit(); void raiseWindow(); void setInputData(const QString& key, const QString& svalue, int ivalue); void setAlterSetting_i(int setting, int value); void setAlterSetting_s(int setting, const QString& value); void evaluateAndSave(const QString& output, const QString& fmt); void openFile(const QString& fileName); void openFiles(const QStringList& fileNameList); void openData(const QByteArray& data); void importCmdlKLFFiles(const QStringList& fnames); }; class KLF_EXPORT KLFDBusAppInterface : public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.klatexformula.KLatexFormula"; } public: KLFDBusAppInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); virtual ~KLFDBusAppInterface(); public slots: // METHODS QDBusReply quit(); QDBusReply raiseWindow(); QDBusReply setInputData(const QString& key, const QString& svalue, int ivalue = -1); QDBusReply setAlterSetting_i(int setting, int value); QDBusReply setAlterSetting_s(int setting, const QString& value); QDBusReply evaluateAndSave(const QString& output, const QString& fmt); QDBusReply openFile(const QString& fileName); QDBusReply openFiles(const QStringList& fileNameList); QDBusReply openData(const QByteArray& data); QDBusReply importCmdlKLFFiles(const QStringList& fnames); }; #endif klatexformula-4.0.0/src/klfexporter.cpp000644 000765 000024 00000034055 13046272676 021232 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfexporter.cpp * This file is part of the KLatexFormula Project. * Copyright (C) 2016 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfexporter.cpp 978 2016-12-31 05:16:11Z phfaist $ */ #include #include #include #include #include #include struct KLFExporterPrivate { KLF_PRIVATE_HEAD(KLFExporter) { } QString errorString; }; KLFExporter::KLFExporter() { KLF_INIT_PRIVATE( KLFExporter ) ; } KLFExporter::~KLFExporter() { KLF_DELETE_PRIVATE ; } QStringList KLFExporter::fileNameExtensionsFor(const QString & ) { return QStringList(); } QString KLFExporter::errorString() const { return d->errorString; } void KLFExporter::clearErrorString() { d->errorString = QString(); } void KLFExporter::setErrorString(const QString & errorString) { d->errorString = errorString; } // ============================================================================= struct KLFExporterManagerPrivate { KLF_PRIVATE_HEAD( KLFExporterManager ) { } QList pExporters; }; KLFExporterManager::KLFExporterManager() { KLF_INIT_PRIVATE( KLFExporterManager ) ; } KLFExporterManager::~KLFExporterManager() { foreach (KLFExporter * exporter, d->pExporters) { if (exporter != NULL) { delete exporter; } } KLF_DELETE_PRIVATE ; } void KLFExporterManager::registerExporter(KLFExporter *exporter) { KLF_ASSERT_NOT_NULL( exporter, "Refusing to register NULL exporter object!", return ) ; d->pExporters.append(exporter); #ifdef KLF_DEBUG klfDbg("Exporter list is now :"); foreach (KLFExporter * exporter, d->pExporters) { klfDbg(" - " << qPrintable(exporter->exporterName())) ; } #endif } void KLFExporterManager::unregisterExporter(KLFExporter *exporter) { d->pExporters.removeAll(exporter); } KLFExporter* KLFExporterManager::exporterByName(const QString & exporterName) { int k; for (k = 0; k < d->pExporters.size(); ++k) { if (d->pExporters[k]->exporterName() == exporterName) { return d->pExporters[k]; } } return NULL; } QList KLFExporterManager::exporterList() { return d->pExporters; } // ============================================================================= // ============================================================================= // static members for specific exporters // static QMap > KLFTempFileUriExporter::tempFilesCache = QMap >(); // ============================================================================= // ============================================================================= // ============================================================================= // user script exporter definitions // KLFExportTypeUserScriptInfo stuff struct KLFExportTypeUserScriptInfoPrivate : public KLFPropertizedObject { KLF_PRIVATE_INHERIT_HEAD(KLFExportTypeUserScriptInfo, : KLFPropertizedObject("KLFExportTypeUserScriptInfo")) { registerBuiltInProperty(KLFExportTypeUserScriptInfo::Formats, QLatin1String("Formats")); registerBuiltInProperty(KLFExportTypeUserScriptInfo::InputDataType, QLatin1String("InputDataType")); registerBuiltInProperty(KLFExportTypeUserScriptInfo::HasStdoutOutput, QLatin1String("HasStdoutOutput")); registerBuiltInProperty(KLFExportTypeUserScriptInfo::MimeExportProfilesXmlFile, QLatin1String("MimeExportProfilesXmlFile")); } // cache formatnames and format specifications for quick lookup QStringList formatnames; QList formatlist; void clear() { // clear all properties QList idlist = registeredPropertyIdList(); for (int k = 0; k < idlist.size(); ++k) { setProperty(idlist[k], QVariant()); } // and cached values formatnames = QStringList(); formatlist = QList(); } void _set_xml_parsing_error(const QString& errmsg) { K->setScriptInfoError(1001, QString("Error parsing klf-export-type XML config: %1: %2") .arg(K->userScriptBaseName()).arg(errmsg)); } void parse_category_config(const QByteArray & ba) { QDomDocument doc("klf-export-type"); QString errMsg; int errLine, errCol; bool r = doc.setContent(ba, false, &errMsg, &errLine, &errCol); if (!r) { K->setScriptInfoError( 1001, QString("XML parse error: %1 (klf-export-type in %2, relative line %3 col %4)") .arg(errMsg).arg(K->userScriptBaseName()).arg(errLine).arg(errCol)); return; } QDomElement root = doc.documentElement(); if (root.nodeName() != "klf-export-type") { _set_xml_parsing_error(QString("expected element")); return; } // clear all properties clear(); QVariantList formatsvlist; // read XML contents QDomNode n; for (n = root.firstChild(); !n.isNull(); n = n.nextSibling()) { // try to convert the node to an element; ignore non-elements if ( n.nodeType() != QDomNode::ElementNode ) { continue; } QDomElement e = n.toElement(); if ( e.isNull() ) { continue; } // parse the elements. QString val = e.text(); if (val.isEmpty()) { val = QString(); // empty value is null string } if (e.nodeName() == "input-data-type") { if (!property(KLFExportTypeUserScriptInfo::InputDataType).toString().isEmpty()) { _set_xml_parsing_error(QString("duplicate element")); return; } setProperty(KLFExportTypeUserScriptInfo::InputDataType, val); } else if (e.nodeName() == "has-stdout-output") { if (!property(KLFExportTypeUserScriptInfo::HasStdoutOutput).toString().isEmpty()) { _set_xml_parsing_error(QString("duplicate element")); return; } setProperty(KLFExportTypeUserScriptInfo::HasStdoutOutput, klfLoadVariantFromText(val.toLatin1(), "bool").toBool()); } else if (e.nodeName() == "mime-export-profiles-xml-file") { if (!property(KLFExportTypeUserScriptInfo::MimeExportProfilesXmlFile).toString().isEmpty()) { _set_xml_parsing_error(QString("duplicate element")); return; } setProperty(KLFExportTypeUserScriptInfo::MimeExportProfilesXmlFile, val); } else if (e.nodeName() == "format") { // parse a new supported format if (!e.hasAttribute("name")) { _set_xml_parsing_error(QString(" tag without mandatory name=\"...\" attribute")); return; } QString formatName; QString formatTitle; QStringList fileNameExtensions; formatName = e.attribute("name"); QDomNode n2; for (n2 = e.firstChild(); !n2.isNull(); n2 = n2.nextSibling()) { // try to convert the node to an element; ignore non-elements if ( n2.nodeType() != QDomNode::ElementNode ) { continue; } QDomElement e2 = n2.toElement(); if ( e2.isNull() ) { continue; } QString val = e2.text(); if (e2.nodeName() == "title") { formatTitle = val.trimmed(); } else if (e2.nodeName() == "file-name-extension") { fileNameExtensions.append(val.trimmed()); } else { _set_xml_parsing_error(QString("Unexpected node <%1> in (name=%2)") .arg(e2.nodeName(),formatName)); return; } } // record this available format formatnames.append(formatName); KLFExportTypeUserScriptInfo::Format fmt(formatName, formatTitle, fileNameExtensions); formatlist.append(fmt); formatsvlist.append(klfSave(&fmt)); } else { _set_xml_parsing_error(QString("Found unexpected element: %1").arg(e.nodeName())); return; } } setProperty(KLFExportTypeUserScriptInfo::Formats, formatsvlist); klfDbg("Read all klfbackend-engine properties:\n" << qPrintable(toString())); } }; KLFExportTypeUserScriptInfo::Format::Format() : KLFPropertizedObject("KLFExportTypeUserScriptInfo::Format") { registerBuiltInProperty(FormatName, "FormatName"); registerBuiltInProperty(FormatTitle, "FormatTitle"); registerBuiltInProperty(FileNameExtensions, "FileNameExtensions"); setProperty(FormatName, QString()); setProperty(FormatTitle, QString()); setProperty(FileNameExtensions, QStringList()); } KLFExportTypeUserScriptInfo::Format::Format(const QString& formatName_, const QString& formatTitle_, const QStringList& fileNameExtensions_) : KLFPropertizedObject("KLFExportTypeUserScriptInfo::Format") { registerBuiltInProperty(FormatName, "FormatName"); registerBuiltInProperty(FormatTitle, "FormatTitle"); registerBuiltInProperty(FileNameExtensions, "FileNameExtensions"); setProperty(FormatName, formatName_); setProperty(FormatTitle, formatTitle_); setProperty(FileNameExtensions, fileNameExtensions_); } KLFExportTypeUserScriptInfo::Format::~Format() { } QString KLFExportTypeUserScriptInfo::Format::formatName() const { return property(FormatName).toString(); } QString KLFExportTypeUserScriptInfo::Format::formatTitle() const { return property(FormatTitle).toString(); } QStringList KLFExportTypeUserScriptInfo::Format::fileNameExtensions() const { return property(FileNameExtensions).toStringList(); } KLFExportTypeUserScriptInfo::KLFExportTypeUserScriptInfo(const QString& uspath) : KLFUserScriptInfo(uspath) { KLF_INIT_PRIVATE( KLFExportTypeUserScriptInfo ) ; if (category() != "klf-export-type") { klfWarning("KLFExportTypeUserScriptInfo instantiated for user script " << uspath << ", which is of category " << category()) ; } else { d->parse_category_config(categorySpecificXmlConfig()); } } KLFExportTypeUserScriptInfo::~KLFExportTypeUserScriptInfo() { KLF_DELETE_PRIVATE ; } QStringList KLFExportTypeUserScriptInfo::formats() const { return d->formatnames; } QString KLFExportTypeUserScriptInfo::inputDataType() const { return klfExportTypeInfo(InputDataType).toString(); } bool KLFExportTypeUserScriptInfo::hasStdoutOutput() const { return klfExportTypeInfo(HasStdoutOutput).toBool(); } QString KLFExportTypeUserScriptInfo::mimeExportProfilesXmlFile() const { return klfExportTypeInfo(MimeExportProfilesXmlFile).toString(); } QList KLFExportTypeUserScriptInfo::formatList() const { return d->formatlist; } KLFExportTypeUserScriptInfo::Format KLFExportTypeUserScriptInfo::getFormat(const QString& formatName) const { for (int i = 0; i < d->formatlist.size(); ++i) { if (d->formatlist[i].formatName() == formatName) { return d->formatlist[i]; } } klfWarning("Invalid format name: " << formatName) ; return KLFExportTypeUserScriptInfo::Format(); } QVariant KLFExportTypeUserScriptInfo::klfExportTypeInfo(int propId) const { return d->property(propId); } QVariant KLFExportTypeUserScriptInfo::klfExportTypeInfo(const QString& field) const { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; QString x = field; klfDbg("x="<propertyIdForName(x); if (id < 0) { klfDbg("KLFExportTypeUserScriptInfo for "<propertyNameList(); } // ----------------------------------------------------------------------------- typedef QPair ReplPair; static const QList replace_display_latex = QList() // LaTeX fine-tuning spacing commands \, \; \: \! << ReplPair(QRegExp("\\\\[,;:!]"), QLatin1String("")) // {\text{...}} and {\mathrm{...}} --> ... << ReplPair(QRegExp("\\{\\\\(?:text|mathrm)\\{((?:\\w|\\s|[._-])*)\\}\\}"), QLatin1String("{\\1}")) // \text{...} and \mathrm{...} --> ... << ReplPair(QRegExp("\\\\(?:text|mathrm)\\{((?:\\w|\\s|[._-])*)\\}"), QLatin1String("{\\1}")) // \var(epsilon|phi|...) --> \epsilon, \phi << ReplPair(QRegExp("\\\\var([a-zA-Z]+)"), QLatin1String("\\\\1")) ; QString klfLatexToPseudoTex(QString latex) { // remove initial comments from latex code... QStringList latexlines = latex.split("\n"); while (latexlines.size() && QRegExp("\\s*\\%.*").exactMatch(latexlines[0])) { latexlines.removeAt(0); } latex = latexlines.join("\n"); // and simplify the LaTeX code a bit // format LaTeX code nicely to be displayed foreach (ReplPair rpl, replace_display_latex) { latex.replace(rpl.first, rpl.second); } return latex; } klatexformula-4.0.0/src/klfexporter.h000644 000765 000024 00000016143 13046272676 020675 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfexporter.h * This file is part of the KLatexFormula Project. * Copyright (C) 2016 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfexporter.h 978 2016-12-31 05:16:11Z phfaist $ */ #ifndef KLFEXPORTER_H #define KLFEXPORTER_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include struct KLFExporterPrivate; /** \brief Abstract exporter of KLF output to some given format * * This helper class can be subclassed to implement exporting klatexformula output in a given * data format. * * Formats are given internal names which can be chosen arbitrarily. * Exporters know nothing of mime types, */ class KLF_EXPORT KLFExporter { public: KLFExporter(); virtual ~KLFExporter(); //! Name of the exporter (e.g. "pdf") virtual QString exporterName() const = 0; /** \brief Whether this exporter is suitable for saving to data file. * * Most exporters are suitable because they export the data itself in some particular * format. Other exporters however may be designed only for copy-paste or drag-drop, * for example if they refer to a temporary file (e.g. text/uri-list). */ virtual bool isSuitableForFileSave() const { return true; } /** \brief List of formats this exporter can export to (e.g. "pdf", "svg", "eps", "png@150dpi") * * The format name can be chosen freely, and does not have to coincide with a mime type * and/or filename extension(s). */ virtual QStringList supportedFormats(const KLFBackend::klfOutput& klfoutput) const = 0; /** \brief Return TRUE if the given format is supported * * * The default implementation simply returns * supportedFormats(klfoutput).contains(format), and should suffice in most * cases; you don't need to reimplement this function. * * However, in case you have many formats and depending on your use case, there may be a * more clever way of finding out whether a given format is supported than going through * the list of all supported formats. In such a case you can reimplement this function. */ virtual bool supports(const QString & format, const KLFBackend::klfOutput& klfoutput) const { return supportedFormats(klfoutput).contains(format); } /** \brief A huaman-readable title for this exporter and format (e.g. "PDF Vector Graphic") */ virtual QString titleFor(const QString & format) = 0; /** \brief The filename extension suitable to save this format from this exporter * (e.g. ["jpg","jpeg"]) * * Subclasses should reimplement. The base implementation returns an empty string list * and is only suitable for exporters which are not suitable for file saving (\ref * isSuitableForFileSave()). */ virtual QStringList fileNameExtensionsFor(const QString & format); /** \brief Get the data corresponding to the given klf output * * The \a param argument may be used to specify additional parameters to the exporter. * * Subclasses should not forget to call \ref clearErrorString() to clear any previously * set error. */ virtual QByteArray getData(const QString& format, const KLFBackend::klfOutput& klfoutput, const QVariantMap& param = QVariantMap()) = 0; //! Returns an error string describing the last error. QString errorString() const; protected: //! Subclasses should call this method at the beginning of getData() void clearErrorString(); //! Subclasses should use this method in getData() to signify that an error occurred void setErrorString(const QString & errorString); private: KLF_DECLARE_PRIVATE(KLFExporter) ; }; struct KLFExporterManagerPrivate; class KLFExporterManager { public: KLFExporterManager(); virtual ~KLFExporterManager(); //! The manager takes ownership of \a exporter and will delete it once the manager is destroyed. void registerExporter(KLFExporter *exporter); void unregisterExporter(KLFExporter *exporter); KLFExporter* exporterByName(const QString & exporterName); QList exporterList(); private: KLF_DECLARE_PRIVATE( KLFExporterManager ) ; }; // ----------------------------------------------------------------------------- // user script definitions: struct KLFExportTypeUserScriptInfoPrivate; class KLF_EXPORT KLFExportTypeUserScriptInfo : public KLFUserScriptInfo { public: KLFExportTypeUserScriptInfo(const QString& userScriptPath); virtual ~KLFExportTypeUserScriptInfo(); struct Format : public KLFPropertizedObject { Format(); Format(const QString& formatName_, const QString& formatTitle_, const QStringList& fileNameExtensions_); virtual ~Format(); enum { FormatName = 0, FormatTitle, FileNameExtensions }; QString formatName() const; QString formatTitle() const; QStringList fileNameExtensions() const; }; enum ExportTypeProperties { Formats = 0, InputDataType, HasStdoutOutput, MimeExportProfilesXmlFile, }; QStringList formats() const; QString inputDataType() const; bool hasStdoutOutput() const; QString mimeExportProfilesXmlFile() const; QList formatList() const; Format getFormat(const QString & formatName) const; QVariant klfExportTypeInfo(int propId) const; QVariant klfExportTypeInfo(const QString& key) const; QStringList klfExportTypeInfosList() const; private: KLF_DECLARE_PRIVATE(KLFExportTypeUserScriptInfo) ; }; /** \brief A stripped-down version of the latex string, suitable as a human-readable * expression in plain text * * For example, \c "\vec{a}_\mathrm{xyz} = -\frac{1}{2}" becomes e.g. * \c "\vec{a}_{xyz} = -(1/2)". */ QString klfLatexToPseudoTex(QString latex); #endif klatexformula-4.0.0/src/klfexporter_p.h000644 000765 000024 00000063127 13046272703 021207 0ustar00philippestaff000000 000000 /*************************************************************************** * file klfexporter_p.h * This file is part of the KLatexFormula Project. * Copyright (C) 2016 by Philippe Faist * philippe.faist at bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klfexporter_p.h 1001 2017-01-25 03:05:58Z phfaist $ */ #ifndef KLFEXPORTER_P_H #define KLFEXPORTER_P_H #include #include #include #include #include #include #include #include #include "klfconfig.h" #include "klfstyle.h" #include "klflib.h" #include "klfexporter.h" // // Utility: escape the value of an HTML attribute // static inline QString toHtmlAttrText(QString s) { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; klfDbg("s="< 0) { bgcols = QColor(klfoutput.input.fg_color).name(); } else { bgcols = "-"; } templ.replace("", pngdata.toBase64()); templ.replace("", toHtmlAttrTextAscii(klfoutput.input.latex)); templ.replace("", toHtmlAttrTextAscii(klfoutput.input.mathmode)); templ.replace("", toHtmlAttrTextAscii(klfoutput.input.preamble)); templ.replace("", toHtmlAttrTextAscii(fgcols)); templ.replace("", toHtmlAttrTextAscii(bgcols)); templ.replace("", toHtmlAttrTextAscii(QString::number(klfoutput.input.dpi))); templ.replace("", toHtmlAttrTextAscii(QString::number(klfoutput.settings.tborderoffset))); templ.replace("", toHtmlAttrTextAscii(QString::number(klfoutput.settings.rborderoffset))); templ.replace("", toHtmlAttrTextAscii(QString::number(klfoutput.settings.bborderoffset))); templ.replace("", toHtmlAttrTextAscii(QString::number(klfoutput.settings.lborderoffset))); templ.replace("", klfoutput.input.latex.toLocal8Bit().toBase64()); templ.replace("", klfoutput.input.mathmode.toLocal8Bit().toBase64()); templ.replace("", klfoutput.input.preamble.toLocal8Bit().toBase64()); templ.replace("", fgcols.toLocal8Bit().toBase64()); templ.replace("", bgcols.toLocal8Bit().toBase64()); templ.replace("", toHtmlAttrTextAscii("12§display§"+klfoutput.input.latex)); // scale equation (eg. make them larger, so it is not too cramped up) const double DPI_FACTOR = klfconfig.ExportData.oooExportScale; // cm/inch = 2.54 // include an elargment factor in these tags templ.replace("", QString::number(DPI_FACTOR * 2.54 * klfoutput.result.width()/klfoutput.input.dpi, 'f', 2).toUtf8()); templ.replace("", QString::number(DPI_FACTOR * 2.54 * klfoutput.result.height()/klfoutput.input.dpi, 'f', 2).toUtf8()); // same, without the enlargment factor templ.replace("", QString::number(2.54 * klfoutput.result.width()/klfoutput.input.dpi, 'f', 2).toUtf8()); templ.replace("", QString::number(2.54 * klfoutput.result.height()/klfoutput.input.dpi, 'f', 2).toUtf8()); templ.replace("", QString::number(klfoutput.result.width()).toUtf8()); templ.replace("", QString::number(klfoutput.result.height()).toUtf8()); templ.replace("", QString::number((double)klfoutput.result.width()/klfoutput.result.height(), 'f', 3).toUtf8()); klfDbg("final templ: "< 0 && html_export_dpi != output.input.dpi) { // needs to be rescaled QSize targetSize = img.size(); targetSize *= (double) html_export_dpi / output.input.dpi; klfDbg("scaling to "<") .arg(base64imgdata, latexattr, latexattr, w_in, h_in); return html.toUtf8(); } }; // ============================================================================= // USER SCRIPT EXPORTS // ============================================================================= class KLFUserScriptExporter : public QObject, public KLFExporter { Q_OBJECT public: KLFUserScriptExporter(const QString& userscript, QObject *parent) : QObject(parent), KLFExporter(), pUserScript(userscript) { } virtual ~KLFUserScriptExporter() { } virtual QString exporterName() const { return QLatin1String("UserScript:") + pUserScript.userScriptBaseName(); } virtual QStringList supportedFormats(const KLFBackend::klfOutput& ) const { /// \bug FIXME: make sure that the input-file-type is an available format from klfoutput return pUserScript.formats(); } virtual QString titleFor(const QString & format) { return pUserScript.getFormat(format).formatTitle(); } virtual QStringList fileNameExtensionsFor(const QString & format) { return pUserScript.getFormat(format).fileNameExtensions(); } virtual QByteArray getData(const QString& format, const KLFBackend::klfOutput& klfoutput, const QVariantMap& /*params*/ = QVariantMap()) { KLF_DEBUG_BLOCK(KLF_FUNC_NAME) ; klfDbg("format="< outdatamap; QString outfn; if (!pUserScript.hasStdoutOutput()) { QFileInfo infi(f_in.fileName()); outfn = infi.absolutePath() + "/" + infi.completeBaseName() + "." + outfext; outdatamap[outfn] = &foutdata; klfDbg("outfn = " << outfn) ; } // now, run the user script bool ok = p.run(QByteArray(), outdatamap); if (outfn.size() && QFile::exists(outfn)) { QFile::remove(outfn); } if (!ok) { // error setErrorString(tr("Error running user script %1: %2").arg(pUserScript.userScriptName()) .arg(p.resultErrorString())); klfWarning("Error: " << qPrintable(errorString())) ; return QByteArray(); } klfDbg("Ran script "<setAutoRemove(true); // will be deleted when klatexformula exists (= qApp destroyed) if (tempfile->open() == false) { klfWarning("Can't create or open temp file for KLFTempFileUriExporter: template is " << templ) ; return QString(); } QString tempfilename = QFileInfo(tempfile->fileName()).absoluteFilePath(); if (isVectorFormat(format) || targetDpi <= 0 || targetDpi == output.input.dpi) { QString errStr; bool res = KLFBackend::saveOutputToDevice(output, tempfile, format, &errStr); if (!res) { klfWarning("Can't save to temp file " << tempfilename << ": " << errStr) ; tempfile->close(); return QString(); } } else { // need to rescale image to given DPI QImage img = output.result; QSize targetSize = img.size(); targetSize *= (double) targetDpi / output.input.dpi; klfDbg("scaling to "<fileName()); tempfile->close(); return QString(); } } tempfile->close(); // cache this temp file for other formats' use or other QMimeData instantiation... tempFilesCache[format][hashkey] = tempfilename; klfDbg("Wrote temp file with name " << tempfilename) ; return tempfilename; } private: static bool isVectorFormat(const QString fmt) // fmt must be lower-case { if (fmt == "pdf" || fmt == "eps" || fmt == "ps" || fmt == "svg" || fmt == "dvi") { return true; } return false; } static QMap > tempFilesCache; }; /** KLFExporter implementation for exporting \c "text/x-moz-url" and \c "text/uri-list" to * a temporary file of a given type */ class KLF_EXPORT KLFTempImgRefHtmlExporter : public QObject, public KLFExporter { Q_OBJECT public: KLFTempImgRefHtmlExporter(QObject *parent) : QObject(parent) { } virtual ~KLFTempImgRefHtmlExporter() { } virtual QString exporterName() const { return QString::fromLatin1("KLFTempImgRefHtmlExporter"); } virtual bool isSuitableForFileSave() const { return false; } virtual QStringList supportedFormats(const KLFBackend::klfOutput & ) const { return QStringList() << "html"; } virtual QString titleFor(const QString & format) { if (format == "html") { return tr("HTML (with reference to temporary image file)"); } klfWarning("Invalid format: " << format) ; return QString(); } virtual QByteArray getData(const QString& format, const KLFBackend::klfOutput& output, const QVariantMap& params = QVariantMap()) { clearErrorString(); if (format != "html") { klfWarning("Invalid format: " << format) ; return QByteArray(); } int html_export_dpi = params.value("html_export_dpi", (int)klfconfig.ExportData.htmlExportDpi).toInt(); int html_export_display_dpi = params.value("html_export_display_dpi", (int)klfconfig.ExportData.htmlExportDisplayDpi).toInt(); if (output.input.dpi < html_export_dpi * 1.25f) { html_export_dpi = output.input.dpi; } QString tempfilename = KLFTempFileUriExporter::tempFileForOutput("PNG", output, html_export_dpi); QSize imgsize = output.result.size(); imgsize *= (float) html_export_dpi / output.input.dpi; QString w_in = QString::number((float)imgsize.width() / html_export_display_dpi, 'f', 3); QString h_in = QString::number((float)imgsize.height() / html_export_display_dpi, 'f', 3); QString latexattr = toHtmlAttrText(klfLatexToPseudoTex(output.input.latex)); klfDbg("origimg/size="<") .arg(QFileInfo(tempfilename).absoluteFilePath(), latexattr, latexattr, w_in, h_in); return html.toUtf8(); } }; #endif klatexformula-4.0.0/src/klflatexsymbols.cpp000644 000765 000024 00000103241 13046272677 022103 0ustar00philippestaff000000 000000 /*************************************************************************** * file klflatexsymbols.cpp * This file is part of the KLatexFormula Project. * Copyright (C) 2011 by Philippe Faist * philippe.faist@bluewin.ch * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /* $Id: klflatexsymbols.cpp 997 2017-01-15 09:55:24Z phfaist $ */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "klfmain.h" #include "klfconfig.h" #include "klflatexsymbols.h" #include "klflatexsymbols_p.h" // ------------------ KLF_EXPORT QDebug operator<<(QDebug str, const KLFLatexSymbol& s) { return str << "KLFLatexSymbol["<0?qPrintable("{"+QString::number(s.symbol_numargs)+"x}"):"") <<";preview="<<(s.previewlatex.size()?qPrintable("`"+s.previewlatex+"'"):"") <<";preamblelist/size="< 0) hidden = true; // bb offset QDomNodeList bblist = e.elementsByTagName("bb"); if (bblist.size() > 1) { fprintf(stderr, "WARNING: Expected at most single item!\n"); } if (bblist.size()) { sscanf(bblist.at(0).toElement().attribute("expand").toLatin1().constData(), "%d,%d,%d,%d", &bbexpand.t, &bbexpand.r, &bbexpand.b, &bbexpand.l); } // latex code QDomNodeList latexlist = e.elementsByTagName("latex"); if (latexlist.size() != 1) { fprintf(stderr, "WARNING: Expected single ... in symbol entry!\n"); } if (latexlist.size() == 0) { return; } QRegExp rx_bool("\\s*(y(?:es)?|t(?:rue)?|on|1)|(n(?:o)?|f(?:alse)?|off|0)\\s*", Qt::CaseInsensitive); QDomElement latexnode = latexlist.at(0).toElement(); symbol = latexnode.text(); QString symopt = latexnode.attribute("option", "no"); bool boolok = rx_bool.exactMatch(symopt); if (!boolok) { qWarning()< 1) { fprintf(stderr, "WARNING: Expected at most one ... in symbol entry!\n"); } if (previewlatexlist.size() > 0) { QDomElement previewlatexnode = previewlatexlist.at(0).toElement(); previewlatex = previewlatexnode.text(); } else { previewlatex = QString(); } // keywords QDomNodeList keywordslist = e.elementsByTagName("keywords"); for (k = 0; k < keywordslist.size(); ++k) { QStringList kw; kw = keywordslist.at(k).toElement().text().split(QRegExp("\\s+"), QString::SkipEmptyParts); keywords << kw; } klfDbg("read symbol "<