gnuradio-3.7.11/0000775000175000017500000000000013055131744013250 5ustar jcorganjcorgangnuradio-3.7.11/CMakeLists.txt0000664000175000017500000005054713055131744016023 0ustar jcorganjcorgan# Copyright 2010-2017 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. ######################################################################## if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) message(FATAL_ERROR "Prevented in-tree build. This is bad practice.") endif(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) ######################################################################## # Project setup ######################################################################## cmake_minimum_required(VERSION 2.6) project(gnuradio CXX C) enable_testing() #make sure our local CMake Modules path comes first list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules) include(GrBuildTypes) #select the release build type by default to get optimization flags if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release") message(STATUS "Build type not specified: defaulting to release.") endif(NOT CMAKE_BUILD_TYPE) GR_CHECK_BUILD_TYPE(${CMAKE_BUILD_TYPE}) set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "") message(STATUS "Build type set to ${CMAKE_BUILD_TYPE}.") # Set the version information here set(VERSION_INFO_MAJOR_VERSION 3) set(VERSION_INFO_API_COMPAT 7) set(VERSION_INFO_MINOR_VERSION 11) set(VERSION_INFO_MAINT_VERSION 0) include(GrVersion) #setup version info # Append -O2 optimization flag for Debug builds (Not on MSVC since conflicts with RTC1 flag) IF (NOT MSVC) SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O2") SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O2") ENDIF() # Set C/C++ standard for all targets # NOTE: Starting with cmake v3.1 this should be used: # set(CMAKE_C_STANDARD 90) # set(CMAKE_CXX_STANDARD 98) IF(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++98") ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++98") ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++98") ELSE() message(warning "C++ standard could not be set because compiler is not GNU, Clang or MSVC.") ENDIF() IF(CMAKE_C_COMPILER_ID STREQUAL "GNU") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99") ELSEIF(CMAKE_C_COMPILER_ID STREQUAL "Clang") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99") ELSEIF(CMAKE_C_COMPILER_ID STREQUAL "MSVC") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11") ELSE() message(warning "C standard could not be set because compiler is not GNU, Clang or MSVC.") ENDIF() # Set cmake policies. # This will suppress developer warnings during the cmake process that can occur # if a newer cmake version than the minimum is used. if(POLICY CMP0026) cmake_policy(SET CMP0026 OLD) endif() if(POLICY CMP0043) cmake_policy(SET CMP0043 OLD) endif() if(POLICY CMP0045) cmake_policy(SET CMP0045 OLD) endif() if(POLICY CMP0046) cmake_policy(SET CMP0046 OLD) endif() ######################################################################## # Environment setup ######################################################################## IF(NOT DEFINED BOOST_ROOT) SET(BOOST_ROOT "${CMAKE_INSTALL_PREFIX}") ENDIF() ######################################################################## # Import executables from a native build (for cross compiling) # http://www.vtk.org/Wiki/CMake_Cross_Compiling#Using_executables_in_the_build_created_during_the_build ######################################################################## if(IMPORT_EXECUTABLES) include(${IMPORT_EXECUTABLES}) endif(IMPORT_EXECUTABLES) #set file that the native build will fill with exports set(EXPORT_FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake) file(WRITE ${EXPORT_FILE}) #blank the file (subdirs will append) ######################################################################## # Compiler specific setup ######################################################################## include(GrMiscUtils) #compiler flag check if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) #http://gcc.gnu.org/wiki/Visibility GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE(-fvisibility=hidden HAVE_VISIBILITY_HIDDEN) endif() if(CMAKE_COMPILER_IS_GNUCXX) GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE(-Wsign-compare HAVE_WARN_SIGN_COMPARE) GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE(-Wall HAVE_WARN_ALL) GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE(-Wno-uninitialized HAVE_WARN_NO_UNINITIALIZED) endif(CMAKE_COMPILER_IS_GNUCXX) if(MSVC) include_directories(${CMAKE_SOURCE_DIR}/cmake/msvc) #missing headers add_definitions(-D_USE_MATH_DEFINES) #enables math constants on all supported versions of MSVC add_definitions(-D_WIN32_WINNT=0x0502) #Minimum version: "Windows Server 2003 with SP1, Windows XP with SP2" add_definitions(-DNOMINMAX) #disables stupidity and enables std::min and std::max add_definitions( #stop all kinds of compatibility warnings -D_SCL_SECURE_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE ) add_definitions(-DHAVE_CONFIG_H) add_definitions(/MP) #build with multiple processors add_definitions(/bigobj) #allow for larger object files endif(MSVC) if(WIN32) add_definitions(-D_USE_MATH_DEFINES) endif(WIN32) # Record Compiler Info for record STRING(TOUPPER ${CMAKE_BUILD_TYPE} GRCBTU) set(COMPILER_INFO "") IF(MSVC) IF(MSVC90) #Visual Studio 9 SET(cmake_c_compiler_version "Microsoft Visual Studio 9.0") SET(cmake_cxx_compiler_version "Microsoft Visual Studio 9.0") ELSE(MSVC10) #Visual Studio 10 SET(cmake_c_compiler_version "Microsoft Visual Studio 10.0") SET(cmake_cxx_compiler_version "Microsoft Visual Studio 10.0") ELSE(MSVC11) #Visual Studio 11 SET(cmake_c_compiler_version "Microsoft Visual Studio 11.0") SET(cmake_cxx_compiler_version "Microsoft Visual Studio 11.0") ELSE(MSVC12) #Visual Studio 12 SET(cmake_c_compiler_version "Microsoft Visual Studio 12.0") SET(cmake_cxx_compiler_version "Microsoft Visual Studio 12.0") ELSE(MSVC14) #Visual Studio 14 SET(cmake_c_compiler_version "Microsoft Visual Studio 14.0") SET(cmake_cxx_compiler_version "Microsoft Visual Studio 14.0") ENDIF() ELSE() execute_process(COMMAND ${CMAKE_C_COMPILER} --version OUTPUT_VARIABLE cmake_c_compiler_version) execute_process(COMMAND ${CMAKE_CXX_COMPILER} --version OUTPUT_VARIABLE cmake_cxx_compiler_version) ENDIF(MSVC) set(COMPILER_INFO "${CMAKE_C_COMPILER}:::${CMAKE_C_FLAGS_${GRCBTU}} ${CMAKE_C_FLAGS}\n${CMAKE_CXX_COMPILER}:::${CMAKE_CXX_FLAGS_${GRCBTU}} ${CMAKE_CXX_FLAGS}\n" ) # Convert to a C string to compile and display properly string(STRIP "${cmake_c_compiler_version}" cmake_c_compiler_version) string(STRIP "${cmake_cxx_compiler_version}" cmake_cxx_compiler_version) string(STRIP ${COMPILER_INFO} COMPILER_INFO) MESSAGE(STATUS "Compiler Version: ${cmake_c_compiler_version}") MESSAGE(STATUS "Compiler Flags: ${COMPILER_INFO}") string(REPLACE "\n" " \\n" cmake_c_compiler_version ${cmake_c_compiler_version}) string(REPLACE "\n" " \\n" cmake_cxx_compiler_version ${cmake_cxx_compiler_version}) string(REPLACE "\n" " \\n" COMPILER_INFO ${COMPILER_INFO}) ######################################################################## # Install directories ######################################################################## include(GrPlatform) #define LIB_SUFFIX set(GR_RUNTIME_DIR bin CACHE PATH "Path to install all binaries") set(GR_LIBRARY_DIR lib${LIB_SUFFIX} CACHE PATH "Path to install libraries") set(GR_INCLUDE_DIR include CACHE PATH "Path to install header files") set(GR_DATA_DIR share CACHE PATH "Base location for data") set(GR_PKG_DATA_DIR ${GR_DATA_DIR}/${CMAKE_PROJECT_NAME} CACHE PATH "Path to install package data") set(GR_DOC_DIR ${GR_DATA_DIR}/doc CACHE PATH "Path to install documentation") set(GR_PKG_DOC_DIR ${GR_DOC_DIR}/${CMAKE_PROJECT_NAME}-${DOCVER} CACHE PATH "Path to install package docs") set(GR_LIBEXEC_DIR libexec CACHE PATH "Path to install libexec files") set(GR_PKG_LIBEXEC_DIR ${GR_LIBEXEC_DIR}/${CMAKE_PROJECT_NAME} CACHE PATH "Path to install package libexec files") set(GRC_BLOCKS_DIR ${GR_PKG_DATA_DIR}/grc/blocks CACHE PATH "Path to install GRC blocks") set(GR_THEMES_DIR ${GR_PKG_DATA_DIR}/themes CACHE PATH "Path to install QTGUI themes") # Set location of config/prefs files in /etc # Special exception if prefix is /usr so we don't make a /usr/etc. set(GR_CONF_DIR etc CACHE PATH "Path to install config files") string(COMPARE EQUAL "${CMAKE_INSTALL_PREFIX}" "/usr" isusr) if(isusr) set(SYSCONFDIR "/${GR_CONF_DIR}" CACHE PATH "System configuration directory") else(isusr) set(SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/${GR_CONF_DIR}" CACHE PATH "System configuration directory" FORCE) endif(isusr) set(GR_PKG_CONF_DIR ${SYSCONFDIR}/${CMAKE_PROJECT_NAME}/conf.d CACHE PATH "Path to install package configs") set(GR_PREFSDIR ${SYSCONFDIR}/${CMAKE_PROJECT_NAME}/conf.d CACHE PATH "Path to install preference files") OPTION(ENABLE_PERFORMANCE_COUNTERS "Enable block performance counters" ON) if(ENABLE_PERFORMANCE_COUNTERS) message(STATUS "ADDING PERF COUNTERS") SET(GR_PERFORMANCE_COUNTERS True) add_definitions(-DGR_PERFORMANCE_COUNTERS) else(ENABLE_PERFORMANCE_COUNTERS) SET(GR_PERFORMANCE_COUNTERS False) message(STATUS "NO PERF COUNTERS") endif(ENABLE_PERFORMANCE_COUNTERS) OPTION(ENABLE_STATIC_LIBS "Enable building of static libraries" OFF) message(STATUS "Building Static Libraries: ${ENABLE_STATIC_LIBS}") ######################################################################## # Variables replaced when configuring the package config files ######################################################################## file(TO_NATIVE_PATH "${CMAKE_INSTALL_PREFIX}" prefix) file(TO_NATIVE_PATH "\${prefix}" exec_prefix) file(TO_NATIVE_PATH "\${exec_prefix}/${GR_LIBRARY_DIR}" libdir) file(TO_NATIVE_PATH "\${prefix}/${GR_INCLUDE_DIR}" includedir) file(TO_NATIVE_PATH "${SYSCONFDIR}" SYSCONFDIR) file(TO_NATIVE_PATH "${GR_PREFSDIR}" GR_PREFSDIR) ######################################################################## # On Apple only, set install name and use rpath correctly, if not already set ######################################################################## if(APPLE) if(NOT CMAKE_INSTALL_NAME_DIR) set(CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/${GR_LIBRARY_DIR} CACHE PATH "Library Install Name Destination Directory" FORCE) endif(NOT CMAKE_INSTALL_NAME_DIR) if(NOT CMAKE_INSTALL_RPATH) set(CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/${GR_LIBRARY_DIR} CACHE PATH "Library Install RPath" FORCE) endif(NOT CMAKE_INSTALL_RPATH) if(NOT CMAKE_BUILD_WITH_INSTALL_RPATH) set(CMAKE_BUILD_WITH_INSTALL_RPATH ON CACHE BOOL "Do Build Using Library Install RPath" FORCE) endif(NOT CMAKE_BUILD_WITH_INSTALL_RPATH) endif(APPLE) ######################################################################## # Create uninstall target ######################################################################## configure_file( ${CMAKE_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake @ONLY) add_custom_target(uninstall ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake ) ######################################################################## # Setup Boost for global use (within this build) ######################################################################## include(GrBoost) ######################################################################## # Enable python component ######################################################################## find_package(PythonLibs 2) find_package(SWIG) if(SWIG_FOUND) # Minimum SWIG version required is 1.3.31 set(SWIG_VERSION_CHECK FALSE) if("${SWIG_VERSION}" VERSION_GREATER "1.3.30") set(SWIG_VERSION_CHECK TRUE) endif() endif(SWIG_FOUND) include(GrComponent) GR_REGISTER_COMPONENT("python-support" ENABLE_PYTHON PYTHONLIBS_FOUND SWIG_FOUND SWIG_VERSION_CHECK ) find_package(CppUnit) GR_REGISTER_COMPONENT("testing-support" ENABLE_TESTING CPPUNIT_FOUND ) ######################################################################## # Add optional dlls specified in DLL_PATHS ######################################################################## foreach(path ${DLL_PATHS}) file(GLOB _dlls "${path}/*.dll") list(APPEND ALL_DLL_FILES ${_dlls}) endforeach(path) if(DEFINED ALL_DLL_FILES) include(GrPackage) CPACK_COMPONENT("extra_dlls" DISPLAY_NAME "Extra DLLs" DESCRIPTION "Extra DLLs for runtime dependency requirements" ) message(STATUS "") message(STATUS "Including the following dlls into the install:") foreach(_dll ${ALL_DLL_FILES}) message(STATUS " ${_dll}") endforeach(_dll) install(FILES ${ALL_DLL_FILES} DESTINATION ${GR_RUNTIME_DIR} COMPONENT "extra_dlls") endif() ######################################################################## # Setup volk as a subproject ######################################################################## message(STATUS "") message(STATUS "Configuring VOLK support...") OPTION(ENABLE_INTERNAL_VOLK "Enable internal VOLK only" ON) unset(VOLK_FOUND) if(NOT ENABLE_INTERNAL_VOLK) find_package(Volk) if(NOT VOLK_FOUND) message(STATUS " External VOLK not found; checking internal.") endif() endif() if(NOT VOLK_FOUND) find_file(INTREE_VOLK_FOUND volk/volk_common.h PATHS ${CMAKE_CURRENT_SOURCE_DIR}/volk/include NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH ) if(NOT INTREE_VOLK_FOUND) message(STATUS " VOLK submodule is not checked out.") message(STATUS " To check out the VOLK submodule, use:") message(STATUS " git pull --recurse-submodules=on") message(STATUS " git submodule update") if(ENABLE_INTERNAL_VOLK) message(STATUS " External VOLK disabled.") endif() message(STATUS " Override with -DENABLE_INTERNAL_VOLK=ON/OFF") message(STATUS "") message(FATAL_ERROR "VOLK required but not found.") endif() add_subdirectory(volk) # if the above command returns, then VOLK is enabled include(GrComponent) GR_REGISTER_COMPONENT("volk" ENABLE_VOLK) set(VOLK_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/volk/include ${CMAKE_CURRENT_BINARY_DIR}/volk/include ) set(VOLK_LIBRARIES volk) set(VOLK_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_PREFIX}/lib) set(VOLK_INSTALL_INCLUDE_DIR ${CMAKE_INSTALL_PREFIX}/include) if(ENABLE_VOLK) include(GrPackage) CPACK_SET(CPACK_COMPONENT_GROUP_VOLK_DESCRIPTION "Vector optimized library of kernels") CPACK_COMPONENT("volk_runtime" GROUP "Volk" DISPLAY_NAME "Runtime" DESCRIPTION "Dynamic link libraries" ) CPACK_COMPONENT("volk_devel" GROUP "Volk" DISPLAY_NAME "Development" DESCRIPTION "C++ headers, package config, import libraries" ) endif(ENABLE_VOLK) else() message(STATUS " An external VOLK has been found and will be used for build.") set(ENABLE_VOLK TRUE) get_filename_component(VOLK_INSTALL_LIBRARY_DIR "${VOLK_LIBRARIES}" DIRECTORY) set(VOLK_INSTALL_INCLUDE_DIR ${VOLK_INCLUDE_DIRS}) endif(NOT VOLK_FOUND) message(STATUS " Override with -DENABLE_INTERNAL_VOLK=ON/OFF") # Handle gr_log enable/disable GR_LOGGING() ######################################################################## # Distribute the README file ######################################################################## install( FILES README README.hacking DESTINATION ${GR_PKG_DOC_DIR} COMPONENT "docs" ) ######################################################################## # The following dependency libraries are needed by all gr modules: ######################################################################## list(APPEND GR_TEST_TARGET_DEPS volk gnuradio-runtime) list(APPEND GR_TEST_PYTHON_DIRS ${CMAKE_BINARY_DIR}/gnuradio-runtime/python ${CMAKE_SOURCE_DIR}/gnuradio-runtime/python ${CMAKE_BINARY_DIR}/gnuradio-runtime/swig ) # Note that above we put the binary gnuradio-runtime/python directory # before the source directory. This is due to a quirk with ControlPort # and how slice generates files and names. We want the QA and # installed code to import the same names, so we have to grab from the # binary directory first. ######################################################################## # Add subdirectories (in order of deps) ######################################################################## add_subdirectory(docs) add_subdirectory(gnuradio-runtime) add_subdirectory(gr-blocks) add_subdirectory(grc) add_subdirectory(gr-fec) add_subdirectory(gr-fft) add_subdirectory(gr-filter) add_subdirectory(gr-analog) add_subdirectory(gr-digital) add_subdirectory(gr-dtv) add_subdirectory(gr-atsc) add_subdirectory(gr-audio) add_subdirectory(gr-comedi) add_subdirectory(gr-channels) add_subdirectory(gr-noaa) add_subdirectory(gr-pager) add_subdirectory(gr-qtgui) add_subdirectory(gr-trellis) add_subdirectory(gr-uhd) add_subdirectory(gr-utils) add_subdirectory(gr-video-sdl) add_subdirectory(gr-vocoder) add_subdirectory(gr-fcd) add_subdirectory(gr-wavelet) add_subdirectory(gr-wxgui) add_subdirectory(gr-zeromq) # Defining GR_CTRLPORT for gnuradio/config.h if(ENABLE_GR_CTRLPORT) set(GR_CTRLPORT True) add_definitions(-DGR_CTRLPORT) if(CTRLPORT_BACKENDS GREATER 0) set(GR_RPCSERVER_ENABLED True) if(THRIFT_FOUND) set(GR_RPCSERVER_THRIFT True) endif(THRIFT_FOUND) endif(CTRLPORT_BACKENDS GREATER 0) endif(ENABLE_GR_CTRLPORT) # Install our Cmake modules into $prefix/lib/cmake/gnuradio # See "Package Configuration Files" on page: # http://www.cmake.org/Wiki/CMake/Tutorials/Packaging configure_file( ${CMAKE_SOURCE_DIR}/cmake/Modules/GnuradioConfig.cmake.in ${CMAKE_BINARY_DIR}/cmake/Modules/GnuradioConfig.cmake @ONLY) configure_file( ${CMAKE_SOURCE_DIR}/cmake/Modules/GnuradioConfigVersion.cmake.in ${CMAKE_BINARY_DIR}/cmake/Modules/GnuradioConfigVersion.cmake @ONLY) SET(cmake_configs ${CMAKE_BINARY_DIR}/cmake/Modules/GnuradioConfig.cmake ${CMAKE_BINARY_DIR}/cmake/Modules/GnuradioConfigVersion.cmake ) if(NOT CMAKE_MODULES_DIR) set(CMAKE_MODULES_DIR lib${LIB_SUFFIX}/cmake) endif(NOT CMAKE_MODULES_DIR) # Install all other cmake files into same directory file(GLOB cmake_others "cmake/Modules/*.cmake") list(REMOVE_ITEM cmake_others "${CMAKE_SOURCE_DIR}/cmake/Modules/FindGnuradio.cmake" ) install( FILES ${cmake_configs} ${cmake_others} DESTINATION ${CMAKE_MODULES_DIR}/gnuradio COMPONENT "runtime_devel" ) #finalize cpack after subdirs processed include(GrPackage) CPACK_FINALIZE() ######################################################################## # Print summary ######################################################################## GR_PRINT_COMPONENT_SUMMARY() message(STATUS "Using install prefix: ${CMAKE_INSTALL_PREFIX}") message(STATUS "Building for version: ${VERSION} / ${LIBVER}") # Create a config.h with some definitions to export to other projects. CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/gnuradio-runtime/include/gnuradio/config.h ) #Re-generate the constants file, now that we actually know which components will be enabled. configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/gnuradio-runtime/lib/constants.cc.in ${CMAKE_CURRENT_BINARY_DIR}/gnuradio-runtime/lib/constants.cc ESCAPE_QUOTES @ONLY) # Install config.h in include/gnuradio install( FILES ${CMAKE_CURRENT_BINARY_DIR}/gnuradio-runtime/include/gnuradio/config.h DESTINATION ${GR_INCLUDE_DIR}/gnuradio COMPONENT "runtime_devel" ) gnuradio-3.7.11/COPYING0000664000175000017500000010451313055131744014307 0ustar jcorganjcorgan GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . gnuradio-3.7.11/README0000664000175000017500000001070413055131744014132 0ustar jcorganjcorgan# # Copyright 2001-2007,2009,2012 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. # Welcome to GNU Radio! Please see http://gnuradio.org for the wiki, bug tracking, and source code viewer. If you've got questions about GNU Radio, please subscribe to the discuss-gnuradio mailing list and post your questions there. http://gnuradio.org/redmine/projects/gnuradio/wiki/MailingLists There is also a "Build Guide" in the wiki that contains OS specific recommendations: http://gnuradio.org/redmine/projects/gnuradio/wiki/BuildGuide The bleeding edge code can be found in our git repository at http://gnuradio.org/git/gnuradio.git/. To checkout the latest, use this command: $ git clone git://git.gnuradio.org/gnuradio For information about using Git, please see: http://gnuradio.org/redmine/projects/gnuradio/wiki/DevelopingWithGit How to Build GNU Radio: For more complete instructions, see the "Building GNU Radio" page in the GNU Radio manual (can be built or found online at http://gnuradio.org/doc/doxygen/build_guide.html). See these steps for a quick build guide. (1) Ensure that you've satisfied the external dependencies. These dependencies are listed in the manual's build page and are not presented here to reduce duplication errors. See the wiki at http://gnuradio.org for details. (2) Building from cmake: $ mkdir $(builddir) $ cd $(builddir) $ cmake [OPTIONS] $(srcdir) $ make $ make test $ sudo make install That's it! Options: Useful options include setting the install prefix and the build type: -DCMAKE_INSTALL_PREFIX= -DCMAKE_BUILD_TYPE="" Currently, GNU Radio has a "Debug" type that builds with '-g -O2' useful for debugging the software and a "Release" type that builds with '-O3', which is the default. ------------------------------------------------------------------------------- KNOWN INCOMPATIBILITIES GNU Radio triggers bugs in g++ 3.3 for X86. DO NOT USE GCC 3.3 on the X86 platform. g++ 3.2, 3.4, and the 4.* series are known to work well. ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- NOTES ------------------------------------------------------------------------------- To run the examples you may need to set PYTHONPATH. Note that the prefix and python version number in the path needs to match your installed version of python. $ export PYTHONPATH=/usr/local/lib/python2.7/dist-packages You may want to add this to your shell init file (~/.bash_profile if you use bash). Another handy trick if for example your fftw includes and libs are installed in, say ~/local/include and ~/local/lib, instead of /usr/local is this: $ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/local/lib $ make CPPFLAGS="-I$HOME/local/include" Sometimes the prerequisites are installed in a location which is not included in the default compiler and linker search paths. This happens with pkgsrc and NetBSD. To build, tell configure to use these locations: LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" ./configure --prefix=/usr/gnuradio ------------------------------------------------------------------------------- Legal Matters ------------------------------------------------------------------------------- Some files have been changed many times throughout the years. Copyright notices at the tops of these files list which years changes have been made. For some files, changes have occurred in many consecutive years. These files may often have the format of a year range (e.g., "2006 - 2011"), which indicates that these files have had copyrightable changes made during each year in the range, inclusive. gnuradio-3.7.11/README.building-boost0000664000175000017500000000456313055131744017060 0ustar jcorganjcorganMost distributions have the required version of Boost (1.35) ready for installation using their standard package installation tools (apt-get, yum, etc.). If running a distribution that requires boost 1.35 (or later) be built from scratch, these instructions explain how to do so, and in a way that allows it to peacefully coexist with earlier versions of boost. There are two recommended methods: Installing boost using the PyBOMBS utility, or building it from a source tarball. 1. Installing Boost using PyBOMBS --------------------------------- Following http://gnuradio.org/redmine/projects/pybombs/wiki/Using you can install a recent boost by downloading and executing the PyBOMBS utility: # go to a directory you have write access to $ git clone git://github.com/pybombs/pybombs $ cd pybombs $ ./pybombs install boost The utility will take care of everything from thereon, install it from a package source if a recent version is available for your system or build it from source if necessary. 2. Building Boost from a source tarball --------------------------------------- Download the latest version of boost from boost.sourceforge.net. (boost_1_49_0.tar.bz2 was the latest when this was written). Different Boost versions often have different installations. If these instructions don't work, check the website www.boost.org for more help. unpack it somewhere cd into the resulting directory $ cd boost_1_49_0 # Pick a prefix to install it into. I used /opt/boost_1_49_0 $ BOOST_PREFIX=/opt/boost_1_49_0 $ ./bootstrap.sh $ sudo ./b2 --prefix=$BOOST_PREFIX --with-thread --with-date_time --with-program_options --with-filesystem --with-system --layout=versioned threading=multi variant=release install # Done! That was easy! Note that you don't have to specify each library, which will then build all Boost libraries and projects. By specifying only those required will just save compilation time. ---------------------------------------------------------------------- Installing GNU Radio with new Boost libraries. Tell Cmake to look for the Boost libraries and header files in the new location with the following command: $ cd $ cmake -DBOOST_ROOT=$BOOST_PREFIX -DBoost_INCLUDE_DIR=$BOOST_PREFIX/include/boost-1_49/ -DBoost_LIBRARY_DIRS=$BOOST_PREFIX/lib $ make $ make test $ sudo make install See README for more installation details. gnuradio-3.7.11/README.hacking0000664000175000017500000001702313055131744015536 0ustar jcorganjcorgan# -*- Outline -*- # # Copyright 2004,2007,2008,2009 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. # Random notes on coding conventions, some explanations about why things aren't done differently, etc, etc, * Boost 1.35 Boost 1.35 and later is fairly common in modern distributions. If it isn't available for your system, please refer to README.building-boost for instructions * C++ and Python GNU Radio is a hybrid system. Some parts of the system are built in C++ and some of it in Python. In general, prefer Python to C++ for its simplicity; for performance-critical and system-related functionality use C++. Signal processing primitives are still built in C++ for performance; the Vector-Optimized Library of Kernels (VOLK) is directly accessible from C++. * C++ namespaces GNU Radio is organized in modules. For example, the blocks of the gr-digital module reside in the namespace gr::digital. Out-Of-Tree modules follow the same convention, but should take care not to clash with the official modules. * Naming conventions Death to CamelCaseNames! We've returned to a kinder, gentler era. We're now using the "STL style" naming convention with a couple of modifications. Refer to the classes in the official source tree for examples. With the exception of macros and other constant values, all identifiers shall be lower case with words_separated_like_this. Macros and constant values (e.g., enumerated values, static const int FOO = 23) shall be in UPPER_CASE. ** Class data members (instance variables) All class data members shall begin with d_. The big benefit is when you're staring at a block of code it's obvious which of the things being assigned to persist outside of the block. This also keeps you from having to be creative with parameter names for methods and constructors. You just use the same name as the instance variable, without the d_. class wonderfulness { std::string d_name; double d_wonderfulness_factor; public: wonderfulness (std::string name, double wonderfulness_factor) : d_name (name), d_wonderfulness_factor (wonderfulness_factor) { ... } ... }; ** Class static data members (class variables) All class static data members shall begin with s_. ** File names Each significant class shall be contained in its own file. * Storage management Strongly consider using the boost smart pointer templates, scoped_ptr and shared_ptr. scoped_ptr should be used for locals that contain pointers to objects that we need to delete when we exit the current scope. shared_ptr implements transparent reference counting and is a major win. You never have to worry about calling delete. The right thing happens. See http://www.boost.org/libs/smart_ptr/smart_ptr.htm * Unit tests Unit tests are a useful tool for development -- they are less of a tool to prove others that you can write code that works like you defined it but help you and later maintainers identify corner cases, regressions and other malfunctions of code. GNU Radio has integrated versatile, easy to use testing facilities. Please refer to http://gnuradio.org/redmine/projects/gnuradio/wiki/Coding_guide_impl#Unit-testing * Standard command line options When writing programs that are executable from the command line, please follow these guidelines for command line argument names (short and long) and types of the arguments. We list them below using the Python optparse syntax. In general, the default value should be coded into the help string using the "... [default=%default]" syntax. ** Mandatory options by gr::block When designing flow graphs with the GNU Radio Companion, appropriate option parsing will automatically be set up for you. *** Audio source Any program using an audio source shall include: add_option("-I", "--audio-input", type="string", default="", help="pcm input device name. E.g., hw:0,0 or /dev/dsp") The default must be "". This allows an audio module-dependent default to be specified in the user preferences file. *** Audio sink add_option("-O", "--audio-output", type="string", default="", help="pcm output device name. E.g., hw:0,0 or /dev/dsp") The default must be "". This allows an audio module-dependent default to be specified in the user preferences file. ** Standard options names by parameter Whenever you want an integer, use the "intx" type. This allows the user to input decimal, hex or octal numbers. E.g., 10, 012, 0xa. Whenever you want a float, use the "eng_float" type. This allows the user to input numbers with SI suffixes. E.g, 10000, 10k, 10M, 10m, 92.1M If your program allows the user to specify values for any of the following parameters, please use these options to specify them: To specify a frequency (typically an RF center frequency) use: add_option("-f", "--freq", type="eng_float", default=, help="set frequency to FREQ [default=%default]") To specify a decimation factor use: add_option("-d", "--decim", type="intx", default=, help="set decimation rate to DECIM [default=%default]") To specify an interpolation factor use: add_option("-i", "--interp", type="intx", default=, help="set interpolation rate to INTERP [default=%default]") To specify a gain setting use: add_option("-g", "--gain", type="eng_float", default=, help="set gain in dB [default=%default]") If your application specifies both a tx and an rx gain, use: add_option("", "--rx-gain", type="eng_float", default=, help="set receive gain in dB [default=%default]") add_option("", "--tx-gain", type="eng_float", default=, help="set transmit gain in dB [default=%default]") To specify the number of channels of something use: add_option("-n", "--nchannels", type="intx", default=1, help="specify number of channels [default=%default]") To specify an output filename use: add_option("-o", "--output-filename", type="string", default=, help="specify output-filename [default=%default]") To specify a rate use: add_option("-r", "--bit-rate", type="eng_float", default=, help="specify bit-rate [default=%default]") or add_option("-r", "--sample-rate", type="eng_float", default=, help="specify sample-rate [default=%default]") If your application has a verbose option, use: add_option('-v', '--verbose', action="store_true", default=False, help="verbose output") If your application allows the user to specify the "fast USB" options, use: add_option("", "--fusb-block-size", type="intx", default=0, help="specify fast USB block size [default=%default]") add_option("", "--fusb-nblocks", type="intx", default=0, help="specify number of fast USB blocks [default=%default]") gnuradio-3.7.11/RELEASE-NOTES.md0000664000175000017500000001044513055131744015544 0ustar jcorganjcorganChangeLog v3.7.11 ================= This is a feature release of the 3.7 API series, and incorporates all the bug fixes implemented in the 3.7.10.2 maintenance release. Contributors ------------ The following list of people directly contributed code to this release and the incorporated maintenance release: * A. Maitland Bottoms * Alexandru Csete * Andrej Rode * Andy Walls * Artem Pisarenko * Bastian Bloessl * Ben Hilburn * Bob Iannucci * Chris Kuethe * Christopher Chavez * Clayton Smith * Darek Kawamoto * Ethan Trewhitt * Geof Gnieboer * Hatsune Aru * Jacob Gilbert * Jiří Pinkava * Johannes Demel * Johannes Schmitz * Johnathan Corgan * Jonathan Brucker * Josh Blum * Kartik Patel * Konstantin Mochalov * Kyle Unice * Marcus Müller * Martin Braun * Michael De Nil * Michael Dickens * Nathan West * Nicholas Corgan * Nick Foster * Nicolas Cuervo * Paul Cercueil * Pedro Lobo * Peter Horvath * Philip Balister * Ron Economos * Sean Nowlan * Sebastian Koslowski * Sebastian Müller * Stephen Larew * Sylvain Munaut * Thomas Habets * Tim O'Shea * Tobias Blomberg Changes ======= The GNU Radio project tracks changes via Github pull requests. You can get details on each of the below by going to: https://github.com/gnuradio/gnuradio Note: Please see the release notes for 3.7.10.2 for details on the bug fixes included in this release. ### gnuradio-runtime * \#1077 Support dynamically loaded gnuradio installs (Josh Blum) ### gnuradio-companion * \#1118 Support vector types in embedded Python blocks (Clayton Smith) ### gr-audio * \#1051 Re-implemented defunct Windows audio source (Geof Gnieboer) * \#1052 Implemented block in Windows audio sink (Geof Gnieboer) ### gr-blocks * \#896 Added PDU block setters and GRC callbacks (Jacob Gilbert) * \#900 Exposed non-vector multiply const to GRC (Ron Economos) * \#903 Deprecated old-style message queue blocks (Johnathan Corgan) * \#1067 Deprecated blks2 namespace blocks (Johnathan Corgan) ### gr-digital * \#910 Deprecated correlate_and_sync block 3.8 (Johnathan Corgan) * \#912 Deprecated modulation blocks for 3.8 (Sebastian Müller) * \#1069 Improved build memory usage with swig split (Michael Dickens) * \#1097 Deprecated mpsk_receiver_cc block (Johnathan Corgan) * \#1099 Deprecated old-style OFDM receiver blocks (Martin Braun) ### gr-dtv * \#875 Added ability to cross-compile gr-dtv (Ron Economos) * \#876 Improved ATSC transmitter performance (Ron Economos) * \#894 Refactored DVB-T RS decoder to use gr-fec (Ron Economos) * \#898 Improved error handling and logging (Ron Economos) * \#900 Improved DVB-T performance (Ron Economos) * \#907 Updated examples to use QT (Ron Economos) * \#1025 Refactor DVB-T2 interleaver (Ron Economos) ### gr-filter * \#885 Added set parameter msg port to fractional resampler (Sebastian Müller) ### gr-trellis * \#908 Updated examples to use QT (Martin Braun) ### gr-uhd * \#872 Added relative phase plots to uhd_fft (Martin Braun) * \#1032 Replace zero-timeout double-recv() with one recv() (Martin Braun) * \#1053 UHD apps may now specify multiple subdevs (Martin Braun) * \#1101 Support TwinRX LO sharing parameters (Andrej Rode) * \#1139 Use UHD internal normalized gain methods (Martin Braun) ### gr-utils * \#897 Improved python docstring generation in gr_modtool gnuradio-3.7.11/cmake/0000775000175000017500000000000013055131744014330 5ustar jcorganjcorgangnuradio-3.7.11/cmake/Modules/0000775000175000017500000000000013055131744015740 5ustar jcorganjcorgangnuradio-3.7.11/cmake/Modules/CMakeMacroLibtoolFile.cmake0000664000175000017500000000764313055131744023043 0ustar jcorganjcorgan#http://www.vtk.org/Wiki/CMakeMacroLibtoolFile #This macro creates a libtool .la file for shared libraries or plugins. The first parameter is the target name of the library, the second parameter is the directory where it will be installed to. E.g. for a KDE 3.x module named "kfoo" the usage would be as follows: #The macro GET_TARGET_PROPERTY_WITH_DEFAULT is helpful to handle properties with default values. #ADD_LIBRARY(foo SHARED kfoo1.cpp kfoo2.cpp) #CREATE_LIBTOOL_FILE(foo /lib/kde3) if(DEFINED __INCLUDED_CREATE_LIBTOOL_FILE) return() endif() set(__INCLUDED_CREATE_LIBTOOL_FILE TRUE) MACRO(GET_TARGET_PROPERTY_WITH_DEFAULT _variable _target _property _default_value) GET_TARGET_PROPERTY (${_variable} ${_target} ${_property}) IF (${_variable} MATCHES NOTFOUND) SET (${_variable} ${_default_value}) ENDIF (${_variable} MATCHES NOTFOUND) ENDMACRO (GET_TARGET_PROPERTY_WITH_DEFAULT) MACRO(CREATE_LIBTOOL_FILE _target _install_DIR) GET_TARGET_PROPERTY(_target_location ${_target} LOCATION) GET_TARGET_PROPERTY_WITH_DEFAULT(_target_static_lib ${_target} STATIC_LIB "") GET_TARGET_PROPERTY_WITH_DEFAULT(_target_dependency_libs ${_target} LT_DEPENDENCY_LIBS "") GET_TARGET_PROPERTY_WITH_DEFAULT(_target_current ${_target} LT_VERSION_CURRENT 0) GET_TARGET_PROPERTY_WITH_DEFAULT(_target_age ${_target} LT_VERSION_AGE 0) GET_TARGET_PROPERTY_WITH_DEFAULT(_target_revision ${_target} LT_VERSION_REVISION 0) GET_TARGET_PROPERTY_WITH_DEFAULT(_target_installed ${_target} LT_INSTALLED yes) GET_TARGET_PROPERTY_WITH_DEFAULT(_target_shouldnotlink ${_target} LT_SHOULDNOTLINK yes) GET_TARGET_PROPERTY_WITH_DEFAULT(_target_dlopen ${_target} LT_DLOPEN "") GET_TARGET_PROPERTY_WITH_DEFAULT(_target_dlpreopen ${_target} LT_DLPREOPEN "") GET_FILENAME_COMPONENT(_laname ${_target_location} NAME_WE) GET_FILENAME_COMPONENT(_soname ${_target_location} NAME) SET(_laname ${CMAKE_CURRENT_BINARY_DIR}/${_laname}.la) FILE(WRITE ${_laname} "# ${_laname} - a libtool library file\n") FILE(WRITE ${_laname} "# Generated by CMake ${CMAKE_VERSION} (like GNU libtool)\n") FILE(WRITE ${_laname} "\n# Please DO NOT delete this file!\n# It is necessary for linking the library with libtool.\n\n" ) FILE(APPEND ${_laname} "# The name that we can dlopen(3).\n") FILE(APPEND ${_laname} "dlname='${_soname}'\n\n") FILE(APPEND ${_laname} "# Names of this library.\n") FILE(APPEND ${_laname} "library_names='${_soname}.${_target_current}.${_target_age}.${_target_revision} ${_soname}.${_target_current} ${_soname}'\n\n") FILE(APPEND ${_laname} "# The name of the static archive.\n") FILE(APPEND ${_laname} "old_library='${_target_static_lib}'\n\n") FILE(APPEND ${_laname} "# Libraries that this one depends upon.\n") FILE(APPEND ${_laname} "dependency_libs='${_target_dependency_libs}'\n\n") FILE(APPEND ${_laname} "# Names of additional weak libraries provided by this library\n") FILE(APPEND ${_laname} "weak_library_names=\n\n") FILE(APPEND ${_laname} "# Version information for ${_laname}.\n") FILE(APPEND ${_laname} "current=${_target_current}\n") FILE(APPEND ${_laname} "age=${_target_age}\n") FILE(APPEND ${_laname} "revision=${_target_revision}\n\n") FILE(APPEND ${_laname} "# Is this an already installed library?\n") FILE(APPEND ${_laname} "installed=${_target_installed}\n\n") FILE(APPEND ${_laname} "# Should we warn about portability when linking against -modules?\n") FILE(APPEND ${_laname} "shouldnotlink=${_target_shouldnotlink}\n\n") FILE(APPEND ${_laname} "# Files to dlopen/dlpreopen\n") FILE(APPEND ${_laname} "dlopen='${_target_dlopen}'\n") FILE(APPEND ${_laname} "dlpreopen='${_target_dlpreopen}'\n\n") FILE(APPEND ${_laname} "# Directory that this library needs to be installed in:\n") FILE(APPEND ${_laname} "libdir='${CMAKE_INSTALL_PREFIX}${_install_DIR}'\n") INSTALL( FILES ${_laname} DESTINATION ${CMAKE_INSTALL_PREFIX}${_install_DIR}) ENDMACRO(CREATE_LIBTOOL_FILE) gnuradio-3.7.11/cmake/Modules/CMakeParseArgumentsCopy.cmake0000664000175000017500000001340313055131744023437 0ustar jcorganjcorgan# CMAKE_PARSE_ARGUMENTS( args...) # # CMAKE_PARSE_ARGUMENTS() is intended to be used in macros or functions for # parsing the arguments given to that macro or function. # It processes the arguments and defines a set of variables which hold the # values of the respective options. # # The argument contains all options for the respective macro, # i.e. keywords which can be used when calling the macro without any value # following, like e.g. the OPTIONAL keyword of the install() command. # # The argument contains all keywords for this macro # which are followed by one value, like e.g. DESTINATION keyword of the # install() command. # # The argument contains all keywords for this macro # which can be followed by more than one value, like e.g. the TARGETS or # FILES keywords of the install() command. # # When done, CMAKE_PARSE_ARGUMENTS() will have defined for each of the # keywords listed in , and # a variable composed of the given # followed by "_" and the name of the respective keyword. # These variables will then hold the respective value from the argument list. # For the keywords this will be TRUE or FALSE. # # All remaining arguments are collected in a variable # _UNPARSED_ARGUMENTS, this can be checked afterwards to see whether # your macro was called with unrecognized parameters. # # As an example here a my_install() macro, which takes similar arguments as the # real install() command: # # function(MY_INSTALL) # set(options OPTIONAL FAST) # set(oneValueArgs DESTINATION RENAME) # set(multiValueArgs TARGETS CONFIGURATIONS) # cmake_parse_arguments(MY_INSTALL "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) # ... # # Assume my_install() has been called like this: # my_install(TARGETS foo bar DESTINATION bin OPTIONAL blub) # # After the cmake_parse_arguments() call the macro will have set the following # variables: # MY_INSTALL_OPTIONAL = TRUE # MY_INSTALL_FAST = FALSE (this option was not used when calling my_install() # MY_INSTALL_DESTINATION = "bin" # MY_INSTALL_RENAME = "" (was not used) # MY_INSTALL_TARGETS = "foo;bar" # MY_INSTALL_CONFIGURATIONS = "" (was not used) # MY_INSTALL_UNPARSED_ARGUMENTS = "blub" (no value expected after "OPTIONAL" # # You can the continue and process these variables. # # Keywords terminate lists of values, e.g. if directly after a one_value_keyword # another recognized keyword follows, this is interpreted as the beginning of # the new option. # E.g. my_install(TARGETS foo DESTINATION OPTIONAL) would result in # MY_INSTALL_DESTINATION set to "OPTIONAL", but MY_INSTALL_DESTINATION would # be empty and MY_INSTALL_OPTIONAL would be set to TRUE therefor. #============================================================================= # Copyright 2010 Alexander Neundorf # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) if(__CMAKE_PARSE_ARGUMENTS_INCLUDED) return() endif() set(__CMAKE_PARSE_ARGUMENTS_INCLUDED TRUE) function(CMAKE_PARSE_ARGUMENTS prefix _optionNames _singleArgNames _multiArgNames) # first set all result variables to empty/FALSE foreach(arg_name ${_singleArgNames} ${_multiArgNames}) set(${prefix}_${arg_name}) endforeach(arg_name) foreach(option ${_optionNames}) set(${prefix}_${option} FALSE) endforeach(option) set(${prefix}_UNPARSED_ARGUMENTS) set(insideValues FALSE) set(currentArgName) # now iterate over all arguments and fill the result variables foreach(currentArg ${ARGN}) list(FIND _optionNames "${currentArg}" optionIndex) # ... then this marks the end of the arguments belonging to this keyword list(FIND _singleArgNames "${currentArg}" singleArgIndex) # ... then this marks the end of the arguments belonging to this keyword list(FIND _multiArgNames "${currentArg}" multiArgIndex) # ... then this marks the end of the arguments belonging to this keyword if(${optionIndex} EQUAL -1 AND ${singleArgIndex} EQUAL -1 AND ${multiArgIndex} EQUAL -1) if(insideValues) if("${insideValues}" STREQUAL "SINGLE") set(${prefix}_${currentArgName} ${currentArg}) set(insideValues FALSE) elseif("${insideValues}" STREQUAL "MULTI") list(APPEND ${prefix}_${currentArgName} ${currentArg}) endif() else(insideValues) list(APPEND ${prefix}_UNPARSED_ARGUMENTS ${currentArg}) endif(insideValues) else() if(NOT ${optionIndex} EQUAL -1) set(${prefix}_${currentArg} TRUE) set(insideValues FALSE) elseif(NOT ${singleArgIndex} EQUAL -1) set(currentArgName ${currentArg}) set(${prefix}_${currentArgName}) set(insideValues "SINGLE") elseif(NOT ${multiArgIndex} EQUAL -1) set(currentArgName ${currentArg}) set(${prefix}_${currentArgName}) set(insideValues "MULTI") endif() endif() endforeach(currentArg) # propagate the result variables to the caller: foreach(arg_name ${_singleArgNames} ${_multiArgNames} ${_optionNames}) set(${prefix}_${arg_name} ${${prefix}_${arg_name}} PARENT_SCOPE) endforeach(arg_name) set(${prefix}_UNPARSED_ARGUMENTS ${${prefix}_UNPARSED_ARGUMENTS} PARENT_SCOPE) endfunction(CMAKE_PARSE_ARGUMENTS _options _singleArgs _multiArgs) gnuradio-3.7.11/cmake/Modules/FindALSA.cmake0000664000175000017500000000172413055131744020267 0ustar jcorganjcorgan# - Try to find ALSA # Once done, this will define # # ALSA_FOUND - system has ALSA (GL and GLU) # ALSA_INCLUDE_DIRS - the ALSA include directories # ALSA_LIBRARIES - link these to use ALSA # ALSA_GL_LIBRARY - only GL # ALSA_GLU_LIBRARY - only GLU # # See documentation on how to write CMake scripts at # http://www.cmake.org/Wiki/CMake:How_To_Find_Libraries include(LibFindMacros) libfind_pkg_check_modules(ALSA_PKGCONF alsa) find_path(ALSA_INCLUDE_DIR NAMES alsa/version.h PATHS ${ALSA_PKGCONF_INCLUDE_DIRS} ) find_library(ALSA_LIBRARY NAMES asound PATHS ${ALSA_PKGCONF_LIBRARY_DIRS} ) # Extract the version number IF(ALSA_INCLUDE_DIR) file(READ "${ALSA_INCLUDE_DIR}/alsa/version.h" _ALSA_VERSION_H_CONTENTS) string(REGEX REPLACE ".*#define SND_LIB_VERSION_STR[ \t]*\"([^\n]*)\".*" "\\1" ALSA_VERSION "${_ALSA_VERSION_H_CONTENTS}") ENDIF(ALSA_INCLUDE_DIR) set(ALSA_PROCESS_INCLUDES ALSA_INCLUDE_DIR) set(ALSA_PROCESS_LIBS ALSA_LIBRARY) libfind_process(ALSA) gnuradio-3.7.11/cmake/Modules/FindCppUnit.cmake0000664000175000017500000000206113055131744021124 0ustar jcorganjcorgan# http://www.cmake.org/pipermail/cmake/2006-October/011446.html # Modified to use pkg config and use standard var names # # Find the CppUnit includes and library # # This module defines # CPPUNIT_INCLUDE_DIR, where to find tiff.h, etc. # CPPUNIT_LIBRARIES, the libraries to link against to use CppUnit. # CPPUNIT_FOUND, If false, do not try to use CppUnit. INCLUDE(FindPkgConfig) PKG_CHECK_MODULES(PC_CPPUNIT "cppunit") FIND_PATH(CPPUNIT_INCLUDE_DIRS NAMES cppunit/TestCase.h HINTS ${PC_CPPUNIT_INCLUDE_DIR} ${CMAKE_INSTALL_PREFIX}/include PATHS /usr/local/include /usr/include ) FIND_LIBRARY(CPPUNIT_LIBRARIES NAMES cppunit HINTS ${PC_CPPUNIT_LIBDIR} ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64 PATHS ${CPPUNIT_INCLUDE_DIRS}/../lib /usr/local/lib /usr/lib ) LIST(APPEND CPPUNIT_LIBRARIES ${CMAKE_DL_LIBS}) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(CPPUNIT DEFAULT_MSG CPPUNIT_LIBRARIES CPPUNIT_INCLUDE_DIRS) MARK_AS_ADVANCED(CPPUNIT_LIBRARIES CPPUNIT_INCLUDE_DIRS) gnuradio-3.7.11/cmake/Modules/FindFFTW3f.cmake0000664000175000017500000000212413055131744020541 0ustar jcorganjcorgan# http://tim.klingt.org/code/projects/supernova/repository/revisions/d336dd6f400e381bcfd720e96139656de0c53b6a/entry/cmake_modules/FindFFTW3f.cmake # Modified to use pkg config and use standard var names # Find single-precision (float) version of FFTW3 INCLUDE(FindPkgConfig) PKG_CHECK_MODULES(PC_FFTW3F "fftw3f >= 3.0") FIND_PATH( FFTW3F_INCLUDE_DIRS NAMES fftw3.h HINTS $ENV{FFTW3_DIR}/include ${PC_FFTW3F_INCLUDE_DIR} PATHS /usr/local/include /usr/include ) FIND_LIBRARY( FFTW3F_LIBRARIES NAMES fftw3f libfftw3f HINTS $ENV{FFTW3_DIR}/lib ${PC_FFTW3F_LIBDIR} PATHS /usr/local/lib /usr/lib /usr/lib64 ) FIND_LIBRARY( FFTW3F_THREADS_LIBRARIES NAMES fftw3f_threads libfftw3f_threads HINTS $ENV{FFTW3_DIR}/lib ${PC_FFTW3F_LIBDIR} PATHS /usr/local/lib /usr/lib /usr/lib64 ) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(FFTW3F DEFAULT_MSG FFTW3F_LIBRARIES FFTW3F_INCLUDE_DIRS) MARK_AS_ADVANCED(FFTW3F_LIBRARIES FFTW3F_INCLUDE_DIRS FFTW3F_THREADS_LIBRARIES)gnuradio-3.7.11/cmake/Modules/FindGSL.cmake0000664000175000017500000001076713055131744020203 0ustar jcorganjcorgan# Try to find gnu scientific library GSL # See # http://www.gnu.org/software/gsl/ and # http://gnuwin32.sourceforge.net/packages/gsl.htm # # Based on a script of Felix Woelk and Jan Woetzel # (www.mip.informatik.uni-kiel.de) # # It defines the following variables: # GSL_FOUND - system has GSL lib # GSL_INCLUDE_DIRS - where to find headers # GSL_LIBRARIES - full path to the libraries # GSL_LIBRARY_DIRS, the directory where the PLplot library is found. # CMAKE_GSL_CXX_FLAGS = Unix compiler flags for GSL, essentially "`gsl-config --cxxflags`" # GSL_LINK_DIRECTORIES = link directories, useful for rpath on Unix # GSL_EXE_LINKER_FLAGS = rpath on Unix INCLUDE(FindPkgConfig) PKG_CHECK_MODULES(GSL "gsl >= 1.10") IF(GSL_FOUND) set(GSL_LIBRARY_DIRS ${GSL_LIBDIR}) set(GSL_INCLUDE_DIRS ${GSL_INCLUDEDIR}) ELSE(GSL_FOUND) set( GSL_FOUND OFF ) set( GSL_CBLAS_FOUND OFF ) # Windows, but not for Cygwin and MSys where gsl-config is available if( WIN32 AND NOT CYGWIN AND NOT MSYS ) # look for headers find_path( GSL_INCLUDE_DIRS NAMES gsl/gsl_cdf.h gsl/gsl_randist.h ) if( GSL_INCLUDE_DIRS ) # look for gsl library find_library( GSL_LIBRARY NAMES gsl ) if( GSL_LIBRARY ) set( GSL_INCLUDE_DIRS ${GSL_INCLUDE_DIR} ) get_filename_component( GSL_LIBRARY_DIRS ${GSL_LIBRARY} PATH ) set( GSL_FOUND ON ) endif( GSL_LIBRARY ) # look for gsl cblas library find_library( GSL_CBLAS_LIBRARY NAMES gslcblas cblas ) if( GSL_CBLAS_LIBRARY ) set( GSL_CBLAS_FOUND ON ) endif( GSL_CBLAS_LIBRARY ) set( GSL_LIBRARIES ${GSL_LIBRARY} ${GSL_CBLAS_LIBRARY} ) endif( GSL_INCLUDE_DIRS ) mark_as_advanced( GSL_INCLUDE_DIRS GSL_LIBRARIES GSL_CBLAS_LIBRARIES ) else( WIN32 AND NOT CYGWIN AND NOT MSYS ) if( UNIX OR MSYS ) find_program( GSL_CONFIG_EXECUTABLE gsl-config /usr/bin/ /usr/local/bin ) if( GSL_CONFIG_EXECUTABLE ) set( GSL_FOUND ON ) # run the gsl-config program to get cxxflags execute_process( COMMAND sh "${GSL_CONFIG_EXECUTABLE}" --cflags OUTPUT_VARIABLE GSL_CFLAGS RESULT_VARIABLE RET ERROR_QUIET ) if( RET EQUAL 0 ) string( STRIP "${GSL_CFLAGS}" GSL_CFLAGS ) separate_arguments( GSL_CFLAGS ) # parse definitions from cflags; drop -D* from CFLAGS string( REGEX MATCHALL "-D[^;]+" GSL_DEFINITIONS "${GSL_CFLAGS}" ) string( REGEX REPLACE "-D[^;]+;" "" GSL_CFLAGS "${GSL_CFLAGS}" ) # parse include dirs from cflags; drop -I prefix string( REGEX MATCHALL "-I[^;]+" GSL_INCLUDE_DIRS "${GSL_CFLAGS}" ) string( REPLACE "-I" "" GSL_INCLUDE_DIRS "${GSL_INCLUDE_DIRS}") string( REGEX REPLACE "-I[^;]+;" "" GSL_CFLAGS "${GSL_CFLAGS}") message("GSL_DEFINITIONS=${GSL_DEFINITIONS}") message("GSL_INCLUDE_DIRS=${GSL_INCLUDE_DIRS}") message("GSL_CFLAGS=${GSL_CFLAGS}") else( RET EQUAL 0 ) set( GSL_FOUND FALSE ) endif( RET EQUAL 0 ) # run the gsl-config program to get the libs execute_process( COMMAND sh "${GSL_CONFIG_EXECUTABLE}" --libs OUTPUT_VARIABLE GSL_LIBRARIES RESULT_VARIABLE RET ERROR_QUIET ) if( RET EQUAL 0 ) string(STRIP "${GSL_LIBRARIES}" GSL_LIBRARIES ) separate_arguments( GSL_LIBRARIES ) # extract linkdirs (-L) for rpath (i.e., LINK_DIRECTORIES) string( REGEX MATCHALL "-L[^;]+" GSL_LIBRARY_DIRS "${GSL_LIBRARIES}" ) string( REPLACE "-L" "" GSL_LIBRARY_DIRS "${GSL_LIBRARY_DIRS}" ) else( RET EQUAL 0 ) set( GSL_FOUND FALSE ) endif( RET EQUAL 0 ) MARK_AS_ADVANCED( GSL_CFLAGS ) message( STATUS "Using GSL from ${GSL_PREFIX}" ) else( GSL_CONFIG_EXECUTABLE ) message( STATUS "FindGSL: gsl-config not found.") endif( GSL_CONFIG_EXECUTABLE ) endif( UNIX OR MSYS ) endif( WIN32 AND NOT CYGWIN AND NOT MSYS ) if( GSL_FOUND ) if( NOT GSL_FIND_QUIETLY ) message( STATUS "FindGSL: Found both GSL headers and library" ) endif( NOT GSL_FIND_QUIETLY ) else( GSL_FOUND ) if( GSL_FIND_REQUIRED ) message( FATAL_ERROR "FindGSL: Could not find GSL headers or library" ) endif( GSL_FIND_REQUIRED ) endif( GSL_FOUND ) #needed for gsl windows port but safe to always define LIST(APPEND GSL_DEFINITIONS "-DGSL_DLL") ENDIF(GSL_FOUND) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GSL DEFAULT_MSG GSL_LIBRARIES GSL_INCLUDE_DIRS GSL_LIBRARY_DIRS) gnuradio-3.7.11/cmake/Modules/FindGit.cmake0000664000175000017500000000267113055131744020274 0ustar jcorganjcorgan# The module defines the following variables: # GIT_EXECUTABLE - path to git command line client # GIT_FOUND - true if the command line client was found # Example usage: # find_package(Git) # if(GIT_FOUND) # message("git found: ${GIT_EXECUTABLE}") # endif() #============================================================================= # Copyright 2010 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distributed this file outside of CMake, substitute the full # License text for the above reference.) # Look for 'git' or 'eg' (easy git) # set(git_names git eg) # Prefer .cmd variants on Windows unless running in a Makefile # in the MSYS shell. # if(WIN32) if(NOT CMAKE_GENERATOR MATCHES "MSYS") set(git_names git.cmd git eg.cmd eg) endif() endif() find_program(GIT_EXECUTABLE NAMES ${git_names} DOC "git command line client" ) mark_as_advanced(GIT_EXECUTABLE) # Handle the QUIETLY and REQUIRED arguments and set GIT_FOUND to TRUE if # all listed variables are TRUE include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Git DEFAULT_MSG GIT_EXECUTABLE) gnuradio-3.7.11/cmake/Modules/FindGnuradio.cmake0000664000175000017500000001130513055131744021313 0ustar jcorganjcorgan# Copyright 2013 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. INCLUDE(FindPkgConfig) INCLUDE(FindPackageHandleStandardArgs) # if GR_REQUIRED_COMPONENTS is not defined, it will be set to the following list (all of them) if(NOT GR_REQUIRED_COMPONENTS) set(GR_REQUIRED_COMPONENTS RUNTIME ANALOG BLOCKS DIGITAL FFT FILTER PMT) endif() set(GNURADIO_ALL_LIBRARIES "") set(GNURADIO_ALL_INCLUDE_DIRS "") MACRO(LIST_CONTAINS var value) SET(${var}) FOREACH(value2 ${ARGN}) IF (${value} STREQUAL ${value2}) SET(${var} TRUE) ENDIF(${value} STREQUAL ${value2}) ENDFOREACH(value2) ENDMACRO(LIST_CONTAINS) function(GR_MODULE EXTVAR PCNAME INCFILE LIBFILE) LIST_CONTAINS(REQUIRED_MODULE ${EXTVAR} ${GR_REQUIRED_COMPONENTS}) if(NOT REQUIRED_MODULE) #message("Ignoring GNU Radio Module ${EXTVAR}") return() endif() message("Checking for GNU Radio Module: ${EXTVAR}") # check for .pc hints PKG_CHECK_MODULES(PC_GNURADIO_${EXTVAR} ${PCNAME}) set(INCVAR_NAME "GNURADIO_${EXTVAR}_INCLUDE_DIRS") set(LIBVAR_NAME "GNURADIO_${EXTVAR}_LIBRARIES") set(PC_INCDIR ${PC_GNURADIO_${EXTVAR}_INCLUDEDIR}) set(PC_LIBDIR ${PC_GNURADIO_${EXTVAR}_LIBDIR}) # look for include files FIND_PATH( ${INCVAR_NAME} NAMES ${INCFILE} HINTS $ENV{GNURADIO_RUNTIME_DIR}/include ${PC_INCDIR} ${CMAKE_INSTALL_PREFIX}/include PATHS /usr/local/include /usr/include ) # look for libs FIND_LIBRARY( ${LIBVAR_NAME} NAMES ${LIBFILE} HINTS $ENV{GNURADIO_RUNTIME_DIR}/lib ${PC_LIBDIR} ${CMAKE_INSTALL_PREFIX}/lib/ ${CMAKE_INSTALL_PREFIX}/lib64/ PATHS /usr/local/lib /usr/local/lib64 /usr/lib /usr/lib64 ) # show results message(" * INCLUDES=${GNURADIO_${EXTVAR}_INCLUDE_DIRS}") message(" * LIBS=${GNURADIO_${EXTVAR}_LIBRARIES}") # append to all includes and libs list LIST(APPEND GNURADIO_ALL_INCLUDE_DIRS ${GNURADIO_${EXTVAR}_INCLUDE_DIRS}) LIST(APPEND GNURADIO_ALL_LIBRARIES ${GNURADIO_${EXTVAR}_LIBRARIES}) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GNURADIO_${EXTVAR} DEFAULT_MSG GNURADIO_${EXTVAR}_LIBRARIES GNURADIO_${EXTVAR}_INCLUDE_DIRS) message("GNURADIO_${EXTVAR}_FOUND = ${GNURADIO_${EXTVAR}_FOUND}") set(GNURADIO_${EXTVAR}_FOUND ${GNURADIO_${EXTVAR}_FOUND} PARENT_SCOPE) # generate an error if the module is missing if(NOT GNURADIO_${EXTVAR}_FOUND) message(FATAL_ERROR "Required GNU Radio Component: ${EXTVAR} missing!") endif() MARK_AS_ADVANCED(GNURADIO_${EXTVAR}_LIBRARIES GNURADIO_${EXTVAR}_INCLUDE_DIRS) endfunction() GR_MODULE(RUNTIME gnuradio-runtime gnuradio/top_block.h gnuradio-runtime) GR_MODULE(ANALOG gnuradio-analog gnuradio/analog/api.h gnuradio-analog) GR_MODULE(ATSC gnuradio-atsc gnuradio/atsc/api.h gnuradio-atsc) GR_MODULE(AUDIO gnuradio-audio gnuradio/audio/api.h gnuradio-audio) GR_MODULE(BLOCKS gnuradio-blocks gnuradio/blocks/api.h gnuradio-blocks) GR_MODULE(CHANNELS gnuradio-channels gnuradio/channels/api.h gnuradio-channels) GR_MODULE(DIGITAL gnuradio-digital gnuradio/digital/api.h gnuradio-digital) GR_MODULE(FCD gnuradio-fcd gnuradio/fcd_api.h gnuradio-fcd) GR_MODULE(FEC gnuradio-fec gnuradio/fec/api.h gnuradio-fec) GR_MODULE(FFT gnuradio-fft gnuradio/fft/api.h gnuradio-fft) GR_MODULE(FILTER gnuradio-filter gnuradio/filter/api.h gnuradio-filter) GR_MODULE(NOAA gnuradio-noaa gnuradio/noaa/api.h gnuradio-noaa) GR_MODULE(PAGER gnuradio-pager gnuradio/pager/api.h gnuradio-pager) GR_MODULE(QTGUI gnuradio-qtgui gnuradio/qtgui/api.h gnuradio-qtgui) GR_MODULE(TRELLIS gnuradio-trellis gnuradio/trellis/api.h gnuradio-trellis) GR_MODULE(UHD gnuradio-uhd gnuradio/uhd/api.h gnuradio-uhd) GR_MODULE(VOCODER gnuradio-vocoder gnuradio/vocoder/api.h gnuradio-vocoder) GR_MODULE(WAVELET gnuradio-wavelet gnuradio/wavelet/api.h gnuradio-wavelet) GR_MODULE(WXGUI gnuradio-wxgui gnuradio/wxgui/api.h gnuradio-wxgui) GR_MODULE(PMT gnuradio-pmt pmt/pmt.h gnuradio-pmt) gnuradio-3.7.11/cmake/Modules/FindJack.cmake0000664000175000017500000000434613055131744020422 0ustar jcorganjcorgan# - Try to find jack-2.6 # Once done this will define # # JACK_FOUND - system has jack # JACK_INCLUDE_DIRS - the jack include directory # JACK_LIBRARIES - Link these to use jack # JACK_DEFINITIONS - Compiler switches required for using jack # # Copyright (c) 2008 Andreas Schneider # Modified for other libraries by Lasse Kärkkäinen # # Redistribution and use is allowed according to the terms of the New # BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # if (JACK_LIBRARIES AND JACK_INCLUDE_DIRS) # in cache already set(JACK_FOUND TRUE) else (JACK_LIBRARIES AND JACK_INCLUDE_DIRS) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls if (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4) include(UsePkgConfig) pkgconfig(jack _JACK_INCLUDEDIR _JACK_LIBDIR _JACK_LDFLAGS _JACK_CFLAGS) else (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4) find_package(PkgConfig) if (PKG_CONFIG_FOUND) pkg_check_modules(_JACK jack) endif (PKG_CONFIG_FOUND) endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4) find_path(JACK_INCLUDE_DIR NAMES jack/jack.h PATHS ${_JACK_INCLUDEDIR} /usr/include /usr/local/include /opt/local/include /sw/include ) find_library(JACK_LIBRARY NAMES jack PATHS ${_JACK_LIBDIR} /usr/lib /usr/local/lib /opt/local/lib /sw/lib ) if (JACK_LIBRARY AND JACK_INCLUDE_DIR) set(JACK_FOUND TRUE) set(JACK_INCLUDE_DIRS ${JACK_INCLUDE_DIR} ) set(JACK_LIBRARIES ${JACK_LIBRARIES} ${JACK_LIBRARY} ) endif (JACK_LIBRARY AND JACK_INCLUDE_DIR) if (JACK_FOUND) if (NOT JACK_FIND_QUIETLY) message(STATUS "Found jack: ${JACK_LIBRARY}") endif (NOT JACK_FIND_QUIETLY) else (JACK_FOUND) if (JACK_FIND_REQUIRED) message(FATAL_ERROR "Could not find JACK") endif (JACK_FIND_REQUIRED) endif (JACK_FOUND) # show the JACK_INCLUDE_DIRS and JACK_LIBRARIES variables only in the advanced view mark_as_advanced(JACK_INCLUDE_DIRS JACK_LIBRARIES) endif (JACK_LIBRARIES AND JACK_INCLUDE_DIRS) gnuradio-3.7.11/cmake/Modules/FindLog4cpp.cmake0000664000175000017500000000264513055131744021062 0ustar jcorganjcorgan# - Find Log4cpp # Find the native LOG4CPP includes and library # # LOG4CPP_INCLUDE_DIR - where to find LOG4CPP.h, etc. # LOG4CPP_LIBRARIES - List of libraries when using LOG4CPP. # LOG4CPP_FOUND - True if LOG4CPP found. if (LOG4CPP_INCLUDE_DIR) # Already in cache, be silent set(LOG4CPP_FIND_QUIETLY TRUE) endif () find_path(LOG4CPP_INCLUDE_DIR log4cpp/Category.hh /opt/local/include /usr/local/include /usr/include ) set(LOG4CPP_NAMES log4cpp) find_library(LOG4CPP_LIBRARY NAMES ${LOG4CPP_NAMES} PATHS /usr/lib /usr/local/lib /opt/local/lib ) if (LOG4CPP_INCLUDE_DIR AND LOG4CPP_LIBRARY) set(LOG4CPP_FOUND TRUE) set(LOG4CPP_LIBRARIES ${LOG4CPP_LIBRARY} CACHE INTERNAL "" FORCE) set(LOG4CPP_INCLUDE_DIRS ${LOG4CPP_INCLUDE_DIR} CACHE INTERNAL "" FORCE) else () set(LOG4CPP_FOUND FALSE CACHE INTERNAL "" FORCE) set(LOG4CPP_LIBRARY "" CACHE INTERNAL "" FORCE) set(LOG4CPP_LIBRARIES "" CACHE INTERNAL "" FORCE) set(LOG4CPP_INCLUDE_DIR "" CACHE INTERNAL "" FORCE) set(LOG4CPP_INCLUDE_DIRS "" CACHE INTERNAL "" FORCE) endif () if (LOG4CPP_FOUND) if (NOT LOG4CPP_FIND_QUIETLY) message(STATUS "Found LOG4CPP: ${LOG4CPP_LIBRARIES}") endif () else () if (LOG4CPP_FIND_REQUIRED) message(STATUS "Looked for LOG4CPP libraries named ${LOG4CPPS_NAMES}.") message(FATAL_ERROR "Could NOT find LOG4CPP library") endif () endif () mark_as_advanced( LOG4CPP_LIBRARIES LOG4CPP_INCLUDE_DIRS ) gnuradio-3.7.11/cmake/Modules/FindOSS.cmake0000664000175000017500000000202113055131744020202 0ustar jcorganjcorgan# - Find Oss # Find Oss headers and libraries. # # OSS_INCLUDE_DIR - where to find soundcard.h, etc. # OSS_FOUND - True if Oss found. # OSS is not for APPLE or WINDOWS IF(APPLE OR WIN32) RETURN() ENDIF() FIND_PATH(LINUX_OSS_INCLUDE_DIR "linux/soundcard.h" "/usr/include" "/usr/local/include" ) FIND_PATH(SYS_OSS_INCLUDE_DIR "sys/soundcard.h" "/usr/include" "/usr/local/include" ) FIND_PATH(MACHINE_OSS_INCLUDE_DIR "machine/soundcard.h" "/usr/include" "/usr/local/include" ) SET(OSS_FOUND FALSE) IF(LINUX_OSS_INCLUDE_DIR) SET(OSS_FOUND TRUE) SET(OSS_INCLUDE_DIR ${LINUX_OSS_INCLUDE_DIR}) SET(HAVE_LINUX_SOUNDCARD_H 1) ENDIF() IF(SYS_OSS_INCLUDE_DIR) SET(OSS_FOUND TRUE) SET(OSS_INCLUDE_DIR ${SYS_OSS_INCLUDE_DIR}) SET(HAVE_SYS_SOUNDCARD_H 1) ENDIF() IF(MACHINE_OSS_INCLUDE_DIR) SET(OSS_FOUND TRUE) SET(OSS_INCLUDE_DIR ${MACHINE_OSS_INCLUDE_DIR}) SET(HAVE_MACHINE_SOUNDCARD_H 1) ENDIF() MARK_AS_ADVANCED ( OSS_FOUND OSS_INCLUDE_DIR LINUX_OSS_INCLUDE_DIR SYS_OSS_INCLUDE_DIR MACHINE_OSS_INCLUDE_DIR ) gnuradio-3.7.11/cmake/Modules/FindPortaudio.cmake0000664000175000017500000000276313055131744021521 0ustar jcorganjcorgan# - Try to find Portaudio # Once done this will define # # PORTAUDIO_FOUND - system has Portaudio # PORTAUDIO_INCLUDE_DIRS - the Portaudio include directory # PORTAUDIO_LIBRARIES - Link these to use Portaudio include(FindPkgConfig) pkg_check_modules(PC_PORTAUDIO portaudio-2.0) find_path(PORTAUDIO_INCLUDE_DIRS NAMES portaudio.h PATHS /usr/local/include /usr/include HINTS ${PC_PORTAUDIO_INCLUDEDIR} ) find_library(PORTAUDIO_LIBRARIES NAMES portaudio PATHS /usr/local/lib /usr/lib /usr/lib64 HINTS ${PC_PORTAUDIO_LIBDIR} ) mark_as_advanced(PORTAUDIO_INCLUDE_DIRS PORTAUDIO_LIBRARIES) # Found PORTAUDIO, but it may be version 18 which is not acceptable. if(EXISTS ${PORTAUDIO_INCLUDE_DIRS}/portaudio.h) include(CheckCXXSourceCompiles) set(CMAKE_REQUIRED_INCLUDES_SAVED ${CMAKE_REQUIRED_INCLUDES}) set(CMAKE_REQUIRED_INCLUDES ${PORTAUDIO_INCLUDE_DIRS}) CHECK_CXX_SOURCE_COMPILES( "#include \nPaDeviceIndex pa_find_device_by_name(const char *name); int main () {return 0;}" PORTAUDIO2_FOUND) set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES_SAVED}) unset(CMAKE_REQUIRED_INCLUDES_SAVED) if(PORTAUDIO2_FOUND) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(PORTAUDIO DEFAULT_MSG PORTAUDIO_INCLUDE_DIRS PORTAUDIO_LIBRARIES) else(PORTAUDIO2_FOUND) message(STATUS " portaudio.h not compatible (requires API 2.0)") set(PORTAUDIO_FOUND FALSE) endif(PORTAUDIO2_FOUND) endif() gnuradio-3.7.11/cmake/Modules/FindQwt.cmake0000664000175000017500000000356513055131744020327 0ustar jcorganjcorgan# - try to find Qwt libraries and include files # QWT_INCLUDE_DIR where to find qwt_global.h, etc. # QWT_LIBRARIES libraries to link against # QWT_FOUND If false, do not try to use Qwt # qwt_global.h holds a string with the QWT version; # test to make sure it's at least 5.2 find_path(QWT_INCLUDE_DIRS NAMES qwt_global.h HINTS ${CMAKE_INSTALL_PREFIX}/include/qwt ${CMAKE_PREFIX_PATH}/include/qwt PATHS /usr/local/include/qwt-qt4 /usr/local/include/qwt /usr/include/qwt6 /usr/include/qwt-qt4 /usr/include/qwt /usr/include/qwt5 /opt/local/include/qwt /sw/include/qwt /usr/local/lib/qwt.framework/Headers ) find_library (QWT_LIBRARIES NAMES qwt6 qwt6-qt4 qwt qwt-qt4 qwt5 qwtd5 HINTS ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_PREFIX_PATH}/lib PATHS /usr/local/lib /usr/lib /opt/local/lib /sw/lib /usr/local/lib/qwt.framework ) set(QWT_FOUND FALSE) if(QWT_INCLUDE_DIRS) file(STRINGS "${QWT_INCLUDE_DIRS}/qwt_global.h" QWT_STRING_VERSION REGEX "QWT_VERSION_STR") set(QWT_WRONG_VERSION True) set(QWT_VERSION "No Version") string(REGEX MATCH "[0-9]+.[0-9]+.[0-9]+" QWT_VERSION ${QWT_STRING_VERSION}) string(COMPARE LESS ${QWT_VERSION} "5.2.0" QWT_WRONG_VERSION) string(COMPARE GREATER ${QWT_VERSION} "6.2.0" QWT_WRONG_VERSION) message(STATUS "QWT Version: ${QWT_VERSION}") if(NOT QWT_WRONG_VERSION) set(QWT_FOUND TRUE) else(NOT QWT_WRONG_VERSION) message(STATUS "QWT Version must be >= 5.2 and <= 6.2.0, Found ${QWT_VERSION}") endif(NOT QWT_WRONG_VERSION) endif(QWT_INCLUDE_DIRS) if(QWT_FOUND) # handle the QUIETLY and REQUIRED arguments and set QWT_FOUND to TRUE if # all listed variables are TRUE include ( FindPackageHandleStandardArgs ) find_package_handle_standard_args( Qwt DEFAULT_MSG QWT_LIBRARIES QWT_INCLUDE_DIRS ) MARK_AS_ADVANCED(QWT_LIBRARIES QWT_INCLUDE_DIRS) endif(QWT_FOUND) gnuradio-3.7.11/cmake/Modules/FindSWIG.cmake0000664000175000017500000000764613055131744020331 0ustar jcorganjcorgan####################################################################### # Find the library for SWIG # # The goal here is to intercept calls to "FIND_PACKAGE(SWIG)" in order # to do a global version check locally after passing on the "find" to # SWIG-provided scripts. ######################################################################## # make this file non-reentrant within the current context if(__INCLUDED_FIND_SWIG_CMAKE) return() endif() set(__INCLUDED_FIND_SWIG_CMAKE TRUE) # some status messages message(STATUS "") message(STATUS "Checking for module SWIG") # # First check to see if SWIG installed its own CMake file, or if the # one provided by CMake finds SWIG. # # save the current MODULE path set(SAVED_CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}) # clear the current MODULE path; uses system paths only unset(CMAKE_MODULE_PATH) # try to find SWIG via the provided parameters, # handle REQUIRED internally later unset(SWIG_FOUND) # was the version specified? unset(LOCAL_SWIG_FIND_VERSION) if(SWIG_FIND_VERSION) set(LOCAL_SWIG_FIND_VERSION ${SWIG_FIND_VERSION}) endif(SWIG_FIND_VERSION) # was EXACT specified? unset(LOCAL_SWIG_FIND_VERSION_EXACT) if(SWIG_FIND_VERSION_EXACT) set(LOCAL_SWIG_FIND_VERSION_EXACT "EXACT") endif(SWIG_FIND_VERSION_EXACT) # was REQUIRED specified? unset(LOCAL_SWIG_FIND_REQUIRED) if(SWIG_FIND_REQUIRED) set(LOCAL_SWIG_FIND_REQUIRED "REQUIRED") endif(SWIG_FIND_REQUIRED) # try to find SWIG using the provided parameters, quietly; # # this call will error out internally (and not quietly) if: # 1: EXACT is specified and the version found does not match the requested version; # 2: REQUIRED is set and SWIG was not found; # # this call will return SWIG_FOUND == FALSE if REQUIRED is not set, and: # 1: SWIG was not found; # 2: The version found is less than the requested version. find_package( SWIG ${LOCAL_SWIG_FIND_VERSION} ${LOCAL_SWIG_FIND_VERSION_EXACT} ${LOCAL_SWIG_FIND_REQUIRED} QUIET ) # restore CMAKE_MODULE_PATH set(CMAKE_MODULE_PATH ${SAVED_CMAKE_MODULE_PATH}) # specific version checks set(SWIG_VERSION_CHECK FALSE) if(SWIG_FOUND) # SWIG was found; make sure the version meets GR's needs message(STATUS "Found SWIG version ${SWIG_VERSION}.") if("${SWIG_VERSION}" VERSION_GREATER "1.3.30") if(NOT "${SWIG_VERSION}" VERSION_EQUAL "3.0.3" AND NOT "${SWIG_VERSION}" VERSION_EQUAL "3.0.4") set(SWIG_VERSION_CHECK TRUE) else() message(STATUS "SWIG versions 3.0.3 and 3.0.4 fail to work with GNU Radio.") endif() else() message(STATUS "Minimum SWIG version required is 1.3.31 for GNU Radio.") endif() else() # SWIG was either not found, or is less than the requested version if(SWIG_VERSION) # SWIG_VERSION is set, but SWIG_FOUND is false; probably a version mismatch message(STATUS "Found SWIG version ${SWIG_VERSION}.") message(STATUS "Requested SWIG version is at least ${SWIG_FIND_VERSION}.") endif() endif() # did the version check fail? if(NOT SWIG_VERSION_CHECK) # yes: clear various variables and set FOUND to FALSE message(STATUS "Disabling SWIG because version check failed.") unset(SWIG_VERSION CACHE) unset(SWIG_DIR CACHE) unset(SWIG_EXECUTABLE CACHE) set(SWIG_FOUND FALSE CACHE BOOL "Set to TRUE if a compatible version of SWIG is found" FORCE) endif() # check to see if SWIG variables were set if(SWIG_FOUND AND SWIG_DIR AND SWIG_EXECUTABLE) # yes: even if set SWIG_FOUND==TRUE, then these have already been # done, but done quietly. It does not hurt to redo them here. include(FindPackageHandleStandardArgs) find_package_handle_standard_args(SWIG DEFAULT_MSG SWIG_EXECUTABLE SWIG_DIR) mark_as_advanced(SWIG_EXECUTABLE SWIG_DIR) elseif(SWIG_FIND_REQUIRED) if(SWIG_FIND_VERSION) message(FATAL_ERROR "The found SWIG version (${SWIG_VERSION}) is not compatible with the version required (${SWIG_FIND_VERSION}).") else() message(FATAL_ERROR "SWIG is required, but was not found.") endif() endif() gnuradio-3.7.11/cmake/Modules/FindSphinx.cmake0000664000175000017500000000207513055131744021020 0ustar jcorganjcorgan# - This module looks for Sphinx # Find the Sphinx documentation generator # # This modules defines # SPHINX_EXECUTABLE # SPHINX_FOUND #============================================================================= # Copyright 2002-2009 Kitware, Inc. # Copyright 2009-2011 Peter Colberg # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file COPYING-CMAKE-SCRIPTS for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) find_program(SPHINX_EXECUTABLE NAMES sphinx-build HINTS $ENV{SPHINX_DIR} PATH_SUFFIXES bin DOC "Sphinx documentation generator" ) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Sphinx DEFAULT_MSG SPHINX_EXECUTABLE ) mark_as_advanced( SPHINX_EXECUTABLE ) gnuradio-3.7.11/cmake/Modules/FindThrift.cmake0000664000175000017500000000476613055131744021020 0ustar jcorganjcorganINCLUDE(FindPkgConfig) PKG_CHECK_MODULES(PC_THRIFT thrift) set(THRIFT_REQ_VERSION "0.9.2") # If pkg-config found Thrift and it doesn't meet our version # requirement, warn and exit -- does not cause an error; just doesn't # enable Thrift. if(PC_THRIFT_FOUND AND PC_THRIFT_VERSION VERSION_LESS ${THRIFT_REQ_VERSION}) message(STATUS "Could not find appropriate version of Thrift: ${PC_THRIFT_VERSION} < ${THRIFT_REQ_VERSION}") return() endif(PC_THRIFT_FOUND AND PC_THRIFT_VERSION VERSION_LESS ${THRIFT_REQ_VERSION}) # Else, look for it ourselves FIND_PATH(THRIFT_INCLUDE_DIRS NAMES thrift/Thrift.h HINTS ${PC_THRIFT_INCLUDE_DIRS} ${CMAKE_INSTALL_PREFIX}/include PATHS /usr/local/include /usr/include ) FIND_LIBRARY(THRIFT_LIBRARIES NAMES thrift HINTS ${PC_THRIFT_LIBDIR} ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64 PATHS ${THRIFT_INCLUDE_DIRS}/../lib /usr/local/lib /usr/lib ) # Get the thrift binary to build our files during cmake if (CMAKE_CROSSCOMPILING) FIND_PROGRAM(THRIFT_BIN thrift NO_CMAKE_FIND_ROOT_PATH) else (CMAKE_CROSSCOMPILING) FIND_PROGRAM(THRIFT_BIN thrift) endif(CMAKE_CROSSCOMPILING) # Use binary to get version string and test against THRIFT_REQ_VERSION EXECUTE_PROCESS( COMMAND ${THRIFT_BIN} --version OUTPUT_VARIABLE THRIFT_VERSION ERROR_VARIABLE THRIFT_VERSION_ERROR ) if(NOT THRIFT_BIN) message(STATUS "Binary 'thrift' not found.") return() endif(NOT THRIFT_BIN) STRING(REGEX MATCH "[0-9]+.[0-9]+.[0-9]+" THRIFT_VERSION "${THRIFT_VERSION}") if(THRIFT_VERSION VERSION_LESS THRIFT_REQ_VERSION) message(STATUS "Could not find appropriate version of Thrift: ${THRIFT_VERSION} < ${THRIFT_REQ_VERSION}") return() endif(THRIFT_VERSION VERSION_LESS THRIFT_REQ_VERSION) # Check that Thrift for Python is available IF (CMAKE_CROSSCOMPILING) SET(PYTHON_THRIFT_FOUND TRUE) ELSE (CMAKE_CROSSCOMPILING) include(GrPython) GR_PYTHON_CHECK_MODULE("Thrift" thrift "1" PYTHON_THRIFT_FOUND) ENDIF (CMAKE_CROSSCOMPILING) # Set to found if we've made it this far if(THRIFT_INCLUDE_DIRS AND THRIFT_LIBRARIES AND PYTHON_THRIFT_FOUND) set(THRIFT_FOUND TRUE CACHE BOOL "If Thift has been found") endif(THRIFT_INCLUDE_DIRS AND THRIFT_LIBRARIES AND PYTHON_THRIFT_FOUND) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(THRIFT DEFAULT_MSG THRIFT_LIBRARIES THRIFT_INCLUDE_DIRS THRIFT_BIN PYTHON_THRIFT_FOUND THRIFT_FOUND ) MARK_AS_ADVANCED( THRIFT_LIBRARIES THRIFT_INCLUDE_DIRS THRIFT_BIN PYTHON_THRIFT_FOUND THRIFT_FOUND ) gnuradio-3.7.11/cmake/Modules/FindUHD.cmake0000664000175000017500000000531713055131744020171 0ustar jcorganjcorgan####################################################################### # Find the library for the USRP Hardware Driver ######################################################################## # make this file non-reentrant within the current context if(__INCLUDED_FIND_UHD_CMAKE) return() endif() set(__INCLUDED_FIND_UHD_CMAKE TRUE) # First check to see if UHD installed its own CMake files # save the current MODULE path set(SAVED_CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}) # clear the current MODULE path; uses system paths only unset(CMAKE_MODULE_PATH) # try to find UHD via the provided parameters, # handle REQUIRED internally later unset(UHD_FOUND) # set that UHDConfig.cmake was not used. Have to use the ENV, since # UHDConfigVersion does not allow CACHE changes and UHDConfig might # not allow CACHE changes. set(ENV{UHD_CONFIG_USED} FALSE) set(ENV{UHD_CONFIG_VERSION_USED} FALSE) # was the version specified? unset(LOCAL_UHD_FIND_VERSION) if(UHD_FIND_VERSION) set(LOCAL_UHD_FIND_VERSION ${UHD_FIND_VERSION}) endif(UHD_FIND_VERSION) # was EXACT specified? unset(LOCAL_UHD_FIND_VERSION_EXACT) if(UHD_FIND_VERSION_EXACT) set(LOCAL_UHD_FIND_VERSION_EXACT "EXACT") endif(UHD_FIND_VERSION_EXACT) # try to find UHDConfig using the desired parameters; # UHDConfigVersion will catch a pass-through version bug ... find_package( UHD ${LOCAL_UHD_FIND_VERSION} ${LOCAL_UHD_FIND_VERSION_EXACT} QUIET ) # restore CMAKE_MODULE_PATH set(CMAKE_MODULE_PATH ${SAVED_CMAKE_MODULE_PATH}) # check if UHDConfig was used above if(NOT "$ENV{UHD_CONFIG_VERSION_USED}" STREQUAL "TRUE") # Not used; try the "old" method (not as robust) include(FindPkgConfig) pkg_check_modules(PC_UHD uhd) find_path( UHD_INCLUDE_DIRS NAMES uhd/config.hpp HINTS $ENV{UHD_DIR}/include ${PC_UHD_INCLUDEDIR} PATHS /usr/local/include /usr/include ) find_library( UHD_LIBRARIES NAMES uhd HINTS $ENV{UHD_DIR}/lib ${PC_UHD_LIBDIR} PATHS /usr/local/lib /usr/lib ) endif(NOT "$ENV{UHD_CONFIG_VERSION_USED}" STREQUAL "TRUE") if(UHD_LIBRARIES AND UHD_INCLUDE_DIRS) # if UHDConfig set UHD_FOUND==TRUE, then these have already been # done, but done quietly. It does not hurt to redo them here. include(FindPackageHandleStandardArgs) find_package_handle_standard_args(UHD DEFAULT_MSG UHD_LIBRARIES UHD_INCLUDE_DIRS) mark_as_advanced(UHD_LIBRARIES UHD_INCLUDE_DIRS) elseif(UHD_FIND_REQUIRED) if($ENV{UHD_CONFIG_VERSION_USED} AND NOT $ENV{UHD_CONFIG_USED}) message(FATAL_ERROR "The found UHD version ($ENV{UHD_PACKAGE_VERSION}) is not compatible with the version required (${UHD_FIND_VERSION}).") else() message(FATAL_ERROR "UHD is required, but was not found.") endif() endif() gnuradio-3.7.11/cmake/Modules/FindUSB.cmake0000664000175000017500000000145413055131744020200 0ustar jcorganjcorganif(NOT LIBUSB_FOUND) pkg_check_modules (LIBUSB_PKG libusb-1.0) find_path(LIBUSB_INCLUDE_DIR NAMES libusb.h PATHS ${LIBUSB_PKG_INCLUDE_DIRS} /usr/include/libusb-1.0 /usr/include /usr/local/include ) find_library(LIBUSB_LIBRARIES NAMES usb-1.0 usb PATHS ${LIBUSB_PKG_LIBRARY_DIRS} /usr/lib /usr/local/lib ) if(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) set(LIBUSB_FOUND TRUE CACHE INTERNAL "libusb-1.0 found") message(STATUS "Found libusb-1.0: ${LIBUSB_INCLUDE_DIR}, ${LIBUSB_LIBRARIES}") else(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) set(LIBUSB_FOUND FALSE CACHE INTERNAL "libusb-1.0 found") message(STATUS "libusb-1.0 not found.") endif(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) mark_as_advanced(LIBUSB_INCLUDE_DIR LIBUSB_LIBRARIES) endif(NOT LIBUSB_FOUND) gnuradio-3.7.11/cmake/Modules/FindZeroMQ.cmake0000664000175000017500000000120513055131744020716 0ustar jcorganjcorganINCLUDE(FindPkgConfig) PKG_CHECK_MODULES(PC_ZEROMQ "libzmq") FIND_PATH(ZEROMQ_INCLUDE_DIRS NAMES zmq.hpp HINTS ${PC_ZEROMQ_INCLUDE_DIR} ${CMAKE_INSTALL_PREFIX}/include PATHS /usr/local/include /usr/include ) FIND_LIBRARY(ZEROMQ_LIBRARIES NAMES zmq libzmq HINTS ${PC_ZEROMQ_LIBDIR} ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64 PATHS ${ZEROMQ_INCLUDE_DIRS}/../lib /usr/local/lib /usr/lib ) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(ZEROMQ DEFAULT_MSG ZEROMQ_LIBRARIES ZEROMQ_INCLUDE_DIRS) MARK_AS_ADVANCED(ZEROMQ_LIBRARIES ZEROMQ_INCLUDE_DIRS) gnuradio-3.7.11/cmake/Modules/GnuradioConfig.cmake.in0000664000175000017500000001326113055131744022250 0ustar jcorganjcorgan# Copyright 2013 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. INCLUDE(FindPkgConfig) INCLUDE(FindPackageHandleStandardArgs) # if GR_REQUIRED_COMPONENTS is not defined, it will be set to the following list (all of them) if(NOT GR_REQUIRED_COMPONENTS) set(GR_REQUIRED_COMPONENTS RUNTIME ANALOG BLOCKS DIGITAL FFT FILTER PMT) endif() # Allows us to use all .cmake files in this directory list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_LIST_DIR}") # Easily access all libraries and includes of GNU Radio set(GNURADIO_ALL_LIBRARIES "") set(GNURADIO_ALL_INCLUDE_DIRS "") MACRO(LIST_CONTAINS var value) SET(${var}) FOREACH(value2 ${ARGN}) IF (${value} STREQUAL ${value2}) SET(${var} TRUE) ENDIF(${value} STREQUAL ${value2}) ENDFOREACH(value2) ENDMACRO(LIST_CONTAINS) function(GR_MODULE EXTVAR PCNAME INCFILE LIBFILE) LIST_CONTAINS(REQUIRED_MODULE ${EXTVAR} ${GR_REQUIRED_COMPONENTS}) if(NOT REQUIRED_MODULE) #message("Ignoring GNU Radio Module ${EXTVAR}") return() endif() message("Checking for GNU Radio Module: ${EXTVAR}") # check for .pc hints PKG_CHECK_MODULES(PC_GNURADIO_${EXTVAR} ${PCNAME}) if(NOT PC_GNURADIO_${EXTVAR}_FOUND) set(PC_GNURADIO_${EXTVAR}_LIBRARIES ${LIBFILE}) endif() set(INCVAR_NAME "GNURADIO_${EXTVAR}_INCLUDE_DIRS") set(LIBVAR_NAME "GNURADIO_${EXTVAR}_LIBRARIES") set(PC_INCDIR ${PC_GNURADIO_${EXTVAR}_INCLUDEDIR}) set(PC_LIBDIR ${PC_GNURADIO_${EXTVAR}_LIBDIR}) # look for include files FIND_PATH( ${INCVAR_NAME} NAMES ${INCFILE} HINTS $ENV{GNURADIO_RUNTIME_DIR}/include ${PC_INCDIR} ${CMAKE_INSTALL_PREFIX}/include PATHS /usr/local/include /usr/include "@CMAKE_INSTALL_PREFIX@/include" "@VOLK_INSTALL_INCLUDE_DIR@" ) # look for libs foreach(libname ${PC_GNURADIO_${EXTVAR}_LIBRARIES}) FIND_LIBRARY( ${LIBVAR_NAME}_${libname} NAMES ${libname} HINTS $ENV{GNURADIO_RUNTIME_DIR}/lib ${PC_LIBDIR} ${CMAKE_INSTALL_PREFIX}/lib/ ${CMAKE_INSTALL_PREFIX}/lib64/ PATHS /usr/local/lib /usr/local/lib64 /usr/lib /usr/lib64 "@CMAKE_INSTALL_PREFIX@/lib" "@VOLK_INSTALL_LIBRARY_DIR@" ) list(APPEND ${LIBVAR_NAME} ${${LIBVAR_NAME}_${libname}}) endforeach(libname) set(${LIBVAR_NAME} ${${LIBVAR_NAME}} PARENT_SCOPE) # show results message(" * INCLUDES=${GNURADIO_${EXTVAR}_INCLUDE_DIRS}") message(" * LIBS=${GNURADIO_${EXTVAR}_LIBRARIES}") # append to all includes and libs list set(GNURADIO_ALL_INCLUDE_DIRS ${GNURADIO_ALL_INCLUDE_DIRS} ${GNURADIO_${EXTVAR}_INCLUDE_DIRS} PARENT_SCOPE) set(GNURADIO_ALL_LIBRARIES ${GNURADIO_ALL_LIBRARIES} ${GNURADIO_${EXTVAR}_LIBRARIES} PARENT_SCOPE) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GNURADIO_${EXTVAR} DEFAULT_MSG GNURADIO_${EXTVAR}_LIBRARIES GNURADIO_${EXTVAR}_INCLUDE_DIRS) message("GNURADIO_${EXTVAR}_FOUND = ${GNURADIO_${EXTVAR}_FOUND}") set(GNURADIO_${EXTVAR}_FOUND ${GNURADIO_${EXTVAR}_FOUND} PARENT_SCOPE) # generate an error if the module is missing if(NOT GNURADIO_${EXTVAR}_FOUND) message(FATAL_ERROR "Required GNU Radio Component: ${EXTVAR} missing!") endif() MARK_AS_ADVANCED(GNURADIO_${EXTVAR}_LIBRARIES GNURADIO_${EXTVAR}_INCLUDE_DIRS) endfunction() GR_MODULE(RUNTIME gnuradio-runtime gnuradio/top_block.h gnuradio-runtime) GR_MODULE(ANALOG gnuradio-analog gnuradio/analog/api.h gnuradio-analog) GR_MODULE(ATSC gnuradio-atsc gnuradio/atsc/api.h gnuradio-atsc) GR_MODULE(AUDIO gnuradio-audio gnuradio/audio/api.h gnuradio-audio) GR_MODULE(BLOCKS gnuradio-blocks gnuradio/blocks/api.h gnuradio-blocks) GR_MODULE(CHANNELS gnuradio-channels gnuradio/channels/api.h gnuradio-channels) GR_MODULE(DIGITAL gnuradio-digital gnuradio/digital/api.h gnuradio-digital) GR_MODULE(FCD gnuradio-fcd gnuradio/fcd_api.h gnuradio-fcd) GR_MODULE(FEC gnuradio-fec gnuradio/fec/api.h gnuradio-fec) GR_MODULE(FFT gnuradio-fft gnuradio/fft/api.h gnuradio-fft) GR_MODULE(FILTER gnuradio-filter gnuradio/filter/api.h gnuradio-filter) GR_MODULE(NOAA gnuradio-noaa gnuradio/noaa/api.h gnuradio-noaa) GR_MODULE(PAGER gnuradio-pager gnuradio/pager/api.h gnuradio-pager) GR_MODULE(QTGUI gnuradio-qtgui gnuradio/qtgui/api.h gnuradio-qtgui) GR_MODULE(TRELLIS gnuradio-trellis gnuradio/trellis/api.h gnuradio-trellis) GR_MODULE(UHD gnuradio-uhd gnuradio/uhd/api.h gnuradio-uhd) GR_MODULE(VOCODER gnuradio-vocoder gnuradio/vocoder/api.h gnuradio-vocoder) GR_MODULE(WAVELET gnuradio-wavelet gnuradio/wavelet/api.h gnuradio-wavelet) GR_MODULE(WXGUI gnuradio-wxgui gnuradio/wxgui/api.h gnuradio-wxgui) GR_MODULE(ZEROMQ gnuradio-zeromq gnuradio/zeromq/api.h gnuradio-zeromq) GR_MODULE(PMT gnuradio-runtime pmt/pmt.h gnuradio-pmt) GR_MODULE(VOLK volk volk/volk.h volk) list(REMOVE_DUPLICATES GNURADIO_ALL_INCLUDE_DIRS) list(REMOVE_DUPLICATES GNURADIO_ALL_LIBRARIES) gnuradio-3.7.11/cmake/Modules/GnuradioConfigVersion.cmake.in0000664000175000017500000000303513055131744023614 0ustar jcorganjcorgan# Copyright 2013 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. set(MAJOR_VERSION @VERSION_INFO_MAJOR_VERSION@) set(API_COMPAT @VERSION_INFO_API_COMPAT@) set(MINOR_VERSION @VERSION_INFO_MINOR_VERSION@) set(MAINT_VERSION @VERSION_INFO_MAINT_VERSION@) set(PACKAGE_VERSION ${MAJOR_VERSION}.${API_COMPAT}.${MINOR_VERSION}.${MAINT_VERSION}) if(${PACKAGE_FIND_VERSION_MAJOR} EQUAL ${MAJOR_VERSION}) if(${PACKAGE_FIND_VERSION_MINOR} EQUAL ${API_COMPAT}) if(NOT ${PACKAGE_FIND_VERSION_PATCH} GREATER ${MINOR_VERSION}) set(PACKAGE_VERSION_EXACT 1) # exact match for API version set(PACKAGE_VERSION_COMPATIBLE 1) # compat for minor/patch version endif(NOT ${PACKAGE_FIND_VERSION_PATCH} GREATER ${MINOR_VERSION}) endif(${PACKAGE_FIND_VERSION_MINOR} EQUAL ${API_COMPAT}) endif(${PACKAGE_FIND_VERSION_MAJOR} EQUAL ${MAJOR_VERSION})gnuradio-3.7.11/cmake/Modules/GrBoost.cmake0000664000175000017500000001064013055131744020322 0ustar jcorganjcorgan# Copyright 2010-2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_BOOST_CMAKE) return() endif() set(__INCLUDED_GR_BOOST_CMAKE TRUE) ######################################################################## # Setup Boost and handle some system specific things ######################################################################## set(BOOST_REQUIRED_COMPONENTS date_time program_options filesystem system regex thread ) if(UNIX AND NOT BOOST_ROOT AND EXISTS "/usr/lib64") list(APPEND BOOST_LIBRARYDIR "/usr/lib64") #fedora 64-bit fix endif(UNIX AND NOT BOOST_ROOT AND EXISTS "/usr/lib64") if(WIN32) #The following libraries are either used indirectly, #or conditionally within the various core components. #We explicitly list the libraries here because they #are either required in environments MSVC and MINGW #or linked-in automatically via header inclusion. #However, this is not robust; and its recommended that #these libraries should be listed in the main components #list once the minimum version of boost had been bumped #to a version which always contains these components. list(APPEND BOOST_REQUIRED_COMPONENTS atomic chrono ) endif(WIN32) if(MSVC) if (NOT DEFINED BOOST_ALL_DYN_LINK) set(BOOST_ALL_DYN_LINK TRUE) endif() set(BOOST_ALL_DYN_LINK "${BOOST_ALL_DYN_LINK}" CACHE BOOL "boost enable dynamic linking") if(BOOST_ALL_DYN_LINK) add_definitions(-DBOOST_ALL_DYN_LINK) #setup boost auto-linking in msvc else(BOOST_ALL_DYN_LINK) unset(BOOST_REQUIRED_COMPONENTS) #empty components list for static link endif(BOOST_ALL_DYN_LINK) endif(MSVC) find_package(Boost "1.35" COMPONENTS ${BOOST_REQUIRED_COMPONENTS}) # This does not allow us to disable specific versions. It is used # internally by cmake to know the formation newer versions. As newer # Boost version beyond what is shown here are produced, we must extend # this list. To disable Boost versions, see below. set(Boost_ADDITIONAL_VERSIONS "1.35.0" "1.35" "1.36.0" "1.36" "1.37.0" "1.37" "1.38.0" "1.38" "1.39.0" "1.39" "1.40.0" "1.40" "1.41.0" "1.41" "1.42.0" "1.42" "1.43.0" "1.43" "1.44.0" "1.44" "1.45.0" "1.45" "1.46.0" "1.46" "1.47.0" "1.47" "1.48.0" "1.48" "1.49.0" "1.49" "1.50.0" "1.50" "1.51.0" "1.51" "1.52.0" "1.52" "1.53.0" "1.53" "1.54.0" "1.54" "1.55.0" "1.55" "1.56.0" "1.56" "1.57.0" "1.57" "1.58.0" "1.58" "1.59.0" "1.59" "1.60.0" "1.60" "1.61.0" "1.61" "1.62.0" "1.62" "1.63.0" "1.63" "1.64.0" "1.64" "1.65.0" "1.65" "1.66.0" "1.66" "1.67.0" "1.67" "1.68.0" "1.68" "1.69.0" "1.69" ) # Boost 1.52 disabled, see https://svn.boost.org/trac/boost/ticket/7669 # Similar problems with Boost 1.46 and 1.47. OPTION(ENABLE_BAD_BOOST "Enable known bad versions of Boost" OFF) if(ENABLE_BAD_BOOST) MESSAGE(STATUS "Enabling use of known bad versions of Boost.") endif(ENABLE_BAD_BOOST) # For any unsuitable Boost version, add the version number below in # the following format: XXYYZZ # Where: # XX is the major version ('10' for version 1) # YY is the minor version number ('46' for 1.46) # ZZ is the patcher version number (typically just '00') set(Boost_NOGO_VERSIONS 104600 104601 104700 105200 ) foreach(ver ${Boost_NOGO_VERSIONS}) if("${Boost_VERSION}" STREQUAL "${ver}") if(NOT ENABLE_BAD_BOOST) MESSAGE(STATUS "WARNING: Found a known bad version of Boost (v${Boost_VERSION}). Disabling.") set(Boost_FOUND FALSE) else(NOT ENABLE_BAD_BOOST) MESSAGE(STATUS "WARNING: Found a known bad version of Boost (v${Boost_VERSION}). Continuing anyway.") set(Boost_FOUND TRUE) endif(NOT ENABLE_BAD_BOOST) endif("${Boost_VERSION}" STREQUAL "${ver}") endforeach(ver) gnuradio-3.7.11/cmake/Modules/GrBuildTypes.cmake0000664000175000017500000001452313055131744021324 0ustar jcorganjcorgan# Copyright 2014 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_BUILD_TYPES_CMAKE) return() endif() set(__INCLUDED_GR_BUILD_TYPES_CMAKE TRUE) # Standard CMake Build Types and their basic CFLAGS: # - None: nothing set # - Debug: -O2 -g # - Release: -O3 # - RelWithDebInfo: -O3 -g # - MinSizeRel: -Os # Addtional Build Types, defined below: # - NoOptWithASM: -O0 -g -save-temps # - O2WithASM: -O2 -g -save-temps # - O3WithASM: -O3 -g -save-temps # Defines the list of acceptable cmake build types. When adding a new # build type below, make sure to add it to this list. list(APPEND AVAIL_BUILDTYPES None Debug Release RelWithDebInfo MinSizeRel NoOptWithASM O2WithASM O3WithASM ) ######################################################################## # GR_CHECK_BUILD_TYPE(build type) # # Use this to check that the build type set in CMAKE_BUILD_TYPE on the # commandline is one of the valid build types used by this project. It # checks the value set in the cmake interface against the list of # known build types in AVAIL_BUILDTYPES. If the build type is found, # the function exits immediately. If nothing is found by the end of # checking all available build types, we exit with an error and list # the avialable build types. ######################################################################## function(GR_CHECK_BUILD_TYPE settype) STRING(TOUPPER ${settype} _settype) foreach(btype ${AVAIL_BUILDTYPES}) STRING(TOUPPER ${btype} _btype) if(${_settype} STREQUAL ${_btype}) return() # found it; exit cleanly endif(${_settype} STREQUAL ${_btype}) endforeach(btype) # Build type not found; error out message(FATAL_ERROR "Build type '${settype}' not valid, must be one of: ${AVAIL_BUILDTYPES}") endfunction(GR_CHECK_BUILD_TYPE) ######################################################################## # For GCC and Clang, we can set a build type: # # -DCMAKE_BUILD_TYPE=NoOptWithASM # # This type uses no optimization (-O0), outputs debug symbols (-g) and # outputs all intermediary files the build system produces, including # all assembly (.s) files. Look in the build directory for these # files. # NOTE: This is not defined on Windows systems. ######################################################################## if(NOT WIN32) SET(CMAKE_CXX_FLAGS_NOOPTWITHASM "-Wall -save-temps -g -O0" CACHE STRING "Flags used by the C++ compiler during NoOptWithASM builds." FORCE) SET(CMAKE_C_FLAGS_NOOPTWITHASM "-Wall -save-temps -g -O0" CACHE STRING "Flags used by the C compiler during NoOptWithASM builds." FORCE) SET(CMAKE_EXE_LINKER_FLAGS_NOOPTWITHASM "-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING "Flags used for linking binaries during NoOptWithASM builds." FORCE) SET(CMAKE_SHARED_LINKER_FLAGS_NOOPTWITHASM "-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING "Flags used by the shared lib linker during NoOptWithASM builds." FORCE) MARK_AS_ADVANCED( CMAKE_CXX_FLAGS_NOOPTWITHASM CMAKE_C_FLAGS_NOOPTWITHASM CMAKE_EXE_LINKER_FLAGS_NOOPTWITHASM CMAKE_SHARED_LINKER_FLAGS_NOOPTWITHASM) endif(NOT WIN32) ######################################################################## # For GCC and Clang, we can set a build type: # # -DCMAKE_BUILD_TYPE=O2WithASM # # This type uses level 2 optimization (-O2), outputs debug symbols # (-g) and outputs all intermediary files the build system produces, # including all assembly (.s) files. Look in the build directory for # these files. # NOTE: This is not defined on Windows systems. ######################################################################## if(NOT WIN32) SET(CMAKE_CXX_FLAGS_O2WITHASM "-Wall -save-temps -g -O2" CACHE STRING "Flags used by the C++ compiler during O2WithASM builds." FORCE) SET(CMAKE_C_FLAGS_O2WITHASM "-Wall -save-temps -g -O2" CACHE STRING "Flags used by the C compiler during O2WithASM builds." FORCE) SET(CMAKE_EXE_LINKER_FLAGS_O2WITHASM "-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING "Flags used for linking binaries during O2WithASM builds." FORCE) SET(CMAKE_SHARED_LINKER_FLAGS_O2WITHASM "-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING "Flags used by the shared lib linker during O2WithASM builds." FORCE) MARK_AS_ADVANCED( CMAKE_CXX_FLAGS_O2WITHASM CMAKE_C_FLAGS_O2WITHASM CMAKE_EXE_LINKER_FLAGS_O2WITHASM CMAKE_SHARED_LINKER_FLAGS_O2WITHASM) endif(NOT WIN32) ######################################################################## # For GCC and Clang, we can set a build type: # # -DCMAKE_BUILD_TYPE=O3WithASM # # This type uses level 3 optimization (-O3), outputs debug symbols # (-g) and outputs all intermediary files the build system produces, # including all assembly (.s) files. Look in the build directory for # these files. # NOTE: This is not defined on Windows systems. ######################################################################## if(NOT WIN32) SET(CMAKE_CXX_FLAGS_O3WITHASM "-Wall -save-temps -g -O3" CACHE STRING "Flags used by the C++ compiler during O3WithASM builds." FORCE) SET(CMAKE_C_FLAGS_O3WITHASM "-Wall -save-temps -g -O3" CACHE STRING "Flags used by the C compiler during O3WithASM builds." FORCE) SET(CMAKE_EXE_LINKER_FLAGS_O3WITHASM "-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING "Flags used for linking binaries during O3WithASM builds." FORCE) SET(CMAKE_SHARED_LINKER_FLAGS_O3WITHASM "-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING "Flags used by the shared lib linker during O3WithASM builds." FORCE) MARK_AS_ADVANCED( CMAKE_CXX_FLAGS_O3WITHASM CMAKE_C_FLAGS_O3WITHASM CMAKE_EXE_LINKER_FLAGS_O3WITHASM CMAKE_SHARED_LINKER_FLAGS_O3WITHASM) endif(NOT WIN32) gnuradio-3.7.11/cmake/Modules/GrComponent.cmake0000664000175000017500000001122713055131744021200 0ustar jcorganjcorgan# Copyright 2010-2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_COMPONENT_CMAKE) return() endif() set(__INCLUDED_GR_COMPONENT_CMAKE TRUE) set(_gr_enabled_components "" CACHE INTERNAL "" FORCE) set(_gr_disabled_components "" CACHE INTERNAL "" FORCE) if(NOT DEFINED ENABLE_DEFAULT) set(ENABLE_DEFAULT ON) message(STATUS "") message(STATUS "The build system will automatically enable all components.") message(STATUS "Use -DENABLE_DEFAULT=OFF to disable components by default.") endif() ######################################################################## # Register a component into the system # - name: canonical component name # - var: variable for enabled status # - argn: list of dependencies ######################################################################## function(GR_REGISTER_COMPONENT name var) include(CMakeDependentOption) message(STATUS "") message(STATUS "Configuring ${name} support...") foreach(dep ${ARGN}) message(STATUS " Dependency ${dep} = ${${dep}}") endforeach(dep) #if the user set the var to force on, we note this if("${${var}}" STREQUAL "ON") set(var_force TRUE) else() set(var_force FALSE) endif() #rewrite the dependency list so that deps that are also components use the cached version unset(comp_deps) foreach(dep ${ARGN}) list(FIND _gr_enabled_components ${dep} dep_enb_index) list(FIND _gr_disabled_components ${dep} dep_dis_index) if (${dep_enb_index} EQUAL -1 AND ${dep_dis_index} EQUAL -1) list(APPEND comp_deps ${dep}) else() list(APPEND comp_deps ${dep}_cached) #is a component, use cached version endif() endforeach(dep) #setup the dependent option for this component CMAKE_DEPENDENT_OPTION(${var} "enable ${name} support" ${ENABLE_DEFAULT} "${comp_deps}" OFF) set(${var} "${${var}}" PARENT_SCOPE) set(${var}_cached "${${var}}" CACHE INTERNAL "" FORCE) #force was specified, but the dependencies were not met if(NOT ${var} AND var_force) message(FATAL_ERROR "user force-enabled ${name} but configuration checked failed") endif() #append the component into one of the lists if(${var}) message(STATUS " Enabling ${name} support.") list(APPEND _gr_enabled_components ${name}) else(${var}) message(STATUS " Disabling ${name} support.") list(APPEND _gr_disabled_components ${name}) endif(${var}) message(STATUS " Override with -D${var}=ON/OFF") #make components lists into global variables set(_gr_enabled_components ${_gr_enabled_components} CACHE INTERNAL "" FORCE) set(_gr_disabled_components ${_gr_disabled_components} CACHE INTERNAL "" FORCE) endfunction(GR_REGISTER_COMPONENT) function(GR_APPEND_SUBCOMPONENT name) list(APPEND _gr_enabled_components "* ${name}") set(_gr_enabled_components ${_gr_enabled_components} CACHE INTERNAL "" FORCE) endfunction(GR_APPEND_SUBCOMPONENT name) ######################################################################## # Print the registered component summary ######################################################################## function(GR_PRINT_COMPONENT_SUMMARY) message(STATUS "") message(STATUS "######################################################") message(STATUS "# Gnuradio enabled components ") message(STATUS "######################################################") foreach(comp ${_gr_enabled_components}) message(STATUS " * ${comp}") endforeach(comp) message(STATUS "") message(STATUS "######################################################") message(STATUS "# Gnuradio disabled components ") message(STATUS "######################################################") foreach(comp ${_gr_disabled_components}) message(STATUS " * ${comp}") endforeach(comp) message(STATUS "") endfunction(GR_PRINT_COMPONENT_SUMMARY) gnuradio-3.7.11/cmake/Modules/GrMiscUtils.cmake0000664000175000017500000004541413055131744021157 0ustar jcorganjcorgan# Copyright 2010-2011,2014 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_MISC_UTILS_CMAKE) return() endif() set(__INCLUDED_GR_MISC_UTILS_CMAKE TRUE) ######################################################################## # Set global variable macro. # Used for subdirectories to export settings. # Example: include and library paths. ######################################################################## function(GR_SET_GLOBAL var) set(${var} ${ARGN} CACHE INTERNAL "" FORCE) endfunction(GR_SET_GLOBAL) ######################################################################## # Set the pre-processor definition if the condition is true. # - def the pre-processor definition to set and condition name ######################################################################## function(GR_ADD_COND_DEF def) if(${def}) add_definitions(-D${def}) endif(${def}) endfunction(GR_ADD_COND_DEF) ######################################################################## # Check for a header and conditionally set a compile define. # - hdr the relative path to the header file # - def the pre-processor definition to set ######################################################################## function(GR_CHECK_HDR_N_DEF hdr def) include(CheckIncludeFileCXX) CHECK_INCLUDE_FILE_CXX(${hdr} ${def}) GR_ADD_COND_DEF(${def}) endfunction(GR_CHECK_HDR_N_DEF) ######################################################################## # Include subdirectory macro. # Sets the CMake directory variables, # includes the subdirectory CMakeLists.txt, # resets the CMake directory variables. # # This macro includes subdirectories rather than adding them # so that the subdirectory can affect variables in the level above. # This provides a work-around for the lack of convenience libraries. # This way a subdirectory can append to the list of library sources. ######################################################################## macro(GR_INCLUDE_SUBDIRECTORY subdir) #insert the current directories on the front of the list list(INSERT _cmake_source_dirs 0 ${CMAKE_CURRENT_SOURCE_DIR}) list(INSERT _cmake_binary_dirs 0 ${CMAKE_CURRENT_BINARY_DIR}) #set the current directories to the names of the subdirs set(CMAKE_CURRENT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/${subdir}) set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/${subdir}) #include the subdirectory CMakeLists to run it file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) include(${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt) #reset the value of the current directories list(GET _cmake_source_dirs 0 CMAKE_CURRENT_SOURCE_DIR) list(GET _cmake_binary_dirs 0 CMAKE_CURRENT_BINARY_DIR) #pop the subdir names of the front of the list list(REMOVE_AT _cmake_source_dirs 0) list(REMOVE_AT _cmake_binary_dirs 0) endmacro(GR_INCLUDE_SUBDIRECTORY) ######################################################################## # Check if a compiler flag works and conditionally set a compile define. # - flag the compiler flag to check for # - have the variable to set with result ######################################################################## macro(GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE flag have) include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG(${flag} ${have}) if(${have}) if(${CMAKE_VERSION} VERSION_GREATER "2.8.4") STRING(FIND "${CMAKE_CXX_FLAGS}" "${flag}" flag_dup) if(${flag_dup} EQUAL -1) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}") endif(${flag_dup} EQUAL -1) endif(${CMAKE_VERSION} VERSION_GREATER "2.8.4") endif(${have}) endmacro(GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE) ######################################################################## # Generates the .la libtool file # This appears to generate libtool files that cannot be used by auto*. # Usage GR_LIBTOOL(TARGET [target] DESTINATION [dest]) # Notice: there is not COMPONENT option, these will not get distributed. ######################################################################## function(GR_LIBTOOL) if(NOT DEFINED GENERATE_LIBTOOL) set(GENERATE_LIBTOOL OFF) #disabled by default endif() if(GENERATE_LIBTOOL) include(CMakeParseArgumentsCopy) CMAKE_PARSE_ARGUMENTS(GR_LIBTOOL "" "TARGET;DESTINATION" "" ${ARGN}) find_program(LIBTOOL libtool) if(LIBTOOL) include(CMakeMacroLibtoolFile) CREATE_LIBTOOL_FILE(${GR_LIBTOOL_TARGET} /${GR_LIBTOOL_DESTINATION}) endif(LIBTOOL) endif(GENERATE_LIBTOOL) endfunction(GR_LIBTOOL) ######################################################################## # Do standard things to the library target # - set target properties # - make install rules # Also handle gnuradio custom naming conventions w/ extras mode. ######################################################################## function(GR_LIBRARY_FOO target) #parse the arguments for component names include(CMakeParseArgumentsCopy) CMAKE_PARSE_ARGUMENTS(GR_LIBRARY "" "RUNTIME_COMPONENT;DEVEL_COMPONENT" "" ${ARGN}) #set additional target properties set_target_properties(${target} PROPERTIES SOVERSION ${LIBVER}) #install the generated files like so... install(TARGETS ${target} LIBRARY DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT} # .so/.dylib file ARCHIVE DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_DEVEL_COMPONENT} # .lib file RUNTIME DESTINATION ${GR_RUNTIME_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT} # .dll file ) #extras mode enabled automatically on linux if(NOT DEFINED LIBRARY_EXTRAS) set(LIBRARY_EXTRAS ${LINUX}) endif() #special extras mode to enable alternative naming conventions if(LIBRARY_EXTRAS) #create .la file before changing props GR_LIBTOOL(TARGET ${target} DESTINATION ${GR_LIBRARY_DIR}) #give the library a special name with ultra-zero soversion set_target_properties(${target} PROPERTIES OUTPUT_NAME ${target}-${LIBVER} SOVERSION "0.0.0") set(target_name lib${target}-${LIBVER}.so.0.0.0) #custom command to generate symlinks add_custom_command( TARGET ${target} POST_BUILD COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} ${CMAKE_CURRENT_BINARY_DIR}/lib${target}.so COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} ${CMAKE_CURRENT_BINARY_DIR}/lib${target}-${LIBVER}.so.0 COMMAND ${CMAKE_COMMAND} -E touch ${target_name} #so the symlinks point to something valid so cmake 2.6 will install ) #and install the extra symlinks install( FILES ${CMAKE_CURRENT_BINARY_DIR}/lib${target}.so ${CMAKE_CURRENT_BINARY_DIR}/lib${target}-${LIBVER}.so.0 DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT} ) endif(LIBRARY_EXTRAS) endfunction(GR_LIBRARY_FOO) ######################################################################## # Create a dummy custom command that depends on other targets. # Usage: # GR_GEN_TARGET_DEPS(unique_name target_deps ...) # ADD_CUSTOM_COMMAND( ${target_deps}) # # Custom command cant depend on targets, but can depend on executables, # and executables can depend on targets. So this is the process: ######################################################################## function(GR_GEN_TARGET_DEPS name var) file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/${name}.cpp.in "int main(void){return 0;}\n" ) execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_BINARY_DIR}/${name}.cpp.in ${CMAKE_CURRENT_BINARY_DIR}/${name}.cpp ) add_executable(${name} ${CMAKE_CURRENT_BINARY_DIR}/${name}.cpp) if(ARGN) add_dependencies(${name} ${ARGN}) endif(ARGN) if(CMAKE_CROSSCOMPILING) set(${var} "DEPENDS;${name}" PARENT_SCOPE) #cant call command when cross else() set(${var} "DEPENDS;${name};COMMAND;${name}" PARENT_SCOPE) endif() endfunction(GR_GEN_TARGET_DEPS) ######################################################################## # Control use of gr_logger # Usage: # GR_LOGGING() # # Will set ENABLE_GR_LOG to 1 by default. # Can manually set with -DENABLE_GR_LOG=0|1 ######################################################################## function(GR_LOGGING) find_package(Log4cpp) OPTION(ENABLE_GR_LOG "Use gr_logger" ON) if(ENABLE_GR_LOG) # If gr_logger is enabled, make it usable add_definitions( -DENABLE_GR_LOG ) # also test LOG4CPP; if we have it, use this version of the logger # otherwise, default to the stdout/stderr model. if(LOG4CPP_FOUND) SET(HAVE_LOG4CPP True CACHE INTERNAL "" FORCE) add_definitions( -DHAVE_LOG4CPP ) else(not LOG4CPP_FOUND) SET(HAVE_LOG4CPP False CACHE INTERNAL "" FORCE) SET(LOG4CPP_INCLUDE_DIRS "" CACHE INTERNAL "" FORCE) SET(LOG4CPP_LIBRARY_DIRS "" CACHE INTERNAL "" FORCE) SET(LOG4CPP_LIBRARIES "" CACHE INTERNAL "" FORCE) endif(LOG4CPP_FOUND) SET(ENABLE_GR_LOG ${ENABLE_GR_LOG} CACHE INTERNAL "" FORCE) else(ENABLE_GR_LOG) SET(HAVE_LOG4CPP False CACHE INTERNAL "" FORCE) SET(LOG4CPP_INCLUDE_DIRS "" CACHE INTERNAL "" FORCE) SET(LOG4CPP_LIBRARY_DIRS "" CACHE INTERNAL "" FORCE) SET(LOG4CPP_LIBRARIES "" CACHE INTERNAL "" FORCE) endif(ENABLE_GR_LOG) message(STATUS "ENABLE_GR_LOG set to ${ENABLE_GR_LOG}.") message(STATUS "HAVE_LOG4CPP set to ${HAVE_LOG4CPP}.") message(STATUS "LOG4CPP_LIBRARIES set to ${LOG4CPP_LIBRARIES}.") endfunction(GR_LOGGING) ######################################################################## # Run GRCC to compile .grc files into .py files. # # Usage: GRCC(filename, directory) # - filenames: List of file name of .grc file # - directory: directory of built .py file - usually in # ${CMAKE_CURRENT_BINARY_DIR} # - Sets PYFILES: output converted GRC file names to Python files. ######################################################################## function(GRCC) # Extract directory from list of args, remove it for the list of filenames. list(GET ARGV -1 directory) list(REMOVE_AT ARGV -1) set(filenames ${ARGV}) file(MAKE_DIRECTORY ${directory}) SET(GRCC_COMMAND ${CMAKE_SOURCE_DIR}/gr-utils/python/grcc) # GRCC uses some stuff in grc and gnuradio-runtime, so we force # the known paths here list(APPEND PYTHONPATHS ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/gnuradio-runtime/python ${CMAKE_SOURCE_DIR}/gnuradio-runtime/lib/swig ${CMAKE_BINARY_DIR}/gnuradio-runtime/lib/swig ) if(WIN32) #SWIG generates the python library files into a subdirectory. #Therefore, we must append this subdirectory into PYTHONPATH. #Only do this for the python directories matching the following: foreach(pydir ${PYTHONPATHS}) get_filename_component(name ${pydir} NAME) if(name MATCHES "^(swig|lib|src)$") list(APPEND PYTHONPATHS ${pydir}/${CMAKE_BUILD_TYPE}) endif() endforeach(pydir) endif(WIN32) file(TO_NATIVE_PATH "${PYTHONPATHS}" pypath) if(UNIX) list(APPEND pypath "$PYTHONPATH") string(REPLACE ";" ":" pypath "${pypath}") set(ENV{PYTHONPATH} ${pypath}) endif(UNIX) if(WIN32) list(APPEND pypath "%PYTHONPATH%") string(REPLACE ";" "\\;" pypath "${pypath}") #list(APPEND environs "PYTHONPATH=${pypath}") set(ENV{PYTHONPATH} ${pypath}) endif(WIN32) foreach(f ${filenames}) execute_process( COMMAND ${GRCC_COMMAND} -d ${directory} ${f} ) string(REPLACE ".grc" ".py" pyfile "${f}") string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}" pyfile "${pyfile}") list(APPEND pyfiles ${pyfile}) endforeach(f) set(PYFILES ${pyfiles} PARENT_SCOPE) endfunction(GRCC) ######################################################################## # Check if HAVE_PTHREAD_SETSCHEDPARAM and HAVE_SCHED_SETSCHEDULER # should be defined ######################################################################## macro(GR_CHECK_LINUX_SCHED_AVAIL) set(CMAKE_REQUIRED_LIBRARIES -lpthread) CHECK_CXX_SOURCE_COMPILES(" #include int main(){ pthread_t pthread; pthread_setschedparam(pthread, 0, 0); return 0; } " HAVE_PTHREAD_SETSCHEDPARAM ) GR_ADD_COND_DEF(HAVE_PTHREAD_SETSCHEDPARAM) CHECK_CXX_SOURCE_COMPILES(" #include int main(){ pid_t pid; sched_setscheduler(pid, 0, 0); return 0; } " HAVE_SCHED_SETSCHEDULER ) GR_ADD_COND_DEF(HAVE_SCHED_SETSCHEDULER) endmacro(GR_CHECK_LINUX_SCHED_AVAIL) ######################################################################## # Macros to generate source and header files from template ######################################################################## macro(GR_EXPAND_X_H component root) include(GrPython) file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py "#!${PYTHON_EXECUTABLE} import sys, os, re sys.path.append('${GR_RUNTIME_PYTHONPATH}') os.environ['srcdir'] = '${CMAKE_CURRENT_SOURCE_DIR}' os.chdir('${CMAKE_CURRENT_BINARY_DIR}') if __name__ == '__main__': import build_utils root, inp = sys.argv[1:3] for sig in sys.argv[3:]: name = re.sub ('X+', sig, root) d = build_utils.standard_dict2(name, sig, '${component}') build_utils.expand_template(d, inp) ") #make a list of all the generated headers unset(expanded_files_h) foreach(sig ${ARGN}) string(REGEX REPLACE "X+" ${sig} name ${root}) list(APPEND expanded_files_h ${CMAKE_CURRENT_BINARY_DIR}/${name}.h) endforeach(sig) unset(name) #create a command to generate the headers add_custom_command( OUTPUT ${expanded_files_h} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${root}.h.t COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py ${root} ${root}.h.t ${ARGN} ) #install rules for the generated headers list(APPEND generated_includes ${expanded_files_h}) endmacro(GR_EXPAND_X_H) macro(GR_EXPAND_X_CC_H component root) include(GrPython) file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py "#!${PYTHON_EXECUTABLE} import sys, os, re sys.path.append('${GR_RUNTIME_PYTHONPATH}') os.environ['srcdir'] = '${CMAKE_CURRENT_SOURCE_DIR}' os.chdir('${CMAKE_CURRENT_BINARY_DIR}') if __name__ == '__main__': import build_utils root, inp = sys.argv[1:3] for sig in sys.argv[3:]: name = re.sub ('X+', sig, root) d = build_utils.standard_impl_dict2(name, sig, '${component}') build_utils.expand_template(d, inp) ") #make a list of all the generated files unset(expanded_files_cc) unset(expanded_files_h) foreach(sig ${ARGN}) string(REGEX REPLACE "X+" ${sig} name ${root}) list(APPEND expanded_files_cc ${CMAKE_CURRENT_BINARY_DIR}/${name}.cc) list(APPEND expanded_files_h ${CMAKE_CURRENT_BINARY_DIR}/${name}.h) endforeach(sig) unset(name) #create a command to generate the source files add_custom_command( OUTPUT ${expanded_files_cc} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${root}.cc.t COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py ${root} ${root}.cc.t ${ARGN} ) #create a command to generate the header files add_custom_command( OUTPUT ${expanded_files_h} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${root}.h.t COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py ${root} ${root}.h.t ${ARGN} ) #make source files depends on headers to force generation set_source_files_properties(${expanded_files_cc} PROPERTIES OBJECT_DEPENDS "${expanded_files_h}" ) #install rules for the generated files list(APPEND generated_sources ${expanded_files_cc}) list(APPEND generated_headers ${expanded_files_h}) endmacro(GR_EXPAND_X_CC_H) macro(GR_EXPAND_X_CC_H_IMPL component root) include(GrPython) file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py "#!${PYTHON_EXECUTABLE} import sys, os, re sys.path.append('${GR_RUNTIME_PYTHONPATH}') os.environ['srcdir'] = '${CMAKE_CURRENT_SOURCE_DIR}' os.chdir('${CMAKE_CURRENT_BINARY_DIR}') if __name__ == '__main__': import build_utils root, inp = sys.argv[1:3] for sig in sys.argv[3:]: name = re.sub ('X+', sig, root) d = build_utils.standard_dict(name, sig, '${component}') build_utils.expand_template(d, inp, '_impl') ") #make a list of all the generated files unset(expanded_files_cc_impl) unset(expanded_files_h_impl) unset(expanded_files_h) foreach(sig ${ARGN}) string(REGEX REPLACE "X+" ${sig} name ${root}) list(APPEND expanded_files_cc_impl ${CMAKE_CURRENT_BINARY_DIR}/${name}_impl.cc) list(APPEND expanded_files_h_impl ${CMAKE_CURRENT_BINARY_DIR}/${name}_impl.h) list(APPEND expanded_files_h ${CMAKE_CURRENT_BINARY_DIR}/../include/gnuradio/${component}/${name}.h) endforeach(sig) unset(name) #create a command to generate the _impl.cc files add_custom_command( OUTPUT ${expanded_files_cc_impl} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${root}_impl.cc.t COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py ${root} ${root}_impl.cc.t ${ARGN} ) #create a command to generate the _impl.h files add_custom_command( OUTPUT ${expanded_files_h_impl} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${root}_impl.h.t COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${CMAKE_CURRENT_BINARY_DIR}/generate_helper.py ${root} ${root}_impl.h.t ${ARGN} ) #make _impl.cc source files depend on _impl.h to force generation set_source_files_properties(${expanded_files_cc_impl} PROPERTIES OBJECT_DEPENDS "${expanded_files_h_impl}" ) #make _impl.h source files depend on headers to force generation set_source_files_properties(${expanded_files_h_impl} PROPERTIES OBJECT_DEPENDS "${expanded_files_h}" ) #install rules for the generated files list(APPEND generated_sources ${expanded_files_cc_impl}) list(APPEND generated_headers ${expanded_files_h_impl}) endmacro(GR_EXPAND_X_CC_H_IMPL) gnuradio-3.7.11/cmake/Modules/GrPackage.cmake0000664000175000017500000001534213055131744020573 0ustar jcorganjcorgan# Copyright 2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_PACKAGE_CMAKE) return() endif() set(__INCLUDED_GR_PACKAGE_CMAKE TRUE) include(GrVersion) #sets version information include(GrPlatform) #sets platform information #set the cpack generator based on the platform type if(CPACK_GENERATOR) #already set by user elseif(APPLE) set(CPACK_GENERATOR PackageMaker) elseif(WIN32) set(CPACK_GENERATOR NSIS) elseif(DEBIAN) set(CPACK_GENERATOR DEB) elseif(REDHAT) set(CPACK_GENERATOR RPM) else() set(CPACK_GENERATOR TGZ) endif() ######################################################################## # CPACK_SET - set a global variable and record the variable name ######################################################################## function(CPACK_SET var) set(${var} ${ARGN} CACHE INTERNAL "") list(APPEND _cpack_vars ${var}) list(REMOVE_DUPLICATES _cpack_vars) set(_cpack_vars ${_cpack_vars} CACHE INTERNAL "") endfunction(CPACK_SET) ######################################################################## # CPACK_FINALIZE - include cpack and the unset all the cpack variables ######################################################################## function(CPACK_FINALIZE) #set the package depends for monolithic package foreach(comp ${CPACK_COMPONENTS_ALL}) string(TOUPPER "PACKAGE_DEPENDS_${comp}" package_depends_var) list(APPEND PACKAGE_DEPENDS_ALL ${${package_depends_var}}) endforeach(comp) string(REPLACE ";" ", " CPACK_DEBIAN_PACKAGE_DEPENDS "${PACKAGE_DEPENDS_ALL}") string(REPLACE ";" ", " CPACK_RPM_PACKAGE_REQUIRES "${PACKAGE_DEPENDS_ALL}") include(CPack) #finalize the cpack settings configured throughout the build system foreach(var ${_cpack_vars}) unset(${var} CACHE) endforeach(var) unset(_cpack_vars CACHE) endfunction(CPACK_FINALIZE) ######################################################################## # CPACK_COMPONENT - convenience function to create a cpack component # # Usage: CPACK_COMPONENT( # name # [GROUP group] # [DISPLAY_NAME display_name] # [DESCRIPTION description] # [DEPENDS depends] # ) ######################################################################## function(CPACK_COMPONENT name) include(CMakeParseArgumentsCopy) set(_options GROUP DISPLAY_NAME DESCRIPTION DEPENDS) CMAKE_PARSE_ARGUMENTS(CPACK_COMPONENT "" "${_options}" "" ${ARGN}) string(TOUPPER "${name}" name_upper) foreach(_option ${_options}) if(CPACK_COMPONENT_${_option}) CPACK_SET(CPACK_COMPONENT_${name_upper}_${_option} "${CPACK_COMPONENT_${_option}}") endif() endforeach(_option) CPACK_SET(CPACK_COMPONENTS_ALL "${CPACK_COMPONENTS_ALL};${name}") endfunction(CPACK_COMPONENT) ######################################################################## # Setup CPack ######################################################################## set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "GNU Radio - The GNU Software Radio") set(CPACK_PACKAGE_VENDOR "Free Software Foundation, Inc.") set(CPACK_PACKAGE_CONTACT "Discuss GNURadio ") string(REPLACE "v" "" CPACK_PACKAGE_VERSION ${VERSION}) set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/README) set(CPACK_RESOURCE_FILE_README ${CMAKE_SOURCE_DIR}/README) set(CPACK_RESOURCE_FILE_WELCOME ${CMAKE_SOURCE_DIR}/README) find_program(LSB_RELEASE_EXECUTABLE lsb_release) if((DEBIAN OR REDHAT) AND LSB_RELEASE_EXECUTABLE) #extract system information by executing the commands execute_process( COMMAND ${LSB_RELEASE_EXECUTABLE} --short --id OUTPUT_VARIABLE LSB_ID OUTPUT_STRIP_TRAILING_WHITESPACE ) execute_process( COMMAND ${LSB_RELEASE_EXECUTABLE} --short --release OUTPUT_VARIABLE LSB_RELEASE OUTPUT_STRIP_TRAILING_WHITESPACE ) #set a more sensible package name for this system SET(CPACK_PACKAGE_FILE_NAME "gnuradio_${CPACK_PACKAGE_VERSION}_${LSB_ID}-${LSB_RELEASE}-${CMAKE_SYSTEM_PROCESSOR}") #now try to include the component based dependencies set(package_deps_file "${CMAKE_SOURCE_DIR}/cmake/Packaging/${LSB_ID}-${LSB_RELEASE}.cmake") if (EXISTS ${package_deps_file}) include(${package_deps_file}) endif() endif() if(${CPACK_GENERATOR} STREQUAL NSIS) ENABLE_LANGUAGE(C) include(CheckTypeSize) check_type_size("void*[8]" BIT_WIDTH BUILTIN_TYPES_ONLY) SET(CPACK_PACKAGE_FILE_NAME "gnuradio_${CPACK_PACKAGE_VERSION}_Win${BIT_WIDTH}") set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CMAKE_PROJECT_NAME}") endif() ######################################################################## # DEB package specific ######################################################################## foreach(filename preinst postinst prerm postrm) list(APPEND CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA ${CMAKE_BINARY_DIR}/Packaging/${filename}) file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/Packaging) configure_file( ${CMAKE_SOURCE_DIR}/cmake/Packaging/${filename}.in ${CMAKE_BINARY_DIR}/Packaging/${filename} @ONLY) endforeach(filename) ######################################################################## # RPM package specific ######################################################################## foreach(filename post_install post_uninstall pre_install pre_uninstall) string(TOUPPER ${filename} filename_upper) list(APPEND CPACK_RPM_${filename_upper}_SCRIPT_FILE ${CMAKE_BINARY_DIR}/Packaging/${filename}) file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/Packaging) configure_file( ${CMAKE_SOURCE_DIR}/cmake/Packaging/${filename}.in ${CMAKE_BINARY_DIR}/Packaging/${filename} @ONLY) endforeach(filename) ######################################################################## # NSIS package specific ######################################################################## set(CPACK_NSIS_MODIFY_PATH ON) set(HLKM_ENV "\\\"SYSTEM\\\\CurrentControlSet\\\\Control\\\\Session Manager\\\\Environment\\\"") IF(WIN32) #Install necessary runtime DLL's INCLUDE(InstallRequiredSystemLibraries) ENDIF(WIN32) gnuradio-3.7.11/cmake/Modules/GrPlatform.cmake0000664000175000017500000000416313055131744021023 0ustar jcorganjcorgan# Copyright 2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_PLATFORM_CMAKE) return() endif() set(__INCLUDED_GR_PLATFORM_CMAKE TRUE) ######################################################################## # Setup additional defines for OS types ######################################################################## if(CMAKE_SYSTEM_NAME STREQUAL "Linux") set(LINUX TRUE) endif() if(NOT CMAKE_CROSSCOMPILING AND LINUX AND EXISTS "/etc/debian_version") set(DEBIAN TRUE) endif() if(NOT CMAKE_CROSSCOMPILING AND LINUX AND EXISTS "/etc/redhat-release") set(REDHAT TRUE) endif() if(NOT CMAKE_CROSSCOMPILING AND LINUX AND EXISTS "/etc/slackware-version") set(SLACKWARE TRUE) endif() ######################################################################## # when the library suffix should be 64 (applies to redhat linux family) ######################################################################## if (REDHAT OR SLACKWARE) set(LIB64_CONVENTION TRUE) endif() if(NOT DEFINED LIB_SUFFIX AND LIB64_CONVENTION AND CMAKE_SYSTEM_PROCESSOR MATCHES "64$") set(LIB_SUFFIX 64) endif() ######################################################################## # Detect /lib versus /lib64 ######################################################################## if (CMAKE_INSTALL_LIBDIR MATCHES lib64) set(LIB_SUFFIX 64) endif() set(LIB_SUFFIX ${LIB_SUFFIX} CACHE STRING "lib directory suffix") gnuradio-3.7.11/cmake/Modules/GrPython.cmake0000664000175000017500000002277013055131744020524 0ustar jcorganjcorgan# Copyright 2010-2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_PYTHON_CMAKE) return() endif() set(__INCLUDED_GR_PYTHON_CMAKE TRUE) ######################################################################## # Setup the python interpreter: # This allows the user to specify a specific interpreter, # or finds the interpreter via the built-in cmake module. ######################################################################## #this allows the user to override PYTHON_EXECUTABLE if(PYTHON_EXECUTABLE) set(PYTHONINTERP_FOUND TRUE) #otherwise if not set, try to automatically find it else(PYTHON_EXECUTABLE) #use the built-in find script find_package(PythonInterp 2) #and if that fails use the find program routine if(NOT PYTHONINTERP_FOUND) find_program(PYTHON_EXECUTABLE NAMES python python2 python2.7 python2.6 python2.5) if(PYTHON_EXECUTABLE) set(PYTHONINTERP_FOUND TRUE) endif(PYTHON_EXECUTABLE) endif(NOT PYTHONINTERP_FOUND) endif(PYTHON_EXECUTABLE) if (CMAKE_CROSSCOMPILING) set(QA_PYTHON_EXECUTABLE "/usr/bin/python") else (CMAKE_CROSSCOMPILING) set(QA_PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE}) endif(CMAKE_CROSSCOMPILING) #make the path to the executable appear in the cmake gui set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE} CACHE FILEPATH "python interpreter") set(QA_PYTHON_EXECUTABLE ${QA_PYTHON_EXECUTABLE} CACHE FILEPATH "python interpreter for QA tests") #make sure we can use -B with python (introduced in 2.6) if(PYTHON_EXECUTABLE) execute_process( COMMAND ${PYTHON_EXECUTABLE} -B -c "" OUTPUT_QUIET ERROR_QUIET RESULT_VARIABLE PYTHON_HAS_DASH_B_RESULT ) if(PYTHON_HAS_DASH_B_RESULT EQUAL 0) set(PYTHON_DASH_B "-B") endif() endif(PYTHON_EXECUTABLE) ######################################################################## # Check for the existence of a python module: # - desc a string description of the check # - mod the name of the module to import # - cmd an additional command to run # - have the result variable to set ######################################################################## macro(GR_PYTHON_CHECK_MODULE desc mod cmd have) message(STATUS "") message(STATUS "Python checking for ${desc}") execute_process( COMMAND ${PYTHON_EXECUTABLE} -c " ######################################### try: import ${mod} assert ${cmd} except ImportError, AssertionError: exit(-1) except: pass #########################################" RESULT_VARIABLE ${have} ) if(${have} EQUAL 0) message(STATUS "Python checking for ${desc} - found") set(${have} TRUE) else(${have} EQUAL 0) message(STATUS "Python checking for ${desc} - not found") set(${have} FALSE) endif(${have} EQUAL 0) endmacro(GR_PYTHON_CHECK_MODULE) ######################################################################## # Sets the python installation directory GR_PYTHON_DIR ######################################################################## if(NOT DEFINED GR_PYTHON_DIR) execute_process(COMMAND ${PYTHON_EXECUTABLE} -c " from distutils import sysconfig print sysconfig.get_python_lib(plat_specific=True, prefix='') " OUTPUT_VARIABLE GR_PYTHON_DIR OUTPUT_STRIP_TRAILING_WHITESPACE ) endif() file(TO_CMAKE_PATH ${GR_PYTHON_DIR} GR_PYTHON_DIR) ######################################################################## # Create an always-built target with a unique name # Usage: GR_UNIQUE_TARGET( ) ######################################################################## function(GR_UNIQUE_TARGET desc) file(RELATIVE_PATH reldir ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}) execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import re, hashlib unique = hashlib.md5('${reldir}${ARGN}').hexdigest()[:5] print(re.sub('\\W', '_', '${desc} ${reldir} ' + unique))" OUTPUT_VARIABLE _target OUTPUT_STRIP_TRAILING_WHITESPACE) add_custom_target(${_target} ALL DEPENDS ${ARGN}) endfunction(GR_UNIQUE_TARGET) ######################################################################## # Install python sources (also builds and installs byte-compiled python) ######################################################################## function(GR_PYTHON_INSTALL) include(CMakeParseArgumentsCopy) CMAKE_PARSE_ARGUMENTS(GR_PYTHON_INSTALL "" "DESTINATION;COMPONENT" "FILES;PROGRAMS" ${ARGN}) #################################################################### if(GR_PYTHON_INSTALL_FILES) #################################################################### install(${ARGN}) #installs regular python files #create a list of all generated files unset(pysrcfiles) unset(pycfiles) unset(pyofiles) foreach(pyfile ${GR_PYTHON_INSTALL_FILES}) get_filename_component(pyfile ${pyfile} ABSOLUTE) list(APPEND pysrcfiles ${pyfile}) #determine if this file is in the source or binary directory file(RELATIVE_PATH source_rel_path ${CMAKE_CURRENT_SOURCE_DIR} ${pyfile}) string(LENGTH "${source_rel_path}" source_rel_path_len) file(RELATIVE_PATH binary_rel_path ${CMAKE_CURRENT_BINARY_DIR} ${pyfile}) string(LENGTH "${binary_rel_path}" binary_rel_path_len) #and set the generated path appropriately if(${source_rel_path_len} GREATER ${binary_rel_path_len}) set(pygenfile ${CMAKE_CURRENT_BINARY_DIR}/${binary_rel_path}) else() set(pygenfile ${CMAKE_CURRENT_BINARY_DIR}/${source_rel_path}) endif() list(APPEND pycfiles ${pygenfile}c) list(APPEND pyofiles ${pygenfile}o) #ensure generation path exists get_filename_component(pygen_path ${pygenfile} PATH) file(MAKE_DIRECTORY ${pygen_path}) endforeach(pyfile) #the command to generate the pyc files add_custom_command( DEPENDS ${pysrcfiles} OUTPUT ${pycfiles} COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_BINARY_DIR}/python_compile_helper.py ${pysrcfiles} ${pycfiles} ) #the command to generate the pyo files add_custom_command( DEPENDS ${pysrcfiles} OUTPUT ${pyofiles} COMMAND ${PYTHON_EXECUTABLE} -O ${CMAKE_BINARY_DIR}/python_compile_helper.py ${pysrcfiles} ${pyofiles} ) #create install rule and add generated files to target list set(python_install_gen_targets ${pycfiles} ${pyofiles}) install(FILES ${python_install_gen_targets} DESTINATION ${GR_PYTHON_INSTALL_DESTINATION} COMPONENT ${GR_PYTHON_INSTALL_COMPONENT} ) #################################################################### elseif(GR_PYTHON_INSTALL_PROGRAMS) #################################################################### file(TO_NATIVE_PATH ${PYTHON_EXECUTABLE} pyexe_native) if (CMAKE_CROSSCOMPILING) set(pyexe_native "/usr/bin/env python") endif() foreach(pyfile ${GR_PYTHON_INSTALL_PROGRAMS}) get_filename_component(pyfile_name ${pyfile} NAME) get_filename_component(pyfile ${pyfile} ABSOLUTE) string(REPLACE "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" pyexefile "${pyfile}.exe") list(APPEND python_install_gen_targets ${pyexefile}) get_filename_component(pyexefile_path ${pyexefile} PATH) file(MAKE_DIRECTORY ${pyexefile_path}) add_custom_command( OUTPUT ${pyexefile} DEPENDS ${pyfile} COMMAND ${PYTHON_EXECUTABLE} -c "import re; R=re.compile('^\#!.*$\\n',flags=re.MULTILINE); open('${pyexefile}','w').write('\#!${pyexe_native}\\n'+R.sub('',open('${pyfile}','r').read()))" COMMENT "Shebangin ${pyfile_name}" VERBATIM ) #on windows, python files need an extension to execute get_filename_component(pyfile_ext ${pyfile} EXT) if(WIN32 AND NOT pyfile_ext) set(pyfile_name "${pyfile_name}.py") endif() install(PROGRAMS ${pyexefile} RENAME ${pyfile_name} DESTINATION ${GR_PYTHON_INSTALL_DESTINATION} COMPONENT ${GR_PYTHON_INSTALL_COMPONENT} ) endforeach(pyfile) endif() GR_UNIQUE_TARGET("pygen" ${python_install_gen_targets}) endfunction(GR_PYTHON_INSTALL) ######################################################################## # Write the python helper script that generates byte code files ######################################################################## file(WRITE ${CMAKE_BINARY_DIR}/python_compile_helper.py " import sys, py_compile files = sys.argv[1:] srcs, gens = files[:len(files)/2], files[len(files)/2:] for src, gen in zip(srcs, gens): py_compile.compile(file=src, cfile=gen, doraise=True) ") gnuradio-3.7.11/cmake/Modules/GrSetupQt4.cmake0000664000175000017500000001502513055131744020727 0ustar jcorganjcorgan# Copyright 2013 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_USEQT4_CMAKE) return() endif() set(__INCLUDED_GR_USEQT4_CMAKE TRUE) # This file is derived from the default "UseQt4" file provided by # CMake. This version sets the variables "QT_INCLUDE_DIRS", # "QT_LIBRARIES", and "QT_LIBRARIES_PLUGINS" depending on those # requested during the "find_package(Qt4 ...)" function call, but # without actually adding them to the include or library search # directories ("include_directories" or "link_directories"). The # adding in is done by the CMakeLists.txt build scripts in the using # project. # Copyright from the original file, as required by the license. ################################################################ # CMake - Cross Platform Makefile Generator # Copyright 2000-2011 Kitware, Inc., Insight Software Consortium # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # * Neither the names of Kitware, Inc., the Insight Software Consortium, # nor the names of their contributors may be used to endorse or promote # products derived from this software without specific prior written # permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ################################################################ ADD_DEFINITIONS(${QT_DEFINITIONS}) SET_PROPERTY(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_DEBUG QT_DEBUG) SET_PROPERTY(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_RELEASE QT_NO_DEBUG) SET_PROPERTY(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_RELWITHDEBINFO QT_NO_DEBUG) SET_PROPERTY(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_MINSIZEREL QT_NO_DEBUG) IF(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) SET_PROPERTY(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_DEBUG) ENDIF() SET(QT_INCLUDE_DIRS ${QT_INCLUDE_DIR}) SET(QT_LIBRARIES "") SET(QT_LIBRARIES_PLUGINS "") IF (QT_USE_QTMAIN) IF (Q_WS_WIN) SET(QT_LIBRARIES ${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY}) ENDIF (Q_WS_WIN) ENDIF (QT_USE_QTMAIN) IF(QT_DONT_USE_QTGUI) SET(QT_USE_QTGUI 0) ELSE(QT_DONT_USE_QTGUI) SET(QT_USE_QTGUI 1) ENDIF(QT_DONT_USE_QTGUI) IF(QT_DONT_USE_QTCORE) SET(QT_USE_QTCORE 0) ELSE(QT_DONT_USE_QTCORE) SET(QT_USE_QTCORE 1) ENDIF(QT_DONT_USE_QTCORE) IF (QT_USE_QT3SUPPORT) ADD_DEFINITIONS(-DQT3_SUPPORT) ENDIF (QT_USE_QT3SUPPORT) # list dependent modules, so dependent libraries are added SET(QT_QT3SUPPORT_MODULE_DEPENDS QTGUI QTSQL QTXML QTNETWORK QTCORE) SET(QT_QTSVG_MODULE_DEPENDS QTGUI QTXML QTCORE) SET(QT_QTUITOOLS_MODULE_DEPENDS QTGUI QTXML QTCORE) SET(QT_QTHELP_MODULE_DEPENDS QTGUI QTSQL QTXML QTNETWORK QTCORE) IF(QT_QTDBUS_FOUND) SET(QT_PHONON_MODULE_DEPENDS QTGUI QTDBUS QTCORE) ELSE(QT_QTDBUS_FOUND) SET(QT_PHONON_MODULE_DEPENDS QTGUI QTCORE) ENDIF(QT_QTDBUS_FOUND) SET(QT_QTDBUS_MODULE_DEPENDS QTXML QTCORE) SET(QT_QTXMLPATTERNS_MODULE_DEPENDS QTNETWORK QTCORE) SET(QT_QAXCONTAINER_MODULE_DEPENDS QTGUI QTCORE) SET(QT_QAXSERVER_MODULE_DEPENDS QTGUI QTCORE) SET(QT_QTSCRIPTTOOLS_MODULE_DEPENDS QTGUI QTCORE) SET(QT_QTWEBKIT_MODULE_DEPENDS QTXMLPATTERNS QTGUI QTCORE) SET(QT_QTDECLARATIVE_MODULE_DEPENDS QTSCRIPT QTSVG QTSQL QTXMLPATTERNS QTGUI QTCORE) SET(QT_QTMULTIMEDIA_MODULE_DEPENDS QTGUI QTCORE) SET(QT_QTOPENGL_MODULE_DEPENDS QTGUI QTCORE) SET(QT_QTSCRIPT_MODULE_DEPENDS QTCORE) SET(QT_QTGUI_MODULE_DEPENDS QTCORE) SET(QT_QTTEST_MODULE_DEPENDS QTCORE) SET(QT_QTXML_MODULE_DEPENDS QTCORE) SET(QT_QTSQL_MODULE_DEPENDS QTCORE) SET(QT_QTNETWORK_MODULE_DEPENDS QTCORE) # Qt modules (in order of dependence) FOREACH(module QT3SUPPORT QTOPENGL QTASSISTANT QTDESIGNER QTMOTIF QTNSPLUGIN QAXSERVER QAXCONTAINER QTDECLARATIVE QTSCRIPT QTSVG QTUITOOLS QTHELP QTWEBKIT PHONON QTSCRIPTTOOLS QTMULTIMEDIA QTXMLPATTERNS QTGUI QTTEST QTDBUS QTXML QTSQL QTNETWORK QTCORE) IF (QT_USE_${module} OR QT_USE_${module}_DEPENDS) IF (QT_${module}_FOUND) IF(QT_USE_${module}) STRING(REPLACE "QT" "" qt_module_def "${module}") ADD_DEFINITIONS(-DQT_${qt_module_def}_LIB) SET(QT_INCLUDE_DIRS ${QT_INCLUDE_DIRS} ${QT_${module}_INCLUDE_DIR}) ENDIF(QT_USE_${module}) SET(QT_LIBRARIES ${QT_LIBRARIES} ${QT_${module}_LIBRARY}) SET(QT_LIBRARIES_PLUGINS ${QT_LIBRARIES_PLUGINS} ${QT_${module}_PLUGINS}) IF(QT_IS_STATIC) SET(QT_LIBRARIES ${QT_LIBRARIES} ${QT_${module}_LIB_DEPENDENCIES}) ENDIF(QT_IS_STATIC) FOREACH(depend_module ${QT_${module}_MODULE_DEPENDS}) SET(QT_USE_${depend_module}_DEPENDS 1) ENDFOREACH(depend_module ${QT_${module}_MODULE_DEPENDS}) ELSE (QT_${module}_FOUND) MESSAGE("Qt ${module} library not found.") ENDIF (QT_${module}_FOUND) ENDIF (QT_USE_${module} OR QT_USE_${module}_DEPENDS) ENDFOREACH(module) gnuradio-3.7.11/cmake/Modules/GrSwig.cmake0000664000175000017500000002543313055131744020153 0ustar jcorganjcorgan# Copyright 2010-2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_SWIG_CMAKE) return() endif() set(__INCLUDED_GR_SWIG_CMAKE TRUE) include(GrPython) ######################################################################## # Builds a swig documentation file to be generated into python docstrings # Usage: GR_SWIG_MAKE_DOCS(output_file input_path input_path....) # # Set the following variable to specify extra dependent targets: # - GR_SWIG_DOCS_SOURCE_DEPS # - GR_SWIG_DOCS_TARGET_DEPS ######################################################################## function(GR_SWIG_MAKE_DOCS output_file) if(ENABLE_DOXYGEN) #setup the input files variable list, quote formated set(input_files) unset(INPUT_PATHS) foreach(input_path ${ARGN}) if(IS_DIRECTORY ${input_path}) #when input path is a directory file(GLOB input_path_h_files ${input_path}/*.h) else() #otherwise its just a file, no glob set(input_path_h_files ${input_path}) endif() list(APPEND input_files ${input_path_h_files}) set(INPUT_PATHS "${INPUT_PATHS} \"${input_path}\"") endforeach(input_path) #determine the output directory get_filename_component(name ${output_file} NAME_WE) get_filename_component(OUTPUT_DIRECTORY ${output_file} PATH) set(OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY}/${name}_swig_docs) make_directory(${OUTPUT_DIRECTORY}) #generate the Doxyfile used by doxygen configure_file( ${CMAKE_SOURCE_DIR}/docs/doxygen/Doxyfile.swig_doc.in ${OUTPUT_DIRECTORY}/Doxyfile @ONLY) #Create a dummy custom command that depends on other targets include(GrMiscUtils) GR_GEN_TARGET_DEPS(_${name}_tag tag_deps ${GR_SWIG_DOCS_TARGET_DEPS}) #call doxygen on the Doxyfile + input headers add_custom_command( OUTPUT ${OUTPUT_DIRECTORY}/xml/index.xml DEPENDS ${input_files} ${GR_SWIG_DOCS_SOURCE_DEPS} ${tag_deps} COMMAND ${DOXYGEN_EXECUTABLE} ${OUTPUT_DIRECTORY}/Doxyfile COMMENT "Generating doxygen xml for ${name} docs" ) #call the swig_doc script on the xml files add_custom_command( OUTPUT ${output_file} DEPENDS ${input_files} ${stamp-file} ${OUTPUT_DIRECTORY}/xml/index.xml COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${CMAKE_SOURCE_DIR}/docs/doxygen/swig_doc.py ${OUTPUT_DIRECTORY}/xml ${output_file} COMMENT "Generating python docstrings for ${name}" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/docs/doxygen ) else(ENABLE_DOXYGEN) file(WRITE ${output_file} "\n") #no doxygen -> empty file endif(ENABLE_DOXYGEN) endfunction(GR_SWIG_MAKE_DOCS) ######################################################################## # Build a swig target for the common gnuradio use case. Usage: # GR_SWIG_MAKE(target ifile ifile ifile...) # # Set the following variables before calling: # - GR_SWIG_FLAGS # - GR_SWIG_INCLUDE_DIRS # - GR_SWIG_LIBRARIES # - GR_SWIG_SOURCE_DEPS # - GR_SWIG_TARGET_DEPS # - GR_SWIG_DOC_FILE # - GR_SWIG_DOC_DIRS ######################################################################## macro(GR_SWIG_MAKE name) set(ifiles ${ARGN}) # Take care of a SWIG < 3.0 bug with handling std::vector, # by mapping to the correct sized type on the runtime system, one # of "unsigned int", "unsigned long", or "unsigned long long". # Compare the sizeof(size_t) with the sizeof the other types, and # pick the first one in the list with the same sizeof. The logic # in gnuradio-runtime/swig/gr_types.i handles the rest. It is # probably not necessary to do this assignment all of the time, # but it's easier to do it this way than to figure out the # conditions when it is necessary -- and doing it this way won't # hurt. This bug seems to have been fixed with SWIG >= 3.0, and # mostly happens when not doing a native build (e.g., on Mac OS X # when using a 64-bit CPU but building for 32-bit). if(SWIG_VERSION VERSION_LESS "3.0.0") include(CheckTypeSize) check_type_size("size_t" SIZEOF_SIZE_T) check_type_size("unsigned int" SIZEOF_UINT) check_type_size("unsigned long" SIZEOF_UL) check_type_size("unsigned long long" SIZEOF_ULL) if(${SIZEOF_SIZE_T} EQUAL ${SIZEOF_UINT}) list(APPEND GR_SWIG_FLAGS -DSIZE_T_UINT) elseif(${SIZEOF_SIZE_T} EQUAL ${SIZEOF_UL}) list(APPEND GR_SWIG_FLAGS -DSIZE_T_UL) elseif(${SIZEOF_SIZE_T} EQUAL ${SIZEOF_ULL}) list(APPEND GR_SWIG_FLAGS -DSIZE_T_ULL) else() message(FATAL_ERROR "GrSwig: Unable to find replace for std::vector; this should never happen!") endif() endif() #do swig doc generation if specified if(GR_SWIG_DOC_FILE) set(GR_SWIG_DOCS_SOURCE_DEPS ${GR_SWIG_SOURCE_DEPS}) list(APPEND GR_SWIG_DOCS_TARGET_DEPS ${GR_SWIG_TARGET_DEPS}) GR_SWIG_MAKE_DOCS(${GR_SWIG_DOC_FILE} ${GR_SWIG_DOC_DIRS}) add_custom_target(${name}_swig_doc DEPENDS ${GR_SWIG_DOC_FILE}) list(APPEND GR_SWIG_TARGET_DEPS ${name}_swig_doc ${GR_RUNTIME_SWIG_DOC_FILE}) endif() #append additional include directories find_package(PythonLibs 2) list(APPEND GR_SWIG_INCLUDE_DIRS ${PYTHON_INCLUDE_PATH}) #deprecated name (now dirs) list(APPEND GR_SWIG_INCLUDE_DIRS ${PYTHON_INCLUDE_DIRS}) #prepend local swig directories list(INSERT GR_SWIG_INCLUDE_DIRS 0 ${CMAKE_CURRENT_SOURCE_DIR}) list(INSERT GR_SWIG_INCLUDE_DIRS 0 ${CMAKE_CURRENT_BINARY_DIR}) #determine include dependencies for swig file execute_process( COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_BINARY_DIR}/get_swig_deps.py "${ifiles}" "${GR_SWIG_INCLUDE_DIRS}" OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE SWIG_MODULE_${name}_EXTRA_DEPS WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) #Create a dummy custom command that depends on other targets include(GrMiscUtils) GR_GEN_TARGET_DEPS(_${name}_swig_tag tag_deps ${GR_SWIG_TARGET_DEPS}) set(tag_file ${CMAKE_CURRENT_BINARY_DIR}/${name}.tag) add_custom_command( OUTPUT ${tag_file} DEPENDS ${GR_SWIG_SOURCE_DEPS} ${tag_deps} COMMAND ${CMAKE_COMMAND} -E touch ${tag_file} ) #append the specified include directories include_directories(${GR_SWIG_INCLUDE_DIRS}) list(APPEND SWIG_MODULE_${name}_EXTRA_DEPS ${tag_file}) #setup the swig flags with flags and include directories set(CMAKE_SWIG_FLAGS -fvirtual -modern -keyword -w511 -module ${name} ${GR_SWIG_FLAGS}) foreach(dir ${GR_SWIG_INCLUDE_DIRS}) list(APPEND CMAKE_SWIG_FLAGS "-I${dir}") endforeach(dir) #set the C++ property on the swig .i file so it builds set_source_files_properties(${ifiles} PROPERTIES CPLUSPLUS ON) #setup the actual swig library target to be built include(UseSWIG) SWIG_ADD_MODULE(${name} python ${ifiles}) if(APPLE) set(PYTHON_LINK_OPTIONS "-undefined dynamic_lookup") else() set(PYTHON_LINK_OPTIONS ${PYTHON_LIBRARIES}) endif(APPLE) SWIG_LINK_LIBRARIES(${name} ${PYTHON_LINK_OPTIONS} ${GR_SWIG_LIBRARIES}) if(${name} STREQUAL "runtime_swig") SET_TARGET_PROPERTIES(${SWIG_MODULE_runtime_swig_REAL_NAME} PROPERTIES DEFINE_SYMBOL "gnuradio_runtime_EXPORTS") endif(${name} STREQUAL "runtime_swig") endmacro(GR_SWIG_MAKE) ######################################################################## # Install swig targets generated by GR_SWIG_MAKE. Usage: # GR_SWIG_INSTALL( # TARGETS target target target... # [DESTINATION destination] # [COMPONENT component] # ) ######################################################################## macro(GR_SWIG_INSTALL) include(CMakeParseArgumentsCopy) CMAKE_PARSE_ARGUMENTS(GR_SWIG_INSTALL "" "DESTINATION;COMPONENT" "TARGETS" ${ARGN}) foreach(name ${GR_SWIG_INSTALL_TARGETS}) install(TARGETS ${SWIG_MODULE_${name}_REAL_NAME} DESTINATION ${GR_SWIG_INSTALL_DESTINATION} COMPONENT ${GR_SWIG_INSTALL_COMPONENT} ) include(GrPython) GR_PYTHON_INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${name}.py DESTINATION ${GR_SWIG_INSTALL_DESTINATION} COMPONENT ${GR_SWIG_INSTALL_COMPONENT} ) GR_LIBTOOL( TARGET ${SWIG_MODULE_${name}_REAL_NAME} DESTINATION ${GR_SWIG_INSTALL_DESTINATION} ) endforeach(name) endmacro(GR_SWIG_INSTALL) ######################################################################## # Generate a python file that can determine swig dependencies. # Used by the make macro above to determine extra dependencies. # When you build C++, CMake figures out the header dependencies. # This code essentially performs that logic for swig includes. ######################################################################## file(WRITE ${CMAKE_BINARY_DIR}/get_swig_deps.py " import os, sys, re i_include_matcher = re.compile('%(include|import)\\s*[<|\"](.*)[>|\"]') h_include_matcher = re.compile('#(include)\\s*[<|\"](.*)[>|\"]') include_dirs = sys.argv[2].split(';') def get_swig_incs(file_path): if file_path.endswith('.i'): matcher = i_include_matcher else: matcher = h_include_matcher file_contents = open(file_path, 'r').read() return matcher.findall(file_contents, re.MULTILINE) def get_swig_deps(file_path, level): deps = [file_path] if level == 0: return deps for keyword, inc_file in get_swig_incs(file_path): for inc_dir in include_dirs: inc_path = os.path.join(inc_dir, inc_file) if not os.path.exists(inc_path): continue deps.extend(get_swig_deps(inc_path, level-1)) break #found, we dont search in lower prio inc dirs return deps if __name__ == '__main__': ifiles = sys.argv[1].split(';') deps = sum([get_swig_deps(ifile, 3) for ifile in ifiles], []) #sys.stderr.write(';'.join(set(deps)) + '\\n\\n') print(';'.join(set(deps))) ") gnuradio-3.7.11/cmake/Modules/GrTest.cmake0000664000175000017500000001336013055131744020155 0ustar jcorganjcorgan# Copyright 2010-2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_TEST_CMAKE) return() endif() set(__INCLUDED_GR_TEST_CMAKE TRUE) ######################################################################## # Add a unit test and setup the environment for a unit test. # Takes the same arguments as the ADD_TEST function. # # Before calling set the following variables: # GR_TEST_TARGET_DEPS - built targets for the library path # GR_TEST_LIBRARY_DIRS - directories for the library path # GR_TEST_PYTHON_DIRS - directories for the python path # GR_TEST_ENVIRONS - other environment key/value pairs ######################################################################## function(GR_ADD_TEST test_name) #Ensure that the build exe also appears in the PATH. list(APPEND GR_TEST_TARGET_DEPS ${ARGN}) #In the land of windows, all libraries must be in the PATH. #Since the dependent libraries are not yet installed, #we must manually set them in the PATH to run tests. #The following appends the path of a target dependency. foreach(target ${GR_TEST_TARGET_DEPS}) get_target_property(location ${target} LOCATION) if(location) get_filename_component(path ${location} PATH) string(REGEX REPLACE "\\$\\(.*\\)" "${CMAKE_BUILD_TYPE}" path "${path}") list(APPEND GR_TEST_LIBRARY_DIRS ${path}) endif(location) endforeach(target) if(WIN32) #SWIG generates the python library files into a subdirectory. #Therefore, we must append this subdirectory into PYTHONPATH. #Only do this for the python directories matching the following: foreach(pydir ${GR_TEST_PYTHON_DIRS}) get_filename_component(name ${pydir} NAME) if(name MATCHES "^(swig|lib|src)$") list(APPEND GR_TEST_PYTHON_DIRS ${pydir}/${CMAKE_BUILD_TYPE}) endif() endforeach(pydir) endif(WIN32) file(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR} srcdir) file(TO_NATIVE_PATH "${GR_TEST_LIBRARY_DIRS}" libpath) #ok to use on dir list? file(TO_NATIVE_PATH "${GR_TEST_PYTHON_DIRS}" pypath) #ok to use on dir list? set(environs "VOLK_GENERIC=1" "GR_DONT_LOAD_PREFS=1" "srcdir=${srcdir}" "GR_CONF_CONTROLPORT_ON=False") list(APPEND environs ${GR_TEST_ENVIRONS}) #http://www.cmake.org/pipermail/cmake/2009-May/029464.html #Replaced this add test + set environs code with the shell script generation. #Its nicer to be able to manually run the shell script to diagnose problems. #ADD_TEST(${ARGV}) #SET_TESTS_PROPERTIES(${test_name} PROPERTIES ENVIRONMENT "${environs}") if(UNIX) set(LD_PATH_VAR "LD_LIBRARY_PATH") if(APPLE) set(LD_PATH_VAR "DYLD_LIBRARY_PATH") endif() set(binpath "${CMAKE_CURRENT_BINARY_DIR}:$PATH") list(APPEND libpath "$${LD_PATH_VAR}") list(APPEND pypath "$PYTHONPATH") #replace list separator with the path separator string(REPLACE ";" ":" libpath "${libpath}") string(REPLACE ";" ":" pypath "${pypath}") list(APPEND environs "PATH=${binpath}" "${LD_PATH_VAR}=${libpath}" "PYTHONPATH=${pypath}") #generate a bat file that sets the environment and runs the test if (CMAKE_CROSSCOMPILING) set(SHELL "/bin/sh") else(CMAKE_CROSSCOMPILING) find_program(SHELL sh) endif(CMAKE_CROSSCOMPILING) set(sh_file ${CMAKE_CURRENT_BINARY_DIR}/${test_name}_test.sh) file(WRITE ${sh_file} "#!${SHELL}\n") #each line sets an environment variable foreach(environ ${environs}) file(APPEND ${sh_file} "export ${environ}\n") endforeach(environ) #load the command to run with its arguments foreach(arg ${ARGN}) file(APPEND ${sh_file} "${arg} ") endforeach(arg) file(APPEND ${sh_file} "\n") #make the shell file executable execute_process(COMMAND chmod +x ${sh_file}) add_test(${test_name} ${SHELL} ${sh_file}) endif(UNIX) if(WIN32) list(APPEND libpath ${DLL_PATHS} "%PATH%") list(APPEND pypath "%PYTHONPATH%") #replace list separator with the path separator (escaped) string(REPLACE ";" "\\;" libpath "${libpath}") string(REPLACE ";" "\\;" pypath "${pypath}") list(APPEND environs "PATH=${libpath}" "PYTHONPATH=${pypath}") #generate a bat file that sets the environment and runs the test set(bat_file ${CMAKE_CURRENT_BINARY_DIR}/${test_name}_test.bat) file(WRITE ${bat_file} "@echo off\n") #each line sets an environment variable foreach(environ ${environs}) file(APPEND ${bat_file} "SET ${environ}\n") endforeach(environ) #load the command to run with its arguments foreach(arg ${ARGN}) file(APPEND ${bat_file} "${arg} ") endforeach(arg) file(APPEND ${bat_file} "\n") add_test(${test_name} ${bat_file}) endif(WIN32) endfunction(GR_ADD_TEST) gnuradio-3.7.11/cmake/Modules/GrVersion.cmake0000664000175000017500000000673613055131744020674 0ustar jcorganjcorgan# Copyright 2011,2013 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. if(DEFINED __INCLUDED_GR_VERSION_CMAKE) return() endif() set(__INCLUDED_GR_VERSION_CMAKE TRUE) #eventually, replace version.sh and fill in the variables below set(MAJOR_VERSION ${VERSION_INFO_MAJOR_VERSION}) set(API_COMPAT ${VERSION_INFO_API_COMPAT}) set(MINOR_VERSION ${VERSION_INFO_MINOR_VERSION}) set(MAINT_VERSION ${VERSION_INFO_MAINT_VERSION}) ######################################################################## # Extract the version string from git describe. ######################################################################## find_package(Git) MACRO(create_manual_git_describe) if(NOT GR_GIT_COUNT) set(GR_GIT_COUNT "compat-xxx") endif() if(NOT GR_GIT_HASH) set(GR_GIT_HASH "xunknown") endif() set(GIT_DESCRIBE "v${MAJOR_VERSION}.${API_COMPAT}-${GR_GIT_COUNT}-${GR_GIT_HASH}") ENDMACRO() if(GIT_FOUND AND EXISTS ${CMAKE_SOURCE_DIR}/.git) message(STATUS "Extracting version information from git describe...") execute_process( COMMAND ${GIT_EXECUTABLE} describe --always --abbrev=8 --long OUTPUT_VARIABLE GIT_DESCRIBE OUTPUT_STRIP_TRAILING_WHITESPACE WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} ) if(GIT_DESCRIBE STREQUAL "") create_manual_git_describe() endif() else() create_manual_git_describe() endif() ######################################################################## # Use the logic below to set the version constants ######################################################################## if("${MINOR_VERSION}" STREQUAL "git") # VERSION: 3.3git-xxx-gxxxxxxxx # DOCVER: 3.3git # LIBVER: 3.3git set(VERSION "${GIT_DESCRIBE}") set(DOCVER "${MAJOR_VERSION}.${API_COMPAT}${MINOR_VERSION}") set(LIBVER "${MAJOR_VERSION}.${API_COMPAT}${MINOR_VERSION}") set(RC_MINOR_VERSION "0") set(RC_MAINT_VERSION "0") elseif("${MAINT_VERSION}" STREQUAL "git") # VERSION: 3.3.1git-xxx-gxxxxxxxx # DOCVER: 3.3.1git # LIBVER: 3.3.1git set(VERSION "${GIT_DESCRIBE}") set(DOCVER "${MAJOR_VERSION}.${API_COMPAT}.${MINOR_VERSION}${MAINT_VERSION}") set(LIBVER "${MAJOR_VERSION}.${API_COMPAT}.${MINOR_VERSION}${MAINT_VERSION}") math(EXPR RC_MINOR_VERSION "${MINOR_VERSION} - 1") set(RC_MAINT_VERSION "0") else() # This is a numbered release. # VERSION: 3.3.1{.x} # DOCVER: 3.3.1{.x} # LIBVER: 3.3.1{.x} if("${MAINT_VERSION}" STREQUAL "0") set(VERSION "${MAJOR_VERSION}.${API_COMPAT}.${MINOR_VERSION}") else() set(VERSION "${MAJOR_VERSION}.${API_COMPAT}.${MINOR_VERSION}.${MAINT_VERSION}") endif() set(DOCVER "${VERSION}") set(LIBVER "${VERSION}") set(RC_MINOR_VERSION ${MINOR_VERSION}) set(RC_MAINT_VERSION ${MAINT_VERSION}) endif() gnuradio-3.7.11/cmake/Modules/LibFindMacros.cmake0000664000175000017500000001004213055131744021413 0ustar jcorganjcorgan# Works the same as find_package, but forwards the "REQUIRED" and "QUIET" arguments # used for the current package. For this to work, the first parameter must be the # prefix of the current package, then the prefix of the new package etc, which are # passed to find_package. macro (libfind_package PREFIX) set (LIBFIND_PACKAGE_ARGS ${ARGN}) if (${PREFIX}_FIND_QUIETLY) set (LIBFIND_PACKAGE_ARGS ${LIBFIND_PACKAGE_ARGS} QUIET) endif (${PREFIX}_FIND_QUIETLY) if (${PREFIX}_FIND_REQUIRED) set (LIBFIND_PACKAGE_ARGS ${LIBFIND_PACKAGE_ARGS} REQUIRED) endif (${PREFIX}_FIND_REQUIRED) find_package(${LIBFIND_PACKAGE_ARGS}) endmacro (libfind_package) # CMake developers made the UsePkgConfig system deprecated in the same release (2.6) # where they added pkg_check_modules. Consequently I need to support both in my scripts # to avoid those deprecated warnings. Here's a helper that does just that. # Works identically to pkg_check_modules, except that no checks are needed prior to use. macro (libfind_pkg_check_modules PREFIX PKGNAME) if (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4) include(UsePkgConfig) pkgconfig(${PKGNAME} ${PREFIX}_INCLUDE_DIRS ${PREFIX}_LIBRARY_DIRS ${PREFIX}_LDFLAGS ${PREFIX}_CFLAGS) else (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4) find_package(PkgConfig) if (PKG_CONFIG_FOUND) pkg_check_modules(${PREFIX} ${PKGNAME}) endif (PKG_CONFIG_FOUND) endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4) endmacro (libfind_pkg_check_modules) # Do the final processing once the paths have been detected. # If include dirs are needed, ${PREFIX}_PROCESS_INCLUDES should be set to contain # all the variables, each of which contain one include directory. # Ditto for ${PREFIX}_PROCESS_LIBS and library files. # Will set ${PREFIX}_FOUND, ${PREFIX}_INCLUDE_DIRS and ${PREFIX}_LIBRARIES. # Also handles errors in case library detection was required, etc. macro (libfind_process PREFIX) # Skip processing if already processed during this run if (NOT ${PREFIX}_FOUND) # Start with the assumption that the library was found set (${PREFIX}_FOUND TRUE) # Process all includes and set _FOUND to false if any are missing foreach (i ${${PREFIX}_PROCESS_INCLUDES}) if (${i}) set (${PREFIX}_INCLUDE_DIRS ${${PREFIX}_INCLUDE_DIRS} ${${i}}) mark_as_advanced(${i}) else (${i}) set (${PREFIX}_FOUND FALSE) endif (${i}) endforeach (i) # Process all libraries and set _FOUND to false if any are missing foreach (i ${${PREFIX}_PROCESS_LIBS}) if (${i}) set (${PREFIX}_LIBRARIES ${${PREFIX}_LIBRARIES} ${${i}}) mark_as_advanced(${i}) else (${i}) set (${PREFIX}_FOUND FALSE) endif (${i}) endforeach (i) # Print message and/or exit on fatal error if (${PREFIX}_FOUND) if (NOT ${PREFIX}_FIND_QUIETLY) message (STATUS "Found ${PREFIX} ${${PREFIX}_VERSION}") endif (NOT ${PREFIX}_FIND_QUIETLY) else (${PREFIX}_FOUND) if (${PREFIX}_FIND_REQUIRED) foreach (i ${${PREFIX}_PROCESS_INCLUDES} ${${PREFIX}_PROCESS_LIBS}) message("${i}=${${i}}") endforeach (i) message (FATAL_ERROR "Required library ${PREFIX} NOT FOUND.\nInstall the library (dev version) and try again. If the library is already installed, use ccmake to set the missing variables manually.") endif (${PREFIX}_FIND_REQUIRED) endif (${PREFIX}_FOUND) endif (NOT ${PREFIX}_FOUND) endmacro (libfind_process) macro(libfind_library PREFIX basename) set(TMP "") if(MSVC80) set(TMP -vc80) endif(MSVC80) if(MSVC90) set(TMP -vc90) endif(MSVC90) set(${PREFIX}_LIBNAMES ${basename}${TMP}) if(${ARGC} GREATER 2) set(${PREFIX}_LIBNAMES ${basename}${TMP}-${ARGV2}) string(REGEX REPLACE "\\." "_" TMP ${${PREFIX}_LIBNAMES}) set(${PREFIX}_LIBNAMES ${${PREFIX}_LIBNAMES} ${TMP}) endif(${ARGC} GREATER 2) find_library(${PREFIX}_LIBRARY NAMES ${${PREFIX}_LIBNAMES} PATHS ${${PREFIX}_PKGCONF_LIBRARY_DIRS} ) endmacro(libfind_library) gnuradio-3.7.11/cmake/Modules/NSIS.InstallOptions.ini.in0000664000175000017500000000077513055131744022614 0ustar jcorganjcorgan[Settings] NumFields=4 [Field 1] Type=label Text=By default GNU Radio does not add its directory to the system PATH. Left=0 Right=-1 Top=0 Bottom=20 [Field 2] Type=radiobutton Text=Do not add GNU Radio to the system PATH Left=0 Right=-1 Top=30 Bottom=40 State=1 [Field 3] Type=radiobutton Text=Add GNU Radio to the system PATH for all users Left=0 Right=-1 Top=40 Bottom=50 State=0 [Field 4] Type=radiobutton Text=Add GNU Radio to the system PATH for current user Left=0 Right=-1 Top=50 Bottom=60 State=0 gnuradio-3.7.11/cmake/Modules/NSIS.template.in0000664000175000017500000006617213055131744020672 0ustar jcorganjcorgan; CPack install script designed for a nmake build ;-------------------------------- ; You must define these values !define VERSION "@CPACK_PACKAGE_VERSION@" !define PATCH "@CPACK_PACKAGE_VERSION_PATCH@" !define INST_DIR "@CPACK_TEMPORARY_DIRECTORY@" ;-------------------------------- ;Variables Var MUI_TEMP Var STARTMENU_FOLDER Var SV_ALLUSERS Var START_MENU Var DO_NOT_ADD_TO_PATH Var ADD_TO_PATH_ALL_USERS Var ADD_TO_PATH_CURRENT_USER Var INSTALL_DESKTOP Var IS_DEFAULT_INSTALLDIR ;-------------------------------- ;Include Modern UI !include "MUI.nsh" ;Default installation folder InstallDir "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" ;-------------------------------- ;General ;Name and file Name "GNU Radio" OutFile "@CPACK_TOPLEVEL_DIRECTORY@/@CPACK_OUTPUT_FILE_NAME@" ;Set compression SetCompressor @CPACK_NSIS_COMPRESSOR@ @CPACK_NSIS_DEFINES@ !include Sections.nsh ;--- Component support macros: --- ; The code for the add/remove functionality is from: ; http://nsis.sourceforge.net/Add/Remove_Functionality ; It has been modified slightly and extended to provide ; inter-component dependencies. Var AR_SecFlags Var AR_RegFlags @CPACK_NSIS_SECTION_SELECTED_VARS@ ; Loads the "selected" flag for the section named SecName into the ; variable VarName. !macro LoadSectionSelectedIntoVar SecName VarName SectionGetFlags ${${SecName}} $${VarName} IntOp $${VarName} $${VarName} & ${SF_SELECTED} ;Turn off all other bits !macroend ; Loads the value of a variable... can we get around this? !macro LoadVar VarName IntOp $R0 0 + $${VarName} !macroend ; Sets the value of a variable !macro StoreVar VarName IntValue IntOp $${VarName} 0 + ${IntValue} !macroend !macro InitSection SecName ; This macro reads component installed flag from the registry and ;changes checked state of the section on the components page. ;Input: section index constant name specified in Section command. ClearErrors ;Reading component status from registry ReadRegDWORD $AR_RegFlags HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" "Installed" IfErrors "default_${SecName}" ;Status will stay default if registry value not found ;(component was never installed) IntOp $AR_RegFlags $AR_RegFlags & ${SF_SELECTED} ;Turn off all other bits SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading default section flags IntOp $AR_SecFlags $AR_SecFlags & 0xFFFE ;Turn lowest (enabled) bit off IntOp $AR_SecFlags $AR_RegFlags | $AR_SecFlags ;Change lowest bit ; Note whether this component was installed before !insertmacro StoreVar ${SecName}_was_installed $AR_RegFlags IntOp $R0 $AR_RegFlags & $AR_RegFlags ;Writing modified flags SectionSetFlags ${${SecName}} $AR_SecFlags "default_${SecName}:" !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected !macroend !macro FinishSection SecName ; This macro reads section flag set by user and removes the section ;if it is not selected. ;Then it writes component installed flag to registry ;Input: section index constant name specified in Section command. SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading section flags ;Checking lowest bit: IntOp $AR_SecFlags $AR_SecFlags & ${SF_SELECTED} IntCmp $AR_SecFlags 1 "leave_${SecName}" ;Section is not selected: ;Calling Section uninstall macro and writing zero installed flag !insertmacro "Remove_${${SecName}}" WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \ "Installed" 0 Goto "exit_${SecName}" "leave_${SecName}:" ;Section is selected: WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \ "Installed" 1 "exit_${SecName}:" !macroend !macro RemoveSection SecName ; This macro is used to call section's Remove_... macro ;from the uninstaller. ;Input: section index constant name specified in Section command. !insertmacro "Remove_${${SecName}}" !macroend ; Determine whether the selection of SecName changed !macro MaybeSelectionChanged SecName !insertmacro LoadVar ${SecName}_selected SectionGetFlags ${${SecName}} $R1 IntOp $R1 $R1 & ${SF_SELECTED} ;Turn off all other bits ; See if the status has changed: IntCmp $R0 $R1 "${SecName}_unchanged" !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected IntCmp $R1 ${SF_SELECTED} "${SecName}_was_selected" !insertmacro "Deselect_required_by_${SecName}" goto "${SecName}_unchanged" "${SecName}_was_selected:" !insertmacro "Select_${SecName}_depends" "${SecName}_unchanged:" !macroend ;--- End of Add/Remove macros --- ;-------------------------------- ;Interface Settings !define MUI_HEADERIMAGE !define MUI_ABORTWARNING ;-------------------------------- ; path functions !verbose 3 !include "WinMessages.NSH" !verbose 4 ;---------------------------------------- ; based upon a script of "Written by KiCHiK 2003-01-18 05:57:02" ;---------------------------------------- !verbose 3 !include "WinMessages.NSH" !verbose 4 ;==================================================== ; get_NT_environment ; Returns: the selected environment ; Output : head of the stack ;==================================================== !macro select_NT_profile UN Function ${UN}select_NT_profile StrCmp $ADD_TO_PATH_ALL_USERS "1" 0 environment_single DetailPrint "Selected environment for all users" Push "all" Return environment_single: DetailPrint "Selected environment for current user only." Push "current" Return FunctionEnd !macroend !insertmacro select_NT_profile "" !insertmacro select_NT_profile "un." ;---------------------------------------------------- !define NT_current_env 'HKCU "Environment"' !define NT_all_env 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !ifndef WriteEnvStr_RegKey !ifdef ALL_USERS !define WriteEnvStr_RegKey \ 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !else !define WriteEnvStr_RegKey 'HKCU "Environment"' !endif !endif ; AddToPath - Adds the given dir to the search path. ; Input - head of the stack ; Note - Win9x systems requires reboot Function AddToPath Exch $0 Push $1 Push $2 Push $3 # don't add if the path doesn't exist IfFileExists "$0\*.*" "" AddToPath_done ReadEnvStr $1 PATH ; if the path is too long for a NSIS variable NSIS will return a 0 ; length string. If we find that, then warn and skip any path ; modification as it will trash the existing path. StrLen $2 $1 IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done CheckPathLength_ShowPathWarning: Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! PATH too long installer unable to modify PATH!" Goto AddToPath_done CheckPathLength_Done: Push "$1;" Push "$0;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Push "$1;" Push "$0\;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done GetFullPathName /SHORT $3 $0 Push "$1;" Push "$3;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Push "$1;" Push "$3\;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Call IsNT Pop $1 StrCmp $1 1 AddToPath_NT ; Not on NT StrCpy $1 $WINDIR 2 FileOpen $1 "$1\autoexec.bat" a FileSeek $1 -1 END FileReadByte $1 $2 IntCmp $2 26 0 +2 +2 # DOS EOF FileSeek $1 -1 END # write over EOF FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n" FileClose $1 SetRebootFlag true Goto AddToPath_done AddToPath_NT: StrCmp $ADD_TO_PATH_ALL_USERS "1" ReadAllKey ReadRegStr $1 ${NT_current_env} "PATH" Goto DoTrim ReadAllKey: ReadRegStr $1 ${NT_all_env} "PATH" DoTrim: StrCmp $1 "" AddToPath_NTdoIt Push $1 Call Trim Pop $1 StrCpy $0 "$1;$0" AddToPath_NTdoIt: StrCmp $ADD_TO_PATH_ALL_USERS "1" WriteAllKey WriteRegExpandStr ${NT_current_env} "PATH" $0 Goto DoSend WriteAllKey: WriteRegExpandStr ${NT_all_env} "PATH" $0 DoSend: SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 AddToPath_done: Pop $3 Pop $2 Pop $1 Pop $0 FunctionEnd ; RemoveFromPath - Remove a given dir from the path ; Input: head of the stack Function un.RemoveFromPath Exch $0 Push $1 Push $2 Push $3 Push $4 Push $5 Push $6 IntFmt $6 "%c" 26 # DOS EOF Call un.IsNT Pop $1 StrCmp $1 1 unRemoveFromPath_NT ; Not on NT StrCpy $1 $WINDIR 2 FileOpen $1 "$1\autoexec.bat" r GetTempFileName $4 FileOpen $2 $4 w GetFullPathName /SHORT $0 $0 StrCpy $0 "SET PATH=%PATH%;$0" Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoop: FileRead $1 $3 StrCpy $5 $3 1 -1 # read last char StrCmp $5 $6 0 +2 # if DOS EOF StrCpy $3 $3 -1 # remove DOS EOF so we can compare StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "" unRemoveFromPath_dosLoopEnd FileWrite $2 $3 Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoopRemoveLine: SetRebootFlag true Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoopEnd: FileClose $2 FileClose $1 StrCpy $1 $WINDIR 2 Delete "$1\autoexec.bat" CopyFiles /SILENT $4 "$1\autoexec.bat" Delete $4 Goto unRemoveFromPath_done unRemoveFromPath_NT: StrCmp $ADD_TO_PATH_ALL_USERS "1" unReadAllKey ReadRegStr $1 ${NT_current_env} "PATH" Goto unDoTrim unReadAllKey: ReadRegStr $1 ${NT_all_env} "PATH" unDoTrim: StrCpy $5 $1 1 -1 # copy last char StrCmp $5 ";" +2 # if last char != ; StrCpy $1 "$1;" # append ; Push $1 Push "$0;" Call un.StrStr ; Find `$0;` in $1 Pop $2 ; pos of our dir StrCmp $2 "" unRemoveFromPath_done ; else, it is in path # $0 - path to add # $1 - path var StrLen $3 "$0;" StrLen $4 $2 StrCpy $5 $1 -$4 # $5 is now the part before the path to remove StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove StrCpy $3 $5$6 StrCpy $5 $3 1 -1 # copy last char StrCmp $5 ";" 0 +2 # if last char == ; StrCpy $3 $3 -1 # remove last char StrCmp $ADD_TO_PATH_ALL_USERS "1" unWriteAllKey WriteRegExpandStr ${NT_current_env} "PATH" $3 Goto unDoSend unWriteAllKey: WriteRegExpandStr ${NT_all_env} "PATH" $3 unDoSend: SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 unRemoveFromPath_done: Pop $6 Pop $5 Pop $4 Pop $3 Pop $2 Pop $1 Pop $0 FunctionEnd ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Uninstall sutff ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ########################################### # Utility Functions # ########################################### ;==================================================== ; IsNT - Returns 1 if the current system is NT, 0 ; otherwise. ; Output: head of the stack ;==================================================== ; IsNT ; no input ; output, top of the stack = 1 if NT or 0 if not ; ; Usage: ; Call IsNT ; Pop $R0 ; ($R0 at this point is 1 or 0) !macro IsNT un Function ${un}IsNT Push $0 ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion StrCmp $0 "" 0 IsNT_yes ; we are not NT. Pop $0 Push 0 Return IsNT_yes: ; NT!!! Pop $0 Push 1 FunctionEnd !macroend !insertmacro IsNT "" !insertmacro IsNT "un." ; StrStr ; input, top of stack = string to search for ; top of stack-1 = string to search in ; output, top of stack (replaces with the portion of the string remaining) ; modifies no other variables. ; ; Usage: ; Push "this is a long ass string" ; Push "ass" ; Call StrStr ; Pop $R0 ; ($R0 at this point is "ass string") !macro StrStr un Function ${un}StrStr Exch $R1 ; st=haystack,old$R1, $R1=needle Exch ; st=old$R1,haystack Exch $R2 ; st=old$R1,old$R2, $R2=haystack Push $R3 Push $R4 Push $R5 StrLen $R3 $R1 StrCpy $R4 0 ; $R1=needle ; $R2=haystack ; $R3=len(needle) ; $R4=cnt ; $R5=tmp loop: StrCpy $R5 $R2 $R3 $R4 StrCmp $R5 $R1 done StrCmp $R5 "" done IntOp $R4 $R4 + 1 Goto loop done: StrCpy $R1 $R2 "" $R4 Pop $R5 Pop $R4 Pop $R3 Pop $R2 Exch $R1 FunctionEnd !macroend !insertmacro StrStr "" !insertmacro StrStr "un." Function Trim ; Added by Pelaca Exch $R1 Push $R2 Loop: StrCpy $R2 "$R1" 1 -1 StrCmp "$R2" " " RTrim StrCmp "$R2" "$\n" RTrim StrCmp "$R2" "$\r" RTrim StrCmp "$R2" ";" RTrim GoTo Done RTrim: StrCpy $R1 "$R1" -1 Goto Loop Done: Pop $R2 Exch $R1 FunctionEnd Function ConditionalAddToRegisty Pop $0 Pop $1 StrCmp "$0" "" ConditionalAddToRegisty_EmptyString WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" \ "$1" "$0" ;MessageBox MB_OK "Set Registry: '$1' to '$0'" DetailPrint "Set install registry entry: '$1' to '$0'" ConditionalAddToRegisty_EmptyString: FunctionEnd ;-------------------------------- !ifdef CPACK_USES_DOWNLOAD Function DownloadFile IfFileExists $INSTDIR\* +2 CreateDirectory $INSTDIR Pop $0 ; Skip if already downloaded IfFileExists $INSTDIR\$0 0 +2 Return StrCpy $1 "@CPACK_DOWNLOAD_SITE@" try_again: NSISdl::download "$1/$0" "$INSTDIR\$0" Pop $1 StrCmp $1 "success" success StrCmp $1 "Cancelled" cancel MessageBox MB_OK "Download failed: $1" cancel: Return success: FunctionEnd !endif ;-------------------------------- ; Installation types @CPACK_NSIS_INSTALLATION_TYPES@ ;-------------------------------- ; Component sections @CPACK_NSIS_COMPONENT_SECTIONS@ ;-------------------------------- ; Define some macro setting for the gui @CPACK_NSIS_INSTALLER_MUI_ICON_CODE@ @CPACK_NSIS_INSTALLER_ICON_CODE@ @CPACK_NSIS_INSTALLER_MUI_COMPONENTS_DESC@ @CPACK_NSIS_INSTALLER_MUI_FINISHPAGE_RUN_CODE@ ;-------------------------------- ;Pages !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE "@CPACK_RESOURCE_FILE_LICENSE@" Page custom InstallOptionsPage !insertmacro MUI_PAGE_DIRECTORY ;Start Menu Folder Page Configuration !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX" !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder" !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER @CPACK_NSIS_PAGE_COMPONENTS@ !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;first language is the default language !insertmacro MUI_LANGUAGE "Albanian" !insertmacro MUI_LANGUAGE "Arabic" !insertmacro MUI_LANGUAGE "Basque" !insertmacro MUI_LANGUAGE "Belarusian" !insertmacro MUI_LANGUAGE "Bosnian" !insertmacro MUI_LANGUAGE "Breton" !insertmacro MUI_LANGUAGE "Bulgarian" !insertmacro MUI_LANGUAGE "Croatian" !insertmacro MUI_LANGUAGE "Czech" !insertmacro MUI_LANGUAGE "Danish" !insertmacro MUI_LANGUAGE "Dutch" !insertmacro MUI_LANGUAGE "Estonian" !insertmacro MUI_LANGUAGE "Farsi" !insertmacro MUI_LANGUAGE "Finnish" !insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "Greek" !insertmacro MUI_LANGUAGE "Hebrew" !insertmacro MUI_LANGUAGE "Hungarian" !insertmacro MUI_LANGUAGE "Icelandic" !insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Irish" !insertmacro MUI_LANGUAGE "Italian" !insertmacro MUI_LANGUAGE "Japanese" !insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Kurdish" !insertmacro MUI_LANGUAGE "Latvian" !insertmacro MUI_LANGUAGE "Lithuanian" !insertmacro MUI_LANGUAGE "Luxembourgish" !insertmacro MUI_LANGUAGE "Macedonian" !insertmacro MUI_LANGUAGE "Malay" !insertmacro MUI_LANGUAGE "Mongolian" !insertmacro MUI_LANGUAGE "Norwegian" !insertmacro MUI_LANGUAGE "Polish" !insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "PortugueseBR" !insertmacro MUI_LANGUAGE "Romanian" !insertmacro MUI_LANGUAGE "Russian" !insertmacro MUI_LANGUAGE "Serbian" !insertmacro MUI_LANGUAGE "SerbianLatin" !insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "Slovak" !insertmacro MUI_LANGUAGE "Slovenian" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Thai" !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Ukrainian" !insertmacro MUI_LANGUAGE "Welsh" ;-------------------------------- ;Reserve Files ;These files should be inserted before other files in the data block ;Keep these lines before any File command ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA) ReserveFile "NSIS.InstallOptions.ini" !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS ;-------------------------------- ;Installer Sections Section "-Core installation" ;Use the entire tree produced by the INSTALL target. Keep the ;list of directories here in sync with the RMDir commands below. SetOutPath "$INSTDIR" @CPACK_NSIS_FULL_INSTALL@ ;Store installation folder WriteRegStr SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "" $INSTDIR ;Create uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" Push "DisplayName" Push "@CPACK_NSIS_DISPLAY_NAME@" Call ConditionalAddToRegisty Push "DisplayVersion" Push "@CPACK_PACKAGE_VERSION@" Call ConditionalAddToRegisty Push "Publisher" Push "@CPACK_PACKAGE_VENDOR@" Call ConditionalAddToRegisty Push "UninstallString" Push "$INSTDIR\Uninstall.exe" Call ConditionalAddToRegisty Push "NoRepair" Push "1" Call ConditionalAddToRegisty !ifdef CPACK_NSIS_ADD_REMOVE ;Create add/remove functionality Push "ModifyPath" Push "$INSTDIR\AddRemove.exe" Call ConditionalAddToRegisty !else Push "NoModify" Push "1" Call ConditionalAddToRegisty !endif ; Optional registration Push "DisplayIcon" Push "$INSTDIR\@CPACK_NSIS_INSTALLED_ICON_NAME@" Call ConditionalAddToRegisty Push "HelpLink" Push "@CPACK_NSIS_HELP_LINK@" Call ConditionalAddToRegisty Push "URLInfoAbout" Push "@CPACK_NSIS_URL_INFO_ABOUT@" Call ConditionalAddToRegisty Push "Contact" Push "@CPACK_NSIS_CONTACT@" Call ConditionalAddToRegisty !insertmacro MUI_INSTALLOPTIONS_READ $INSTALL_DESKTOP "NSIS.InstallOptions.ini" "Field 5" "State" !insertmacro MUI_STARTMENU_WRITE_BEGIN Application ;Create shortcuts CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER" @CPACK_NSIS_CREATE_ICONS@ @CPACK_NSIS_CREATE_ICONS_EXTRA@ CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe" CreateShortcut "$SMPROGRAMS\$STARTMENU_FOLDER\GNU Radio Companion.lnk" "$INSTDIR\bin\gnuradio-companion.py" "" "" "" SW_SHOWMINIMIZED ;Read a value from an InstallOptions INI file !insertmacro MUI_INSTALLOPTIONS_READ $DO_NOT_ADD_TO_PATH "NSIS.InstallOptions.ini" "Field 2" "State" !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_ALL_USERS "NSIS.InstallOptions.ini" "Field 3" "State" !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_CURRENT_USER "NSIS.InstallOptions.ini" "Field 4" "State" ; Write special uninstall registry entries Push "StartMenu" Push "$STARTMENU_FOLDER" Call ConditionalAddToRegisty Push "DoNotAddToPath" Push "$DO_NOT_ADD_TO_PATH" Call ConditionalAddToRegisty Push "AddToPathAllUsers" Push "$ADD_TO_PATH_ALL_USERS" Call ConditionalAddToRegisty Push "AddToPathCurrentUser" Push "$ADD_TO_PATH_CURRENT_USER" Call ConditionalAddToRegisty Push "InstallToDesktop" Push "$INSTALL_DESKTOP" Call ConditionalAddToRegisty !insertmacro MUI_STARTMENU_WRITE_END @CPACK_NSIS_EXTRA_INSTALL_COMMANDS@ SectionEnd Section "-Add to path" Push $INSTDIR\bin StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 doNotAddToPath StrCmp $DO_NOT_ADD_TO_PATH "1" doNotAddToPath 0 Call AddToPath doNotAddToPath: SectionEnd ;-------------------------------- ; Create custom pages Function InstallOptionsPage !insertmacro MUI_HEADER_TEXT "Install Options" "Choose options for installing GNU Radio" !insertmacro MUI_INSTALLOPTIONS_DISPLAY "NSIS.InstallOptions.ini" FunctionEnd ;-------------------------------- ; determine admin versus local install Function un.onInit ClearErrors UserInfo::GetName IfErrors noLM Pop $0 UserInfo::GetAccountType Pop $1 StrCmp $1 "Admin" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Admin group' Goto done StrCmp $1 "Power" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Power Users group' Goto done noLM: ;Get installation folder from registry if available done: FunctionEnd ;--- Add/Remove callback functions: --- !macro SectionList MacroName ;This macro used to perform operation on multiple sections. ;List all of your components in following manner here. @CPACK_NSIS_COMPONENT_SECTION_LIST@ !macroend Section -FinishComponents ;Removes unselected components and writes component status to registry !insertmacro SectionList "FinishSection" !ifdef CPACK_NSIS_ADD_REMOVE ; Get the name of the installer executable System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1' StrCpy $R3 $R0 ; Strip off the last 13 characters, to see if we have AddRemove.exe StrLen $R1 $R0 IntOp $R1 $R0 - 13 StrCpy $R2 $R0 13 $R1 StrCmp $R2 "AddRemove.exe" addremove_installed ; We're not running AddRemove.exe, so install it CopyFiles $R3 $INSTDIR\AddRemove.exe addremove_installed: !endif SectionEnd ;--- End of Add/Remove callback functions --- ;-------------------------------- ; Component dependencies Function .onSelChange !insertmacro SectionList MaybeSelectionChanged FunctionEnd ;-------------------------------- ;Uninstaller Section Section "Uninstall" ReadRegStr $START_MENU SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "StartMenu" ;MessageBox MB_OK "Start menu is in: $START_MENU" ReadRegStr $DO_NOT_ADD_TO_PATH SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "DoNotAddToPath" ReadRegStr $ADD_TO_PATH_ALL_USERS SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathAllUsers" ReadRegStr $ADD_TO_PATH_CURRENT_USER SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathCurrentUser" ;MessageBox MB_OK "Add to path: $DO_NOT_ADD_TO_PATH all users: $ADD_TO_PATH_ALL_USERS" ReadRegStr $INSTALL_DESKTOP SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "InstallToDesktop" ;MessageBox MB_OK "Install to desktop: $INSTALL_DESKTOP " @CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS@ ;Remove files we installed. ;Keep the list of directories here in sync with the File commands above. @CPACK_NSIS_DELETE_FILES@ @CPACK_NSIS_DELETE_DIRECTORIES@ !ifdef CPACK_NSIS_ADD_REMOVE ;Remove the add/remove program Delete "$INSTDIR\AddRemove.exe" !endif ;Remove the uninstaller itself. Delete "$INSTDIR\Uninstall.exe" DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" ;Remove the installation directory if it is empty. RMDir "$INSTDIR" ; Remove the registry entries. DeleteRegKey SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" ; Removes all optional components !insertmacro SectionList "RemoveSection" !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" @CPACK_NSIS_DELETE_ICONS@ @CPACK_NSIS_DELETE_ICONS_EXTRA@ ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" startMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors startMenuDeleteLoopDone StrCmp "$MUI_TEMP" "$SMPROGRAMS" startMenuDeleteLoopDone startMenuDeleteLoop startMenuDeleteLoopDone: ; If the user changed the shortcut, then untinstall may not work. This should ; try to fix it. StrCpy $MUI_TEMP "$START_MENU" Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" Delete "$SMPROGRAMS\$MUI_TEMP\GNU Radio Companion.lnk" @CPACK_NSIS_DELETE_ICONS_EXTRA@ ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" secondStartMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors secondStartMenuDeleteLoopDone StrCmp "$MUI_TEMP" "$SMPROGRAMS" secondStartMenuDeleteLoopDone secondStartMenuDeleteLoop secondStartMenuDeleteLoopDone: DeleteRegKey /ifempty SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" Push $INSTDIR\bin StrCmp $DO_NOT_ADD_TO_PATH_ "1" doNotRemoveFromPath 0 Call un.RemoveFromPath doNotRemoveFromPath: SectionEnd ;-------------------------------- ; determine admin versus local install ; Is install for "AllUsers" or "JustMe"? ; Default to "JustMe" - set to "AllUsers" if admin or on Win9x ; This function is used for the very first "custom page" of the installer. ; This custom page does not show up visibly, but it executes prior to the ; first visible page and sets up $INSTDIR properly... ; Choose different default installation folder based on SV_ALLUSERS... ; "Program Files" for AllUsers, "My Documents" for JustMe... Function .onInit ; Reads components status for registry !insertmacro SectionList "InitSection" ; check to see if /D has been used to change ; the install directory by comparing it to the ; install directory that is expected to be the ; default StrCpy $IS_DEFAULT_INSTALLDIR 0 StrCmp "$INSTDIR" "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" 0 +2 StrCpy $IS_DEFAULT_INSTALLDIR 1 StrCpy $SV_ALLUSERS "JustMe" ; if default install dir then change the default ; if it is installed for JustMe StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2 StrCpy $INSTDIR "$DOCUMENTS\@CPACK_PACKAGE_INSTALL_DIRECTORY@" ClearErrors UserInfo::GetName IfErrors noLM Pop $0 UserInfo::GetAccountType Pop $1 StrCmp $1 "Admin" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Admin group' StrCpy $SV_ALLUSERS "AllUsers" Goto done StrCmp $1 "Power" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Power Users group' StrCpy $SV_ALLUSERS "AllUsers" Goto done noLM: StrCpy $SV_ALLUSERS "AllUsers" ;Get installation folder from registry if available done: StrCmp $SV_ALLUSERS "AllUsers" 0 +3 StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2 StrCpy $INSTDIR "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 noOptionsPage !insertmacro MUI_INSTALLOPTIONS_EXTRACT "NSIS.InstallOptions.ini" noOptionsPage: FunctionEnd gnuradio-3.7.11/cmake/Modules/UseSWIG.cmake0000664000175000017500000002654713055131744020206 0ustar jcorganjcorgan# - SWIG module for CMake # Defines the following macros: # SWIG_ADD_MODULE(name language [ files ]) # - Define swig module with given name and specified language # SWIG_LINK_LIBRARIES(name [ libraries ]) # - Link libraries to swig module # All other macros are for internal use only. # To get the actual name of the swig module, # use: ${SWIG_MODULE_${name}_REAL_NAME}. # Set Source files properties such as CPLUSPLUS and SWIG_FLAGS to specify # special behavior of SWIG. Also global CMAKE_SWIG_FLAGS can be used to add # special flags to all swig calls. # Another special variable is CMAKE_SWIG_OUTDIR, it allows one to specify # where to write all the swig generated module (swig -outdir option) # The name-specific variable SWIG_MODULE__EXTRA_DEPS may be used # to specify extra dependencies for the generated modules. # If the source file generated by swig need some special flag you can use # set_source_files_properties( ${swig_generated_file_fullname} # PROPERTIES COMPILE_FLAGS "-bla") #============================================================================= # Copyright 2004-2009 Kitware, Inc. # Copyright 2009 Mathieu Malaterre # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) set(SWIG_CXX_EXTENSION "cxx") set(SWIG_EXTRA_LIBRARIES "") set(SWIG_PYTHON_EXTRA_FILE_EXTENSION "py") # # For given swig module initialize variables associated with it # macro(SWIG_MODULE_INITIALIZE name language) string(TOUPPER "${language}" swig_uppercase_language) string(TOLOWER "${language}" swig_lowercase_language) set(SWIG_MODULE_${name}_LANGUAGE "${swig_uppercase_language}") set(SWIG_MODULE_${name}_SWIG_LANGUAGE_FLAG "${swig_lowercase_language}") set(SWIG_MODULE_${name}_REAL_NAME "${name}") if("${SWIG_MODULE_${name}_LANGUAGE}" STREQUAL "UNKNOWN") message(FATAL_ERROR "SWIG Error: Language \"${language}\" not found") elseif("${SWIG_MODULE_${name}_LANGUAGE}" STREQUAL "PYTHON") # when swig is used without the -interface it will produce in the module.py # a 'import _modulename' statement, which implies having a corresponding # _modulename.so (*NIX), _modulename.pyd (Win32). set(SWIG_MODULE_${name}_REAL_NAME "_${name}") elseif("${SWIG_MODULE_${name}_LANGUAGE}" STREQUAL "PERL") set(SWIG_MODULE_${name}_EXTRA_FLAGS "-shadow") endif() endmacro() # # For a given language, input file, and output file, determine extra files that # will be generated. This is internal swig macro. # macro(SWIG_GET_EXTRA_OUTPUT_FILES language outfiles generatedpath infile) set(${outfiles} "") get_source_file_property(SWIG_GET_EXTRA_OUTPUT_FILES_module_basename ${infile} SWIG_MODULE_NAME) if(SWIG_GET_EXTRA_OUTPUT_FILES_module_basename STREQUAL "NOTFOUND") get_filename_component(SWIG_GET_EXTRA_OUTPUT_FILES_module_basename "${infile}" NAME_WE) endif() foreach(it ${SWIG_${language}_EXTRA_FILE_EXTENSION}) set(${outfiles} ${${outfiles}} "${generatedpath}/${SWIG_GET_EXTRA_OUTPUT_FILES_module_basename}.${it}") endforeach() endmacro() # # Take swig (*.i) file and add proper custom commands for it # macro(SWIG_ADD_SOURCE_TO_MODULE name outfiles infile) set(swig_full_infile ${infile}) get_filename_component(swig_source_file_path "${infile}" PATH) get_filename_component(swig_source_file_name_we "${infile}" NAME_WE) get_source_file_property(swig_source_file_generated ${infile} GENERATED) get_source_file_property(swig_source_file_cplusplus ${infile} CPLUSPLUS) get_source_file_property(swig_source_file_flags ${infile} SWIG_FLAGS) if("${swig_source_file_flags}" STREQUAL "NOTFOUND") set(swig_source_file_flags "") endif() set(swig_source_file_fullname "${infile}") if(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}") string(REGEX REPLACE "^${CMAKE_CURRENT_SOURCE_DIR}" "" swig_source_file_relative_path "${swig_source_file_path}") else() if(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}") string(REGEX REPLACE "^${CMAKE_CURRENT_BINARY_DIR}" "" swig_source_file_relative_path "${swig_source_file_path}") set(swig_source_file_generated 1) else() set(swig_source_file_relative_path "${swig_source_file_path}") if(swig_source_file_generated) set(swig_source_file_fullname "${CMAKE_CURRENT_BINARY_DIR}/${infile}") else() set(swig_source_file_fullname "${CMAKE_CURRENT_SOURCE_DIR}/${infile}") endif() endif() endif() set(swig_generated_file_fullname "${CMAKE_CURRENT_BINARY_DIR}") if(swig_source_file_relative_path) set(swig_generated_file_fullname "${swig_generated_file_fullname}/${swig_source_file_relative_path}") endif() # If CMAKE_SWIG_OUTDIR was specified then pass it to -outdir if(CMAKE_SWIG_OUTDIR) set(swig_outdir ${CMAKE_SWIG_OUTDIR}) else() set(swig_outdir ${CMAKE_CURRENT_BINARY_DIR}) endif() SWIG_GET_EXTRA_OUTPUT_FILES(${SWIG_MODULE_${name}_LANGUAGE} swig_extra_generated_files "${swig_outdir}" "${infile}") set(swig_generated_file_fullname "${swig_generated_file_fullname}/${swig_source_file_name_we}") # add the language into the name of the file (i.e. TCL_wrap) # this allows for the same .i file to be wrapped into different languages set(swig_generated_file_fullname "${swig_generated_file_fullname}${SWIG_MODULE_${name}_LANGUAGE}_wrap") if(swig_source_file_cplusplus) set(swig_generated_file_fullname "${swig_generated_file_fullname}.${SWIG_CXX_EXTENSION}") else() set(swig_generated_file_fullname "${swig_generated_file_fullname}.c") endif() # Shut up some warnings from poor SWIG code generation that we # can do nothing about, when this flag is available include(CheckCXXCompilerFlag) check_cxx_compiler_flag("-Wno-unused-but-set-variable" HAVE_WNO_UNUSED_BUT_SET_VARIABLE) if(HAVE_WNO_UNUSED_BUT_SET_VARIABLE) set_source_files_properties(${swig_generated_file_fullname} PROPERTIES COMPILE_FLAGS "-Wno-unused-but-set-variable") endif(HAVE_WNO_UNUSED_BUT_SET_VARIABLE) get_directory_property(cmake_include_directories INCLUDE_DIRECTORIES) set(swig_include_dirs) foreach(it ${cmake_include_directories}) set(swig_include_dirs ${swig_include_dirs} "-I${it}") endforeach() set(swig_special_flags) # default is c, so add c++ flag if it is c++ if(swig_source_file_cplusplus) set(swig_special_flags ${swig_special_flags} "-c++") endif() set(swig_extra_flags) if(SWIG_MODULE_${name}_EXTRA_FLAGS) set(swig_extra_flags ${swig_extra_flags} ${SWIG_MODULE_${name}_EXTRA_FLAGS}) endif() # hack to work around CMake bug in add_custom_command with multiple OUTPUT files file(RELATIVE_PATH reldir ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}) execute_process( COMMAND ${PYTHON_EXECUTABLE} -c "import re, hashlib unique = hashlib.md5('${reldir}${ARGN}').hexdigest()[:5] print(re.sub('\\W', '_', '${name} ${reldir} ' + unique))" OUTPUT_VARIABLE _target OUTPUT_STRIP_TRAILING_WHITESPACE ) file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/${_target}.cpp.in "int main(void){return 0;}\n" ) # create dummy dependencies add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_target}.cpp COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/${_target}.cpp.in ${CMAKE_CURRENT_BINARY_DIR}/${_target}.cpp DEPENDS "${swig_source_file_fullname}" ${SWIG_MODULE_${name}_EXTRA_DEPS} COMMENT "" ) # create the dummy target add_executable(${_target} ${CMAKE_CURRENT_BINARY_DIR}/${_target}.cpp) # add a custom command to the dummy target add_custom_command( TARGET ${_target} # Let's create the ${swig_outdir} at execution time, in case dir contains $(OutDir) COMMAND ${CMAKE_COMMAND} -E make_directory ${swig_outdir} COMMAND "${SWIG_EXECUTABLE}" ARGS "-${SWIG_MODULE_${name}_SWIG_LANGUAGE_FLAG}" ${swig_source_file_flags} ${CMAKE_SWIG_FLAGS} -outdir ${swig_outdir} ${swig_special_flags} ${swig_extra_flags} ${swig_include_dirs} -o "${swig_generated_file_fullname}" "${swig_source_file_fullname}" COMMENT "Swig source" ) #add dummy independent dependencies from the _target to each file #that will be generated by the SWIG command above set(${outfiles} "${swig_generated_file_fullname}" ${swig_extra_generated_files}) foreach(swig_gen_file ${${outfiles}}) add_custom_command( OUTPUT ${swig_gen_file} COMMAND DEPENDS ${_target} COMMENT ) endforeach() set_source_files_properties( ${outfiles} PROPERTIES GENERATED 1 ) endmacro() # # Create Swig module # macro(SWIG_ADD_MODULE name language) SWIG_MODULE_INITIALIZE(${name} ${language}) set(swig_dot_i_sources) set(swig_other_sources) foreach(it ${ARGN}) if(${it} MATCHES ".*\\.i$") set(swig_dot_i_sources ${swig_dot_i_sources} "${it}") else() set(swig_other_sources ${swig_other_sources} "${it}") endif() endforeach() set(swig_generated_sources) foreach(it ${swig_dot_i_sources}) SWIG_ADD_SOURCE_TO_MODULE(${name} swig_generated_source ${it}) set(swig_generated_sources ${swig_generated_sources} "${swig_generated_source}") endforeach() get_directory_property(swig_extra_clean_files ADDITIONAL_MAKE_CLEAN_FILES) set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${swig_extra_clean_files};${swig_generated_sources}") add_library(${SWIG_MODULE_${name}_REAL_NAME} MODULE ${swig_generated_sources} ${swig_other_sources}) string(TOLOWER "${language}" swig_lowercase_language) if ("${swig_lowercase_language}" STREQUAL "java") if (APPLE) # In java you want: # System.loadLibrary("LIBRARY"); # then JNI will look for a library whose name is platform dependent, namely # MacOS : libLIBRARY.jnilib # Windows: LIBRARY.dll # Linux : libLIBRARY.so set_target_properties (${SWIG_MODULE_${name}_REAL_NAME} PROPERTIES SUFFIX ".jnilib") endif () endif () if ("${swig_lowercase_language}" STREQUAL "python") # this is only needed for the python case where a _modulename.so is generated set_target_properties(${SWIG_MODULE_${name}_REAL_NAME} PROPERTIES PREFIX "") # Python extension modules on Windows must have the extension ".pyd" # instead of ".dll" as of Python 2.5. Older python versions do support # this suffix. # http://docs.python.org/whatsnew/ports.html#SECTION0001510000000000000000 # # Windows: .dll is no longer supported as a filename extension for extension modules. # .pyd is now the only filename extension that will be searched for. # if(WIN32 AND NOT CYGWIN) set_target_properties(${SWIG_MODULE_${name}_REAL_NAME} PROPERTIES SUFFIX ".pyd") endif() endif () endmacro() # # Like TARGET_LINK_LIBRARIES but for swig modules # macro(SWIG_LINK_LIBRARIES name) if(SWIG_MODULE_${name}_REAL_NAME) target_link_libraries(${SWIG_MODULE_${name}_REAL_NAME} ${ARGN}) else() message(SEND_ERROR "Cannot find Swig library \"${name}\".") endif() endmacro() gnuradio-3.7.11/cmake/Packaging/0000775000175000017500000000000013055131744016214 5ustar jcorganjcorgangnuradio-3.7.11/cmake/Packaging/Fedora-15.cmake0000664000175000017500000000102513055131744020637 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "fftw-libs") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "qt" "qwt") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "PyQt4") SET(PACKAGE_DEPENDS_GRC "python" "numpy" "gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "wxGTK" "python" "numpy") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "SDL") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "pulseaudio" "alsa-lib" "jack-audio-connection-kit") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "gsl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "numpy") gnuradio-3.7.11/cmake/Packaging/Fedora-16.cmake0000664000175000017500000000102513055131744020640 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "fftw-libs") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "qt" "qwt") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "PyQt4") SET(PACKAGE_DEPENDS_GRC "python" "numpy" "gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "wxGTK" "python" "numpy") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "SDL") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "pulseaudio" "alsa-lib" "jack-audio-connection-kit") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "gsl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "numpy") gnuradio-3.7.11/cmake/Packaging/Fedora-17.cmake0000664000175000017500000000104013055131744020636 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "fftw-libs") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "qt" "qwt") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "PyQt4") SET(PACKAGE_DEPENDS_GRC "python" "numpy" "gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "wxGTK" "python" "numpy" "PyOpenGL") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "SDL") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "pulseaudio" "alsa-lib" "jack-audio-connection-kit") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "gsl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "numpy") gnuradio-3.7.11/cmake/Packaging/Fedora-18.cmake0000664000175000017500000000104013055131744020637 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "fftw-libs") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "qt" "qwt") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "PyQt4") SET(PACKAGE_DEPENDS_GRC "python" "numpy" "gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "wxGTK" "python" "numpy" "PyOpenGL") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "SDL") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "pulseaudio" "alsa-lib" "jack-audio-connection-kit") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "gsl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-10.04.cmake0000664000175000017500000000114613055131744021142 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt5-qt4") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8" "python" "python-numpy") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-10.10.cmake0000664000175000017500000000114613055131744021137 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt5-qt4") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8" "python" "python-numpy") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-11.04.cmake0000664000175000017500000000122713055131744021143 0ustar jcorganjcorgan#set the debian package dependencies (parsed by our deb component maker) SET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt5-qt4") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-11.10.cmake0000664000175000017500000000111213055131744021131 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt6") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-12.04.cmake0000664000175000017500000000113213055131744021137 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt6") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8" "python-opengl") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-12.10.cmake0000664000175000017500000000113213055131744021134 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt6") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8" "python-opengl") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/Ubuntu-13.04.cmake0000664000175000017500000000132213055131744021141 0ustar jcorganjcorganSET(PACKAGE_DEPENDS_GRUEL_RUNTIME "libboost-all-dev" "libc6") SET(PACKAGE_DEPENDS_GRUEL_PYTHON "python" "python-numpy") SET(PACKAGE_DEPENDS_CORE_RUNTIME "libfftw3-3") SET(PACKAGE_DEPENDS_QTGUI_RUNTIME "libqtcore4" "libqwt6") SET(PACKAGE_DEPENDS_QTGUI_PYTHON "python-qt4" "python-qwt5-qt4") SET(PACKAGE_DEPENDS_GRC "python" "python-numpy" "python-gtk2" "python-lxml" "python-cheetah") SET(PACKAGE_DEPENDS_WXGUI "python-wxgtk2.8" "python-opengl") SET(PACKAGE_DEPENDS_VIDEO_SDL_RUNTIME "libsdl1.2debian") SET(PACKAGE_DEPENDS_UHD_RUNTIME "uhd") SET(PACKAGE_DEPENDS_AUDIO_RUNTIME "libpulse0" "alsa-base" "libjack0") SET(PACKAGE_DEPENDS_WAVELET_RUNTIME "libgsl0ldbl") SET(PACKAGE_DEPENDS_WAVELET_PYTHON "python" "python-numpy") gnuradio-3.7.11/cmake/Packaging/post_install.in0000775000175000017500000000013213055131744021256 0ustar jcorganjcorgan#!/bin/sh @CMAKE_INSTALL_PREFIX@/libexec/gnuradio/grc_setup_freedesktop install ldconfig gnuradio-3.7.11/cmake/Packaging/post_uninstall.in0000775000175000017500000000002413055131744021621 0ustar jcorganjcorgan#!/bin/sh ldconfig gnuradio-3.7.11/cmake/Packaging/postinst.in0000775000175000017500000000020513055131744020427 0ustar jcorganjcorgan#!/bin/sh if [ "$1" = "configure" ]; then @CMAKE_INSTALL_PREFIX@/libexec/gnuradio/grc_setup_freedesktop install ldconfig fi gnuradio-3.7.11/cmake/Packaging/postrm.in0000775000175000017500000000007013055131744020070 0ustar jcorganjcorgan#!/bin/sh if [ "$1" = "remove" ]; then ldconfig fi gnuradio-3.7.11/cmake/Packaging/pre_install.in0000775000175000017500000000001213055131744021054 0ustar jcorganjcorgan#!/bin/sh gnuradio-3.7.11/cmake/Packaging/pre_uninstall.in0000775000175000017500000000012313055131744021422 0ustar jcorganjcorgan#!/bin/sh @CMAKE_INSTALL_PREFIX@/libexec/gnuradio/grc_setup_freedesktop uninstall gnuradio-3.7.11/cmake/Packaging/preinst.in0000775000175000017500000000006513055131744020234 0ustar jcorganjcorgan#!/bin/sh if [ "$1" = "install" ]; then echo fi gnuradio-3.7.11/cmake/Packaging/prerm.in0000775000175000017500000000016713055131744017700 0ustar jcorganjcorgan#!/bin/sh if [ "$1" = "remove" ]; then @CMAKE_INSTALL_PREFIX@/libexec/gnuradio/grc_setup_freedesktop uninstall fi gnuradio-3.7.11/cmake/Toolchains/0000775000175000017500000000000013055131744016433 5ustar jcorganjcorgangnuradio-3.7.11/cmake/Toolchains/arm_cortex_a8_native.cmake0000664000175000017500000000101713055131744023535 0ustar jcorganjcorgan######################################################################## # Toolchain file for building native on a ARM Cortex A8 w/ NEON # Usage: cmake -DCMAKE_TOOLCHAIN_FILE= ######################################################################## set(CMAKE_CXX_COMPILER g++) set(CMAKE_C_COMPILER gcc) set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp" CACHE STRING "" FORCE) set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE) #same flags for C sources gnuradio-3.7.11/cmake/Toolchains/oe-sdk_cross.cmake0000664000175000017500000000164713055131744022040 0ustar jcorganjcorganset( CMAKE_SYSTEM_NAME Linux ) #set( CMAKE_C_COMPILER $ENV{CC} ) #set( CMAKE_CXX_COMPILER $ENV{CXX} ) string(REGEX MATCH "sysroots/([a-zA-Z0-9]+)" CMAKE_SYSTEM_PROCESSOR $ENV{SDKTARGETSYSROOT}) string(REGEX REPLACE "sysroots/" "" CMAKE_SYSTEM_PROCESSOR ${CMAKE_SYSTEM_PROCESSOR}) set( CMAKE_CXX_FLAGS $ENV{CXXFLAGS} CACHE STRING "" FORCE ) set( CMAKE_C_FLAGS $ENV{CFLAGS} CACHE STRING "" FORCE ) #same flags for C sources set( CMAKE_LDFLAGS_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE ) #same flags for C sources set( CMAKE_LIBRARY_PATH ${OECORE_TARGET_SYSROOT}/usr/lib ) set( CMAKE_FIND_ROOT_PATH $ENV{OECORE_TARGET_SYSROOT} $ENV{OECORE_NATIVE_SYSROOT} ) set( CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER ) set( CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY ) set( CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY ) set ( ORC_INCLUDE_DIRS $ENV{OECORE_TARGET_SYSROOT}/usr/include/orc-0.4 ) set ( ORC_LIBRARY_DIRS $ENV{OECORE_TARGET_SYSROOT}/usr/lib ) gnuradio-3.7.11/cmake/cmake_uninstall.cmake.in0000664000175000017500000000253213055131744021112 0ustar jcorganjcorgan# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) STRING(REGEX REPLACE "\n" ";" files "${files}") FOREACH(file ${files}) MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") IF(EXISTS "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSE(EXISTS "$ENV{DESTDIR}${file}") MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") ENDIF(EXISTS "$ENV{DESTDIR}${file}") ENDFOREACH(file) gnuradio-3.7.11/cmake/msvc/0000775000175000017500000000000013055131744015300 5ustar jcorganjcorgangnuradio-3.7.11/cmake/msvc/config.h0000664000175000017500000000360013055131744016715 0ustar jcorganjcorgan#ifndef _MSC_VER // [ #error "Use this header only with Microsoft Visual C++ compilers!" #endif // _MSC_VER ] #ifndef _MSC_CONFIG_H_ // [ #define _MSC_CONFIG_H_ //////////////////////////////////////////////////////////////////////// // enable inline functions for C code //////////////////////////////////////////////////////////////////////// #ifndef __cplusplus # define inline __inline #endif //////////////////////////////////////////////////////////////////////// // signed size_t //////////////////////////////////////////////////////////////////////// #include typedef ptrdiff_t ssize_t; //////////////////////////////////////////////////////////////////////// // rint functions //////////////////////////////////////////////////////////////////////// #if _MSC_VER < 1800 #include static inline long lrint(double x){return (long)(x > 0.0 ? x + 0.5 : x - 0.5);} static inline long lrintf(float x){return (long)(x > 0.0f ? x + 0.5f : x - 0.5f);} static inline long long llrint(double x){return (long long)(x > 0.0 ? x + 0.5 : x - 0.5);} static inline long long llrintf(float x){return (long long)(x > 0.0f ? x + 0.5f : x - 0.5f);} static inline double rint(double x){return (x > 0.0)? floor(x + 0.5) : ceil(x - 0.5);} static inline float rintf(float x){return (x > 0.0f)? floorf(x + 0.5f) : ceilf(x - 0.5f);} #endif //////////////////////////////////////////////////////////////////////// // math constants //////////////////////////////////////////////////////////////////////// #if _MSC_VER < 1800 #include #define INFINITY HUGE_VAL #endif //////////////////////////////////////////////////////////////////////// // random and srandom //////////////////////////////////////////////////////////////////////// #include static inline long int random (void) { return rand(); } static inline void srandom (unsigned int seed) { srand(seed); } #endif // _MSC_CONFIG_H_ ] gnuradio-3.7.11/cmake/msvc/sys/0000775000175000017500000000000013055131744016116 5ustar jcorganjcorgangnuradio-3.7.11/cmake/msvc/sys/time.h0000664000175000017500000000271413055131744017231 0ustar jcorganjcorgan#ifndef _MSC_VER // [ #error "Use this header only with Microsoft Visual C++ compilers!" #endif // _MSC_VER ] #ifndef _MSC_SYS_TIME_H_ #define _MSC_SYS_TIME_H_ //http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/430449b3-f6dd-4e18-84de-eebd26a8d668 #include < time.h > #include //I've ommited this line. #if defined(_MSC_VER) || defined(_MSC_EXTENSIONS) #define DELTA_EPOCH_IN_MICROSECS 11644473600000000Ui64 #else #define DELTA_EPOCH_IN_MICROSECS 11644473600000000ULL #endif #if _MSC_VER < 1900 struct timespec { time_t tv_sec; /* Seconds since 00:00:00 GMT, */ /* 1 January 1970 */ long tv_nsec; /* Additional nanoseconds since */ /* tv_sec */ }; #endif struct timezone { int tz_minuteswest; /* minutes W of Greenwich */ int tz_dsttime; /* type of dst correction */ }; static inline int gettimeofday(struct timeval *tv, struct timezone *tz) { FILETIME ft; unsigned __int64 tmpres = 0; static int tzflag; if (NULL != tv) { GetSystemTimeAsFileTime(&ft); tmpres |= ft.dwHighDateTime; tmpres <<= 32; tmpres |= ft.dwLowDateTime; /*converting file time to unix epoch*/ tmpres -= DELTA_EPOCH_IN_MICROSECS; tv->tv_sec = (long)(tmpres / 1000000UL); tv->tv_usec = (long)(tmpres % 1000000UL); } if (NULL != tz) { if (!tzflag) { _tzset(); tzflag++; } tz->tz_minuteswest = _timezone / 60; tz->tz_dsttime = _daylight; } return 0; } #endif //_MSC_SYS_TIME_H_ gnuradio-3.7.11/cmake/msvc/unistd.h0000664000175000017500000000032413055131744016756 0ustar jcorganjcorgan#ifndef _MSC_VER // [ #error "Use this header only with Microsoft Visual C++ compilers!" #endif // _MSC_VER ] #ifndef _MSC_UNISTD_H_ // [ #define _MSC_UNISTD_H_ #include #endif // _MSC_UNISTD_H_ ] gnuradio-3.7.11/config.h.in0000664000175000017500000000246013055131744015275 0ustar jcorganjcorgan/* * Copyright 2013 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #ifndef GNURADIO_CONFIG_H #define GNURADIO_CONFIG_H #ifndef TRY_SHM_VMCIRCBUF #cmakedefine TRY_SHM_VMCIRCBUF #endif #ifndef GR_PERFORMANCE_COUNTERS #cmakedefine GR_PERFORMANCE_COUNTERS #endif #ifndef GR_CTRLPORT #cmakedefine GR_CTRLPORT #endif #ifndef GR_RPCSERVER_ENABLED #cmakedefine GR_RPCSERVER_ENABLED #endif #ifndef GR_RPCSERVER_THRIFT #cmakedefine GR_RPCSERVER_THRIFT #endif #ifndef ENABLE_GR_LOG #cmakedefine ENABLE_GR_LOG #endif #ifndef HAVE_LOG4CPP #cmakedefine HAVE_LOG4CPP #endif #endif /* GNURADIO_CONFIG_H */ gnuradio-3.7.11/docs/0000775000175000017500000000000013055131744014200 5ustar jcorganjcorgangnuradio-3.7.11/docs/CMakeLists.txt0000664000175000017500000000532113055131744016741 0ustar jcorganjcorgan# Copyright 2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. ######################################################################## # Setup dependencies ######################################################################## find_package(Doxygen) find_package(Sphinx) ######################################################################## # Register component ######################################################################## include(GrComponent) GR_REGISTER_COMPONENT("doxygen" ENABLE_DOXYGEN DOXYGEN_FOUND) GR_REGISTER_COMPONENT("sphinx" ENABLE_SPHINX SPHINX_FOUND) ######################################################################## # Begin conditional configuration ######################################################################## if(ENABLE_DOXYGEN) ######################################################################## # Setup CPack components ######################################################################## include(GrPackage) CPACK_COMPONENT("docs" DISPLAY_NAME "Documentation" DESCRIPTION "Doxygen generated documentation" ) ######################################################################## # Add subdirectories ######################################################################## add_subdirectory(doxygen) add_subdirectory(exploring-gnuradio) endif(ENABLE_DOXYGEN) ######################################################################## # Begin conditional configuration ######################################################################## if(ENABLE_SPHINX) ######################################################################## # Setup CPack components ######################################################################## include(GrPackage) CPACK_COMPONENT("docs" DISPLAY_NAME "Documentation" DESCRIPTION "Sphinx generated documentation" ) ######################################################################## # Add subdirectories ######################################################################## add_subdirectory(sphinx) endif(ENABLE_SPHINX) gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.10.1.md0000664000175000017500000000331513055131744017355 0ustar jcorganjcorganChangeLog v3.7.10.1 ================= This is the first bug-fix release for v3.7.10 Contributors ------------ The following list of people directly contributed code to this release: * Artem Pisarenko * Ben Hilburn * Christopher Chavez * Johnathan Corgan * Jonathan Brucker * Nicholas Corgan * Nicolas Cuervo * Ron Economos * Sebastian Koslowski * Stephen Larew ## Major Development Areas This contains bug fixes primarily for GRC and DTV. ### GRC Catch more exceptions thrown by ConfigParser when reading corrupted grc.conf files. Fix the docstring update error for empty categories. Fix grcc to call refactored GRC code. Convert initially opened files to absolute paths to prevent attempting to read from tmp. Move startup checks back in to gnuradio-companion script from grc/checks.py. ### DTV Fix a segfault that occurs from out-of-bounds access in dvbt_bit_inner_interleaver forecast by forecasting an enumerated list of all input streams. Fix VL-SNR framing. ### Digital Enable update rate in block_recovery_mm blocks to keep tags close to the the proper clock-recovered sample time. Tag offsets will still be off between calls to work, but each work call updates the tag rate. ### Analog Fix the derivative calculation in fmdet block. ### Builds Fix linking GSL to gr-fec. Use gnu99 C standard rather than gnu11 standard to maintain support for GCC 4.6.3. ### Other Minor spelling and documentation fixes. Fix uhd_siggen_gui when using lo_locked. gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.10.2.md0000664000175000017500000001306313055131744017357 0ustar jcorganjcorganChangeLog v3.7.10.2 =================== This is the second bug-fix release for v3.7.10. Contributors ------------ The following list of people directly contributed code to this release: * Alexandru Csete * A. Maitland Bottoms * Andrej Rode * Andy Walls * Bastian Bloessl * Ben Hilburn * Bob Iannucci * Chris Kuethe * Clayton Smith * Darek Kawamoto * Ethan Trewhitt * Geof Nieboer * Hatsune Aru * Jacob Gilbert * Jiří Pinkava * Johannes Demel * Johnathan Corgan * Johannes Schmitz * Josh Blum * Kartik Patel * Konstantin Mochalov * Kyle Unice * Marcus Müller * Martin Braun * Michael De Nil * Michael Dickens * Nick Foster * Paul Cercueil * Pedro Lobo * Peter Horvath * Philip Balister * Ron Economos * Sean Nowlan * Sebastian Koslowski * Sebastian Müller * Sylvain Munaut * Thomas Habets * Tim O'Shea * Tobias Blomberg Bug Fixes ========= The GNU Radio project tracks bug fixes via Github pull requests. You can get details on each of the below by going to: https://github.com/gnuradio/gnuradio ### gnuradio-runtime * \#1034 Fixed performance counter clock option (Pedro Lobo) * \#1041 Connect message ports before unlock (Bastian Bloessl) * \#1065 Fixed initialization order of ctrlport static variables (Kyle Unice) * \#1071 Fixed cmake lib/lib64 issues (Philip Balister) * \#1075 Fixed pmt thread safety issue (Darek Kawamoto) * \#1119 Start RPC on message port only blocks (Jacob Gilbert) * \#1121 Fixed tag_t default copy constructor / operator= bug (Darek Kawamoto) * \#1125 Fixed pmt_t threading issue with memory fence (Darek Kawamoto) * \#1152 Fixed numpy warning in pmt code (Bob Iannucci) * \#1160 Fixed swig operator= warning messages (Darek Kawamoto) ### gnuradio-companion * \#901 Backwards compatibility fix for pygtk 2.16 (Michael De Nil) * \#1060 Fixed for Python 2.6.6 compatibility (Ben Hilburn) * \#1063 Fixed IndexError when consuming \b (Sebastian Koslowski) * \#1074 Fixed display scaling (Sebastian Koslowski) * \#1095 Fixed new flowgraph generation mode (Sebastian Koslowski) * \#1096 Fixed column widths for proper scaling (Sebastian Müller) * \#1135 Fixed trailing whitespace output (Clayton Smith) * \#1168 Fixed virtual connection with multiple upstream (Sebastian Koslowski) * \#1200 Fixed cheetah template evaluation 'optional' tag (Sean Nowls) ### docs * \#1114 Fixed obsolete doxygen tags (A. Maitland Bottoms) ### gr-analog * \#1201 Added missing probe_avg_mag_sqrd_cf block to GRC (Sean Nowls) ### gr-blocks * \#1161 Fixed minor inconsistencies in block XML (Sebastian Koslowski) * \#1191 Fixed typo on xor block XML (Hatsune Aru) * \#1194 Fixed peak detector fix initial value (Bastian Bloessl) ### gr-digital * \#1084 Fixed msk_timing_recovery out-of-bounds (warning) (Nick Foster) * \#1149 Clarify documentation of clock_recovery_mm_xx (Thomas Habets) ### gr-dtv * \#902 Fixed incorrect assert and set_relative_rate() (Ron Economos) * \#1066 Fixed GSL link problem with gr-dtv and gr-atsc (Peter Horvath) * \#1177 Add missing find_package for GSL (Geof Gnieboer) ### gr-fcd * \#1030 Updated hidapi to latest HEAD (Alexandru Csete) ### gr-fec * \#1049 Throw exception if K and R are not supported (Clayton Smith) * \#1174 Fixed missing header file installation (Sean Nowls) ### gr-filter * \#1070 Fix pfb_arb_resampler producing too many samples (Sylvain Munaut) ### gr-qtgui * \#899 Fixed dark.qss data lines forced-on (Tim O'Shea) * \#918 Fixed y-axis unit display in Frequency Sink (Tobias Blomberg) * \#920 Fixed axis labels checkbox in Frequency Sink (Tobias Blomberg) * \#1023 Fixed control panel FFT slider in Frequency Sink (Tobias Blomberg) * \#1028 Fixed cmake for C++ example (Bastian Bloessl) * \#1036 Corrected whitespace issues (Sebastian Koslowski) * \#1037 Fixed tag color to obey style sheet (Johannes Demel) * \#1158 Fixed SIGSEGV for tag trigger with constellation sink (Andy Walls) * \#1187 Fixed time sink complex message configuration (Kartik Patel) * \#1192 Fixed redundant time sink configuration options (Kartik Patel) ### gr-uhd * \#914 Fixed order of include dirs (Martin Braun) * \#1133 Fixed channel number resolution (Andrej Rode) * \#1137 Disable boost thread interrupts during send() and recv() (Andrej Rode) * \#1142 Fixed documentation for pmt usage (Marcus Müller) ### Platform-specific changes * \#886 Fixed numerous Windows/MSVC portability issues (Josh Blum) * \#1062 Set default filepath to documents dir for windows (Geof Gnieboer) * \#1085 Fixed mingw-w64 portability issues (Paul Cercueil) * \#1140 Added boost atomic and chrono linkage for Windows (Josh Blum) * \#1146 Use -undefined dynamic_lookup linkage for (swig) on MacOS (Konstantin Mochalov) * \#1172 Fixed file monitor on windows (Sebastian Koslowski) * \#1179 MSVC build updates (Josh Blum) gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.10.md0000664000175000017500000001575613055131744017232 0ustar jcorganjcorganChangeLog v3.7.10 ================= This significant feature release of the 3.7 API series, and incorporates all the bug fixes implemented in the 3.7.9.3 maintenance release. Contributors ------------ The following list of people directly contributed code to this release: * A. Maitland Bottoms * Andrej Rode * Andy Sloane * Andy Walls * Chris Kuethe * Clayton Smith * Daehyun Yang * Derek Kozel * Federico La Rocca * Geof Nieboer * Glenn Richardson * Glenn Richardson * Jiří Pinkava * Johannes Schmitz * Johnathan Corgan * Kevin McQuiggin * Laur Joost * Marcus Müller * Martin Braun * Matt Hostetter * Michael Dickens * Nathan West * Paul Cercueil * Paul David * Philip Balister * Ron Economos * Sean Nowlan * Sebastian Koslowski * Seth Hitefield * Stefan Wunsch * Tim O'Shea * Tom Rondeau * Tracie Renea ## Major Development Areas This release sees the integration of a number of long-time development efforts in various areas of the tree, including GRC, new packet/burst communications features for gr-digital, new standards implementations for gr-dtv. In addition, it incorporates all of the bug fixes released as part of the 3.7.9.3 maintenance release. ### GRC The GNU Radio Companion development environment continues to undergo rapid development and refactoring. The tools and workflow have been improved in the following ways: * Variable explorer panel and option to hide variables from canvas * Nicer block documentation tool-tip and properties dialog tab * Screenshots can have transparent background * Darker color for bypassed blocks * Select all action * Block alignment tools * Added bits (unpacked bytes) as a data type * Show warning for blocks flagged as deprecated * Remove [] around categories in the block library * Separate core and OOT block trees via the category of each block The refactor of GRC continues. This should be mostly feature neutral and make it easier for new contributors to come in and make useful changes. Part of this is deprecating blks2 and and xmlrpc blocks and moving them to components where they would be expected to be found rather than the GRC sub-tree. ### Packet Communications A long-time feature branch developed by Tom Rondeau has been merged into the tree, implementing new blocks and methods for packet communications. This is intended to replace much of the older, overlapping, and Python-only packet-based code that already exists. As this code matures, we will be marking this older code as deprecated with the plan to remove it in the new 3.8 API. ### DTV DTV has new transmitters for DVB-S and ITU-T J.83B 64QAM. New support for DVB-S2X VL-SNR code rates, modulation, and framing for AMSAT are also available. A significantly improved OFDM symbol synchronizer was implemented for the DVB-T receiver (Ron Economos, Federico La Rocca). ## Other Feature Development ### Runtime Clear tags and reset all item counters when merging connections between blocks, which prevents bad values from being propagated on lock/unlock operations. Blocks always set their max_noutput_items before a flowgraph starts if it hasn't already been set. Added some options to gnuradio-config-info that prints information about the gnuradio prefs file. The old customized preference file reader is replaced with a boost program options object. ### QT GUIs The QT GUI widgets can now toggle axis labels and the frequency sink has a new feature to set the y-axis label. This could be useful for changing units on calibrated measurements. The QT GUI Entry widget has a new message port that emits a message containing the new text whenever editing is finished. QT widgets recently had an optional message port to plot PDUs. This release adds a feature to plot the tag metadata contained in the PDU. A new example shows how to build a C++ only QT based application. ### gr-digital New QA for tagged stream correlate access code blocks further cement how these blocks should be behaving. 16QAM is now available from the GRC constellation object dialog drop down menu. ### gr-analog The frequency modulator now has sensitivity exposed through controlport. New FM pre emphasis and de-emphasis filters. The previous filters were effectively all-pass filters. There is a very nice write up on the new filters in gr-analog/python/analog/fm_emph.py A new message port to sig_source is available that can set signal frequency with the same convention as gr-uhd usrp_source. ### gr-filter Use the max_noutput_items in start() to allocate FFT buffers for the PFB decimator rather than always allocating/freeing a buffer in work(). ### gr-blocks Add a run-time accessor and setter for interpolation of repeat blocks. vector_sink.reset() clears tags now Add accessors for the vector_source repeat flag so it's settable outside the ctor. Fix tuntap devices MTU size. Previously MTU size argument was used to allocate correct buffer size, but didn't actually change the MTU of the underlying device. The UDP source block can read gr prefs file for the payload buffer size or default to the existing value of 50. Yet another block making use of VOLK: the divide_cc block is now 10x faster on some machines. ### gr-uhd New argument in usrp_source initializer to start streaming on the start of a flowgraph which defaults to true (the existing behavior). Add a clock-source argument to uhd_fft. A new message command handler for the usrp_source block will trigger a time and rate tag to be emitted. Added support for importing, exporting, and sharing LOs. ### gr-audio Refactor audio sink for windows with multiple buffers to prevent skipping. ### modtool Add an option to set the copyright field for new files. New modules will detect PYBOMBS_PREFIX and install to the defined location. Add versioning support for OOT modules by default. ### Builds Enable controlport for static builds. Enable GR_GIT_COUNT and GR_GIT_HASH environment variables for extended versioning number for packagers. We explicitly set the C/C++ standards to C++98 and gnu11 rather than use the compiler defaults since many compilers are moving to C++11 by default. Incidentally this caused minor breakage with a subtle VOLK API fix in gr-dtv which was also fixed. Fixed finding GNU Radio + VOLK in non-standard prefixes when compiling OOT modules. gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.11.md0000664000175000017500000001044513055131744017221 0ustar jcorganjcorganChangeLog v3.7.11 ================= This is a feature release of the 3.7 API series, and incorporates all the bug fixes implemented in the 3.7.10.2 maintenance release. Contributors ------------ The following list of people directly contributed code to this release and the incorporated maintenance release: * A. Maitland Bottoms * Alexandru Csete * Andrej Rode * Andy Walls * Artem Pisarenko * Bastian Bloessl * Ben Hilburn * Bob Iannucci * Chris Kuethe * Christopher Chavez * Clayton Smith * Darek Kawamoto * Ethan Trewhitt * Geof Gnieboer * Hatsune Aru * Jacob Gilbert * Jiří Pinkava * Johannes Demel * Johannes Schmitz * Johnathan Corgan * Jonathan Brucker * Josh Blum * Kartik Patel * Konstantin Mochalov * Kyle Unice * Marcus Müller * Martin Braun * Michael De Nil * Michael Dickens * Nathan West * Nicholas Corgan * Nick Foster * Nicolas Cuervo * Paul Cercueil * Pedro Lobo * Peter Horvath * Philip Balister * Ron Economos * Sean Nowlan * Sebastian Koslowski * Sebastian Müller * Stephen Larew * Sylvain Munaut * Thomas Habets * Tim O'Shea * Tobias Blomberg Changes ======= The GNU Radio project tracks changes via Github pull requests. You can get details on each of the below by going to: https://github.com/gnuradio/gnuradio Note: Please see the release notes for 3.7.10.2 for details on the bug fixes included in this release. ### gnuradio-runtime * \#1077 Support dynamically loaded gnuradio installs (Josh Blum) ### gnuradio-companion * \#1118 Support vector types in embedded Python blocks (Clayton Smith) ### gr-audio * \#1051 Re-implemented defunct Windows audio source (Geof Gnieboer) * \#1052 Implemented block in Windows audio sink (Geof Gnieboer) ### gr-blocks * \#896 Added PDU block setters and GRC callbacks (Jacob Gilbert) * \#900 Exposed non-vector multiply const to GRC (Ron Economos) * \#903 Deprecated old-style message queue blocks (Johnathan Corgan) * \#1067 Deprecated blks2 namespace blocks (Johnathan Corgan) ### gr-digital * \#910 Deprecated correlate_and_sync block 3.8 (Johnathan Corgan) * \#912 Deprecated modulation blocks for 3.8 (Sebastian Müller) * \#1069 Improved build memory usage with swig split (Michael Dickens) * \#1097 Deprecated mpsk_receiver_cc block (Johnathan Corgan) * \#1099 Deprecated old-style OFDM receiver blocks (Martin Braun) ### gr-dtv * \#875 Added ability to cross-compile gr-dtv (Ron Economos) * \#876 Improved ATSC transmitter performance (Ron Economos) * \#894 Refactored DVB-T RS decoder to use gr-fec (Ron Economos) * \#898 Improved error handling and logging (Ron Economos) * \#900 Improved DVB-T performance (Ron Economos) * \#907 Updated examples to use QT (Ron Economos) * \#1025 Refactor DVB-T2 interleaver (Ron Economos) ### gr-filter * \#885 Added set parameter msg port to fractional resampler (Sebastian Müller) ### gr-trellis * \#908 Updated examples to use QT (Martin Braun) ### gr-uhd * \#872 Added relative phase plots to uhd_fft (Martin Braun) * \#1032 Replace zero-timeout double-recv() with one recv() (Martin Braun) * \#1053 UHD apps may now specify multiple subdevs (Martin Braun) * \#1101 Support TwinRX LO sharing parameters (Andrej Rode) * \#1139 Use UHD internal normalized gain methods (Martin Braun) ### gr-utils * \#897 Improved python docstring generation in gr_modtool gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.9.1.md0000664000175000017500000000721113055131744017304 0ustar jcorganjcorganChangeLog v3.7.9.1 ================== Contributors ------------ The following list of people directly contributed code to this release. As an added bonus this is the first contribution for three of these authors! - Andrej Rode - Paul David - Derek Kozel - Johannes Schmitz - Johnathan Corgan - Marcus Müller - Martin Braun - Philip Balister - Ron Economos - Sebastian Koslowski - Sylvain Munaut - Tim O’Shea - Tom Rondeau ### Closed issues - \#528 - \#719 - \#768 - \#831 - \#864 - \#868 - \#876 - \#879 - \#882 - \#883 Code ---- This release includes a number of minor typos and miscellaneous rewording of\ error messages. The following sections summarize substantial changes. ### GRC - the ‘Parser errors’ menu item wasn’t correctly enabled - embedded python blocks: message ports are now optionial and show the correct label - custom run command now accounts for filepaths that need escaping - virtual sink/source message connections were dropped when opening a flow graph - tooltips in block library are truncated if too long - not all tooltips in block library were updated after docstring extraction finished - some expressions were wrongfully marked invalid after opening a flow graph - move random uniform source from analog to waveform generators in GRC ### Scheduler and Runtime fixes A new unit test is available to test a bug reported on stack overflow where blocks (such as the delay block) would drop tags. Paul David stepped in with his first contribution to GNU Radio with a fix. Fix an issue with flat\_flowgraph calculating alignment by misinterpreting units of write and read indeces. This was only apparent when these indeces are non-zero (a flowgraph has stopped and restarted). Fix exceptions thrown in hier\_block2 constructors. Check d\_ninput\_items\_required for overflow and shut down if overflow is detected. Allow hier\_block2’s to change I/O signature in the constructor, which was previously allowed by the API, but broken. ### gr-blocks Use unsigned char rather than char in add\_const\_bb. This was the legacy behavior with the older add\_const\_XX and was accidentally replaced with char when replacing the templated version. Fix vector length units from bytes to number of items in PDU to tagged stream and tagged stream to PDU blocks. ### gr-filter Add a check to the rational resampler to stop working after we’ve operated on all input items (closed issue \#831) Throw an error when pfb clock sync is given constant taps which results in a derivative of 0 (calculated as NaN). (closed issue \#812 and 734). Added a reset\_taps function to externally set taps which should be used in place of set\_taps. Fix a memory leak in pfb decimator (closed issue \#882) ### gr-analog Maximum Deviation parameter for NBFM transmitter exposed to GRC ### gr-digital Change the constellation receiver to inherit from control\_loop publically rather than the impl to better support the control port interface. (closed issue \#876) ### gr-fec TLC to puncture/depuncture GRC files in gr-fec ### gr-zeromq Major performance and correctness fixes to gr-zeromq ### Builds Fix cross compiling on for 64-bit architectures by not setting DEBIAN, REDHAT, and SLACKWARE. OOT modules created with modtool should update their cmake/Modules/GrPlatform.cmake to support cross 64-bit builds. gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.9.2.md0000664000175000017500000001015013055131744017301 0ustar jcorganjcorganChangeLog v3.7.9.2 ================== Contributors ------------ The following list of people directly contributed code to this release. * Glenn Richardson * Jacob Gilbert * Jaroslav Å karvada * Johnathan Corgan * Marcus Müller * Martin Braun * Nathan West * Nicholas Corgan * Paul Cercueil * Sean Nowlan * Sebastian Koslowski * Tim O'Shea * Tom Rondeau * Tracie Perez ### Closed issues - \# 856 - \# 901 - \# 903 - \# 904 Code ---- Several changes fixed type consistency of parameters and documentation/comment clarifications. The following sections summarize substantial changes by component. ### GRC Fix GRC support for scrolling with keyboard PAGEUP and PAGEDOWN buttons. Pasting blocks will now * remove position offset when pasting blocks into an empty flow graph * ignore unknown block keys when pasting blocks XML comments are now ignored rather than parsed as part of the block wrapper. Rewrite block before adding connections during flowgraph import E.g.: Not all connections to a block with nports controlled via a parameter block could be restored from file. Stop overwritting modified param values in epy blocks Flowgraphs now run even if a bypassed block has errors. ### QT GUIs Fixed sample range that fetches tags that would previously duplicate tags that show up on the last sample in a buffer. ### gr-digital Fix the internal mask for access codes in correlate_access_code_bb_ts and correlate_access_code_ff_ts. Previously the top (most significant) bits were set for the internal mask. This matches a fix fo the correlate_access_code_tag_bb block from v3.7.5.2. Look for similar fixes and consistency changes to the correlate_access_code blocks in the future. Added test descriptions for the burst shaper QA and removed unnecessary padding. ### gr-fec FEC documentation continues to improve with every release. Fixes to improve support for LDPC blocks in GRC. The example flowgraph ber_curve_gen_ldpc should run properly now. ### gr-filter Reformatted documentation. ### gr-fft Always use volk_malloc rather than fftwf_malloc because some binary builds may not include AVX which will cause alignment faults when fftwf_malloc created buffers are used in AVX+ proto-kernels. ### gr-blocks Remove duplicated tags in the tagged_stream_align block. Fix the type of nitems in set_length (was int, now uint64_t). ### gr-uhd Loosen requirements for multi-channel operations to have timed command capability. A few usability fixes to uhd_rx_cfile related to messages in verbose mode and default options. XML files call the correct functions for correcting DC offset and IQ imbalance. ### Utilities gr-perf-monitorx has several small fixes. First, a stability issue that manifested with the ATSC receive flowgraphs was fixed by adding a small offset to prevent calculating log(0). Additionally the import of networkx has been updated to match newer matplotlib and networkx modules while maintaining compatibility with older versions. ### modtool Fix gr_modtool rename command for GRC XML files to include the module name. Fix template expansion code for out of tree modules by adding build_utils.py to PYTHONPATH. New modules will also have a CMAKE_MODULES_PATH with the module `cmake/Modules` directory first over the installed GNU Radio modules. The gr_modtool alias and description for renaming blocks match the functionality. The new alias is `mv`. ### Builds A misnamed variable, INCLUDE_DIRS (set by pkg-config) vs INCLUDE_DIR (never set), has been fixed in FindThrift.cmake. The headers should now be found for the case of thrift being installed in a prefix that is different than the target prefix. Cross compiling with thrift will now use the SDK sysroot's native thrift binary rather than the system thrift binary. Minor cmake/swig fix to generate non-make build files. gnuradio-3.7.11/docs/RELEASE-NOTES-3.7.9.3.md0000664000175000017500000000514113055131744017306 0ustar jcorganjcorganChangeLog v3.7.9.3 ================== This is the final, bug-fix only release of the 3.7.9 release series. Contributors ------------ The following list of people directly contributed code to this release. * A. Maitland Bottoms * Andrej Rode * Andy Sloane * Andy Walls * Clayton Smith * Daehyun Yang * Geof Nieboer * Glenn Richardson * Jiří Pinkava * Johannes Schmitz * Johnathan Corgan * Laur Joost * Marcus Müller * Martin Braun * Nathan West * Paul Cercueil * Philip Balister * Sebastian Koslowski * Stefan Wunsch * Tom Rondeau * Tracie Renea Bug fixes --------------- * cmake: Quiet excessive warnings from cmake regarding deprecated usage. (Stefan Wunsch) * gnuradio-runtime: Fixed race condition during flowgraph locking/unlocking (Jiří Pinkava) * gnuradio-runtime: Fixed incorrect pmt serialization for double (Johannes Schmitz) * gnuradio-runtime: Fixed invalid string reference usage (Daehyun Yang) * gr-audio: Removed inline comments in conf file to workaround parsing bug (Marcus Mueller) * gr-blocks: Fixed stream corruption at termination with UDP source/sink blocks. (Andy Sloane) * gr-blocks: Fixed tag propagation for stream mux block (Andrej Rode) * gr-digital: Fixed incorrect symbol reporting for unusual carrier allocations in OFDM blocks (Martin Braun) * gr-digital: Fixed missing documentation in OFDM blocks (Martin Braun) * gr-dtv: Fixed broken assertions in DVB-T blocks (Clayton Smith) * gr-fec: Cleaned up and fixed LDPC encoder/decoder pair for memory handling, documentation, and Python function errors. (Tracie Renea) * gr-filter: Improved documentation iir_filter blocks. (Laur Joost) * gr-filter: Fixed broken imports of optfir module in examples (Jiří Pinkava) * gr-uhd: Fixed timing of set_sample_rate call during initialization (Marcus Mueller) * gr-zmq: Accomodate gcc 6.x changes to casting requirements (Philip Balister) Numerous MSVC/mingw incompatibilities that have crept in the last few releases have been corrected in this release. Special thanks go to Geof Gnieboer and Paul Cercueil (Analog Devices, Inc.) for their testing and patches. gnuradio-3.7.11/docs/doxygen/0000775000175000017500000000000013055131744015655 5ustar jcorganjcorgangnuradio-3.7.11/docs/doxygen/CMakeLists.txt0000664000175000017500000000517013055131744020420 0ustar jcorganjcorgan# Copyright 2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. ######################################################################## # Create the doxygen configuration file ######################################################################## file(TO_NATIVE_PATH ${CMAKE_SOURCE_DIR} top_srcdir) file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR} top_builddir) file(TO_NATIVE_PATH ${CMAKE_SOURCE_DIR} abs_top_srcdir) file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR} abs_top_builddir) set(HAVE_DOT ${DOXYGEN_DOT_FOUND}) set(enable_html_docs YES) set(enable_latex_docs NO) set(enable_xml_docs YES) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) set(BUILT_DIRS ${CMAKE_CURRENT_BINARY_DIR}/xml ${CMAKE_CURRENT_BINARY_DIR}/html) if(ENABLE_GNURADIO_RUNTIME) list(APPEND GENERATED_DEPS pmt_generated) endif(ENABLE_GNURADIO_RUNTIME) if(ENABLE_GR_BLOCKS) list(APPEND GENERATED_DEPS blocks_generated_includes) endif(ENABLE_GR_BLOCKS) if(ENABLE_GR_ANALOG) list(APPEND GENERATED_DEPS analog_generated_includes) endif(ENABLE_GR_ANALOG) if(ENABLE_GR_DIGITAL) list(APPEND GENERATED_DEPS digital_generated_includes) endif(ENABLE_GR_DIGITAL) if(ENABLE_GR_FILTER) list(APPEND GENERATED_DEPS filter_generated_includes) endif(ENABLE_GR_FILTER) if(ENABLE_GR_TRELLIS) list(APPEND GENERATED_DEPS trellis_generated_includes) endif(ENABLE_GR_TRELLIS) ######################################################################## # Make and install doxygen docs ######################################################################## add_custom_command( OUTPUT ${BUILT_DIRS} COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS ${GENERATED_DEPS} COMMENT "Generating documentation with doxygen" ) add_custom_target(doxygen_target ALL DEPENDS ${BUILT_DIRS}) install(DIRECTORY ${BUILT_DIRS} DESTINATION ${GR_PKG_DOC_DIR} COMPONENT "docs") gnuradio-3.7.11/docs/doxygen/Doxyfile.in0000664000175000017500000026060713055131744020003 0ustar jcorganjcorgan# Doxyfile 1.8.4 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed # in front of the TAG it is preceding . # 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 sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = "GNU Radio Manual and C++ API Reference" # 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 = "@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 = "The Free & Open Software Radio Ecosystem" # 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 = @CMAKE_SOURCE_DIR@/docs/doxygen/gnuradio_logo_icon.png # 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 = # 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, Latvian, 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 = # 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 = YES # 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 = NO # 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. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. 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 = @CMAKE_SOURCE_DIR@/gnuradio-runtime/include \ @CMAKE_BINARY_DIR@/gnuradio-runtime/include \ @CMAKE_SOURCE_DIR@/gr-analog/include \ @CMAKE_BINARY_DIR@/gr-analog/include \ @CMAKE_SOURCE_DIR@/gr-atsc/include \ @CMAKE_BINARY_DIR@/gr-atsc/include \ @CMAKE_SOURCE_DIR@/gr-audio/include \ @CMAKE_BINARY_DIR@/gr-audio/include \ @CMAKE_SOURCE_DIR@/gr-blocks/include \ @CMAKE_BINARY_DIR@/gr-blocks/include \ @CMAKE_SOURCE_DIR@/gr-channels/include \ @CMAKE_BINARY_DIR@/gr-channels/include \ @CMAKE_SOURCE_DIR@/gr-comedi/include \ @CMAKE_BINARY_DIR@/gr-comedi/include \ @CMAKE_SOURCE_DIR@/gr-digital/include \ @CMAKE_BINARY_DIR@/gr-digital/include \ @CMAKE_SOURCE_DIR@/gr-dtv/include \ @CMAKE_BINARY_DIR@/gr-dtv/include \ @CMAKE_SOURCE_DIR@/gr-fcd/include \ @CMAKE_BINARY_DIR@/gr-fcd/include \ @CMAKE_SOURCE_DIR@/gr-fec/include \ @CMAKE_BINARY_DIR@/gr-fec/include \ @CMAKE_SOURCE_DIR@/gr-fft/include \ @CMAKE_BINARY_DIR@/gr-fft/include \ @CMAKE_SOURCE_DIR@/gr-filter/include \ @CMAKE_BINARY_DIR@/gr-filter/include \ @CMAKE_SOURCE_DIR@/gr-noaa/include \ @CMAKE_BINARY_DIR@/gr-noaa/include \ @CMAKE_SOURCE_DIR@/gr-pager/include \ @CMAKE_BINARY_DIR@/gr-pager/include \ @CMAKE_SOURCE_DIR@/gr-qtgui/include \ @CMAKE_BINARY_DIR@/gr-qtgui/include \ @CMAKE_SOURCE_DIR@/gr-trellis/include \ @CMAKE_BINARY_DIR@/gr-trellis/include \ @CMAKE_SOURCE_DIR@/gr-uhd/include \ @CMAKE_BINARY_DIR@/gr-uhd/include \ @CMAKE_SOURCE_DIR@/gr-video-sdl/include \ @CMAKE_BINARY_DIR@/gr-video-sdl/include \ @CMAKE_SOURCE_DIR@/gr-vocoder/include \ @CMAKE_BINARY_DIR@/gr-vocoder/include \ @CMAKE_SOURCE_DIR@/gr-wavelet/include \ @CMAKE_BINARY_DIR@/gr-wavelet/include \ @CMAKE_SOURCE_DIR@/gr-wxgui/include \ @CMAKE_BINARY_DIR@/gr-wxgui/include \ @CMAKE_SOURCE_DIR@/gr-zeromq/include \ @CMAKE_BINARY_DIR@/gr-zeromq/include \ @CMAKE_SOURCE_DIR@/volk/include \ @CMAKE_BINARY_DIR@/volk/include \ @CMAKE_SOURCE_DIR@/volk/tmpl \ @CMAKE_BINARY_DIR@/volk/tmpl # 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 = YES # 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 = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # 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 MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by by putting a % sign in front of the word # or globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # 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 = YES # 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 the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields or simple typedef fields will be shown # inline in the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO (the default), structs, classes, and unions are shown on a separate # page (for HTML and Man pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # 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 size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can # be an expensive process and often the same symbol appear multiple times in # the code, doxygen keeps a cache of pre-resolved symbols. If the cache is too # small doxygen will become slower. If the cache is too large, memory is wasted. # The cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid # range is 0..9, the default is 0, corresponding to a cache size of 2^16 = 65536 # symbols. LOOKUP_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 respectively 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_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # 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 = YES # 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 = NO # 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 = NO # 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 = YES # 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 = NO # 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 = NO # 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 = NO # 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= NO # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. 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 # 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. To 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 = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # 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 = YES # 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 = @top_srcdir@ \ @top_builddir@ # 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 = *.h \ *.dox # 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 = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # 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. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = @abs_top_srcdir@/volk \ @abs_top_builddir@/volk \ @abs_top_builddir@/cmake/msvc \ @abs_top_builddir@/docs/doxygen/html \ @abs_top_builddir@/docs/doxygen/xml \ @abs_top_builddir@/docs/doxygen/other/doxypy.py \ @abs_top_srcdir@/docs/doxygen/other/shared_ptr_docstub.h \ @abs_top_builddir@/dtools \ @abs_top_builddir@/gnuradio-runtime/lib/runtime/gr_error_handler.cc \ @abs_top_builddir@/gnuradio-runtime/swig \ @abs_top_builddir@/gnuradio-runtime/python/build_utils.py \ @abs_top_builddir@/gnuradio-runtime/python/build_utils_codes.py \ @abs_top_builddir@/gnuradio-runtime/python/gnuradio/gr/gr_threading.py \ @abs_top_builddir@/gnuradio-runtime/python/gnuradio/gr/gr_threading_23.py \ @abs_top_builddir@/gnuradio-runtime/python/gnuradio/gr/gr_threading_24.py \ @abs_top_builddir@/gr-atsc/swig/atsc_swig.py \ @abs_top_builddir@/gr-atsc/lib/gen_encoder.py \ @abs_top_builddir@/gr-atsc/python \ @abs_top_builddir@/gr-pager/swig/pager_swig.py \ @abs_top_builddir@/gr-trellis/doc \ @abs_top_builddir@/gr-trellis/swig/trellis_swig.py \ @abs_top_builddir@/gr-video-sdl/swig/video_sdl_swig.py \ @abs_top_builddir@/gr-wxgui/python \ @abs_top_builddir@/grc \ @abs_top_builddir@/_CPack_Packages \ @abs_top_srcdir@/cmake \ @abs_top_srcdir@/gr-utils/python/modtool/gr-newmod \ @abs_top_srcdir@/docs/doxygen/doxyxml/example \ @abs_top_srcdir@/docs/sphinx \ @abs_top_srcdir@/gnuradio-runtime/lib \ @abs_top_builddir@/gnuradio-runtime/lib \ @abs_top_srcdir@/gr-analog/lib \ @abs_top_builddir@/gr-analog/lib \ @abs_top_srcdir@/gr-atsc/lib \ @abs_top_builddir@/gr-atsc/lib \ @abs_top_srcdir@/gr-audio/lib \ @abs_top_builddir@/gr-audio/lib \ @abs_top_srcdir@/gr-blocks/lib \ @abs_top_builddir@/gr-blocks/lib \ @abs_top_srcdir@/gr-channels/lib \ @abs_top_builddir@/gr-channels/lib \ @abs_top_srcdir@/gr-comedi/lib \ @abs_top_builddir@/gr-comedi/lib \ @abs_top_srcdir@/gr-digital/lib \ @abs_top_builddir@/gr-digital/lib \ @abs_top_srcdir@/gr-dtv/lib \ @abs_top_builddir@/gr-dtv/lib \ @abs_top_srcdir@/gr-dtv/lib/atsc \ @abs_top_builddir@/gr-dtv/lib/atsc \ @abs_top_srcdir@/gr-dtv/lib/dvb \ @abs_top_builddir@/gr-dtv/lib/dvb \ @abs_top_srcdir@/gr-dtv/lib/dvbs2 \ @abs_top_builddir@/gr-dtv/lib/dvbs2 \ @abs_top_srcdir@/gr-dtv/lib/dvbt2 \ @abs_top_builddir@/gr-dtv/lib/dvbr2 \ @abs_top_srcdir@/gr-fcd/lib \ @abs_top_builddir@/gr-fcd/lib \ @abs_top_srcdir@/gr-fec/lib \ @abs_top_builddir@/gr-fec/lib \ @abs_top_srcdir@/gr-filter/lib \ @abs_top_builddir@/gr-filter/lib \ @abs_top_srcdir@/gr-fft/lib \ @abs_top_builddir@/gr-fft/lib \ @abs_top_srcdir@/gr-noaa/lib \ @abs_top_builddir@/gr-noaa/lib \ @abs_top_srcdir@/gr-pager/lib \ @abs_top_builddir@/gr-pager/lib \ @abs_top_srcdir@/gr-qtgui/lib \ @abs_top_builddir@/gr-qtgui/lib \ @abs_top_srcdir@/gr-trellis/lib \ @abs_top_builddir@/gr-trellis/lib \ @abs_top_srcdir@/gr-uhd/lib \ @abs_top_builddir@/gr-uhd/lib \ @abs_top_srcdir@/gr-uhd/examples/c++ \ @abs_top_builddir@/gr-uhd/examples/c++ \ @abs_top_srcdir@/gr-utils/lib \ @abs_top_builddir@/gr-utils/lib \ @abs_top_srcdir@/gr-video-sdl/lib \ @abs_top_builddir@/gr-video-sdl/lib \ @abs_top_srcdir@/gr-vocoder/lib \ @abs_top_builddir@/gr-vocoder/lib \ @abs_top_srcdir@/gr-wavelet/lib \ @abs_top_builddir@/gr-wavelet/lib \ @abs_top_srcdir@/gr-wxgui/lib \ @abs_top_builddir@/gr-wxgui/lib \ @abs_top_srcdir@/gr-zeromq/lib \ @abs_top_builddir@/gr-zeromq/lib \ @abs_top_srcdir@/volk/cmake/msvc \ @abs_top_builddir@/volk/cmake/msvc \ @abs_top_srcdir@/volk/kernels/volk/volk_8u_conv_k7_r2puppet_8u.h # The EXCLUDE_SYMLINKS tag can be used to 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 = */.deps/* \ */.libs/* \ */.svn/* \ */CVS/* \ */__init__.py \ */gr-atsc/src/lib/Gr* \ */moc_*.cc \ */qa_*.cc \ */qa_*.h \ */qa_*.py # 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 = ad9862 \ numpy \ *swig* \ *Swig* \ *my_top_block* \ *my_graph* \ *app_top_block* \ *am_rx_graph* \ *_queue_watcher_thread* \ *MyFrame* \ *MyApp* \ *PyObject* \ *wfm_rx_block* \ *_sptr* \ *wfm_rx_sca_block* \ *tv_rx_block* \ *wxapt_rx_block* \ *example_signal* # 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 = @abs_top_srcdir@ # 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 = @abs_top_srcdir@/docs/doxygen/images/ # 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. # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. 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 = *.py=@top_srcdir@/docs/doxygen/other/doxypy.py # 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 = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # 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 = NO # 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, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = NO # 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 = 5 # 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 = #--------------------------------------------------------------------------- # 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 = @enable_html_docs@ # 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. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # 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 = # 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 left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet 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 = 100 # 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_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. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # 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 = YES # 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 (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = YES # 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. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE 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 # 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 = 180 # 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 = NO # 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 may 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 can set the default output format to be used for # the MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # 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 Content Delivery Network so you can quickly see the result without # installing MathJax. # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript # pieces of code that will be used on startup of the MathJax code. MATHJAX_CODEFILE = # 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 = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search # engine library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # 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 = @enable_latex_docs@ # 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 = NO # 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 a4 will be used. PAPER_TYPE = letter # 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 = amsmath,amssymb # 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 = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images # or other source files which should be copied to the LaTeX output directory. # Note that the files will be copied as-is; there are no commands or markers # available. LATEX_EXTRA_FILES = # 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 = NO # 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 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # 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 style sheet 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 = @enable_xml_docs@ # 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 # 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 = NO #--------------------------------------------------------------------------- # configuration options related to the DOCBOOK output #--------------------------------------------------------------------------- # If the GENERATE_DOCBOOK tag is set to YES Doxygen will generate DOCBOOK files # that can be used to generate PDF. GENERATE_DOCBOOK = NO # The DOCBOOK_OUTPUT tag is used to specify where the DOCBOOK 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 docbook will be used as the default path. DOCBOOK_OUTPUT = docbook #--------------------------------------------------------------------------- # 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 # pointed to by INCLUDE_PATH will be searched when 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 = @abs_top_builddir@/gnuradio-runtime/lib/pmt/ # 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. For each # tag file the location of the external documentation should be added. 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. 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 = # 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 = # 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 # If the EXTERNAL_PAGES tag is set to YES all external pages will be listed # in the related pages index. If set to NO, only the current project's # pages will be listed. EXTERNAL_PAGES = 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 = @HAVE_DOT@ # 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 use the Helvetica font for 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 = Helvetica # 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 Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. 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 # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = NO # 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 = NO # 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 = NO # 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 the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # manageable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # 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 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 = NO # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = NO # 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 = 0 # 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 = NO # 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 = YES # 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 gnuradio-3.7.11/docs/doxygen/Doxyfile.swig_doc.in0000664000175000017500000023454713055131744021604 0ustar jcorganjcorgan# Doxyfile 1.8.4 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed # in front of the TAG it is preceding . # 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 sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = @CPACK_PACKAGE_NAME@ # 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 = @CPACK_PACKAGE_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 = @OUTPUT_DIRECTORY@ # 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, Latvian, 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 = # 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. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. 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 = NO # 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 = YES # 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 = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # 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 MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by by putting a % sign in front of the word # or globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # 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 = YES # 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 the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields or simple typedef fields will be shown # inline in the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO (the default), structs, classes, and unions are shown on a separate # page (for HTML and Man pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # 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 size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can # be an expensive process and often the same symbol appear multiple times in # the code, doxygen keeps a cache of pre-resolved symbols. If the cache is too # small doxygen will become slower. If the cache is too large, memory is wasted. # The cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid # range is 0..9, the default is 0, corresponding to a cache size of 2^16 = 65536 # symbols. LOOKUP_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 respectively 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_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = 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 = YES # 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 = NO # 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 = NO # 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 = YES # 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 section-label ... \endif # and \cond section-label ... \endcond blocks. 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 # 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. To 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 = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # 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 = YES # 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 = @INPUT_PATHS@ # 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 = *.h # 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 = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # 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. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to 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 = # 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. # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. 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 = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # 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 = NO # 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, C++ and Fortran 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 = NO # 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 = NO # 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 = NO # 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 = 5 # 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 = #--------------------------------------------------------------------------- # 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 = NO # 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. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # 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 = # 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 left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet 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 = 100 # 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_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. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # 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 = # 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 (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = NO # 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. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE 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 # 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 = NO # 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 may 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 can set the default output format to be used for # the MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # 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 Content Delivery Network so you can quickly see the result without # installing MathJax. # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript # pieces of code that will be used on startup of the MathJax code. MATHJAX_CODEFILE = # 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 = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search # engine library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # 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 = NO # 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 a4 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 = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images # or other source files which should be copied to the LaTeX output directory. # Note that the files will be copied as-is; there are no commands or markers # available. LATEX_EXTRA_FILES = # 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 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # 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 style sheet 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 = YES # 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 # 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 related to the DOCBOOK output #--------------------------------------------------------------------------- # If the GENERATE_DOCBOOK tag is set to YES Doxygen will generate DOCBOOK files # that can be used to generate PDF. GENERATE_DOCBOOK = NO # The DOCBOOK_OUTPUT tag is used to specify where the DOCBOOK 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 docbook will be used as the default path. DOCBOOK_OUTPUT = docbook #--------------------------------------------------------------------------- # 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 = YES # 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 # pointed to by INCLUDE_PATH will be searched when 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. For each # tag file the location of the external documentation should be added. 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. 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 = # 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 = # 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 # If the EXTERNAL_PAGES tag is set to YES all external pages will be listed # in the related pages index. If set to NO, only the current project's # pages will be listed. EXTERNAL_PAGES = 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 = NO # 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 use the Helvetica font for 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 = # 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 Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. 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 # 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 the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # manageable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # 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 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 svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = NO # 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 = 0 # 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 = NO # 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 = YES # 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 gnuradio-3.7.11/docs/doxygen/README.doxyxml0000664000175000017500000000167313055131744020247 0ustar jcorganjcorganThe process of updating and exporting the Doxygen document strings into Python consists of a few steps. 1. Make sure the 'docs' component will be built, which requires Doxygen. 2. Build the project like normal, which will run Doxygen and store the XML files into $(top_builddir). 3. In $(top_srcdir)/docs/doxygen, run the command: $ python swig_doc.py \ $(top_builddir)/docstrings/docs/doxygen/xml \ $(top_srcdir)/gnuradio-runtime/swig/swig_doc.i This uses the XML output of Doxygen to to rebuild a SWIG file that contains all of the current Doxygen markups. 4. Rebuild the GNU Radio libraries. Since gnuradio.i is included in all of the GNU Radio components, and gnuradio.i includes swig_doc.i, when the libraries are rebuilt, they will now include the documentation strings in Python. 5. Install GNU Radio. Now, when you run help() in Python on a GNU Radio block, you will get the full documentation. gnuradio-3.7.11/docs/doxygen/doxyxml/0000775000175000017500000000000013055131744017361 5ustar jcorganjcorgangnuradio-3.7.11/docs/doxygen/doxyxml/__init__.py0000664000175000017500000000465213055131744021501 0ustar jcorganjcorgan# # Copyright 2010 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. # """ Python interface to contents of doxygen xml documentation. Example use: See the contents of the example folder for the C++ and doxygen-generated xml used in this example. >>> # Parse the doxygen docs. >>> import os >>> this_dir = os.path.dirname(globals()['__file__']) >>> xml_path = this_dir + "/example/xml/" >>> di = DoxyIndex(xml_path) Get a list of all top-level objects. >>> print([mem.name() for mem in di.members()]) [u'Aadvark', u'aadvarky_enough', u'main'] Get all functions. >>> print([mem.name() for mem in di.in_category(DoxyFunction)]) [u'aadvarky_enough', u'main'] Check if an object is present. >>> di.has_member(u'Aadvark') True >>> di.has_member(u'Fish') False Get an item by name and check its properties. >>> aad = di.get_member(u'Aadvark') >>> print(aad.brief_description) Models the mammal Aadvark. >>> print(aad.detailed_description) Sadly the model is incomplete and cannot capture all aspects of an aadvark yet. This line is uninformative and is only to test line breaks in the comments. >>> [mem.name() for mem in aad.members()] [u'aadvarkness', u'print', u'Aadvark', u'get_aadvarkness'] >>> aad.get_member(u'print').brief_description u'Outputs the vital aadvark statistics.' """ from doxyindex import DoxyIndex, DoxyFunction, DoxyParam, DoxyClass, DoxyFile, DoxyNamespace, DoxyGroup, DoxyFriend, DoxyOther def _test(): import os this_dir = os.path.dirname(globals()['__file__']) xml_path = this_dir + "/example/xml/" di = DoxyIndex(xml_path) # Get the Aadvark class aad = di.get_member('Aadvark') aad.brief_description import doctest return doctest.testmod() if __name__ == "__main__": _test() gnuradio-3.7.11/docs/doxygen/doxyxml/base.py0000664000175000017500000001521213055131744020646 0ustar jcorganjcorgan# # Copyright 2010 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. # """ A base class is created. Classes based upon this are used to make more user-friendly interfaces to the doxygen xml docs than the generated classes provide. """ import os import pdb from xml.parsers.expat import ExpatError from generated import compound class Base(object): class Duplicate(StandardError): pass class NoSuchMember(StandardError): pass class ParsingError(StandardError): pass def __init__(self, parse_data, top=None): self._parsed = False self._error = False self._parse_data = parse_data self._members = [] self._dict_members = {} self._in_category = {} self._data = {} if top is not None: self._xml_path = top._xml_path # Set up holder of references else: top = self self._refs = {} self._xml_path = parse_data self.top = top @classmethod def from_refid(cls, refid, top=None): """ Instantiate class from a refid rather than parsing object. """ # First check to see if its already been instantiated. if top is not None and refid in top._refs: return top._refs[refid] # Otherwise create a new instance and set refid. inst = cls(None, top=top) inst.refid = refid inst.add_ref(inst) return inst @classmethod def from_parse_data(cls, parse_data, top=None): refid = getattr(parse_data, 'refid', None) if refid is not None and top is not None and refid in top._refs: return top._refs[refid] inst = cls(parse_data, top=top) if refid is not None: inst.refid = refid inst.add_ref(inst) return inst def add_ref(self, obj): if hasattr(obj, 'refid'): self.top._refs[obj.refid] = obj mem_classes = [] def get_cls(self, mem): for cls in self.mem_classes: if cls.can_parse(mem): return cls raise StandardError(("Did not find a class for object '%s'." \ % (mem.get_name()))) def convert_mem(self, mem): try: cls = self.get_cls(mem) converted = cls.from_parse_data(mem, self.top) if converted is None: raise StandardError('No class matched this object.') self.add_ref(converted) return converted except StandardError, e: print e @classmethod def includes(cls, inst): return isinstance(inst, cls) @classmethod def can_parse(cls, obj): return False def _parse(self): self._parsed = True def _get_dict_members(self, cat=None): """ For given category a dictionary is returned mapping member names to members of that category. For names that are duplicated the name is mapped to None. """ self.confirm_no_error() if cat not in self._dict_members: new_dict = {} for mem in self.in_category(cat): if mem.name() not in new_dict: new_dict[mem.name()] = mem else: new_dict[mem.name()] = self.Duplicate self._dict_members[cat] = new_dict return self._dict_members[cat] def in_category(self, cat): self.confirm_no_error() if cat is None: return self._members if cat not in self._in_category: self._in_category[cat] = [mem for mem in self._members if cat.includes(mem)] return self._in_category[cat] def get_member(self, name, cat=None): self.confirm_no_error() # Check if it's in a namespace or class. bits = name.split('::') first = bits[0] rest = '::'.join(bits[1:]) member = self._get_dict_members(cat).get(first, self.NoSuchMember) # Raise any errors that are returned. if member in set([self.NoSuchMember, self.Duplicate]): raise member() if rest: return member.get_member(rest, cat=cat) return member def has_member(self, name, cat=None): try: mem = self.get_member(name, cat=cat) return True except self.NoSuchMember: return False def data(self): self.confirm_no_error() return self._data def members(self): self.confirm_no_error() return self._members def process_memberdefs(self): mdtss = [] for sec in self._retrieved_data.compounddef.sectiondef: mdtss += sec.memberdef # At the moment we lose all information associated with sections. # Sometimes a memberdef is in several sectiondef. # We make sure we don't get duplicates here. uniques = set([]) for mem in mdtss: converted = self.convert_mem(mem) pair = (mem.name, mem.__class__) if pair not in uniques: uniques.add(pair) self._members.append(converted) def retrieve_data(self): filename = os.path.join(self._xml_path, self.refid + '.xml') try: self._retrieved_data = compound.parse(filename) except ExpatError: print('Error in xml in file %s' % filename) self._error = True self._retrieved_data = None def check_parsed(self): if not self._parsed: self._parse() def confirm_no_error(self): self.check_parsed() if self._error: raise self.ParsingError() def error(self): self.check_parsed() return self._error def name(self): # first see if we can do it without processing. if self._parse_data is not None: return self._parse_data.name self.check_parsed() return self._retrieved_data.compounddef.name gnuradio-3.7.11/docs/doxygen/doxyxml/doxyindex.py0000664000175000017500000002116213055131744021750 0ustar jcorganjcorgan# # Copyright 2010 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. # """ Classes providing more user-friendly interfaces to the doxygen xml docs than the generated classes provide. """ import os from generated import index from base import Base from text import description class DoxyIndex(Base): """ Parses a doxygen xml directory. """ __module__ = "gnuradio.utils.doxyxml" def _parse(self): if self._parsed: return super(DoxyIndex, self)._parse() self._root = index.parse(os.path.join(self._xml_path, 'index.xml')) for mem in self._root.compound: converted = self.convert_mem(mem) # For files and namespaces we want the contents to be # accessible directly from the parent rather than having # to go through the file object. if self.get_cls(mem) == DoxyFile: if mem.name.endswith('.h'): self._members += converted.members() self._members.append(converted) elif self.get_cls(mem) == DoxyNamespace: self._members += converted.members() self._members.append(converted) else: self._members.append(converted) def generate_swig_doc_i(self): """ %feature("docstring") gr_make_align_on_samplenumbers_ss::align_state " Wraps the C++: gr_align_on_samplenumbers_ss::align_state"; """ pass class DoxyCompMem(Base): kind = None def __init__(self, *args, **kwargs): super(DoxyCompMem, self).__init__(*args, **kwargs) @classmethod def can_parse(cls, obj): return obj.kind == cls.kind def set_descriptions(self, parse_data): bd = description(getattr(parse_data, 'briefdescription', None)) dd = description(getattr(parse_data, 'detaileddescription', None)) self._data['brief_description'] = bd self._data['detailed_description'] = dd def set_parameters(self, data): vs = [ddc.value for ddc in data.detaileddescription.content_] pls = [] for v in vs: if hasattr(v, 'parameterlist'): pls += v.parameterlist pis = [] for pl in pls: pis += pl.parameteritem dpis = [] for pi in pis: dpi = DoxyParameterItem(pi) dpi._parse() dpis.append(dpi) self._data['params'] = dpis class DoxyCompound(DoxyCompMem): pass class DoxyMember(DoxyCompMem): pass class DoxyFunction(DoxyMember): __module__ = "gnuradio.utils.doxyxml" kind = 'function' def _parse(self): if self._parsed: return super(DoxyFunction, self)._parse() self.set_descriptions(self._parse_data) self.set_parameters(self._parse_data) if not self._data['params']: # If the params weren't set by a comment then just grab the names. self._data['params'] = [] prms = self._parse_data.param for prm in prms: self._data['params'].append(DoxyParam(prm)) brief_description = property(lambda self: self.data()['brief_description']) detailed_description = property(lambda self: self.data()['detailed_description']) params = property(lambda self: self.data()['params']) Base.mem_classes.append(DoxyFunction) class DoxyParam(DoxyMember): __module__ = "gnuradio.utils.doxyxml" def _parse(self): if self._parsed: return super(DoxyParam, self)._parse() self.set_descriptions(self._parse_data) self._data['declname'] = self._parse_data.declname @property def description(self): descriptions = [] if self.brief_description: descriptions.append(self.brief_description) if self.detailed_description: descriptions.append(self.detailed_description) return '\n\n'.join(descriptions) brief_description = property(lambda self: self.data()['brief_description']) detailed_description = property(lambda self: self.data()['detailed_description']) name = property(lambda self: self.data()['declname']) class DoxyParameterItem(DoxyMember): """A different representation of a parameter in Doxygen.""" def _parse(self): if self._parsed: return super(DoxyParameterItem, self)._parse() names = [] for nl in self._parse_data.parameternamelist: for pn in nl.parametername: names.append(description(pn)) # Just take first name self._data['name'] = names[0] # Get description pd = description(self._parse_data.get_parameterdescription()) self._data['description'] = pd description = property(lambda self: self.data()['description']) name = property(lambda self: self.data()['name']) class DoxyClass(DoxyCompound): __module__ = "gnuradio.utils.doxyxml" kind = 'class' def _parse(self): if self._parsed: return super(DoxyClass, self)._parse() self.retrieve_data() if self._error: return self.set_descriptions(self._retrieved_data.compounddef) self.set_parameters(self._retrieved_data.compounddef) # Sectiondef.kind tells about whether private or public. # We just ignore this for now. self.process_memberdefs() brief_description = property(lambda self: self.data()['brief_description']) detailed_description = property(lambda self: self.data()['detailed_description']) params = property(lambda self: self.data()['params']) Base.mem_classes.append(DoxyClass) class DoxyFile(DoxyCompound): __module__ = "gnuradio.utils.doxyxml" kind = 'file' def _parse(self): if self._parsed: return super(DoxyFile, self)._parse() self.retrieve_data() self.set_descriptions(self._retrieved_data.compounddef) if self._error: return self.process_memberdefs() brief_description = property(lambda self: self.data()['brief_description']) detailed_description = property(lambda self: self.data()['detailed_description']) Base.mem_classes.append(DoxyFile) class DoxyNamespace(DoxyCompound): __module__ = "gnuradio.utils.doxyxml" kind = 'namespace' def _parse(self): if self._parsed: return super(DoxyNamespace, self)._parse() self.retrieve_data() self.set_descriptions(self._retrieved_data.compounddef) if self._error: return self.process_memberdefs() Base.mem_classes.append(DoxyNamespace) class DoxyGroup(DoxyCompound): __module__ = "gnuradio.utils.doxyxml" kind = 'group' def _parse(self): if self._parsed: return super(DoxyGroup, self)._parse() self.retrieve_data() if self._error: return cdef = self._retrieved_data.compounddef self._data['title'] = description(cdef.title) # Process inner groups grps = cdef.innergroup for grp in grps: converted = DoxyGroup.from_refid(grp.refid, top=self.top) self._members.append(converted) # Process inner classes klasses = cdef.innerclass for kls in klasses: converted = DoxyClass.from_refid(kls.refid, top=self.top) self._members.append(converted) # Process normal members self.process_memberdefs() title = property(lambda self: self.data()['title']) Base.mem_classes.append(DoxyGroup) class DoxyFriend(DoxyMember): __module__ = "gnuradio.utils.doxyxml" kind = 'friend' Base.mem_classes.append(DoxyFriend) class DoxyOther(Base): __module__ = "gnuradio.utils.doxyxml" kinds = set(['variable', 'struct', 'union', 'define', 'typedef', 'enum', 'dir', 'page', 'signal', 'slot', 'property']) @classmethod def can_parse(cls, obj): return obj.kind in cls.kinds Base.mem_classes.append(DoxyOther) gnuradio-3.7.11/docs/doxygen/doxyxml/generated/0000775000175000017500000000000013055131744021317 5ustar jcorganjcorgangnuradio-3.7.11/docs/doxygen/doxyxml/generated/__init__.py0000664000175000017500000000035313055131744023431 0ustar jcorganjcorgan""" Contains generated files produced by generateDS.py. These do the real work of parsing the doxygen xml files but the resultant classes are not very friendly to navigate so the rest of the doxyxml module processes them further. """ gnuradio-3.7.11/docs/doxygen/doxyxml/generated/compound.py0000664000175000017500000004751013055131744023524 0ustar jcorganjcorgan#!/usr/bin/env python """ Generated Mon Feb 9 19:08:05 2009 by generateDS.py. """ from string import lower as str_lower from xml.dom import minidom from xml.dom import Node import sys import compoundsuper as supermod from compoundsuper import MixedContainer class DoxygenTypeSub(supermod.DoxygenType): def __init__(self, version=None, compounddef=None): supermod.DoxygenType.__init__(self, version, compounddef) def find(self, details): return self.compounddef.find(details) supermod.DoxygenType.subclass = DoxygenTypeSub # end class DoxygenTypeSub class compounddefTypeSub(supermod.compounddefType): def __init__(self, kind=None, prot=None, id=None, compoundname='', title='', basecompoundref=None, derivedcompoundref=None, includes=None, includedby=None, incdepgraph=None, invincdepgraph=None, innerdir=None, innerfile=None, innerclass=None, innernamespace=None, innerpage=None, innergroup=None, templateparamlist=None, sectiondef=None, briefdescription=None, detaileddescription=None, inheritancegraph=None, collaborationgraph=None, programlisting=None, location=None, listofallmembers=None): supermod.compounddefType.__init__(self, kind, prot, id, compoundname, title, basecompoundref, derivedcompoundref, includes, includedby, incdepgraph, invincdepgraph, innerdir, innerfile, innerclass, innernamespace, innerpage, innergroup, templateparamlist, sectiondef, briefdescription, detaileddescription, inheritancegraph, collaborationgraph, programlisting, location, listofallmembers) def find(self, details): if self.id == details.refid: return self for sectiondef in self.sectiondef: result = sectiondef.find(details) if result: return result supermod.compounddefType.subclass = compounddefTypeSub # end class compounddefTypeSub class listofallmembersTypeSub(supermod.listofallmembersType): def __init__(self, member=None): supermod.listofallmembersType.__init__(self, member) supermod.listofallmembersType.subclass = listofallmembersTypeSub # end class listofallmembersTypeSub class memberRefTypeSub(supermod.memberRefType): def __init__(self, virt=None, prot=None, refid=None, ambiguityscope=None, scope='', name=''): supermod.memberRefType.__init__(self, virt, prot, refid, ambiguityscope, scope, name) supermod.memberRefType.subclass = memberRefTypeSub # end class memberRefTypeSub class compoundRefTypeSub(supermod.compoundRefType): def __init__(self, virt=None, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.compoundRefType.__init__(self, mixedclass_, content_) supermod.compoundRefType.subclass = compoundRefTypeSub # end class compoundRefTypeSub class reimplementTypeSub(supermod.reimplementType): def __init__(self, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.reimplementType.__init__(self, mixedclass_, content_) supermod.reimplementType.subclass = reimplementTypeSub # end class reimplementTypeSub class incTypeSub(supermod.incType): def __init__(self, local=None, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.incType.__init__(self, mixedclass_, content_) supermod.incType.subclass = incTypeSub # end class incTypeSub class refTypeSub(supermod.refType): def __init__(self, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.refType.__init__(self, mixedclass_, content_) supermod.refType.subclass = refTypeSub # end class refTypeSub class refTextTypeSub(supermod.refTextType): def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): supermod.refTextType.__init__(self, mixedclass_, content_) supermod.refTextType.subclass = refTextTypeSub # end class refTextTypeSub class sectiondefTypeSub(supermod.sectiondefType): def __init__(self, kind=None, header='', description=None, memberdef=None): supermod.sectiondefType.__init__(self, kind, header, description, memberdef) def find(self, details): for memberdef in self.memberdef: if memberdef.id == details.refid: return memberdef return None supermod.sectiondefType.subclass = sectiondefTypeSub # end class sectiondefTypeSub class memberdefTypeSub(supermod.memberdefType): def __init__(self, initonly=None, kind=None, volatile=None, const=None, raise_=None, virt=None, readable=None, prot=None, explicit=None, new=None, final=None, writable=None, add=None, static=None, remove=None, sealed=None, mutable=None, gettable=None, inline=None, settable=None, id=None, templateparamlist=None, type_=None, definition='', argsstring='', name='', read='', write='', bitfield='', reimplements=None, reimplementedby=None, param=None, enumvalue=None, initializer=None, exceptions=None, briefdescription=None, detaileddescription=None, inbodydescription=None, location=None, references=None, referencedby=None): supermod.memberdefType.__init__(self, initonly, kind, volatile, const, raise_, virt, readable, prot, explicit, new, final, writable, add, static, remove, sealed, mutable, gettable, inline, settable, id, templateparamlist, type_, definition, argsstring, name, read, write, bitfield, reimplements, reimplementedby, param, enumvalue, initializer, exceptions, briefdescription, detaileddescription, inbodydescription, location, references, referencedby) supermod.memberdefType.subclass = memberdefTypeSub # end class memberdefTypeSub class descriptionTypeSub(supermod.descriptionType): def __init__(self, title='', para=None, sect1=None, internal=None, mixedclass_=None, content_=None): supermod.descriptionType.__init__(self, mixedclass_, content_) supermod.descriptionType.subclass = descriptionTypeSub # end class descriptionTypeSub class enumvalueTypeSub(supermod.enumvalueType): def __init__(self, prot=None, id=None, name='', initializer=None, briefdescription=None, detaileddescription=None, mixedclass_=None, content_=None): supermod.enumvalueType.__init__(self, mixedclass_, content_) supermod.enumvalueType.subclass = enumvalueTypeSub # end class enumvalueTypeSub class templateparamlistTypeSub(supermod.templateparamlistType): def __init__(self, param=None): supermod.templateparamlistType.__init__(self, param) supermod.templateparamlistType.subclass = templateparamlistTypeSub # end class templateparamlistTypeSub class paramTypeSub(supermod.paramType): def __init__(self, type_=None, declname='', defname='', array='', defval=None, briefdescription=None): supermod.paramType.__init__(self, type_, declname, defname, array, defval, briefdescription) supermod.paramType.subclass = paramTypeSub # end class paramTypeSub class linkedTextTypeSub(supermod.linkedTextType): def __init__(self, ref=None, mixedclass_=None, content_=None): supermod.linkedTextType.__init__(self, mixedclass_, content_) supermod.linkedTextType.subclass = linkedTextTypeSub # end class linkedTextTypeSub class graphTypeSub(supermod.graphType): def __init__(self, node=None): supermod.graphType.__init__(self, node) supermod.graphType.subclass = graphTypeSub # end class graphTypeSub class nodeTypeSub(supermod.nodeType): def __init__(self, id=None, label='', link=None, childnode=None): supermod.nodeType.__init__(self, id, label, link, childnode) supermod.nodeType.subclass = nodeTypeSub # end class nodeTypeSub class childnodeTypeSub(supermod.childnodeType): def __init__(self, relation=None, refid=None, edgelabel=None): supermod.childnodeType.__init__(self, relation, refid, edgelabel) supermod.childnodeType.subclass = childnodeTypeSub # end class childnodeTypeSub class linkTypeSub(supermod.linkType): def __init__(self, refid=None, external=None, valueOf_=''): supermod.linkType.__init__(self, refid, external) supermod.linkType.subclass = linkTypeSub # end class linkTypeSub class listingTypeSub(supermod.listingType): def __init__(self, codeline=None): supermod.listingType.__init__(self, codeline) supermod.listingType.subclass = listingTypeSub # end class listingTypeSub class codelineTypeSub(supermod.codelineType): def __init__(self, external=None, lineno=None, refkind=None, refid=None, highlight=None): supermod.codelineType.__init__(self, external, lineno, refkind, refid, highlight) supermod.codelineType.subclass = codelineTypeSub # end class codelineTypeSub class highlightTypeSub(supermod.highlightType): def __init__(self, class_=None, sp=None, ref=None, mixedclass_=None, content_=None): supermod.highlightType.__init__(self, mixedclass_, content_) supermod.highlightType.subclass = highlightTypeSub # end class highlightTypeSub class referenceTypeSub(supermod.referenceType): def __init__(self, endline=None, startline=None, refid=None, compoundref=None, valueOf_='', mixedclass_=None, content_=None): supermod.referenceType.__init__(self, mixedclass_, content_) supermod.referenceType.subclass = referenceTypeSub # end class referenceTypeSub class locationTypeSub(supermod.locationType): def __init__(self, bodystart=None, line=None, bodyend=None, bodyfile=None, file=None, valueOf_=''): supermod.locationType.__init__(self, bodystart, line, bodyend, bodyfile, file) supermod.locationType.subclass = locationTypeSub # end class locationTypeSub class docSect1TypeSub(supermod.docSect1Type): def __init__(self, id=None, title='', para=None, sect2=None, internal=None, mixedclass_=None, content_=None): supermod.docSect1Type.__init__(self, mixedclass_, content_) supermod.docSect1Type.subclass = docSect1TypeSub # end class docSect1TypeSub class docSect2TypeSub(supermod.docSect2Type): def __init__(self, id=None, title='', para=None, sect3=None, internal=None, mixedclass_=None, content_=None): supermod.docSect2Type.__init__(self, mixedclass_, content_) supermod.docSect2Type.subclass = docSect2TypeSub # end class docSect2TypeSub class docSect3TypeSub(supermod.docSect3Type): def __init__(self, id=None, title='', para=None, sect4=None, internal=None, mixedclass_=None, content_=None): supermod.docSect3Type.__init__(self, mixedclass_, content_) supermod.docSect3Type.subclass = docSect3TypeSub # end class docSect3TypeSub class docSect4TypeSub(supermod.docSect4Type): def __init__(self, id=None, title='', para=None, internal=None, mixedclass_=None, content_=None): supermod.docSect4Type.__init__(self, mixedclass_, content_) supermod.docSect4Type.subclass = docSect4TypeSub # end class docSect4TypeSub class docInternalTypeSub(supermod.docInternalType): def __init__(self, para=None, sect1=None, mixedclass_=None, content_=None): supermod.docInternalType.__init__(self, mixedclass_, content_) supermod.docInternalType.subclass = docInternalTypeSub # end class docInternalTypeSub class docInternalS1TypeSub(supermod.docInternalS1Type): def __init__(self, para=None, sect2=None, mixedclass_=None, content_=None): supermod.docInternalS1Type.__init__(self, mixedclass_, content_) supermod.docInternalS1Type.subclass = docInternalS1TypeSub # end class docInternalS1TypeSub class docInternalS2TypeSub(supermod.docInternalS2Type): def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): supermod.docInternalS2Type.__init__(self, mixedclass_, content_) supermod.docInternalS2Type.subclass = docInternalS2TypeSub # end class docInternalS2TypeSub class docInternalS3TypeSub(supermod.docInternalS3Type): def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): supermod.docInternalS3Type.__init__(self, mixedclass_, content_) supermod.docInternalS3Type.subclass = docInternalS3TypeSub # end class docInternalS3TypeSub class docInternalS4TypeSub(supermod.docInternalS4Type): def __init__(self, para=None, mixedclass_=None, content_=None): supermod.docInternalS4Type.__init__(self, mixedclass_, content_) supermod.docInternalS4Type.subclass = docInternalS4TypeSub # end class docInternalS4TypeSub class docURLLinkSub(supermod.docURLLink): def __init__(self, url=None, valueOf_='', mixedclass_=None, content_=None): supermod.docURLLink.__init__(self, mixedclass_, content_) supermod.docURLLink.subclass = docURLLinkSub # end class docURLLinkSub class docAnchorTypeSub(supermod.docAnchorType): def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): supermod.docAnchorType.__init__(self, mixedclass_, content_) supermod.docAnchorType.subclass = docAnchorTypeSub # end class docAnchorTypeSub class docFormulaTypeSub(supermod.docFormulaType): def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): supermod.docFormulaType.__init__(self, mixedclass_, content_) supermod.docFormulaType.subclass = docFormulaTypeSub # end class docFormulaTypeSub class docIndexEntryTypeSub(supermod.docIndexEntryType): def __init__(self, primaryie='', secondaryie=''): supermod.docIndexEntryType.__init__(self, primaryie, secondaryie) supermod.docIndexEntryType.subclass = docIndexEntryTypeSub # end class docIndexEntryTypeSub class docListTypeSub(supermod.docListType): def __init__(self, listitem=None): supermod.docListType.__init__(self, listitem) supermod.docListType.subclass = docListTypeSub # end class docListTypeSub class docListItemTypeSub(supermod.docListItemType): def __init__(self, para=None): supermod.docListItemType.__init__(self, para) supermod.docListItemType.subclass = docListItemTypeSub # end class docListItemTypeSub class docSimpleSectTypeSub(supermod.docSimpleSectType): def __init__(self, kind=None, title=None, para=None): supermod.docSimpleSectType.__init__(self, kind, title, para) supermod.docSimpleSectType.subclass = docSimpleSectTypeSub # end class docSimpleSectTypeSub class docVarListEntryTypeSub(supermod.docVarListEntryType): def __init__(self, term=None): supermod.docVarListEntryType.__init__(self, term) supermod.docVarListEntryType.subclass = docVarListEntryTypeSub # end class docVarListEntryTypeSub class docRefTextTypeSub(supermod.docRefTextType): def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): supermod.docRefTextType.__init__(self, mixedclass_, content_) supermod.docRefTextType.subclass = docRefTextTypeSub # end class docRefTextTypeSub class docTableTypeSub(supermod.docTableType): def __init__(self, rows=None, cols=None, row=None, caption=None): supermod.docTableType.__init__(self, rows, cols, row, caption) supermod.docTableType.subclass = docTableTypeSub # end class docTableTypeSub class docRowTypeSub(supermod.docRowType): def __init__(self, entry=None): supermod.docRowType.__init__(self, entry) supermod.docRowType.subclass = docRowTypeSub # end class docRowTypeSub class docEntryTypeSub(supermod.docEntryType): def __init__(self, thead=None, para=None): supermod.docEntryType.__init__(self, thead, para) supermod.docEntryType.subclass = docEntryTypeSub # end class docEntryTypeSub class docHeadingTypeSub(supermod.docHeadingType): def __init__(self, level=None, valueOf_='', mixedclass_=None, content_=None): supermod.docHeadingType.__init__(self, mixedclass_, content_) supermod.docHeadingType.subclass = docHeadingTypeSub # end class docHeadingTypeSub class docImageTypeSub(supermod.docImageType): def __init__(self, width=None, type_=None, name=None, height=None, valueOf_='', mixedclass_=None, content_=None): supermod.docImageType.__init__(self, mixedclass_, content_) supermod.docImageType.subclass = docImageTypeSub # end class docImageTypeSub class docDotFileTypeSub(supermod.docDotFileType): def __init__(self, name=None, valueOf_='', mixedclass_=None, content_=None): supermod.docDotFileType.__init__(self, mixedclass_, content_) supermod.docDotFileType.subclass = docDotFileTypeSub # end class docDotFileTypeSub class docTocItemTypeSub(supermod.docTocItemType): def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): supermod.docTocItemType.__init__(self, mixedclass_, content_) supermod.docTocItemType.subclass = docTocItemTypeSub # end class docTocItemTypeSub class docTocListTypeSub(supermod.docTocListType): def __init__(self, tocitem=None): supermod.docTocListType.__init__(self, tocitem) supermod.docTocListType.subclass = docTocListTypeSub # end class docTocListTypeSub class docLanguageTypeSub(supermod.docLanguageType): def __init__(self, langid=None, para=None): supermod.docLanguageType.__init__(self, langid, para) supermod.docLanguageType.subclass = docLanguageTypeSub # end class docLanguageTypeSub class docParamListTypeSub(supermod.docParamListType): def __init__(self, kind=None, parameteritem=None): supermod.docParamListType.__init__(self, kind, parameteritem) supermod.docParamListType.subclass = docParamListTypeSub # end class docParamListTypeSub class docParamListItemSub(supermod.docParamListItem): def __init__(self, parameternamelist=None, parameterdescription=None): supermod.docParamListItem.__init__(self, parameternamelist, parameterdescription) supermod.docParamListItem.subclass = docParamListItemSub # end class docParamListItemSub class docParamNameListSub(supermod.docParamNameList): def __init__(self, parametername=None): supermod.docParamNameList.__init__(self, parametername) supermod.docParamNameList.subclass = docParamNameListSub # end class docParamNameListSub class docParamNameSub(supermod.docParamName): def __init__(self, direction=None, ref=None, mixedclass_=None, content_=None): supermod.docParamName.__init__(self, mixedclass_, content_) supermod.docParamName.subclass = docParamNameSub # end class docParamNameSub class docXRefSectTypeSub(supermod.docXRefSectType): def __init__(self, id=None, xreftitle=None, xrefdescription=None): supermod.docXRefSectType.__init__(self, id, xreftitle, xrefdescription) supermod.docXRefSectType.subclass = docXRefSectTypeSub # end class docXRefSectTypeSub class docCopyTypeSub(supermod.docCopyType): def __init__(self, link=None, para=None, sect1=None, internal=None): supermod.docCopyType.__init__(self, link, para, sect1, internal) supermod.docCopyType.subclass = docCopyTypeSub # end class docCopyTypeSub class docCharTypeSub(supermod.docCharType): def __init__(self, char=None, valueOf_=''): supermod.docCharType.__init__(self, char) supermod.docCharType.subclass = docCharTypeSub # end class docCharTypeSub class docParaTypeSub(supermod.docParaType): def __init__(self, char=None, valueOf_=''): supermod.docParaType.__init__(self, char) self.parameterlist = [] self.simplesects = [] self.content = [] def buildChildren(self, child_, nodeName_): supermod.docParaType.buildChildren(self, child_, nodeName_) if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == "ref": obj_ = supermod.docRefTextType.factory() obj_.build(child_) self.content.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'parameterlist': obj_ = supermod.docParamListType.factory() obj_.build(child_) self.parameterlist.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'simplesect': obj_ = supermod.docSimpleSectType.factory() obj_.build(child_) self.simplesects.append(obj_) supermod.docParaType.subclass = docParaTypeSub # end class docParaTypeSub def parse(inFilename): doc = minidom.parse(inFilename) rootNode = doc.documentElement rootObj = supermod.DoxygenType.factory() rootObj.build(rootNode) return rootObj gnuradio-3.7.11/docs/doxygen/doxyxml/generated/compoundsuper.py0000664000175000017500000127701413055131744024610 0ustar jcorganjcorgan#!/usr/bin/env python # # Generated Thu Jun 11 18:44:25 2009 by generateDS.py. # import sys import getopt from string import lower as str_lower from xml.dom import minidom from xml.dom import Node # # User methods # # Calls to the methods in these classes are generated by generateDS.py. # You can replace these methods by re-implementing the following class # in a module named generatedssuper.py. try: from generatedssuper import GeneratedsSuper except ImportError, exp: class GeneratedsSuper: def format_string(self, input_data, input_name=''): return input_data def format_integer(self, input_data, input_name=''): return '%d' % input_data def format_float(self, input_data, input_name=''): return '%f' % input_data def format_double(self, input_data, input_name=''): return '%e' % input_data def format_boolean(self, input_data, input_name=''): return '%s' % input_data # # If you have installed IPython you can uncomment and use the following. # IPython is available from http://ipython.scipy.org/. # ## from IPython.Shell import IPShellEmbed ## args = '' ## ipshell = IPShellEmbed(args, ## banner = 'Dropping into IPython', ## exit_msg = 'Leaving Interpreter, back to program.') # Then use the following line where and when you want to drop into the # IPython shell: # ipshell(' -- Entering ipshell.\nHit Ctrl-D to exit') # # Globals # ExternalEncoding = 'ascii' # # Support/utility functions. # def showIndent(outfile, level): for idx in range(level): outfile.write(' ') def quote_xml(inStr): s1 = (isinstance(inStr, basestring) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('>', '>') return s1 def quote_attrib(inStr): s1 = (isinstance(inStr, basestring) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('>', '>') if '"' in s1: if "'" in s1: s1 = '"%s"' % s1.replace('"', """) else: s1 = "'%s'" % s1 else: s1 = '"%s"' % s1 return s1 def quote_python(inStr): s1 = inStr if s1.find("'") == -1: if s1.find('\n') == -1: return "'%s'" % s1 else: return "'''%s'''" % s1 else: if s1.find('"') != -1: s1 = s1.replace('"', '\\"') if s1.find('\n') == -1: return '"%s"' % s1 else: return '"""%s"""' % s1 class MixedContainer: # Constants for category: CategoryNone = 0 CategoryText = 1 CategorySimple = 2 CategoryComplex = 3 # Constants for content_type: TypeNone = 0 TypeText = 1 TypeString = 2 TypeInteger = 3 TypeFloat = 4 TypeDecimal = 5 TypeDouble = 6 TypeBoolean = 7 def __init__(self, category, content_type, name, value): self.category = category self.content_type = content_type self.name = name self.value = value def getCategory(self): return self.category def getContenttype(self, content_type): return self.content_type def getValue(self): return self.value def getName(self): return self.name def export(self, outfile, level, name, namespace): if self.category == MixedContainer.CategoryText: outfile.write(self.value) elif self.category == MixedContainer.CategorySimple: self.exportSimple(outfile, level, name) else: # category == MixedContainer.CategoryComplex self.value.export(outfile, level, namespace,name) def exportSimple(self, outfile, level, name): if self.content_type == MixedContainer.TypeString: outfile.write('<%s>%s' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeInteger or \ self.content_type == MixedContainer.TypeBoolean: outfile.write('<%s>%d' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeFloat or \ self.content_type == MixedContainer.TypeDecimal: outfile.write('<%s>%f' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeDouble: outfile.write('<%s>%g' % (self.name, self.value, self.name)) def exportLiteral(self, outfile, level, name): if self.category == MixedContainer.CategoryText: showIndent(outfile, level) outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ (self.category, self.content_type, self.name, self.value)) elif self.category == MixedContainer.CategorySimple: showIndent(outfile, level) outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ (self.category, self.content_type, self.name, self.value)) else: # category == MixedContainer.CategoryComplex showIndent(outfile, level) outfile.write('MixedContainer(%d, %d, "%s",\n' % \ (self.category, self.content_type, self.name,)) self.value.exportLiteral(outfile, level + 1) showIndent(outfile, level) outfile.write(')\n') class _MemberSpec(object): def __init__(self, name='', data_type='', container=0): self.name = name self.data_type = data_type self.container = container def set_name(self, name): self.name = name def get_name(self): return self.name def set_data_type(self, data_type): self.data_type = data_type def get_data_type(self): return self.data_type def set_container(self, container): self.container = container def get_container(self): return self.container # # Data representation classes. # class DoxygenType(GeneratedsSuper): subclass = None superclass = None def __init__(self, version=None, compounddef=None): self.version = version self.compounddef = compounddef def factory(*args_, **kwargs_): if DoxygenType.subclass: return DoxygenType.subclass(*args_, **kwargs_) else: return DoxygenType(*args_, **kwargs_) factory = staticmethod(factory) def get_compounddef(self): return self.compounddef def set_compounddef(self, compounddef): self.compounddef = compounddef def get_version(self): return self.version def set_version(self, version): self.version = version def export(self, outfile, level, namespace_='', name_='DoxygenType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='DoxygenType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='DoxygenType'): outfile.write(' version=%s' % (quote_attrib(self.version), )) def exportChildren(self, outfile, level, namespace_='', name_='DoxygenType'): if self.compounddef: self.compounddef.export(outfile, level, namespace_, name_='compounddef') def hasContent_(self): if ( self.compounddef is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='DoxygenType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.version is not None: showIndent(outfile, level) outfile.write('version = "%s",\n' % (self.version,)) def exportLiteralChildren(self, outfile, level, name_): if self.compounddef: showIndent(outfile, level) outfile.write('compounddef=model_.compounddefType(\n') self.compounddef.exportLiteral(outfile, level, name_='compounddef') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('version'): self.version = attrs.get('version').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'compounddef': obj_ = compounddefType.factory() obj_.build(child_) self.set_compounddef(obj_) # end class DoxygenType class compounddefType(GeneratedsSuper): subclass = None superclass = None def __init__(self, kind=None, prot=None, id=None, compoundname=None, title=None, basecompoundref=None, derivedcompoundref=None, includes=None, includedby=None, incdepgraph=None, invincdepgraph=None, innerdir=None, innerfile=None, innerclass=None, innernamespace=None, innerpage=None, innergroup=None, templateparamlist=None, sectiondef=None, briefdescription=None, detaileddescription=None, inheritancegraph=None, collaborationgraph=None, programlisting=None, location=None, listofallmembers=None): self.kind = kind self.prot = prot self.id = id self.compoundname = compoundname self.title = title if basecompoundref is None: self.basecompoundref = [] else: self.basecompoundref = basecompoundref if derivedcompoundref is None: self.derivedcompoundref = [] else: self.derivedcompoundref = derivedcompoundref if includes is None: self.includes = [] else: self.includes = includes if includedby is None: self.includedby = [] else: self.includedby = includedby self.incdepgraph = incdepgraph self.invincdepgraph = invincdepgraph if innerdir is None: self.innerdir = [] else: self.innerdir = innerdir if innerfile is None: self.innerfile = [] else: self.innerfile = innerfile if innerclass is None: self.innerclass = [] else: self.innerclass = innerclass if innernamespace is None: self.innernamespace = [] else: self.innernamespace = innernamespace if innerpage is None: self.innerpage = [] else: self.innerpage = innerpage if innergroup is None: self.innergroup = [] else: self.innergroup = innergroup self.templateparamlist = templateparamlist if sectiondef is None: self.sectiondef = [] else: self.sectiondef = sectiondef self.briefdescription = briefdescription self.detaileddescription = detaileddescription self.inheritancegraph = inheritancegraph self.collaborationgraph = collaborationgraph self.programlisting = programlisting self.location = location self.listofallmembers = listofallmembers def factory(*args_, **kwargs_): if compounddefType.subclass: return compounddefType.subclass(*args_, **kwargs_) else: return compounddefType(*args_, **kwargs_) factory = staticmethod(factory) def get_compoundname(self): return self.compoundname def set_compoundname(self, compoundname): self.compoundname = compoundname def get_title(self): return self.title def set_title(self, title): self.title = title def get_basecompoundref(self): return self.basecompoundref def set_basecompoundref(self, basecompoundref): self.basecompoundref = basecompoundref def add_basecompoundref(self, value): self.basecompoundref.append(value) def insert_basecompoundref(self, index, value): self.basecompoundref[index] = value def get_derivedcompoundref(self): return self.derivedcompoundref def set_derivedcompoundref(self, derivedcompoundref): self.derivedcompoundref = derivedcompoundref def add_derivedcompoundref(self, value): self.derivedcompoundref.append(value) def insert_derivedcompoundref(self, index, value): self.derivedcompoundref[index] = value def get_includes(self): return self.includes def set_includes(self, includes): self.includes = includes def add_includes(self, value): self.includes.append(value) def insert_includes(self, index, value): self.includes[index] = value def get_includedby(self): return self.includedby def set_includedby(self, includedby): self.includedby = includedby def add_includedby(self, value): self.includedby.append(value) def insert_includedby(self, index, value): self.includedby[index] = value def get_incdepgraph(self): return self.incdepgraph def set_incdepgraph(self, incdepgraph): self.incdepgraph = incdepgraph def get_invincdepgraph(self): return self.invincdepgraph def set_invincdepgraph(self, invincdepgraph): self.invincdepgraph = invincdepgraph def get_innerdir(self): return self.innerdir def set_innerdir(self, innerdir): self.innerdir = innerdir def add_innerdir(self, value): self.innerdir.append(value) def insert_innerdir(self, index, value): self.innerdir[index] = value def get_innerfile(self): return self.innerfile def set_innerfile(self, innerfile): self.innerfile = innerfile def add_innerfile(self, value): self.innerfile.append(value) def insert_innerfile(self, index, value): self.innerfile[index] = value def get_innerclass(self): return self.innerclass def set_innerclass(self, innerclass): self.innerclass = innerclass def add_innerclass(self, value): self.innerclass.append(value) def insert_innerclass(self, index, value): self.innerclass[index] = value def get_innernamespace(self): return self.innernamespace def set_innernamespace(self, innernamespace): self.innernamespace = innernamespace def add_innernamespace(self, value): self.innernamespace.append(value) def insert_innernamespace(self, index, value): self.innernamespace[index] = value def get_innerpage(self): return self.innerpage def set_innerpage(self, innerpage): self.innerpage = innerpage def add_innerpage(self, value): self.innerpage.append(value) def insert_innerpage(self, index, value): self.innerpage[index] = value def get_innergroup(self): return self.innergroup def set_innergroup(self, innergroup): self.innergroup = innergroup def add_innergroup(self, value): self.innergroup.append(value) def insert_innergroup(self, index, value): self.innergroup[index] = value def get_templateparamlist(self): return self.templateparamlist def set_templateparamlist(self, templateparamlist): self.templateparamlist = templateparamlist def get_sectiondef(self): return self.sectiondef def set_sectiondef(self, sectiondef): self.sectiondef = sectiondef def add_sectiondef(self, value): self.sectiondef.append(value) def insert_sectiondef(self, index, value): self.sectiondef[index] = value def get_briefdescription(self): return self.briefdescription def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription def get_detaileddescription(self): return self.detaileddescription def set_detaileddescription(self, detaileddescription): self.detaileddescription = detaileddescription def get_inheritancegraph(self): return self.inheritancegraph def set_inheritancegraph(self, inheritancegraph): self.inheritancegraph = inheritancegraph def get_collaborationgraph(self): return self.collaborationgraph def set_collaborationgraph(self, collaborationgraph): self.collaborationgraph = collaborationgraph def get_programlisting(self): return self.programlisting def set_programlisting(self, programlisting): self.programlisting = programlisting def get_location(self): return self.location def set_location(self, location): self.location = location def get_listofallmembers(self): return self.listofallmembers def set_listofallmembers(self, listofallmembers): self.listofallmembers = listofallmembers def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='compounddefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='compounddefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='compounddefType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='compounddefType'): if self.compoundname is not None: showIndent(outfile, level) outfile.write('<%scompoundname>%s\n' % (namespace_, self.format_string(quote_xml(self.compoundname).encode(ExternalEncoding), input_name='compoundname'), namespace_)) if self.title is not None: showIndent(outfile, level) outfile.write('<%stitle>%s\n' % (namespace_, self.format_string(quote_xml(self.title).encode(ExternalEncoding), input_name='title'), namespace_)) for basecompoundref_ in self.basecompoundref: basecompoundref_.export(outfile, level, namespace_, name_='basecompoundref') for derivedcompoundref_ in self.derivedcompoundref: derivedcompoundref_.export(outfile, level, namespace_, name_='derivedcompoundref') for includes_ in self.includes: includes_.export(outfile, level, namespace_, name_='includes') for includedby_ in self.includedby: includedby_.export(outfile, level, namespace_, name_='includedby') if self.incdepgraph: self.incdepgraph.export(outfile, level, namespace_, name_='incdepgraph') if self.invincdepgraph: self.invincdepgraph.export(outfile, level, namespace_, name_='invincdepgraph') for innerdir_ in self.innerdir: innerdir_.export(outfile, level, namespace_, name_='innerdir') for innerfile_ in self.innerfile: innerfile_.export(outfile, level, namespace_, name_='innerfile') for innerclass_ in self.innerclass: innerclass_.export(outfile, level, namespace_, name_='innerclass') for innernamespace_ in self.innernamespace: innernamespace_.export(outfile, level, namespace_, name_='innernamespace') for innerpage_ in self.innerpage: innerpage_.export(outfile, level, namespace_, name_='innerpage') for innergroup_ in self.innergroup: innergroup_.export(outfile, level, namespace_, name_='innergroup') if self.templateparamlist: self.templateparamlist.export(outfile, level, namespace_, name_='templateparamlist') for sectiondef_ in self.sectiondef: sectiondef_.export(outfile, level, namespace_, name_='sectiondef') if self.briefdescription: self.briefdescription.export(outfile, level, namespace_, name_='briefdescription') if self.detaileddescription: self.detaileddescription.export(outfile, level, namespace_, name_='detaileddescription') if self.inheritancegraph: self.inheritancegraph.export(outfile, level, namespace_, name_='inheritancegraph') if self.collaborationgraph: self.collaborationgraph.export(outfile, level, namespace_, name_='collaborationgraph') if self.programlisting: self.programlisting.export(outfile, level, namespace_, name_='programlisting') if self.location: self.location.export(outfile, level, namespace_, name_='location') if self.listofallmembers: self.listofallmembers.export(outfile, level, namespace_, name_='listofallmembers') def hasContent_(self): if ( self.compoundname is not None or self.title is not None or self.basecompoundref is not None or self.derivedcompoundref is not None or self.includes is not None or self.includedby is not None or self.incdepgraph is not None or self.invincdepgraph is not None or self.innerdir is not None or self.innerfile is not None or self.innerclass is not None or self.innernamespace is not None or self.innerpage is not None or self.innergroup is not None or self.templateparamlist is not None or self.sectiondef is not None or self.briefdescription is not None or self.detaileddescription is not None or self.inheritancegraph is not None or self.collaborationgraph is not None or self.programlisting is not None or self.location is not None or self.listofallmembers is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='compounddefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) if self.prot is not None: showIndent(outfile, level) outfile.write('prot = "%s",\n' % (self.prot,)) if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('compoundname=%s,\n' % quote_python(self.compoundname).encode(ExternalEncoding)) if self.title: showIndent(outfile, level) outfile.write('title=model_.xsd_string(\n') self.title.exportLiteral(outfile, level, name_='title') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('basecompoundref=[\n') level += 1 for basecompoundref in self.basecompoundref: showIndent(outfile, level) outfile.write('model_.basecompoundref(\n') basecompoundref.exportLiteral(outfile, level, name_='basecompoundref') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('derivedcompoundref=[\n') level += 1 for derivedcompoundref in self.derivedcompoundref: showIndent(outfile, level) outfile.write('model_.derivedcompoundref(\n') derivedcompoundref.exportLiteral(outfile, level, name_='derivedcompoundref') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('includes=[\n') level += 1 for includes in self.includes: showIndent(outfile, level) outfile.write('model_.includes(\n') includes.exportLiteral(outfile, level, name_='includes') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('includedby=[\n') level += 1 for includedby in self.includedby: showIndent(outfile, level) outfile.write('model_.includedby(\n') includedby.exportLiteral(outfile, level, name_='includedby') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.incdepgraph: showIndent(outfile, level) outfile.write('incdepgraph=model_.graphType(\n') self.incdepgraph.exportLiteral(outfile, level, name_='incdepgraph') showIndent(outfile, level) outfile.write('),\n') if self.invincdepgraph: showIndent(outfile, level) outfile.write('invincdepgraph=model_.graphType(\n') self.invincdepgraph.exportLiteral(outfile, level, name_='invincdepgraph') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('innerdir=[\n') level += 1 for innerdir in self.innerdir: showIndent(outfile, level) outfile.write('model_.innerdir(\n') innerdir.exportLiteral(outfile, level, name_='innerdir') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('innerfile=[\n') level += 1 for innerfile in self.innerfile: showIndent(outfile, level) outfile.write('model_.innerfile(\n') innerfile.exportLiteral(outfile, level, name_='innerfile') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('innerclass=[\n') level += 1 for innerclass in self.innerclass: showIndent(outfile, level) outfile.write('model_.innerclass(\n') innerclass.exportLiteral(outfile, level, name_='innerclass') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('innernamespace=[\n') level += 1 for innernamespace in self.innernamespace: showIndent(outfile, level) outfile.write('model_.innernamespace(\n') innernamespace.exportLiteral(outfile, level, name_='innernamespace') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('innerpage=[\n') level += 1 for innerpage in self.innerpage: showIndent(outfile, level) outfile.write('model_.innerpage(\n') innerpage.exportLiteral(outfile, level, name_='innerpage') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('innergroup=[\n') level += 1 for innergroup in self.innergroup: showIndent(outfile, level) outfile.write('model_.innergroup(\n') innergroup.exportLiteral(outfile, level, name_='innergroup') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.templateparamlist: showIndent(outfile, level) outfile.write('templateparamlist=model_.templateparamlistType(\n') self.templateparamlist.exportLiteral(outfile, level, name_='templateparamlist') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('sectiondef=[\n') level += 1 for sectiondef in self.sectiondef: showIndent(outfile, level) outfile.write('model_.sectiondef(\n') sectiondef.exportLiteral(outfile, level, name_='sectiondef') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.briefdescription: showIndent(outfile, level) outfile.write('briefdescription=model_.descriptionType(\n') self.briefdescription.exportLiteral(outfile, level, name_='briefdescription') showIndent(outfile, level) outfile.write('),\n') if self.detaileddescription: showIndent(outfile, level) outfile.write('detaileddescription=model_.descriptionType(\n') self.detaileddescription.exportLiteral(outfile, level, name_='detaileddescription') showIndent(outfile, level) outfile.write('),\n') if self.inheritancegraph: showIndent(outfile, level) outfile.write('inheritancegraph=model_.graphType(\n') self.inheritancegraph.exportLiteral(outfile, level, name_='inheritancegraph') showIndent(outfile, level) outfile.write('),\n') if self.collaborationgraph: showIndent(outfile, level) outfile.write('collaborationgraph=model_.graphType(\n') self.collaborationgraph.exportLiteral(outfile, level, name_='collaborationgraph') showIndent(outfile, level) outfile.write('),\n') if self.programlisting: showIndent(outfile, level) outfile.write('programlisting=model_.listingType(\n') self.programlisting.exportLiteral(outfile, level, name_='programlisting') showIndent(outfile, level) outfile.write('),\n') if self.location: showIndent(outfile, level) outfile.write('location=model_.locationType(\n') self.location.exportLiteral(outfile, level, name_='location') showIndent(outfile, level) outfile.write('),\n') if self.listofallmembers: showIndent(outfile, level) outfile.write('listofallmembers=model_.listofallmembersType(\n') self.listofallmembers.exportLiteral(outfile, level, name_='listofallmembers') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'compoundname': compoundname_ = '' for text__content_ in child_.childNodes: compoundname_ += text__content_.nodeValue self.compoundname = compoundname_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': obj_ = docTitleType.factory() obj_.build(child_) self.set_title(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'basecompoundref': obj_ = compoundRefType.factory() obj_.build(child_) self.basecompoundref.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'derivedcompoundref': obj_ = compoundRefType.factory() obj_.build(child_) self.derivedcompoundref.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'includes': obj_ = incType.factory() obj_.build(child_) self.includes.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'includedby': obj_ = incType.factory() obj_.build(child_) self.includedby.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'incdepgraph': obj_ = graphType.factory() obj_.build(child_) self.set_incdepgraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'invincdepgraph': obj_ = graphType.factory() obj_.build(child_) self.set_invincdepgraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'innerdir': obj_ = refType.factory() obj_.build(child_) self.innerdir.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'innerfile': obj_ = refType.factory() obj_.build(child_) self.innerfile.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'innerclass': obj_ = refType.factory() obj_.build(child_) self.innerclass.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'innernamespace': obj_ = refType.factory() obj_.build(child_) self.innernamespace.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'innerpage': obj_ = refType.factory() obj_.build(child_) self.innerpage.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'innergroup': obj_ = refType.factory() obj_.build(child_) self.innergroup.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'templateparamlist': obj_ = templateparamlistType.factory() obj_.build(child_) self.set_templateparamlist(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sectiondef': obj_ = sectiondefType.factory() obj_.build(child_) self.sectiondef.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'briefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_briefdescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'detaileddescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_detaileddescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'inheritancegraph': obj_ = graphType.factory() obj_.build(child_) self.set_inheritancegraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'collaborationgraph': obj_ = graphType.factory() obj_.build(child_) self.set_collaborationgraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'programlisting': obj_ = listingType.factory() obj_.build(child_) self.set_programlisting(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'location': obj_ = locationType.factory() obj_.build(child_) self.set_location(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'listofallmembers': obj_ = listofallmembersType.factory() obj_.build(child_) self.set_listofallmembers(obj_) # end class compounddefType class listofallmembersType(GeneratedsSuper): subclass = None superclass = None def __init__(self, member=None): if member is None: self.member = [] else: self.member = member def factory(*args_, **kwargs_): if listofallmembersType.subclass: return listofallmembersType.subclass(*args_, **kwargs_) else: return listofallmembersType(*args_, **kwargs_) factory = staticmethod(factory) def get_member(self): return self.member def set_member(self, member): self.member = member def add_member(self, value): self.member.append(value) def insert_member(self, index, value): self.member[index] = value def export(self, outfile, level, namespace_='', name_='listofallmembersType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='listofallmembersType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='listofallmembersType'): pass def exportChildren(self, outfile, level, namespace_='', name_='listofallmembersType'): for member_ in self.member: member_.export(outfile, level, namespace_, name_='member') def hasContent_(self): if ( self.member is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='listofallmembersType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('member=[\n') level += 1 for member in self.member: showIndent(outfile, level) outfile.write('model_.member(\n') member.exportLiteral(outfile, level, name_='member') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'member': obj_ = memberRefType.factory() obj_.build(child_) self.member.append(obj_) # end class listofallmembersType class memberRefType(GeneratedsSuper): subclass = None superclass = None def __init__(self, virt=None, prot=None, refid=None, ambiguityscope=None, scope=None, name=None): self.virt = virt self.prot = prot self.refid = refid self.ambiguityscope = ambiguityscope self.scope = scope self.name = name def factory(*args_, **kwargs_): if memberRefType.subclass: return memberRefType.subclass(*args_, **kwargs_) else: return memberRefType(*args_, **kwargs_) factory = staticmethod(factory) def get_scope(self): return self.scope def set_scope(self, scope): self.scope = scope def get_name(self): return self.name def set_name(self, name): self.name = name def get_virt(self): return self.virt def set_virt(self, virt): self.virt = virt def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def get_ambiguityscope(self): return self.ambiguityscope def set_ambiguityscope(self, ambiguityscope): self.ambiguityscope = ambiguityscope def export(self, outfile, level, namespace_='', name_='memberRefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='memberRefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='memberRefType'): if self.virt is not None: outfile.write(' virt=%s' % (quote_attrib(self.virt), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.ambiguityscope is not None: outfile.write(' ambiguityscope=%s' % (self.format_string(quote_attrib(self.ambiguityscope).encode(ExternalEncoding), input_name='ambiguityscope'), )) def exportChildren(self, outfile, level, namespace_='', name_='memberRefType'): if self.scope is not None: showIndent(outfile, level) outfile.write('<%sscope>%s\n' % (namespace_, self.format_string(quote_xml(self.scope).encode(ExternalEncoding), input_name='scope'), namespace_)) if self.name is not None: showIndent(outfile, level) outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) def hasContent_(self): if ( self.scope is not None or self.name is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='memberRefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.virt is not None: showIndent(outfile, level) outfile.write('virt = "%s",\n' % (self.virt,)) if self.prot is not None: showIndent(outfile, level) outfile.write('prot = "%s",\n' % (self.prot,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) if self.ambiguityscope is not None: showIndent(outfile, level) outfile.write('ambiguityscope = %s,\n' % (self.ambiguityscope,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('scope=%s,\n' % quote_python(self.scope).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('virt'): self.virt = attrs.get('virt').value if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('refid'): self.refid = attrs.get('refid').value if attrs.get('ambiguityscope'): self.ambiguityscope = attrs.get('ambiguityscope').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'scope': scope_ = '' for text__content_ in child_.childNodes: scope_ += text__content_.nodeValue self.scope = scope_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue self.name = name_ # end class memberRefType class scope(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if scope.subclass: return scope.subclass(*args_, **kwargs_) else: return scope(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='scope', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='scope') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='scope'): pass def exportChildren(self, outfile, level, namespace_='', name_='scope'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='scope'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class scope class name(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if name.subclass: return name.subclass(*args_, **kwargs_) else: return name(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='name', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='name') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='name'): pass def exportChildren(self, outfile, level, namespace_='', name_='name'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='name'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class name class compoundRefType(GeneratedsSuper): subclass = None superclass = None def __init__(self, virt=None, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): self.virt = virt self.prot = prot self.refid = refid if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if compoundRefType.subclass: return compoundRefType.subclass(*args_, **kwargs_) else: return compoundRefType(*args_, **kwargs_) factory = staticmethod(factory) def get_virt(self): return self.virt def set_virt(self, virt): self.virt = virt def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='compoundRefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='compoundRefType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='compoundRefType'): if self.virt is not None: outfile.write(' virt=%s' % (quote_attrib(self.virt), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='compoundRefType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='compoundRefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.virt is not None: showIndent(outfile, level) outfile.write('virt = "%s",\n' % (self.virt,)) if self.prot is not None: showIndent(outfile, level) outfile.write('prot = "%s",\n' % (self.prot,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('virt'): self.virt = attrs.get('virt').value if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class compoundRefType class reimplementType(GeneratedsSuper): subclass = None superclass = None def __init__(self, refid=None, valueOf_='', mixedclass_=None, content_=None): self.refid = refid if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if reimplementType.subclass: return reimplementType.subclass(*args_, **kwargs_) else: return reimplementType(*args_, **kwargs_) factory = staticmethod(factory) def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='reimplementType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='reimplementType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='reimplementType'): if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='reimplementType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='reimplementType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class reimplementType class incType(GeneratedsSuper): subclass = None superclass = None def __init__(self, local=None, refid=None, valueOf_='', mixedclass_=None, content_=None): self.local = local self.refid = refid if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if incType.subclass: return incType.subclass(*args_, **kwargs_) else: return incType(*args_, **kwargs_) factory = staticmethod(factory) def get_local(self): return self.local def set_local(self, local): self.local = local def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='incType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='incType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='incType'): if self.local is not None: outfile.write(' local=%s' % (quote_attrib(self.local), )) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='incType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='incType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.local is not None: showIndent(outfile, level) outfile.write('local = "%s",\n' % (self.local,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('local'): self.local = attrs.get('local').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class incType class refType(GeneratedsSuper): subclass = None superclass = None def __init__(self, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): self.prot = prot self.refid = refid if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if refType.subclass: return refType.subclass(*args_, **kwargs_) else: return refType(*args_, **kwargs_) factory = staticmethod(factory) def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='refType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='refType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='refType'): if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='refType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='refType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.prot is not None: showIndent(outfile, level) outfile.write('prot = "%s",\n' % (self.prot,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class refType class refTextType(GeneratedsSuper): subclass = None superclass = None def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): self.refid = refid self.kindref = kindref self.external = external if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if refTextType.subclass: return refTextType.subclass(*args_, **kwargs_) else: return refTextType(*args_, **kwargs_) factory = staticmethod(factory) def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def get_kindref(self): return self.kindref def set_kindref(self, kindref): self.kindref = kindref def get_external(self): return self.external def set_external(self, external): self.external = external def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='refTextType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='refTextType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='refTextType'): if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.kindref is not None: outfile.write(' kindref=%s' % (quote_attrib(self.kindref), )) if self.external is not None: outfile.write(' external=%s' % (self.format_string(quote_attrib(self.external).encode(ExternalEncoding), input_name='external'), )) def exportChildren(self, outfile, level, namespace_='', name_='refTextType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='refTextType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) if self.kindref is not None: showIndent(outfile, level) outfile.write('kindref = "%s",\n' % (self.kindref,)) if self.external is not None: showIndent(outfile, level) outfile.write('external = %s,\n' % (self.external,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value if attrs.get('kindref'): self.kindref = attrs.get('kindref').value if attrs.get('external'): self.external = attrs.get('external').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class refTextType class sectiondefType(GeneratedsSuper): subclass = None superclass = None def __init__(self, kind=None, header=None, description=None, memberdef=None): self.kind = kind self.header = header self.description = description if memberdef is None: self.memberdef = [] else: self.memberdef = memberdef def factory(*args_, **kwargs_): if sectiondefType.subclass: return sectiondefType.subclass(*args_, **kwargs_) else: return sectiondefType(*args_, **kwargs_) factory = staticmethod(factory) def get_header(self): return self.header def set_header(self, header): self.header = header def get_description(self): return self.description def set_description(self, description): self.description = description def get_memberdef(self): return self.memberdef def set_memberdef(self, memberdef): self.memberdef = memberdef def add_memberdef(self, value): self.memberdef.append(value) def insert_memberdef(self, index, value): self.memberdef[index] = value def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def export(self, outfile, level, namespace_='', name_='sectiondefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='sectiondefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='sectiondefType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) def exportChildren(self, outfile, level, namespace_='', name_='sectiondefType'): if self.header is not None: showIndent(outfile, level) outfile.write('<%sheader>%s\n' % (namespace_, self.format_string(quote_xml(self.header).encode(ExternalEncoding), input_name='header'), namespace_)) if self.description: self.description.export(outfile, level, namespace_, name_='description') for memberdef_ in self.memberdef: memberdef_.export(outfile, level, namespace_, name_='memberdef') def hasContent_(self): if ( self.header is not None or self.description is not None or self.memberdef is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='sectiondefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('header=%s,\n' % quote_python(self.header).encode(ExternalEncoding)) if self.description: showIndent(outfile, level) outfile.write('description=model_.descriptionType(\n') self.description.exportLiteral(outfile, level, name_='description') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('memberdef=[\n') level += 1 for memberdef in self.memberdef: showIndent(outfile, level) outfile.write('model_.memberdef(\n') memberdef.exportLiteral(outfile, level, name_='memberdef') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'header': header_ = '' for text__content_ in child_.childNodes: header_ += text__content_.nodeValue self.header = header_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'description': obj_ = descriptionType.factory() obj_.build(child_) self.set_description(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'memberdef': obj_ = memberdefType.factory() obj_.build(child_) self.memberdef.append(obj_) # end class sectiondefType class memberdefType(GeneratedsSuper): subclass = None superclass = None def __init__(self, initonly=None, kind=None, volatile=None, const=None, raisexx=None, virt=None, readable=None, prot=None, explicit=None, new=None, final=None, writable=None, add=None, static=None, remove=None, sealed=None, mutable=None, gettable=None, inline=None, settable=None, id=None, templateparamlist=None, type_=None, definition=None, argsstring=None, name=None, read=None, write=None, bitfield=None, reimplements=None, reimplementedby=None, param=None, enumvalue=None, initializer=None, exceptions=None, briefdescription=None, detaileddescription=None, inbodydescription=None, location=None, references=None, referencedby=None): self.initonly = initonly self.kind = kind self.volatile = volatile self.const = const self.raisexx = raisexx self.virt = virt self.readable = readable self.prot = prot self.explicit = explicit self.new = new self.final = final self.writable = writable self.add = add self.static = static self.remove = remove self.sealed = sealed self.mutable = mutable self.gettable = gettable self.inline = inline self.settable = settable self.id = id self.templateparamlist = templateparamlist self.type_ = type_ self.definition = definition self.argsstring = argsstring self.name = name self.read = read self.write = write self.bitfield = bitfield if reimplements is None: self.reimplements = [] else: self.reimplements = reimplements if reimplementedby is None: self.reimplementedby = [] else: self.reimplementedby = reimplementedby if param is None: self.param = [] else: self.param = param if enumvalue is None: self.enumvalue = [] else: self.enumvalue = enumvalue self.initializer = initializer self.exceptions = exceptions self.briefdescription = briefdescription self.detaileddescription = detaileddescription self.inbodydescription = inbodydescription self.location = location if references is None: self.references = [] else: self.references = references if referencedby is None: self.referencedby = [] else: self.referencedby = referencedby def factory(*args_, **kwargs_): if memberdefType.subclass: return memberdefType.subclass(*args_, **kwargs_) else: return memberdefType(*args_, **kwargs_) factory = staticmethod(factory) def get_templateparamlist(self): return self.templateparamlist def set_templateparamlist(self, templateparamlist): self.templateparamlist = templateparamlist def get_type(self): return self.type_ def set_type(self, type_): self.type_ = type_ def get_definition(self): return self.definition def set_definition(self, definition): self.definition = definition def get_argsstring(self): return self.argsstring def set_argsstring(self, argsstring): self.argsstring = argsstring def get_name(self): return self.name def set_name(self, name): self.name = name def get_read(self): return self.read def set_read(self, read): self.read = read def get_write(self): return self.write def set_write(self, write): self.write = write def get_bitfield(self): return self.bitfield def set_bitfield(self, bitfield): self.bitfield = bitfield def get_reimplements(self): return self.reimplements def set_reimplements(self, reimplements): self.reimplements = reimplements def add_reimplements(self, value): self.reimplements.append(value) def insert_reimplements(self, index, value): self.reimplements[index] = value def get_reimplementedby(self): return self.reimplementedby def set_reimplementedby(self, reimplementedby): self.reimplementedby = reimplementedby def add_reimplementedby(self, value): self.reimplementedby.append(value) def insert_reimplementedby(self, index, value): self.reimplementedby[index] = value def get_param(self): return self.param def set_param(self, param): self.param = param def add_param(self, value): self.param.append(value) def insert_param(self, index, value): self.param[index] = value def get_enumvalue(self): return self.enumvalue def set_enumvalue(self, enumvalue): self.enumvalue = enumvalue def add_enumvalue(self, value): self.enumvalue.append(value) def insert_enumvalue(self, index, value): self.enumvalue[index] = value def get_initializer(self): return self.initializer def set_initializer(self, initializer): self.initializer = initializer def get_exceptions(self): return self.exceptions def set_exceptions(self, exceptions): self.exceptions = exceptions def get_briefdescription(self): return self.briefdescription def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription def get_detaileddescription(self): return self.detaileddescription def set_detaileddescription(self, detaileddescription): self.detaileddescription = detaileddescription def get_inbodydescription(self): return self.inbodydescription def set_inbodydescription(self, inbodydescription): self.inbodydescription = inbodydescription def get_location(self): return self.location def set_location(self, location): self.location = location def get_references(self): return self.references def set_references(self, references): self.references = references def add_references(self, value): self.references.append(value) def insert_references(self, index, value): self.references[index] = value def get_referencedby(self): return self.referencedby def set_referencedby(self, referencedby): self.referencedby = referencedby def add_referencedby(self, value): self.referencedby.append(value) def insert_referencedby(self, index, value): self.referencedby[index] = value def get_initonly(self): return self.initonly def set_initonly(self, initonly): self.initonly = initonly def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_volatile(self): return self.volatile def set_volatile(self, volatile): self.volatile = volatile def get_const(self): return self.const def set_const(self, const): self.const = const def get_raise(self): return self.raisexx def set_raise(self, raisexx): self.raisexx = raisexx def get_virt(self): return self.virt def set_virt(self, virt): self.virt = virt def get_readable(self): return self.readable def set_readable(self, readable): self.readable = readable def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_explicit(self): return self.explicit def set_explicit(self, explicit): self.explicit = explicit def get_new(self): return self.new def set_new(self, new): self.new = new def get_final(self): return self.final def set_final(self, final): self.final = final def get_writable(self): return self.writable def set_writable(self, writable): self.writable = writable def get_add(self): return self.add def set_add(self, add): self.add = add def get_static(self): return self.static def set_static(self, static): self.static = static def get_remove(self): return self.remove def set_remove(self, remove): self.remove = remove def get_sealed(self): return self.sealed def set_sealed(self, sealed): self.sealed = sealed def get_mutable(self): return self.mutable def set_mutable(self, mutable): self.mutable = mutable def get_gettable(self): return self.gettable def set_gettable(self, gettable): self.gettable = gettable def get_inline(self): return self.inline def set_inline(self, inline): self.inline = inline def get_settable(self): return self.settable def set_settable(self, settable): self.settable = settable def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='memberdefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='memberdefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='memberdefType'): if self.initonly is not None: outfile.write(' initonly=%s' % (quote_attrib(self.initonly), )) if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) if self.volatile is not None: outfile.write(' volatile=%s' % (quote_attrib(self.volatile), )) if self.const is not None: outfile.write(' const=%s' % (quote_attrib(self.const), )) if self.raisexx is not None: outfile.write(' raise=%s' % (quote_attrib(self.raisexx), )) if self.virt is not None: outfile.write(' virt=%s' % (quote_attrib(self.virt), )) if self.readable is not None: outfile.write(' readable=%s' % (quote_attrib(self.readable), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.explicit is not None: outfile.write(' explicit=%s' % (quote_attrib(self.explicit), )) if self.new is not None: outfile.write(' new=%s' % (quote_attrib(self.new), )) if self.final is not None: outfile.write(' final=%s' % (quote_attrib(self.final), )) if self.writable is not None: outfile.write(' writable=%s' % (quote_attrib(self.writable), )) if self.add is not None: outfile.write(' add=%s' % (quote_attrib(self.add), )) if self.static is not None: outfile.write(' static=%s' % (quote_attrib(self.static), )) if self.remove is not None: outfile.write(' remove=%s' % (quote_attrib(self.remove), )) if self.sealed is not None: outfile.write(' sealed=%s' % (quote_attrib(self.sealed), )) if self.mutable is not None: outfile.write(' mutable=%s' % (quote_attrib(self.mutable), )) if self.gettable is not None: outfile.write(' gettable=%s' % (quote_attrib(self.gettable), )) if self.inline is not None: outfile.write(' inline=%s' % (quote_attrib(self.inline), )) if self.settable is not None: outfile.write(' settable=%s' % (quote_attrib(self.settable), )) if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='memberdefType'): if self.templateparamlist: self.templateparamlist.export(outfile, level, namespace_, name_='templateparamlist') if self.type_: self.type_.export(outfile, level, namespace_, name_='type') if self.definition is not None: showIndent(outfile, level) outfile.write('<%sdefinition>%s\n' % (namespace_, self.format_string(quote_xml(self.definition).encode(ExternalEncoding), input_name='definition'), namespace_)) if self.argsstring is not None: showIndent(outfile, level) outfile.write('<%sargsstring>%s\n' % (namespace_, self.format_string(quote_xml(self.argsstring).encode(ExternalEncoding), input_name='argsstring'), namespace_)) if self.name is not None: showIndent(outfile, level) outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) if self.read is not None: showIndent(outfile, level) outfile.write('<%sread>%s\n' % (namespace_, self.format_string(quote_xml(self.read).encode(ExternalEncoding), input_name='read'), namespace_)) if self.write is not None: showIndent(outfile, level) outfile.write('<%swrite>%s\n' % (namespace_, self.format_string(quote_xml(self.write).encode(ExternalEncoding), input_name='write'), namespace_)) if self.bitfield is not None: showIndent(outfile, level) outfile.write('<%sbitfield>%s\n' % (namespace_, self.format_string(quote_xml(self.bitfield).encode(ExternalEncoding), input_name='bitfield'), namespace_)) for reimplements_ in self.reimplements: reimplements_.export(outfile, level, namespace_, name_='reimplements') for reimplementedby_ in self.reimplementedby: reimplementedby_.export(outfile, level, namespace_, name_='reimplementedby') for param_ in self.param: param_.export(outfile, level, namespace_, name_='param') for enumvalue_ in self.enumvalue: enumvalue_.export(outfile, level, namespace_, name_='enumvalue') if self.initializer: self.initializer.export(outfile, level, namespace_, name_='initializer') if self.exceptions: self.exceptions.export(outfile, level, namespace_, name_='exceptions') if self.briefdescription: self.briefdescription.export(outfile, level, namespace_, name_='briefdescription') if self.detaileddescription: self.detaileddescription.export(outfile, level, namespace_, name_='detaileddescription') if self.inbodydescription: self.inbodydescription.export(outfile, level, namespace_, name_='inbodydescription') if self.location: self.location.export(outfile, level, namespace_, name_='location', ) for references_ in self.references: references_.export(outfile, level, namespace_, name_='references') for referencedby_ in self.referencedby: referencedby_.export(outfile, level, namespace_, name_='referencedby') def hasContent_(self): if ( self.templateparamlist is not None or self.type_ is not None or self.definition is not None or self.argsstring is not None or self.name is not None or self.read is not None or self.write is not None or self.bitfield is not None or self.reimplements is not None or self.reimplementedby is not None or self.param is not None or self.enumvalue is not None or self.initializer is not None or self.exceptions is not None or self.briefdescription is not None or self.detaileddescription is not None or self.inbodydescription is not None or self.location is not None or self.references is not None or self.referencedby is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='memberdefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.initonly is not None: showIndent(outfile, level) outfile.write('initonly = "%s",\n' % (self.initonly,)) if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) if self.volatile is not None: showIndent(outfile, level) outfile.write('volatile = "%s",\n' % (self.volatile,)) if self.const is not None: showIndent(outfile, level) outfile.write('const = "%s",\n' % (self.const,)) if self.raisexx is not None: showIndent(outfile, level) outfile.write('raisexx = "%s",\n' % (self.raisexx,)) if self.virt is not None: showIndent(outfile, level) outfile.write('virt = "%s",\n' % (self.virt,)) if self.readable is not None: showIndent(outfile, level) outfile.write('readable = "%s",\n' % (self.readable,)) if self.prot is not None: showIndent(outfile, level) outfile.write('prot = "%s",\n' % (self.prot,)) if self.explicit is not None: showIndent(outfile, level) outfile.write('explicit = "%s",\n' % (self.explicit,)) if self.new is not None: showIndent(outfile, level) outfile.write('new = "%s",\n' % (self.new,)) if self.final is not None: showIndent(outfile, level) outfile.write('final = "%s",\n' % (self.final,)) if self.writable is not None: showIndent(outfile, level) outfile.write('writable = "%s",\n' % (self.writable,)) if self.add is not None: showIndent(outfile, level) outfile.write('add = "%s",\n' % (self.add,)) if self.static is not None: showIndent(outfile, level) outfile.write('static = "%s",\n' % (self.static,)) if self.remove is not None: showIndent(outfile, level) outfile.write('remove = "%s",\n' % (self.remove,)) if self.sealed is not None: showIndent(outfile, level) outfile.write('sealed = "%s",\n' % (self.sealed,)) if self.mutable is not None: showIndent(outfile, level) outfile.write('mutable = "%s",\n' % (self.mutable,)) if self.gettable is not None: showIndent(outfile, level) outfile.write('gettable = "%s",\n' % (self.gettable,)) if self.inline is not None: showIndent(outfile, level) outfile.write('inline = "%s",\n' % (self.inline,)) if self.settable is not None: showIndent(outfile, level) outfile.write('settable = "%s",\n' % (self.settable,)) if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): if self.templateparamlist: showIndent(outfile, level) outfile.write('templateparamlist=model_.templateparamlistType(\n') self.templateparamlist.exportLiteral(outfile, level, name_='templateparamlist') showIndent(outfile, level) outfile.write('),\n') if self.type_: showIndent(outfile, level) outfile.write('type_=model_.linkedTextType(\n') self.type_.exportLiteral(outfile, level, name_='type') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('definition=%s,\n' % quote_python(self.definition).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('argsstring=%s,\n' % quote_python(self.argsstring).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('read=%s,\n' % quote_python(self.read).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('write=%s,\n' % quote_python(self.write).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('bitfield=%s,\n' % quote_python(self.bitfield).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('reimplements=[\n') level += 1 for reimplements in self.reimplements: showIndent(outfile, level) outfile.write('model_.reimplements(\n') reimplements.exportLiteral(outfile, level, name_='reimplements') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('reimplementedby=[\n') level += 1 for reimplementedby in self.reimplementedby: showIndent(outfile, level) outfile.write('model_.reimplementedby(\n') reimplementedby.exportLiteral(outfile, level, name_='reimplementedby') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('param=[\n') level += 1 for param in self.param: showIndent(outfile, level) outfile.write('model_.param(\n') param.exportLiteral(outfile, level, name_='param') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('enumvalue=[\n') level += 1 for enumvalue in self.enumvalue: showIndent(outfile, level) outfile.write('model_.enumvalue(\n') enumvalue.exportLiteral(outfile, level, name_='enumvalue') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.initializer: showIndent(outfile, level) outfile.write('initializer=model_.linkedTextType(\n') self.initializer.exportLiteral(outfile, level, name_='initializer') showIndent(outfile, level) outfile.write('),\n') if self.exceptions: showIndent(outfile, level) outfile.write('exceptions=model_.linkedTextType(\n') self.exceptions.exportLiteral(outfile, level, name_='exceptions') showIndent(outfile, level) outfile.write('),\n') if self.briefdescription: showIndent(outfile, level) outfile.write('briefdescription=model_.descriptionType(\n') self.briefdescription.exportLiteral(outfile, level, name_='briefdescription') showIndent(outfile, level) outfile.write('),\n') if self.detaileddescription: showIndent(outfile, level) outfile.write('detaileddescription=model_.descriptionType(\n') self.detaileddescription.exportLiteral(outfile, level, name_='detaileddescription') showIndent(outfile, level) outfile.write('),\n') if self.inbodydescription: showIndent(outfile, level) outfile.write('inbodydescription=model_.descriptionType(\n') self.inbodydescription.exportLiteral(outfile, level, name_='inbodydescription') showIndent(outfile, level) outfile.write('),\n') if self.location: showIndent(outfile, level) outfile.write('location=model_.locationType(\n') self.location.exportLiteral(outfile, level, name_='location') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('references=[\n') level += 1 for references in self.references: showIndent(outfile, level) outfile.write('model_.references(\n') references.exportLiteral(outfile, level, name_='references') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('referencedby=[\n') level += 1 for referencedby in self.referencedby: showIndent(outfile, level) outfile.write('model_.referencedby(\n') referencedby.exportLiteral(outfile, level, name_='referencedby') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('initonly'): self.initonly = attrs.get('initonly').value if attrs.get('kind'): self.kind = attrs.get('kind').value if attrs.get('volatile'): self.volatile = attrs.get('volatile').value if attrs.get('const'): self.const = attrs.get('const').value if attrs.get('raise'): self.raisexx = attrs.get('raise').value if attrs.get('virt'): self.virt = attrs.get('virt').value if attrs.get('readable'): self.readable = attrs.get('readable').value if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('explicit'): self.explicit = attrs.get('explicit').value if attrs.get('new'): self.new = attrs.get('new').value if attrs.get('final'): self.final = attrs.get('final').value if attrs.get('writable'): self.writable = attrs.get('writable').value if attrs.get('add'): self.add = attrs.get('add').value if attrs.get('static'): self.static = attrs.get('static').value if attrs.get('remove'): self.remove = attrs.get('remove').value if attrs.get('sealed'): self.sealed = attrs.get('sealed').value if attrs.get('mutable'): self.mutable = attrs.get('mutable').value if attrs.get('gettable'): self.gettable = attrs.get('gettable').value if attrs.get('inline'): self.inline = attrs.get('inline').value if attrs.get('settable'): self.settable = attrs.get('settable').value if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'templateparamlist': obj_ = templateparamlistType.factory() obj_.build(child_) self.set_templateparamlist(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'type': obj_ = linkedTextType.factory() obj_.build(child_) self.set_type(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'definition': definition_ = '' for text__content_ in child_.childNodes: definition_ += text__content_.nodeValue self.definition = definition_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'argsstring': argsstring_ = '' for text__content_ in child_.childNodes: argsstring_ += text__content_.nodeValue self.argsstring = argsstring_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue self.name = name_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'read': read_ = '' for text__content_ in child_.childNodes: read_ += text__content_.nodeValue self.read = read_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'write': write_ = '' for text__content_ in child_.childNodes: write_ += text__content_.nodeValue self.write = write_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'bitfield': bitfield_ = '' for text__content_ in child_.childNodes: bitfield_ += text__content_.nodeValue self.bitfield = bitfield_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'reimplements': obj_ = reimplementType.factory() obj_.build(child_) self.reimplements.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'reimplementedby': obj_ = reimplementType.factory() obj_.build(child_) self.reimplementedby.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'param': obj_ = paramType.factory() obj_.build(child_) self.param.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'enumvalue': obj_ = enumvalueType.factory() obj_.build(child_) self.enumvalue.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'initializer': obj_ = linkedTextType.factory() obj_.build(child_) self.set_initializer(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'exceptions': obj_ = linkedTextType.factory() obj_.build(child_) self.set_exceptions(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'briefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_briefdescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'detaileddescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_detaileddescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'inbodydescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_inbodydescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'location': obj_ = locationType.factory() obj_.build(child_) self.set_location(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'references': obj_ = referenceType.factory() obj_.build(child_) self.references.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'referencedby': obj_ = referenceType.factory() obj_.build(child_) self.referencedby.append(obj_) # end class memberdefType class definition(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if definition.subclass: return definition.subclass(*args_, **kwargs_) else: return definition(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='definition', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='definition') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='definition'): pass def exportChildren(self, outfile, level, namespace_='', name_='definition'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='definition'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class definition class argsstring(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if argsstring.subclass: return argsstring.subclass(*args_, **kwargs_) else: return argsstring(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='argsstring', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='argsstring') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='argsstring'): pass def exportChildren(self, outfile, level, namespace_='', name_='argsstring'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='argsstring'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class argsstring class read(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if read.subclass: return read.subclass(*args_, **kwargs_) else: return read(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='read', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='read') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='read'): pass def exportChildren(self, outfile, level, namespace_='', name_='read'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='read'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class read class write(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if write.subclass: return write.subclass(*args_, **kwargs_) else: return write(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='write', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='write') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='write'): pass def exportChildren(self, outfile, level, namespace_='', name_='write'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='write'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class write class bitfield(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if bitfield.subclass: return bitfield.subclass(*args_, **kwargs_) else: return bitfield(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='bitfield', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='bitfield') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='bitfield'): pass def exportChildren(self, outfile, level, namespace_='', name_='bitfield'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='bitfield'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class bitfield class descriptionType(GeneratedsSuper): subclass = None superclass = None def __init__(self, title=None, para=None, sect1=None, internal=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if descriptionType.subclass: return descriptionType.subclass(*args_, **kwargs_) else: return descriptionType(*args_, **kwargs_) factory = staticmethod(factory) def get_title(self): return self.title def set_title(self, title): self.title = title def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect1(self): return self.sect1 def set_sect1(self, sect1): self.sect1 = sect1 def add_sect1(self, value): self.sect1.append(value) def insert_sect1(self, index, value): self.sect1[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def export(self, outfile, level, namespace_='', name_='descriptionType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='descriptionType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='descriptionType'): pass def exportChildren(self, outfile, level, namespace_='', name_='descriptionType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect1 is not None or self.internal is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='descriptionType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect1': childobj_ = docSect1Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect1', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'internal': childobj_ = docInternalType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class descriptionType class enumvalueType(GeneratedsSuper): subclass = None superclass = None def __init__(self, prot=None, id=None, name=None, initializer=None, briefdescription=None, detaileddescription=None, mixedclass_=None, content_=None): self.prot = prot self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if enumvalueType.subclass: return enumvalueType.subclass(*args_, **kwargs_) else: return enumvalueType(*args_, **kwargs_) factory = staticmethod(factory) def get_name(self): return self.name def set_name(self, name): self.name = name def get_initializer(self): return self.initializer def set_initializer(self, initializer): self.initializer = initializer def get_briefdescription(self): return self.briefdescription def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription def get_detaileddescription(self): return self.detaileddescription def set_detaileddescription(self, detaileddescription): self.detaileddescription = detaileddescription def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='enumvalueType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='enumvalueType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='enumvalueType'): if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='enumvalueType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.name is not None or self.initializer is not None or self.briefdescription is not None or self.detaileddescription is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='enumvalueType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.prot is not None: showIndent(outfile, level) outfile.write('prot = "%s",\n' % (self.prot,)) if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'name': value_ = [] for text_ in child_.childNodes: value_.append(text_.nodeValue) valuestr_ = ''.join(value_) obj_ = self.mixedclass_(MixedContainer.CategorySimple, MixedContainer.TypeString, 'name', valuestr_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'initializer': childobj_ = linkedTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'initializer', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'briefdescription': childobj_ = descriptionType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'briefdescription', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'detaileddescription': childobj_ = descriptionType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'detaileddescription', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class enumvalueType class templateparamlistType(GeneratedsSuper): subclass = None superclass = None def __init__(self, param=None): if param is None: self.param = [] else: self.param = param def factory(*args_, **kwargs_): if templateparamlistType.subclass: return templateparamlistType.subclass(*args_, **kwargs_) else: return templateparamlistType(*args_, **kwargs_) factory = staticmethod(factory) def get_param(self): return self.param def set_param(self, param): self.param = param def add_param(self, value): self.param.append(value) def insert_param(self, index, value): self.param[index] = value def export(self, outfile, level, namespace_='', name_='templateparamlistType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='templateparamlistType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='templateparamlistType'): pass def exportChildren(self, outfile, level, namespace_='', name_='templateparamlistType'): for param_ in self.param: param_.export(outfile, level, namespace_, name_='param') def hasContent_(self): if ( self.param is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='templateparamlistType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('param=[\n') level += 1 for param in self.param: showIndent(outfile, level) outfile.write('model_.param(\n') param.exportLiteral(outfile, level, name_='param') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'param': obj_ = paramType.factory() obj_.build(child_) self.param.append(obj_) # end class templateparamlistType class paramType(GeneratedsSuper): subclass = None superclass = None def __init__(self, type_=None, declname=None, defname=None, array=None, defval=None, briefdescription=None): self.type_ = type_ self.declname = declname self.defname = defname self.array = array self.defval = defval self.briefdescription = briefdescription def factory(*args_, **kwargs_): if paramType.subclass: return paramType.subclass(*args_, **kwargs_) else: return paramType(*args_, **kwargs_) factory = staticmethod(factory) def get_type(self): return self.type_ def set_type(self, type_): self.type_ = type_ def get_declname(self): return self.declname def set_declname(self, declname): self.declname = declname def get_defname(self): return self.defname def set_defname(self, defname): self.defname = defname def get_array(self): return self.array def set_array(self, array): self.array = array def get_defval(self): return self.defval def set_defval(self, defval): self.defval = defval def get_briefdescription(self): return self.briefdescription def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription def export(self, outfile, level, namespace_='', name_='paramType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='paramType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='paramType'): pass def exportChildren(self, outfile, level, namespace_='', name_='paramType'): if self.type_: self.type_.export(outfile, level, namespace_, name_='type') if self.declname is not None: showIndent(outfile, level) outfile.write('<%sdeclname>%s\n' % (namespace_, self.format_string(quote_xml(self.declname).encode(ExternalEncoding), input_name='declname'), namespace_)) if self.defname is not None: showIndent(outfile, level) outfile.write('<%sdefname>%s\n' % (namespace_, self.format_string(quote_xml(self.defname).encode(ExternalEncoding), input_name='defname'), namespace_)) if self.array is not None: showIndent(outfile, level) outfile.write('<%sarray>%s\n' % (namespace_, self.format_string(quote_xml(self.array).encode(ExternalEncoding), input_name='array'), namespace_)) if self.defval: self.defval.export(outfile, level, namespace_, name_='defval') if self.briefdescription: self.briefdescription.export(outfile, level, namespace_, name_='briefdescription') def hasContent_(self): if ( self.type_ is not None or self.declname is not None or self.defname is not None or self.array is not None or self.defval is not None or self.briefdescription is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='paramType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): if self.type_: showIndent(outfile, level) outfile.write('type_=model_.linkedTextType(\n') self.type_.exportLiteral(outfile, level, name_='type') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('declname=%s,\n' % quote_python(self.declname).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('defname=%s,\n' % quote_python(self.defname).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('array=%s,\n' % quote_python(self.array).encode(ExternalEncoding)) if self.defval: showIndent(outfile, level) outfile.write('defval=model_.linkedTextType(\n') self.defval.exportLiteral(outfile, level, name_='defval') showIndent(outfile, level) outfile.write('),\n') if self.briefdescription: showIndent(outfile, level) outfile.write('briefdescription=model_.descriptionType(\n') self.briefdescription.exportLiteral(outfile, level, name_='briefdescription') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'type': obj_ = linkedTextType.factory() obj_.build(child_) self.set_type(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'declname': declname_ = '' for text__content_ in child_.childNodes: declname_ += text__content_.nodeValue self.declname = declname_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'defname': defname_ = '' for text__content_ in child_.childNodes: defname_ += text__content_.nodeValue self.defname = defname_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'array': array_ = '' for text__content_ in child_.childNodes: array_ += text__content_.nodeValue self.array = array_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'defval': obj_ = linkedTextType.factory() obj_.build(child_) self.set_defval(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'briefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_briefdescription(obj_) # end class paramType class declname(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if declname.subclass: return declname.subclass(*args_, **kwargs_) else: return declname(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='declname', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='declname') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='declname'): pass def exportChildren(self, outfile, level, namespace_='', name_='declname'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='declname'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class declname class defname(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if defname.subclass: return defname.subclass(*args_, **kwargs_) else: return defname(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='defname', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='defname') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='defname'): pass def exportChildren(self, outfile, level, namespace_='', name_='defname'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='defname'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class defname class array(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if array.subclass: return array.subclass(*args_, **kwargs_) else: return array(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='array', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='array') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='array'): pass def exportChildren(self, outfile, level, namespace_='', name_='array'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='array'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class array class linkedTextType(GeneratedsSuper): subclass = None superclass = None def __init__(self, ref=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if linkedTextType.subclass: return linkedTextType.subclass(*args_, **kwargs_) else: return linkedTextType(*args_, **kwargs_) factory = staticmethod(factory) def get_ref(self): return self.ref def set_ref(self, ref): self.ref = ref def add_ref(self, value): self.ref.append(value) def insert_ref(self, index, value): self.ref[index] = value def export(self, outfile, level, namespace_='', name_='linkedTextType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='linkedTextType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='linkedTextType'): pass def exportChildren(self, outfile, level, namespace_='', name_='linkedTextType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.ref is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='linkedTextType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'ref': childobj_ = docRefTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'ref', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class linkedTextType class graphType(GeneratedsSuper): subclass = None superclass = None def __init__(self, node=None): if node is None: self.node = [] else: self.node = node def factory(*args_, **kwargs_): if graphType.subclass: return graphType.subclass(*args_, **kwargs_) else: return graphType(*args_, **kwargs_) factory = staticmethod(factory) def get_node(self): return self.node def set_node(self, node): self.node = node def add_node(self, value): self.node.append(value) def insert_node(self, index, value): self.node[index] = value def export(self, outfile, level, namespace_='', name_='graphType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='graphType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='graphType'): pass def exportChildren(self, outfile, level, namespace_='', name_='graphType'): for node_ in self.node: node_.export(outfile, level, namespace_, name_='node') def hasContent_(self): if ( self.node is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='graphType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('node=[\n') level += 1 for node in self.node: showIndent(outfile, level) outfile.write('model_.node(\n') node.exportLiteral(outfile, level, name_='node') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'node': obj_ = nodeType.factory() obj_.build(child_) self.node.append(obj_) # end class graphType class nodeType(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, label=None, link=None, childnode=None): self.id = id self.label = label self.link = link if childnode is None: self.childnode = [] else: self.childnode = childnode def factory(*args_, **kwargs_): if nodeType.subclass: return nodeType.subclass(*args_, **kwargs_) else: return nodeType(*args_, **kwargs_) factory = staticmethod(factory) def get_label(self): return self.label def set_label(self, label): self.label = label def get_link(self): return self.link def set_link(self, link): self.link = link def get_childnode(self): return self.childnode def set_childnode(self, childnode): self.childnode = childnode def add_childnode(self, value): self.childnode.append(value) def insert_childnode(self, index, value): self.childnode[index] = value def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='nodeType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='nodeType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='nodeType'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='nodeType'): if self.label is not None: showIndent(outfile, level) outfile.write('<%slabel>%s\n' % (namespace_, self.format_string(quote_xml(self.label).encode(ExternalEncoding), input_name='label'), namespace_)) if self.link: self.link.export(outfile, level, namespace_, name_='link') for childnode_ in self.childnode: childnode_.export(outfile, level, namespace_, name_='childnode') def hasContent_(self): if ( self.label is not None or self.link is not None or self.childnode is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='nodeType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('label=%s,\n' % quote_python(self.label).encode(ExternalEncoding)) if self.link: showIndent(outfile, level) outfile.write('link=model_.linkType(\n') self.link.exportLiteral(outfile, level, name_='link') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('childnode=[\n') level += 1 for childnode in self.childnode: showIndent(outfile, level) outfile.write('model_.childnode(\n') childnode.exportLiteral(outfile, level, name_='childnode') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'label': label_ = '' for text__content_ in child_.childNodes: label_ += text__content_.nodeValue self.label = label_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'link': obj_ = linkType.factory() obj_.build(child_) self.set_link(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'childnode': obj_ = childnodeType.factory() obj_.build(child_) self.childnode.append(obj_) # end class nodeType class label(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if label.subclass: return label.subclass(*args_, **kwargs_) else: return label(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='label', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='label') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='label'): pass def exportChildren(self, outfile, level, namespace_='', name_='label'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='label'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class label class childnodeType(GeneratedsSuper): subclass = None superclass = None def __init__(self, relation=None, refid=None, edgelabel=None): self.relation = relation self.refid = refid if edgelabel is None: self.edgelabel = [] else: self.edgelabel = edgelabel def factory(*args_, **kwargs_): if childnodeType.subclass: return childnodeType.subclass(*args_, **kwargs_) else: return childnodeType(*args_, **kwargs_) factory = staticmethod(factory) def get_edgelabel(self): return self.edgelabel def set_edgelabel(self, edgelabel): self.edgelabel = edgelabel def add_edgelabel(self, value): self.edgelabel.append(value) def insert_edgelabel(self, index, value): self.edgelabel[index] = value def get_relation(self): return self.relation def set_relation(self, relation): self.relation = relation def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def export(self, outfile, level, namespace_='', name_='childnodeType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='childnodeType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='childnodeType'): if self.relation is not None: outfile.write(' relation=%s' % (quote_attrib(self.relation), )) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='childnodeType'): for edgelabel_ in self.edgelabel: showIndent(outfile, level) outfile.write('<%sedgelabel>%s\n' % (namespace_, self.format_string(quote_xml(edgelabel_).encode(ExternalEncoding), input_name='edgelabel'), namespace_)) def hasContent_(self): if ( self.edgelabel is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='childnodeType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.relation is not None: showIndent(outfile, level) outfile.write('relation = "%s",\n' % (self.relation,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('edgelabel=[\n') level += 1 for edgelabel in self.edgelabel: showIndent(outfile, level) outfile.write('%s,\n' % quote_python(edgelabel).encode(ExternalEncoding)) level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('relation'): self.relation = attrs.get('relation').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'edgelabel': edgelabel_ = '' for text__content_ in child_.childNodes: edgelabel_ += text__content_.nodeValue self.edgelabel.append(edgelabel_) # end class childnodeType class edgelabel(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if edgelabel.subclass: return edgelabel.subclass(*args_, **kwargs_) else: return edgelabel(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='edgelabel', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='edgelabel') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='edgelabel'): pass def exportChildren(self, outfile, level, namespace_='', name_='edgelabel'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='edgelabel'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class edgelabel class linkType(GeneratedsSuper): subclass = None superclass = None def __init__(self, refid=None, external=None, valueOf_=''): self.refid = refid self.external = external self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if linkType.subclass: return linkType.subclass(*args_, **kwargs_) else: return linkType(*args_, **kwargs_) factory = staticmethod(factory) def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def get_external(self): return self.external def set_external(self, external): self.external = external def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='linkType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='linkType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='linkType'): if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.external is not None: outfile.write(' external=%s' % (self.format_string(quote_attrib(self.external).encode(ExternalEncoding), input_name='external'), )) def exportChildren(self, outfile, level, namespace_='', name_='linkType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='linkType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) if self.external is not None: showIndent(outfile, level) outfile.write('external = %s,\n' % (self.external,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value if attrs.get('external'): self.external = attrs.get('external').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class linkType class listingType(GeneratedsSuper): subclass = None superclass = None def __init__(self, codeline=None): if codeline is None: self.codeline = [] else: self.codeline = codeline def factory(*args_, **kwargs_): if listingType.subclass: return listingType.subclass(*args_, **kwargs_) else: return listingType(*args_, **kwargs_) factory = staticmethod(factory) def get_codeline(self): return self.codeline def set_codeline(self, codeline): self.codeline = codeline def add_codeline(self, value): self.codeline.append(value) def insert_codeline(self, index, value): self.codeline[index] = value def export(self, outfile, level, namespace_='', name_='listingType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='listingType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='listingType'): pass def exportChildren(self, outfile, level, namespace_='', name_='listingType'): for codeline_ in self.codeline: codeline_.export(outfile, level, namespace_, name_='codeline') def hasContent_(self): if ( self.codeline is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='listingType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('codeline=[\n') level += 1 for codeline in self.codeline: showIndent(outfile, level) outfile.write('model_.codeline(\n') codeline.exportLiteral(outfile, level, name_='codeline') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'codeline': obj_ = codelineType.factory() obj_.build(child_) self.codeline.append(obj_) # end class listingType class codelineType(GeneratedsSuper): subclass = None superclass = None def __init__(self, external=None, lineno=None, refkind=None, refid=None, highlight=None): self.external = external self.lineno = lineno self.refkind = refkind self.refid = refid if highlight is None: self.highlight = [] else: self.highlight = highlight def factory(*args_, **kwargs_): if codelineType.subclass: return codelineType.subclass(*args_, **kwargs_) else: return codelineType(*args_, **kwargs_) factory = staticmethod(factory) def get_highlight(self): return self.highlight def set_highlight(self, highlight): self.highlight = highlight def add_highlight(self, value): self.highlight.append(value) def insert_highlight(self, index, value): self.highlight[index] = value def get_external(self): return self.external def set_external(self, external): self.external = external def get_lineno(self): return self.lineno def set_lineno(self, lineno): self.lineno = lineno def get_refkind(self): return self.refkind def set_refkind(self, refkind): self.refkind = refkind def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def export(self, outfile, level, namespace_='', name_='codelineType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='codelineType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='codelineType'): if self.external is not None: outfile.write(' external=%s' % (quote_attrib(self.external), )) if self.lineno is not None: outfile.write(' lineno="%s"' % self.format_integer(self.lineno, input_name='lineno')) if self.refkind is not None: outfile.write(' refkind=%s' % (quote_attrib(self.refkind), )) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='codelineType'): for highlight_ in self.highlight: highlight_.export(outfile, level, namespace_, name_='highlight') def hasContent_(self): if ( self.highlight is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='codelineType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.external is not None: showIndent(outfile, level) outfile.write('external = "%s",\n' % (self.external,)) if self.lineno is not None: showIndent(outfile, level) outfile.write('lineno = %s,\n' % (self.lineno,)) if self.refkind is not None: showIndent(outfile, level) outfile.write('refkind = "%s",\n' % (self.refkind,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('highlight=[\n') level += 1 for highlight in self.highlight: showIndent(outfile, level) outfile.write('model_.highlight(\n') highlight.exportLiteral(outfile, level, name_='highlight') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('external'): self.external = attrs.get('external').value if attrs.get('lineno'): try: self.lineno = int(attrs.get('lineno').value) except ValueError, exp: raise ValueError('Bad integer attribute (lineno): %s' % exp) if attrs.get('refkind'): self.refkind = attrs.get('refkind').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'highlight': obj_ = highlightType.factory() obj_.build(child_) self.highlight.append(obj_) # end class codelineType class highlightType(GeneratedsSuper): subclass = None superclass = None def __init__(self, classxx=None, sp=None, ref=None, mixedclass_=None, content_=None): self.classxx = classxx if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if highlightType.subclass: return highlightType.subclass(*args_, **kwargs_) else: return highlightType(*args_, **kwargs_) factory = staticmethod(factory) def get_sp(self): return self.sp def set_sp(self, sp): self.sp = sp def add_sp(self, value): self.sp.append(value) def insert_sp(self, index, value): self.sp[index] = value def get_ref(self): return self.ref def set_ref(self, ref): self.ref = ref def add_ref(self, value): self.ref.append(value) def insert_ref(self, index, value): self.ref[index] = value def get_class(self): return self.classxx def set_class(self, classxx): self.classxx = classxx def export(self, outfile, level, namespace_='', name_='highlightType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='highlightType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='highlightType'): if self.classxx is not None: outfile.write(' class=%s' % (quote_attrib(self.classxx), )) def exportChildren(self, outfile, level, namespace_='', name_='highlightType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.sp is not None or self.ref is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='highlightType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.classxx is not None: showIndent(outfile, level) outfile.write('classxx = "%s",\n' % (self.classxx,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('class'): self.classxx = attrs.get('class').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sp': value_ = [] for text_ in child_.childNodes: value_.append(text_.nodeValue) valuestr_ = ''.join(value_) obj_ = self.mixedclass_(MixedContainer.CategorySimple, MixedContainer.TypeString, 'sp', valuestr_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'ref': childobj_ = docRefTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'ref', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class highlightType class sp(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if sp.subclass: return sp.subclass(*args_, **kwargs_) else: return sp(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='sp', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='sp') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='sp'): pass def exportChildren(self, outfile, level, namespace_='', name_='sp'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='sp'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class sp class referenceType(GeneratedsSuper): subclass = None superclass = None def __init__(self, endline=None, startline=None, refid=None, compoundref=None, valueOf_='', mixedclass_=None, content_=None): self.endline = endline self.startline = startline self.refid = refid self.compoundref = compoundref if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if referenceType.subclass: return referenceType.subclass(*args_, **kwargs_) else: return referenceType(*args_, **kwargs_) factory = staticmethod(factory) def get_endline(self): return self.endline def set_endline(self, endline): self.endline = endline def get_startline(self): return self.startline def set_startline(self, startline): self.startline = startline def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def get_compoundref(self): return self.compoundref def set_compoundref(self, compoundref): self.compoundref = compoundref def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='referenceType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='referenceType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='referenceType'): if self.endline is not None: outfile.write(' endline="%s"' % self.format_integer(self.endline, input_name='endline')) if self.startline is not None: outfile.write(' startline="%s"' % self.format_integer(self.startline, input_name='startline')) if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.compoundref is not None: outfile.write(' compoundref=%s' % (self.format_string(quote_attrib(self.compoundref).encode(ExternalEncoding), input_name='compoundref'), )) def exportChildren(self, outfile, level, namespace_='', name_='referenceType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='referenceType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.endline is not None: showIndent(outfile, level) outfile.write('endline = %s,\n' % (self.endline,)) if self.startline is not None: showIndent(outfile, level) outfile.write('startline = %s,\n' % (self.startline,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) if self.compoundref is not None: showIndent(outfile, level) outfile.write('compoundref = %s,\n' % (self.compoundref,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('endline'): try: self.endline = int(attrs.get('endline').value) except ValueError, exp: raise ValueError('Bad integer attribute (endline): %s' % exp) if attrs.get('startline'): try: self.startline = int(attrs.get('startline').value) except ValueError, exp: raise ValueError('Bad integer attribute (startline): %s' % exp) if attrs.get('refid'): self.refid = attrs.get('refid').value if attrs.get('compoundref'): self.compoundref = attrs.get('compoundref').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class referenceType class locationType(GeneratedsSuper): subclass = None superclass = None def __init__(self, bodystart=None, line=None, bodyend=None, bodyfile=None, file=None, valueOf_=''): self.bodystart = bodystart self.line = line self.bodyend = bodyend self.bodyfile = bodyfile self.file = file self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if locationType.subclass: return locationType.subclass(*args_, **kwargs_) else: return locationType(*args_, **kwargs_) factory = staticmethod(factory) def get_bodystart(self): return self.bodystart def set_bodystart(self, bodystart): self.bodystart = bodystart def get_line(self): return self.line def set_line(self, line): self.line = line def get_bodyend(self): return self.bodyend def set_bodyend(self, bodyend): self.bodyend = bodyend def get_bodyfile(self): return self.bodyfile def set_bodyfile(self, bodyfile): self.bodyfile = bodyfile def get_file(self): return self.file def set_file(self, file): self.file = file def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='locationType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='locationType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='locationType'): if self.bodystart is not None: outfile.write(' bodystart="%s"' % self.format_integer(self.bodystart, input_name='bodystart')) if self.line is not None: outfile.write(' line="%s"' % self.format_integer(self.line, input_name='line')) if self.bodyend is not None: outfile.write(' bodyend="%s"' % self.format_integer(self.bodyend, input_name='bodyend')) if self.bodyfile is not None: outfile.write(' bodyfile=%s' % (self.format_string(quote_attrib(self.bodyfile).encode(ExternalEncoding), input_name='bodyfile'), )) if self.file is not None: outfile.write(' file=%s' % (self.format_string(quote_attrib(self.file).encode(ExternalEncoding), input_name='file'), )) def exportChildren(self, outfile, level, namespace_='', name_='locationType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='locationType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.bodystart is not None: showIndent(outfile, level) outfile.write('bodystart = %s,\n' % (self.bodystart,)) if self.line is not None: showIndent(outfile, level) outfile.write('line = %s,\n' % (self.line,)) if self.bodyend is not None: showIndent(outfile, level) outfile.write('bodyend = %s,\n' % (self.bodyend,)) if self.bodyfile is not None: showIndent(outfile, level) outfile.write('bodyfile = %s,\n' % (self.bodyfile,)) if self.file is not None: showIndent(outfile, level) outfile.write('file = %s,\n' % (self.file,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('bodystart'): try: self.bodystart = int(attrs.get('bodystart').value) except ValueError, exp: raise ValueError('Bad integer attribute (bodystart): %s' % exp) if attrs.get('line'): try: self.line = int(attrs.get('line').value) except ValueError, exp: raise ValueError('Bad integer attribute (line): %s' % exp) if attrs.get('bodyend'): try: self.bodyend = int(attrs.get('bodyend').value) except ValueError, exp: raise ValueError('Bad integer attribute (bodyend): %s' % exp) if attrs.get('bodyfile'): self.bodyfile = attrs.get('bodyfile').value if attrs.get('file'): self.file = attrs.get('file').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class locationType class docSect1Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, title=None, para=None, sect2=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docSect1Type.subclass: return docSect1Type.subclass(*args_, **kwargs_) else: return docSect1Type(*args_, **kwargs_) factory = staticmethod(factory) def get_title(self): return self.title def set_title(self, title): self.title = title def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect2(self): return self.sect2 def set_sect2(self, sect2): self.sect2 = sect2 def add_sect2(self, value): self.sect2.append(value) def insert_sect2(self, index, value): self.sect2[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='docSect1Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docSect1Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docSect1Type'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docSect1Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect2 is not None or self.internal is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docSect1Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect2': childobj_ = docSect2Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect2', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'internal': childobj_ = docInternalS1Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect1Type class docSect2Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, title=None, para=None, sect3=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docSect2Type.subclass: return docSect2Type.subclass(*args_, **kwargs_) else: return docSect2Type(*args_, **kwargs_) factory = staticmethod(factory) def get_title(self): return self.title def set_title(self, title): self.title = title def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect3(self): return self.sect3 def set_sect3(self, sect3): self.sect3 = sect3 def add_sect3(self, value): self.sect3.append(value) def insert_sect3(self, index, value): self.sect3[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='docSect2Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docSect2Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docSect2Type'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docSect2Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect3 is not None or self.internal is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docSect2Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect3': childobj_ = docSect3Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect3', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'internal': childobj_ = docInternalS2Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect2Type class docSect3Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, title=None, para=None, sect4=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docSect3Type.subclass: return docSect3Type.subclass(*args_, **kwargs_) else: return docSect3Type(*args_, **kwargs_) factory = staticmethod(factory) def get_title(self): return self.title def set_title(self, title): self.title = title def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect4(self): return self.sect4 def set_sect4(self, sect4): self.sect4 = sect4 def add_sect4(self, value): self.sect4.append(value) def insert_sect4(self, index, value): self.sect4[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='docSect3Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docSect3Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docSect3Type'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docSect3Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect4 is not None or self.internal is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docSect3Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect4': childobj_ = docSect4Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect4', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'internal': childobj_ = docInternalS3Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect3Type class docSect4Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, title=None, para=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docSect4Type.subclass: return docSect4Type.subclass(*args_, **kwargs_) else: return docSect4Type(*args_, **kwargs_) factory = staticmethod(factory) def get_title(self): return self.title def set_title(self, title): self.title = title def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='docSect4Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docSect4Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docSect4Type'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docSect4Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.title is not None or self.para is not None or self.internal is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docSect4Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'internal': childobj_ = docInternalS4Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect4Type class docInternalType(GeneratedsSuper): subclass = None superclass = None def __init__(self, para=None, sect1=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docInternalType.subclass: return docInternalType.subclass(*args_, **kwargs_) else: return docInternalType(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect1(self): return self.sect1 def set_sect1(self, sect1): self.sect1 = sect1 def add_sect1(self, value): self.sect1.append(value) def insert_sect1(self, index, value): self.sect1[index] = value def export(self, outfile, level, namespace_='', name_='docInternalType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docInternalType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docInternalType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docInternalType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.para is not None or self.sect1 is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docInternalType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect1': childobj_ = docSect1Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect1', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalType class docInternalS1Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, para=None, sect2=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docInternalS1Type.subclass: return docInternalS1Type.subclass(*args_, **kwargs_) else: return docInternalS1Type(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect2(self): return self.sect2 def set_sect2(self, sect2): self.sect2 = sect2 def add_sect2(self, value): self.sect2.append(value) def insert_sect2(self, index, value): self.sect2[index] = value def export(self, outfile, level, namespace_='', name_='docInternalS1Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docInternalS1Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS1Type'): pass def exportChildren(self, outfile, level, namespace_='', name_='docInternalS1Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.para is not None or self.sect2 is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docInternalS1Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect2': childobj_ = docSect2Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect2', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS1Type class docInternalS2Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docInternalS2Type.subclass: return docInternalS2Type.subclass(*args_, **kwargs_) else: return docInternalS2Type(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect3(self): return self.sect3 def set_sect3(self, sect3): self.sect3 = sect3 def add_sect3(self, value): self.sect3.append(value) def insert_sect3(self, index, value): self.sect3[index] = value def export(self, outfile, level, namespace_='', name_='docInternalS2Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docInternalS2Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS2Type'): pass def exportChildren(self, outfile, level, namespace_='', name_='docInternalS2Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.para is not None or self.sect3 is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docInternalS2Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect3': childobj_ = docSect3Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect3', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS2Type class docInternalS3Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docInternalS3Type.subclass: return docInternalS3Type.subclass(*args_, **kwargs_) else: return docInternalS3Type(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect3(self): return self.sect3 def set_sect3(self, sect3): self.sect3 = sect3 def add_sect3(self, value): self.sect3.append(value) def insert_sect3(self, index, value): self.sect3[index] = value def export(self, outfile, level, namespace_='', name_='docInternalS3Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docInternalS3Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS3Type'): pass def exportChildren(self, outfile, level, namespace_='', name_='docInternalS3Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.para is not None or self.sect3 is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docInternalS3Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect3': childobj_ = docSect4Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'sect3', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS3Type class docInternalS4Type(GeneratedsSuper): subclass = None superclass = None def __init__(self, para=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docInternalS4Type.subclass: return docInternalS4Type.subclass(*args_, **kwargs_) else: return docInternalS4Type(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def export(self, outfile, level, namespace_='', name_='docInternalS4Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docInternalS4Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS4Type'): pass def exportChildren(self, outfile, level, namespace_='', name_='docInternalS4Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.para is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docInternalS4Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS4Type class docTitleType(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docTitleType.subclass: return docTitleType.subclass(*args_, **kwargs_) else: return docTitleType(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docTitleType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docTitleType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docTitleType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docTitleType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docTitleType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docTitleType class docParaType(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docParaType.subclass: return docParaType.subclass(*args_, **kwargs_) else: return docParaType(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docParaType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docParaType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docParaType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docParaType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docParaType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docParaType class docMarkupType(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docMarkupType.subclass: return docMarkupType.subclass(*args_, **kwargs_) else: return docMarkupType(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docMarkupType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docMarkupType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docMarkupType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docMarkupType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docMarkupType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docMarkupType class docURLLink(GeneratedsSuper): subclass = None superclass = None def __init__(self, url=None, valueOf_='', mixedclass_=None, content_=None): self.url = url if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docURLLink.subclass: return docURLLink.subclass(*args_, **kwargs_) else: return docURLLink(*args_, **kwargs_) factory = staticmethod(factory) def get_url(self): return self.url def set_url(self, url): self.url = url def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docURLLink', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docURLLink') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docURLLink'): if self.url is not None: outfile.write(' url=%s' % (self.format_string(quote_attrib(self.url).encode(ExternalEncoding), input_name='url'), )) def exportChildren(self, outfile, level, namespace_='', name_='docURLLink'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docURLLink'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.url is not None: showIndent(outfile, level) outfile.write('url = %s,\n' % (self.url,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('url'): self.url = attrs.get('url').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docURLLink class docAnchorType(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docAnchorType.subclass: return docAnchorType.subclass(*args_, **kwargs_) else: return docAnchorType(*args_, **kwargs_) factory = staticmethod(factory) def get_id(self): return self.id def set_id(self, id): self.id = id def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docAnchorType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docAnchorType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docAnchorType'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docAnchorType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docAnchorType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docAnchorType class docFormulaType(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docFormulaType.subclass: return docFormulaType.subclass(*args_, **kwargs_) else: return docFormulaType(*args_, **kwargs_) factory = staticmethod(factory) def get_id(self): return self.id def set_id(self, id): self.id = id def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docFormulaType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docFormulaType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docFormulaType'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docFormulaType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docFormulaType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docFormulaType class docIndexEntryType(GeneratedsSuper): subclass = None superclass = None def __init__(self, primaryie=None, secondaryie=None): self.primaryie = primaryie self.secondaryie = secondaryie def factory(*args_, **kwargs_): if docIndexEntryType.subclass: return docIndexEntryType.subclass(*args_, **kwargs_) else: return docIndexEntryType(*args_, **kwargs_) factory = staticmethod(factory) def get_primaryie(self): return self.primaryie def set_primaryie(self, primaryie): self.primaryie = primaryie def get_secondaryie(self): return self.secondaryie def set_secondaryie(self, secondaryie): self.secondaryie = secondaryie def export(self, outfile, level, namespace_='', name_='docIndexEntryType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docIndexEntryType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docIndexEntryType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docIndexEntryType'): if self.primaryie is not None: showIndent(outfile, level) outfile.write('<%sprimaryie>%s\n' % (namespace_, self.format_string(quote_xml(self.primaryie).encode(ExternalEncoding), input_name='primaryie'), namespace_)) if self.secondaryie is not None: showIndent(outfile, level) outfile.write('<%ssecondaryie>%s\n' % (namespace_, self.format_string(quote_xml(self.secondaryie).encode(ExternalEncoding), input_name='secondaryie'), namespace_)) def hasContent_(self): if ( self.primaryie is not None or self.secondaryie is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docIndexEntryType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('primaryie=%s,\n' % quote_python(self.primaryie).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('secondaryie=%s,\n' % quote_python(self.secondaryie).encode(ExternalEncoding)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'primaryie': primaryie_ = '' for text__content_ in child_.childNodes: primaryie_ += text__content_.nodeValue self.primaryie = primaryie_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'secondaryie': secondaryie_ = '' for text__content_ in child_.childNodes: secondaryie_ += text__content_.nodeValue self.secondaryie = secondaryie_ # end class docIndexEntryType class docListType(GeneratedsSuper): subclass = None superclass = None def __init__(self, listitem=None): if listitem is None: self.listitem = [] else: self.listitem = listitem def factory(*args_, **kwargs_): if docListType.subclass: return docListType.subclass(*args_, **kwargs_) else: return docListType(*args_, **kwargs_) factory = staticmethod(factory) def get_listitem(self): return self.listitem def set_listitem(self, listitem): self.listitem = listitem def add_listitem(self, value): self.listitem.append(value) def insert_listitem(self, index, value): self.listitem[index] = value def export(self, outfile, level, namespace_='', name_='docListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docListType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docListType'): for listitem_ in self.listitem: listitem_.export(outfile, level, namespace_, name_='listitem') def hasContent_(self): if ( self.listitem is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('listitem=[\n') level += 1 for listitem in self.listitem: showIndent(outfile, level) outfile.write('model_.listitem(\n') listitem.exportLiteral(outfile, level, name_='listitem') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'listitem': obj_ = docListItemType.factory() obj_.build(child_) self.listitem.append(obj_) # end class docListType class docListItemType(GeneratedsSuper): subclass = None superclass = None def __init__(self, para=None): if para is None: self.para = [] else: self.para = para def factory(*args_, **kwargs_): if docListItemType.subclass: return docListItemType.subclass(*args_, **kwargs_) else: return docListItemType(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def export(self, outfile, level, namespace_='', name_='docListItemType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docListItemType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docListItemType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docListItemType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') def hasContent_(self): if ( self.para is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docListItemType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') level += 1 for para in self.para: showIndent(outfile, level) outfile.write('model_.para(\n') para.exportLiteral(outfile, level, name_='para') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) # end class docListItemType class docSimpleSectType(GeneratedsSuper): subclass = None superclass = None def __init__(self, kind=None, title=None, para=None): self.kind = kind self.title = title if para is None: self.para = [] else: self.para = para def factory(*args_, **kwargs_): if docSimpleSectType.subclass: return docSimpleSectType.subclass(*args_, **kwargs_) else: return docSimpleSectType(*args_, **kwargs_) factory = staticmethod(factory) def get_title(self): return self.title def set_title(self, title): self.title = title def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def export(self, outfile, level, namespace_='', name_='docSimpleSectType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docSimpleSectType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docSimpleSectType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) def exportChildren(self, outfile, level, namespace_='', name_='docSimpleSectType'): if self.title: self.title.export(outfile, level, namespace_, name_='title') for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') def hasContent_(self): if ( self.title is not None or self.para is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docSimpleSectType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) def exportLiteralChildren(self, outfile, level, name_): if self.title: showIndent(outfile, level) outfile.write('title=model_.docTitleType(\n') self.title.exportLiteral(outfile, level, name_='title') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) outfile.write('para=[\n') level += 1 for para in self.para: showIndent(outfile, level) outfile.write('model_.para(\n') para.exportLiteral(outfile, level, name_='para') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'title': obj_ = docTitleType.factory() obj_.build(child_) self.set_title(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) # end class docSimpleSectType class docVarListEntryType(GeneratedsSuper): subclass = None superclass = None def __init__(self, term=None): self.term = term def factory(*args_, **kwargs_): if docVarListEntryType.subclass: return docVarListEntryType.subclass(*args_, **kwargs_) else: return docVarListEntryType(*args_, **kwargs_) factory = staticmethod(factory) def get_term(self): return self.term def set_term(self, term): self.term = term def export(self, outfile, level, namespace_='', name_='docVarListEntryType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docVarListEntryType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docVarListEntryType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docVarListEntryType'): if self.term: self.term.export(outfile, level, namespace_, name_='term', ) def hasContent_(self): if ( self.term is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docVarListEntryType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): if self.term: showIndent(outfile, level) outfile.write('term=model_.docTitleType(\n') self.term.exportLiteral(outfile, level, name_='term') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'term': obj_ = docTitleType.factory() obj_.build(child_) self.set_term(obj_) # end class docVarListEntryType class docVariableListType(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if docVariableListType.subclass: return docVariableListType.subclass(*args_, **kwargs_) else: return docVariableListType(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docVariableListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docVariableListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docVariableListType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docVariableListType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docVariableListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docVariableListType class docRefTextType(GeneratedsSuper): subclass = None superclass = None def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): self.refid = refid self.kindref = kindref self.external = external if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docRefTextType.subclass: return docRefTextType.subclass(*args_, **kwargs_) else: return docRefTextType(*args_, **kwargs_) factory = staticmethod(factory) def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def get_kindref(self): return self.kindref def set_kindref(self, kindref): self.kindref = kindref def get_external(self): return self.external def set_external(self, external): self.external = external def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docRefTextType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docRefTextType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docRefTextType'): if self.refid is not None: outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.kindref is not None: outfile.write(' kindref=%s' % (quote_attrib(self.kindref), )) if self.external is not None: outfile.write(' external=%s' % (self.format_string(quote_attrib(self.external).encode(ExternalEncoding), input_name='external'), )) def exportChildren(self, outfile, level, namespace_='', name_='docRefTextType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docRefTextType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) if self.kindref is not None: showIndent(outfile, level) outfile.write('kindref = "%s",\n' % (self.kindref,)) if self.external is not None: showIndent(outfile, level) outfile.write('external = %s,\n' % (self.external,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value if attrs.get('kindref'): self.kindref = attrs.get('kindref').value if attrs.get('external'): self.external = attrs.get('external').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docRefTextType class docTableType(GeneratedsSuper): subclass = None superclass = None def __init__(self, rows=None, cols=None, row=None, caption=None): self.rows = rows self.cols = cols if row is None: self.row = [] else: self.row = row self.caption = caption def factory(*args_, **kwargs_): if docTableType.subclass: return docTableType.subclass(*args_, **kwargs_) else: return docTableType(*args_, **kwargs_) factory = staticmethod(factory) def get_row(self): return self.row def set_row(self, row): self.row = row def add_row(self, value): self.row.append(value) def insert_row(self, index, value): self.row[index] = value def get_caption(self): return self.caption def set_caption(self, caption): self.caption = caption def get_rows(self): return self.rows def set_rows(self, rows): self.rows = rows def get_cols(self): return self.cols def set_cols(self, cols): self.cols = cols def export(self, outfile, level, namespace_='', name_='docTableType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docTableType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docTableType'): if self.rows is not None: outfile.write(' rows="%s"' % self.format_integer(self.rows, input_name='rows')) if self.cols is not None: outfile.write(' cols="%s"' % self.format_integer(self.cols, input_name='cols')) def exportChildren(self, outfile, level, namespace_='', name_='docTableType'): for row_ in self.row: row_.export(outfile, level, namespace_, name_='row') if self.caption: self.caption.export(outfile, level, namespace_, name_='caption') def hasContent_(self): if ( self.row is not None or self.caption is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docTableType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.rows is not None: showIndent(outfile, level) outfile.write('rows = %s,\n' % (self.rows,)) if self.cols is not None: showIndent(outfile, level) outfile.write('cols = %s,\n' % (self.cols,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('row=[\n') level += 1 for row in self.row: showIndent(outfile, level) outfile.write('model_.row(\n') row.exportLiteral(outfile, level, name_='row') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.caption: showIndent(outfile, level) outfile.write('caption=model_.docCaptionType(\n') self.caption.exportLiteral(outfile, level, name_='caption') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('rows'): try: self.rows = int(attrs.get('rows').value) except ValueError, exp: raise ValueError('Bad integer attribute (rows): %s' % exp) if attrs.get('cols'): try: self.cols = int(attrs.get('cols').value) except ValueError, exp: raise ValueError('Bad integer attribute (cols): %s' % exp) def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'row': obj_ = docRowType.factory() obj_.build(child_) self.row.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'caption': obj_ = docCaptionType.factory() obj_.build(child_) self.set_caption(obj_) # end class docTableType class docRowType(GeneratedsSuper): subclass = None superclass = None def __init__(self, entry=None): if entry is None: self.entry = [] else: self.entry = entry def factory(*args_, **kwargs_): if docRowType.subclass: return docRowType.subclass(*args_, **kwargs_) else: return docRowType(*args_, **kwargs_) factory = staticmethod(factory) def get_entry(self): return self.entry def set_entry(self, entry): self.entry = entry def add_entry(self, value): self.entry.append(value) def insert_entry(self, index, value): self.entry[index] = value def export(self, outfile, level, namespace_='', name_='docRowType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docRowType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docRowType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docRowType'): for entry_ in self.entry: entry_.export(outfile, level, namespace_, name_='entry') def hasContent_(self): if ( self.entry is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docRowType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('entry=[\n') level += 1 for entry in self.entry: showIndent(outfile, level) outfile.write('model_.entry(\n') entry.exportLiteral(outfile, level, name_='entry') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'entry': obj_ = docEntryType.factory() obj_.build(child_) self.entry.append(obj_) # end class docRowType class docEntryType(GeneratedsSuper): subclass = None superclass = None def __init__(self, thead=None, para=None): self.thead = thead if para is None: self.para = [] else: self.para = para def factory(*args_, **kwargs_): if docEntryType.subclass: return docEntryType.subclass(*args_, **kwargs_) else: return docEntryType(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_thead(self): return self.thead def set_thead(self, thead): self.thead = thead def export(self, outfile, level, namespace_='', name_='docEntryType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docEntryType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docEntryType'): if self.thead is not None: outfile.write(' thead=%s' % (quote_attrib(self.thead), )) def exportChildren(self, outfile, level, namespace_='', name_='docEntryType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') def hasContent_(self): if ( self.para is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docEntryType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.thead is not None: showIndent(outfile, level) outfile.write('thead = "%s",\n' % (self.thead,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') level += 1 for para in self.para: showIndent(outfile, level) outfile.write('model_.para(\n') para.exportLiteral(outfile, level, name_='para') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('thead'): self.thead = attrs.get('thead').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) # end class docEntryType class docCaptionType(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docCaptionType.subclass: return docCaptionType.subclass(*args_, **kwargs_) else: return docCaptionType(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docCaptionType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docCaptionType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docCaptionType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docCaptionType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docCaptionType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docCaptionType class docHeadingType(GeneratedsSuper): subclass = None superclass = None def __init__(self, level=None, valueOf_='', mixedclass_=None, content_=None): self.level = level if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docHeadingType.subclass: return docHeadingType.subclass(*args_, **kwargs_) else: return docHeadingType(*args_, **kwargs_) factory = staticmethod(factory) def get_level(self): return self.level def set_level(self, level): self.level = level def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docHeadingType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docHeadingType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docHeadingType'): if self.level is not None: outfile.write(' level="%s"' % self.format_integer(self.level, input_name='level')) def exportChildren(self, outfile, level, namespace_='', name_='docHeadingType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docHeadingType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.level is not None: showIndent(outfile, level) outfile.write('level = %s,\n' % (self.level,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('level'): try: self.level = int(attrs.get('level').value) except ValueError, exp: raise ValueError('Bad integer attribute (level): %s' % exp) def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docHeadingType class docImageType(GeneratedsSuper): subclass = None superclass = None def __init__(self, width=None, type_=None, name=None, height=None, valueOf_='', mixedclass_=None, content_=None): self.width = width self.type_ = type_ self.name = name self.height = height if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docImageType.subclass: return docImageType.subclass(*args_, **kwargs_) else: return docImageType(*args_, **kwargs_) factory = staticmethod(factory) def get_width(self): return self.width def set_width(self, width): self.width = width def get_type(self): return self.type_ def set_type(self, type_): self.type_ = type_ def get_name(self): return self.name def set_name(self, name): self.name = name def get_height(self): return self.height def set_height(self, height): self.height = height def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docImageType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docImageType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docImageType'): if self.width is not None: outfile.write(' width=%s' % (self.format_string(quote_attrib(self.width).encode(ExternalEncoding), input_name='width'), )) if self.type_ is not None: outfile.write(' type=%s' % (quote_attrib(self.type_), )) if self.name is not None: outfile.write(' name=%s' % (self.format_string(quote_attrib(self.name).encode(ExternalEncoding), input_name='name'), )) if self.height is not None: outfile.write(' height=%s' % (self.format_string(quote_attrib(self.height).encode(ExternalEncoding), input_name='height'), )) def exportChildren(self, outfile, level, namespace_='', name_='docImageType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docImageType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.width is not None: showIndent(outfile, level) outfile.write('width = %s,\n' % (self.width,)) if self.type_ is not None: showIndent(outfile, level) outfile.write('type_ = "%s",\n' % (self.type_,)) if self.name is not None: showIndent(outfile, level) outfile.write('name = %s,\n' % (self.name,)) if self.height is not None: showIndent(outfile, level) outfile.write('height = %s,\n' % (self.height,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('width'): self.width = attrs.get('width').value if attrs.get('type'): self.type_ = attrs.get('type').value if attrs.get('name'): self.name = attrs.get('name').value if attrs.get('height'): self.height = attrs.get('height').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docImageType class docDotFileType(GeneratedsSuper): subclass = None superclass = None def __init__(self, name=None, valueOf_='', mixedclass_=None, content_=None): self.name = name if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docDotFileType.subclass: return docDotFileType.subclass(*args_, **kwargs_) else: return docDotFileType(*args_, **kwargs_) factory = staticmethod(factory) def get_name(self): return self.name def set_name(self, name): self.name = name def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docDotFileType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docDotFileType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docDotFileType'): if self.name is not None: outfile.write(' name=%s' % (self.format_string(quote_attrib(self.name).encode(ExternalEncoding), input_name='name'), )) def exportChildren(self, outfile, level, namespace_='', name_='docDotFileType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docDotFileType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.name is not None: showIndent(outfile, level) outfile.write('name = %s,\n' % (self.name,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('name'): self.name = attrs.get('name').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docDotFileType class docTocItemType(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docTocItemType.subclass: return docTocItemType.subclass(*args_, **kwargs_) else: return docTocItemType(*args_, **kwargs_) factory = staticmethod(factory) def get_id(self): return self.id def set_id(self, id): self.id = id def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docTocItemType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docTocItemType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docTocItemType'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docTocItemType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docTocItemType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docTocItemType class docTocListType(GeneratedsSuper): subclass = None superclass = None def __init__(self, tocitem=None): if tocitem is None: self.tocitem = [] else: self.tocitem = tocitem def factory(*args_, **kwargs_): if docTocListType.subclass: return docTocListType.subclass(*args_, **kwargs_) else: return docTocListType(*args_, **kwargs_) factory = staticmethod(factory) def get_tocitem(self): return self.tocitem def set_tocitem(self, tocitem): self.tocitem = tocitem def add_tocitem(self, value): self.tocitem.append(value) def insert_tocitem(self, index, value): self.tocitem[index] = value def export(self, outfile, level, namespace_='', name_='docTocListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docTocListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docTocListType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docTocListType'): for tocitem_ in self.tocitem: tocitem_.export(outfile, level, namespace_, name_='tocitem') def hasContent_(self): if ( self.tocitem is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docTocListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('tocitem=[\n') level += 1 for tocitem in self.tocitem: showIndent(outfile, level) outfile.write('model_.tocitem(\n') tocitem.exportLiteral(outfile, level, name_='tocitem') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'tocitem': obj_ = docTocItemType.factory() obj_.build(child_) self.tocitem.append(obj_) # end class docTocListType class docLanguageType(GeneratedsSuper): subclass = None superclass = None def __init__(self, langid=None, para=None): self.langid = langid if para is None: self.para = [] else: self.para = para def factory(*args_, **kwargs_): if docLanguageType.subclass: return docLanguageType.subclass(*args_, **kwargs_) else: return docLanguageType(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_langid(self): return self.langid def set_langid(self, langid): self.langid = langid def export(self, outfile, level, namespace_='', name_='docLanguageType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docLanguageType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docLanguageType'): if self.langid is not None: outfile.write(' langid=%s' % (self.format_string(quote_attrib(self.langid).encode(ExternalEncoding), input_name='langid'), )) def exportChildren(self, outfile, level, namespace_='', name_='docLanguageType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') def hasContent_(self): if ( self.para is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docLanguageType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.langid is not None: showIndent(outfile, level) outfile.write('langid = %s,\n' % (self.langid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') level += 1 for para in self.para: showIndent(outfile, level) outfile.write('model_.para(\n') para.exportLiteral(outfile, level, name_='para') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('langid'): self.langid = attrs.get('langid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) # end class docLanguageType class docParamListType(GeneratedsSuper): subclass = None superclass = None def __init__(self, kind=None, parameteritem=None): self.kind = kind if parameteritem is None: self.parameteritem = [] else: self.parameteritem = parameteritem def factory(*args_, **kwargs_): if docParamListType.subclass: return docParamListType.subclass(*args_, **kwargs_) else: return docParamListType(*args_, **kwargs_) factory = staticmethod(factory) def get_parameteritem(self): return self.parameteritem def set_parameteritem(self, parameteritem): self.parameteritem = parameteritem def add_parameteritem(self, value): self.parameteritem.append(value) def insert_parameteritem(self, index, value): self.parameteritem[index] = value def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def export(self, outfile, level, namespace_='', name_='docParamListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docParamListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docParamListType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) def exportChildren(self, outfile, level, namespace_='', name_='docParamListType'): for parameteritem_ in self.parameteritem: parameteritem_.export(outfile, level, namespace_, name_='parameteritem') def hasContent_(self): if ( self.parameteritem is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docParamListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('parameteritem=[\n') level += 1 for parameteritem in self.parameteritem: showIndent(outfile, level) outfile.write('model_.parameteritem(\n') parameteritem.exportLiteral(outfile, level, name_='parameteritem') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'parameteritem': obj_ = docParamListItem.factory() obj_.build(child_) self.parameteritem.append(obj_) # end class docParamListType class docParamListItem(GeneratedsSuper): subclass = None superclass = None def __init__(self, parameternamelist=None, parameterdescription=None): if parameternamelist is None: self.parameternamelist = [] else: self.parameternamelist = parameternamelist self.parameterdescription = parameterdescription def factory(*args_, **kwargs_): if docParamListItem.subclass: return docParamListItem.subclass(*args_, **kwargs_) else: return docParamListItem(*args_, **kwargs_) factory = staticmethod(factory) def get_parameternamelist(self): return self.parameternamelist def set_parameternamelist(self, parameternamelist): self.parameternamelist = parameternamelist def add_parameternamelist(self, value): self.parameternamelist.append(value) def insert_parameternamelist(self, index, value): self.parameternamelist[index] = value def get_parameterdescription(self): return self.parameterdescription def set_parameterdescription(self, parameterdescription): self.parameterdescription = parameterdescription def export(self, outfile, level, namespace_='', name_='docParamListItem', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docParamListItem') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docParamListItem'): pass def exportChildren(self, outfile, level, namespace_='', name_='docParamListItem'): for parameternamelist_ in self.parameternamelist: parameternamelist_.export(outfile, level, namespace_, name_='parameternamelist') if self.parameterdescription: self.parameterdescription.export(outfile, level, namespace_, name_='parameterdescription', ) def hasContent_(self): if ( self.parameternamelist is not None or self.parameterdescription is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docParamListItem'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('parameternamelist=[\n') level += 1 for parameternamelist in self.parameternamelist: showIndent(outfile, level) outfile.write('model_.parameternamelist(\n') parameternamelist.exportLiteral(outfile, level, name_='parameternamelist') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.parameterdescription: showIndent(outfile, level) outfile.write('parameterdescription=model_.descriptionType(\n') self.parameterdescription.exportLiteral(outfile, level, name_='parameterdescription') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'parameternamelist': obj_ = docParamNameList.factory() obj_.build(child_) self.parameternamelist.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'parameterdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_parameterdescription(obj_) # end class docParamListItem class docParamNameList(GeneratedsSuper): subclass = None superclass = None def __init__(self, parametername=None): if parametername is None: self.parametername = [] else: self.parametername = parametername def factory(*args_, **kwargs_): if docParamNameList.subclass: return docParamNameList.subclass(*args_, **kwargs_) else: return docParamNameList(*args_, **kwargs_) factory = staticmethod(factory) def get_parametername(self): return self.parametername def set_parametername(self, parametername): self.parametername = parametername def add_parametername(self, value): self.parametername.append(value) def insert_parametername(self, index, value): self.parametername[index] = value def export(self, outfile, level, namespace_='', name_='docParamNameList', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docParamNameList') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docParamNameList'): pass def exportChildren(self, outfile, level, namespace_='', name_='docParamNameList'): for parametername_ in self.parametername: parametername_.export(outfile, level, namespace_, name_='parametername') def hasContent_(self): if ( self.parametername is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docParamNameList'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('parametername=[\n') level += 1 for parametername in self.parametername: showIndent(outfile, level) outfile.write('model_.parametername(\n') parametername.exportLiteral(outfile, level, name_='parametername') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'parametername': obj_ = docParamName.factory() obj_.build(child_) self.parametername.append(obj_) # end class docParamNameList class docParamName(GeneratedsSuper): subclass = None superclass = None def __init__(self, direction=None, ref=None, mixedclass_=None, content_=None): self.direction = direction if mixedclass_ is None: self.mixedclass_ = MixedContainer else: self.mixedclass_ = mixedclass_ if content_ is None: self.content_ = [] else: self.content_ = content_ def factory(*args_, **kwargs_): if docParamName.subclass: return docParamName.subclass(*args_, **kwargs_) else: return docParamName(*args_, **kwargs_) factory = staticmethod(factory) def get_ref(self): return self.ref def set_ref(self, ref): self.ref = ref def get_direction(self): return self.direction def set_direction(self, direction): self.direction = direction def export(self, outfile, level, namespace_='', name_='docParamName', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docParamName') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) def exportAttributes(self, outfile, level, namespace_='', name_='docParamName'): if self.direction is not None: outfile.write(' direction=%s' % (quote_attrib(self.direction), )) def exportChildren(self, outfile, level, namespace_='', name_='docParamName'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) def hasContent_(self): if ( self.ref is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docParamName'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.direction is not None: showIndent(outfile, level) outfile.write('direction = "%s",\n' % (self.direction,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') for item_ in self.content_: item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('direction'): self.direction = attrs.get('direction').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'ref': childobj_ = docRefTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, MixedContainer.TypeNone, 'ref', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docParamName class docXRefSectType(GeneratedsSuper): subclass = None superclass = None def __init__(self, id=None, xreftitle=None, xrefdescription=None): self.id = id if xreftitle is None: self.xreftitle = [] else: self.xreftitle = xreftitle self.xrefdescription = xrefdescription def factory(*args_, **kwargs_): if docXRefSectType.subclass: return docXRefSectType.subclass(*args_, **kwargs_) else: return docXRefSectType(*args_, **kwargs_) factory = staticmethod(factory) def get_xreftitle(self): return self.xreftitle def set_xreftitle(self, xreftitle): self.xreftitle = xreftitle def add_xreftitle(self, value): self.xreftitle.append(value) def insert_xreftitle(self, index, value): self.xreftitle[index] = value def get_xrefdescription(self): return self.xrefdescription def set_xrefdescription(self, xrefdescription): self.xrefdescription = xrefdescription def get_id(self): return self.id def set_id(self, id): self.id = id def export(self, outfile, level, namespace_='', name_='docXRefSectType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docXRefSectType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docXRefSectType'): if self.id is not None: outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) def exportChildren(self, outfile, level, namespace_='', name_='docXRefSectType'): for xreftitle_ in self.xreftitle: showIndent(outfile, level) outfile.write('<%sxreftitle>%s\n' % (namespace_, self.format_string(quote_xml(xreftitle_).encode(ExternalEncoding), input_name='xreftitle'), namespace_)) if self.xrefdescription: self.xrefdescription.export(outfile, level, namespace_, name_='xrefdescription', ) def hasContent_(self): if ( self.xreftitle is not None or self.xrefdescription is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docXRefSectType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('xreftitle=[\n') level += 1 for xreftitle in self.xreftitle: showIndent(outfile, level) outfile.write('%s,\n' % quote_python(xreftitle).encode(ExternalEncoding)) level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.xrefdescription: showIndent(outfile, level) outfile.write('xrefdescription=model_.descriptionType(\n') self.xrefdescription.exportLiteral(outfile, level, name_='xrefdescription') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'xreftitle': xreftitle_ = '' for text__content_ in child_.childNodes: xreftitle_ += text__content_.nodeValue self.xreftitle.append(xreftitle_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'xrefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_xrefdescription(obj_) # end class docXRefSectType class docCopyType(GeneratedsSuper): subclass = None superclass = None def __init__(self, link=None, para=None, sect1=None, internal=None): self.link = link if para is None: self.para = [] else: self.para = para if sect1 is None: self.sect1 = [] else: self.sect1 = sect1 self.internal = internal def factory(*args_, **kwargs_): if docCopyType.subclass: return docCopyType.subclass(*args_, **kwargs_) else: return docCopyType(*args_, **kwargs_) factory = staticmethod(factory) def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_sect1(self): return self.sect1 def set_sect1(self, sect1): self.sect1 = sect1 def add_sect1(self, value): self.sect1.append(value) def insert_sect1(self, index, value): self.sect1[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_link(self): return self.link def set_link(self, link): self.link = link def export(self, outfile, level, namespace_='', name_='docCopyType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docCopyType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docCopyType'): if self.link is not None: outfile.write(' link=%s' % (self.format_string(quote_attrib(self.link).encode(ExternalEncoding), input_name='link'), )) def exportChildren(self, outfile, level, namespace_='', name_='docCopyType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') for sect1_ in self.sect1: sect1_.export(outfile, level, namespace_, name_='sect1') if self.internal: self.internal.export(outfile, level, namespace_, name_='internal') def hasContent_(self): if ( self.para is not None or self.sect1 is not None or self.internal is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docCopyType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.link is not None: showIndent(outfile, level) outfile.write('link = %s,\n' % (self.link,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') level += 1 for para in self.para: showIndent(outfile, level) outfile.write('model_.para(\n') para.exportLiteral(outfile, level, name_='para') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') showIndent(outfile, level) outfile.write('sect1=[\n') level += 1 for sect1 in self.sect1: showIndent(outfile, level) outfile.write('model_.sect1(\n') sect1.exportLiteral(outfile, level, name_='sect1') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.internal: showIndent(outfile, level) outfile.write('internal=model_.docInternalType(\n') self.internal.exportLiteral(outfile, level, name_='internal') showIndent(outfile, level) outfile.write('),\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('link'): self.link = attrs.get('link').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'sect1': obj_ = docSect1Type.factory() obj_.build(child_) self.sect1.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'internal': obj_ = docInternalType.factory() obj_.build(child_) self.set_internal(obj_) # end class docCopyType class docCharType(GeneratedsSuper): subclass = None superclass = None def __init__(self, char=None, valueOf_=''): self.char = char self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if docCharType.subclass: return docCharType.subclass(*args_, **kwargs_) else: return docCharType(*args_, **kwargs_) factory = staticmethod(factory) def get_char(self): return self.char def set_char(self, char): self.char = char def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docCharType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docCharType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docCharType'): if self.char is not None: outfile.write(' char=%s' % (quote_attrib(self.char), )) def exportChildren(self, outfile, level, namespace_='', name_='docCharType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docCharType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.char is not None: showIndent(outfile, level) outfile.write('char = "%s",\n' % (self.char,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('char'): self.char = attrs.get('char').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docCharType class docEmptyType(GeneratedsSuper): subclass = None superclass = None def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ def factory(*args_, **kwargs_): if docEmptyType.subclass: return docEmptyType.subclass(*args_, **kwargs_) else: return docEmptyType(*args_, **kwargs_) factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ def export(self, outfile, level, namespace_='', name_='docEmptyType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='docEmptyType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='docEmptyType'): pass def exportChildren(self, outfile, level, namespace_='', name_='docEmptyType'): if self.valueOf_.find('![CDATA')>-1: value=quote_xml('%s' % self.valueOf_) value=value.replace('![CDATA','') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) def hasContent_(self): if ( self.valueOf_ is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='docEmptyType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): pass def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) self.valueOf_ = '' for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): pass def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: self.valueOf_ += '![CDATA['+child_.nodeValue+']]' # end class docEmptyType USAGE_TEXT = """ Usage: python .py [ -s ] Options: -s Use the SAX parser, not the minidom parser. """ def usage(): print USAGE_TEXT sys.exit(1) def parse(inFileName): doc = minidom.parse(inFileName) rootNode = doc.documentElement rootObj = DoxygenType.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygen", namespacedef_='') return rootObj def parseString(inString): doc = minidom.parseString(inString) rootNode = doc.documentElement rootObj = DoxygenType.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygen", namespacedef_='') return rootObj def parseLiteral(inFileName): doc = minidom.parse(inFileName) rootNode = doc.documentElement rootObj = DoxygenType.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('from compound import *\n\n') sys.stdout.write('rootObj = doxygen(\n') rootObj.exportLiteral(sys.stdout, 0, name_="doxygen") sys.stdout.write(')\n') return rootObj def main(): args = sys.argv[1:] if len(args) == 1: parse(args[0]) else: usage() if __name__ == '__main__': main() #import pdb #pdb.run('main()') gnuradio-3.7.11/docs/doxygen/doxyxml/generated/index.py0000664000175000017500000000351713055131744023006 0ustar jcorganjcorgan#!/usr/bin/env python """ Generated Mon Feb 9 19:08:05 2009 by generateDS.py. """ from xml.dom import minidom import os import sys import compound import indexsuper as supermod class DoxygenTypeSub(supermod.DoxygenType): def __init__(self, version=None, compound=None): supermod.DoxygenType.__init__(self, version, compound) def find_compounds_and_members(self, details): """ Returns a list of all compounds and their members which match details """ results = [] for compound in self.compound: members = compound.find_members(details) if members: results.append([compound, members]) else: if details.match(compound): results.append([compound, []]) return results supermod.DoxygenType.subclass = DoxygenTypeSub # end class DoxygenTypeSub class CompoundTypeSub(supermod.CompoundType): def __init__(self, kind=None, refid=None, name='', member=None): supermod.CompoundType.__init__(self, kind, refid, name, member) def find_members(self, details): """ Returns a list of all members which match details """ results = [] for member in self.member: if details.match(member): results.append(member) return results supermod.CompoundType.subclass = CompoundTypeSub # end class CompoundTypeSub class MemberTypeSub(supermod.MemberType): def __init__(self, kind=None, refid=None, name=''): supermod.MemberType.__init__(self, kind, refid, name) supermod.MemberType.subclass = MemberTypeSub # end class MemberTypeSub def parse(inFilename): doc = minidom.parse(inFilename) rootNode = doc.documentElement rootObj = supermod.DoxygenType.factory() rootObj.build(rootNode) return rootObj gnuradio-3.7.11/docs/doxygen/doxyxml/generated/indexsuper.py0000664000175000017500000004552613055131744024073 0ustar jcorganjcorgan#!/usr/bin/env python # # Generated Thu Jun 11 18:43:54 2009 by generateDS.py. # import sys import getopt from string import lower as str_lower from xml.dom import minidom from xml.dom import Node # # User methods # # Calls to the methods in these classes are generated by generateDS.py. # You can replace these methods by re-implementing the following class # in a module named generatedssuper.py. try: from generatedssuper import GeneratedsSuper except ImportError, exp: class GeneratedsSuper: def format_string(self, input_data, input_name=''): return input_data def format_integer(self, input_data, input_name=''): return '%d' % input_data def format_float(self, input_data, input_name=''): return '%f' % input_data def format_double(self, input_data, input_name=''): return '%e' % input_data def format_boolean(self, input_data, input_name=''): return '%s' % input_data # # If you have installed IPython you can uncomment and use the following. # IPython is available from http://ipython.scipy.org/. # ## from IPython.Shell import IPShellEmbed ## args = '' ## ipshell = IPShellEmbed(args, ## banner = 'Dropping into IPython', ## exit_msg = 'Leaving Interpreter, back to program.') # Then use the following line where and when you want to drop into the # IPython shell: # ipshell(' -- Entering ipshell.\nHit Ctrl-D to exit') # # Globals # ExternalEncoding = 'ascii' # # Support/utility functions. # def showIndent(outfile, level): for idx in range(level): outfile.write(' ') def quote_xml(inStr): s1 = (isinstance(inStr, basestring) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('>', '>') return s1 def quote_attrib(inStr): s1 = (isinstance(inStr, basestring) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('>', '>') if '"' in s1: if "'" in s1: s1 = '"%s"' % s1.replace('"', """) else: s1 = "'%s'" % s1 else: s1 = '"%s"' % s1 return s1 def quote_python(inStr): s1 = inStr if s1.find("'") == -1: if s1.find('\n') == -1: return "'%s'" % s1 else: return "'''%s'''" % s1 else: if s1.find('"') != -1: s1 = s1.replace('"', '\\"') if s1.find('\n') == -1: return '"%s"' % s1 else: return '"""%s"""' % s1 class MixedContainer: # Constants for category: CategoryNone = 0 CategoryText = 1 CategorySimple = 2 CategoryComplex = 3 # Constants for content_type: TypeNone = 0 TypeText = 1 TypeString = 2 TypeInteger = 3 TypeFloat = 4 TypeDecimal = 5 TypeDouble = 6 TypeBoolean = 7 def __init__(self, category, content_type, name, value): self.category = category self.content_type = content_type self.name = name self.value = value def getCategory(self): return self.category def getContenttype(self, content_type): return self.content_type def getValue(self): return self.value def getName(self): return self.name def export(self, outfile, level, name, namespace): if self.category == MixedContainer.CategoryText: outfile.write(self.value) elif self.category == MixedContainer.CategorySimple: self.exportSimple(outfile, level, name) else: # category == MixedContainer.CategoryComplex self.value.export(outfile, level, namespace,name) def exportSimple(self, outfile, level, name): if self.content_type == MixedContainer.TypeString: outfile.write('<%s>%s' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeInteger or \ self.content_type == MixedContainer.TypeBoolean: outfile.write('<%s>%d' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeFloat or \ self.content_type == MixedContainer.TypeDecimal: outfile.write('<%s>%f' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeDouble: outfile.write('<%s>%g' % (self.name, self.value, self.name)) def exportLiteral(self, outfile, level, name): if self.category == MixedContainer.CategoryText: showIndent(outfile, level) outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ (self.category, self.content_type, self.name, self.value)) elif self.category == MixedContainer.CategorySimple: showIndent(outfile, level) outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ (self.category, self.content_type, self.name, self.value)) else: # category == MixedContainer.CategoryComplex showIndent(outfile, level) outfile.write('MixedContainer(%d, %d, "%s",\n' % \ (self.category, self.content_type, self.name,)) self.value.exportLiteral(outfile, level + 1) showIndent(outfile, level) outfile.write(')\n') class _MemberSpec(object): def __init__(self, name='', data_type='', container=0): self.name = name self.data_type = data_type self.container = container def set_name(self, name): self.name = name def get_name(self): return self.name def set_data_type(self, data_type): self.data_type = data_type def get_data_type(self): return self.data_type def set_container(self, container): self.container = container def get_container(self): return self.container # # Data representation classes. # class DoxygenType(GeneratedsSuper): subclass = None superclass = None def __init__(self, version=None, compound=None): self.version = version if compound is None: self.compound = [] else: self.compound = compound def factory(*args_, **kwargs_): if DoxygenType.subclass: return DoxygenType.subclass(*args_, **kwargs_) else: return DoxygenType(*args_, **kwargs_) factory = staticmethod(factory) def get_compound(self): return self.compound def set_compound(self, compound): self.compound = compound def add_compound(self, value): self.compound.append(value) def insert_compound(self, index, value): self.compound[index] = value def get_version(self): return self.version def set_version(self, version): self.version = version def export(self, outfile, level, namespace_='', name_='DoxygenType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='DoxygenType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='DoxygenType'): outfile.write(' version=%s' % (self.format_string(quote_attrib(self.version).encode(ExternalEncoding), input_name='version'), )) def exportChildren(self, outfile, level, namespace_='', name_='DoxygenType'): for compound_ in self.compound: compound_.export(outfile, level, namespace_, name_='compound') def hasContent_(self): if ( self.compound is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='DoxygenType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.version is not None: showIndent(outfile, level) outfile.write('version = %s,\n' % (self.version,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('compound=[\n') level += 1 for compound in self.compound: showIndent(outfile, level) outfile.write('model_.compound(\n') compound.exportLiteral(outfile, level, name_='compound') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('version'): self.version = attrs.get('version').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'compound': obj_ = CompoundType.factory() obj_.build(child_) self.compound.append(obj_) # end class DoxygenType class CompoundType(GeneratedsSuper): subclass = None superclass = None def __init__(self, kind=None, refid=None, name=None, member=None): self.kind = kind self.refid = refid self.name = name if member is None: self.member = [] else: self.member = member def factory(*args_, **kwargs_): if CompoundType.subclass: return CompoundType.subclass(*args_, **kwargs_) else: return CompoundType(*args_, **kwargs_) factory = staticmethod(factory) def get_name(self): return self.name def set_name(self, name): self.name = name def get_member(self): return self.member def set_member(self, member): self.member = member def add_member(self, value): self.member.append(value) def insert_member(self, index, value): self.member[index] = value def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def export(self, outfile, level, namespace_='', name_='CompoundType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='CompoundType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='CompoundType'): outfile.write(' kind=%s' % (quote_attrib(self.kind), )) outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='CompoundType'): if self.name is not None: showIndent(outfile, level) outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) for member_ in self.member: member_.export(outfile, level, namespace_, name_='member') def hasContent_(self): if ( self.name is not None or self.member is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='CompoundType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('member=[\n') level += 1 for member in self.member: showIndent(outfile, level) outfile.write('model_.member(\n') member.exportLiteral(outfile, level, name_='member') showIndent(outfile, level) outfile.write('),\n') level -= 1 showIndent(outfile, level) outfile.write('],\n') def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue self.name = name_ elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'member': obj_ = MemberType.factory() obj_.build(child_) self.member.append(obj_) # end class CompoundType class MemberType(GeneratedsSuper): subclass = None superclass = None def __init__(self, kind=None, refid=None, name=None): self.kind = kind self.refid = refid self.name = name def factory(*args_, **kwargs_): if MemberType.subclass: return MemberType.subclass(*args_, **kwargs_) else: return MemberType(*args_, **kwargs_) factory = staticmethod(factory) def get_name(self): return self.name def set_name(self, name): self.name = name def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def export(self, outfile, level, namespace_='', name_='MemberType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) self.exportAttributes(outfile, level, namespace_, name_='MemberType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) showIndent(outfile, level) outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') def exportAttributes(self, outfile, level, namespace_='', name_='MemberType'): outfile.write(' kind=%s' % (quote_attrib(self.kind), )) outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) def exportChildren(self, outfile, level, namespace_='', name_='MemberType'): if self.name is not None: showIndent(outfile, level) outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) def hasContent_(self): if ( self.name is not None ): return True else: return False def exportLiteral(self, outfile, level, name_='MemberType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value if attrs.get('refid'): self.refid = attrs.get('refid').value def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue self.name = name_ # end class MemberType USAGE_TEXT = """ Usage: python .py [ -s ] Options: -s Use the SAX parser, not the minidom parser. """ def usage(): print USAGE_TEXT sys.exit(1) def parse(inFileName): doc = minidom.parse(inFileName) rootNode = doc.documentElement rootObj = DoxygenType.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygenindex", namespacedef_='') return rootObj def parseString(inString): doc = minidom.parseString(inString) rootNode = doc.documentElement rootObj = DoxygenType.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygenindex", namespacedef_='') return rootObj def parseLiteral(inFileName): doc = minidom.parse(inFileName) rootNode = doc.documentElement rootObj = DoxygenType.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('from index import *\n\n') sys.stdout.write('rootObj = doxygenindex(\n') rootObj.exportLiteral(sys.stdout, 0, name_="doxygenindex") sys.stdout.write(')\n') return rootObj def main(): args = sys.argv[1:] if len(args) == 1: parse(args[0]) else: usage() if __name__ == '__main__': main() #import pdb #pdb.run('main()') gnuradio-3.7.11/docs/doxygen/doxyxml/text.py0000664000175000017500000000345013055131744020721 0ustar jcorganjcorgan# # Copyright 2010 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. # """ Utilities for extracting text from generated classes. """ def is_string(txt): if isinstance(txt, str): return True try: if isinstance(txt, unicode): return True except NameError: pass return False def description(obj): if obj is None: return None return description_bit(obj).strip() def description_bit(obj): if hasattr(obj, 'content'): contents = [description_bit(item) for item in obj.content] result = ''.join(contents) elif hasattr(obj, 'content_'): contents = [description_bit(item) for item in obj.content_] result = ''.join(contents) elif hasattr(obj, 'value'): result = description_bit(obj.value) elif is_string(obj): return obj else: raise StandardError('Expecting a string or something with content, content_ or value attribute') # If this bit is a paragraph then add one some line breaks. if hasattr(obj, 'name') and obj.name == 'para': result += "\n\n" return result gnuradio-3.7.11/docs/doxygen/gnuradio_logo_icon.png0000664000175000017500000000555013055131744022230 0ustar jcorganjcorgan‰PNG  IHDR77¨ÛÒFgAMA± üasRGB®Îé cHRMz&€„ú€èu0ê`:˜pœºQ<bKGDÿÿÿ ½§“ pHYs × ×B(›x ]IDAThÞÝši\UÇ÷m½ÏÖÓ=3I&“@È2ˆB‰ D@A‘%AH%DDC)Ër)ý¤"PŠ`I  aY*ÅZ!¶0 !&™½»g¦÷í½w¯z2!¢E1é†Áÿ·×ïݾï÷νçÞsîJ)Åÿ©´Oûj)£Fÿ+…’6N)Ž”`X&º¿§â³'Ý<#=9Þ{~Œ=ÿ’¤‡¢ô¿=‚ë@0ìcÚ‘:3ö±àô&:Ž ã«ÕRTeÎ)é°o[›®MñÞóÓÉ&BH×D ¡¿¿é*ÃÌ1ãè‹/aéêiÂõµ€goÞ͆õ |•(A‚R »¥l:ŽÛÁå÷‡hš9{2|:yËþ·‡xò·u€ÝL1oy’Å«r„gõ!ô2šfÒóJ'÷^éb²Ÿ 8¥Jl¾Þ%9X‰‚‘>.¹«‡+÷ò{<üôe?§­DÝ4ØþD+Ûê‰]ê†K ¤èzʇ¦i‘eå5)߉áñÁpçüz&‹/L ]éÙö€%ÝÛÕ'ïî'«¤"‡—ùÜ×Ú©8’ÒÍÇ_¤cX6é a2S®\ÔQRŒ§ô\Lï êZ¢˜>! 90‚SNL}¸†¶z¼¡ÊK§M2ÃÉÿò”bßk}3¥ u~3–¿}êÃ…g5ÐØ>‚R ðÄoûpÊ#ìæ™›ü < \[’Ãð|ì½æû»É òÅï óÀUE”òòÒs° NXÆWŸdh§Åæë vU,ŠŽr•“¡¥j/â %s” Ò1AHLO ÃcòA§QÎg¹é¬~v=7M() ˆ"J†ÂL_Ž þ˜fÙ%ÑÉÀUËrŠÜÈo>:ÆëKRmHÙ€º9ÄaKÇ®0™µ$‚ay‰íJ3ÖDˆB³‘N¡ÕƒªÄxR:„š¬¸V°tux2`Õ±œREv<ÕÃý?6ìjüüç^P)?Ëç¿ã¸UÿÌbh§ŸSÖmçè³Ûxã÷_.!V Çü/Y¡Në‚6„˜´N•xáÖw¹o}§ÔV9‹;`Ìñ.\+åbXeÛæ”ï¿Éù×-@·šA•±K%¤c [.†5©9öŸ:”a©Ø¾q/÷­â”['À¤«¢„·NCIA1£ÂBh „Žcûð†’œxéŒ €°0½UÏ©LÞrÙx–ß%Cß›m8ï(sø²a–®ÉѾp&®í°ë¹Q¶Üî'¶+ô|9Ÿã¿Ì2°=:á„t+Ç1çLɤìè¾7œZ$ñ~ B«¤å kŒ%°l­Iä°v¤kÓÿVŒgn6ygc ûëK¤«˜{r7ëkÅò§H¶ÞÛÏ—PnÓú.é`XigxpI²_"Ý:4½â8”„PtˆüÓ¥cQÍNUáÐ"qEßhàÌŸu!ôDeþ Ðté6‘x?ÀXo¨Ÿ“.x‚½¬ú}‹Zj Õy¤›áõ‡<òs/ñ=À88: R×&ô"íÇ òÍt朥J%Pµ…«Èe¬/ÃÖ{2¼õ˜F|·E# Ð´¦esìù ÏkÄßXÇ'PHZM¸ýR8¥™8Ø?ð²›MtÓûIAÕ nJéÿº€û߯ZB§"÷K%tEXtdate:create2014-03-12T16:28:29+01:00œØF%tEXtdate:modify2014-03-12T16:25:53+01:00¶Î#HIEND®B`‚gnuradio-3.7.11/docs/doxygen/images/0000775000175000017500000000000013055131744017122 5ustar jcorganjcorgangnuradio-3.7.11/docs/doxygen/images/example_ofdm_packet_rx.png0000664000175000017500000051441413055131744024341 0ustar jcorganjcorgan‰PNG  IHDR ²!ÙÔbKGDÿÿÿ ½§“ pHYsóóZW¹[€IDATxÚì½wxÇyøÿ™ÝëýÐ{ï @ì)Š"©ÞmIî½;Åiß$ާúç$ŽØ’å^$Y½Q$ÅN±÷^A½w\ßýýqÀ A”,±ÍçyÈÃîÍÎÎÌîíÎ;o\Bÿû3ø:÷ SX¯E{$‰D"‘H>$Î xøO Àøg׺Yɇ‡ø°O8BøÈF稆;uO¦w:ºÑ úµ‰D"‘H$’„ˆÞFD×9pp#‚/‡A !’[Ã5:¯ øS ¦»´ò{Ð ƒÙ B½Öã!‘H$‰DòÁ¡kìG9»YQ<¿€ÀàÿCð ïZ7M"ù°¸VH:ê™ÓÐÊîƒ9úƒ”ê‰D"‘H$73B€Å…V´ú[Q޾µ ¨6\ë¦I$Ê5:o)Ч¥M£eHøH$‰D"¹ÐuP è©“Àhv S~­›$‘|˜\D' ÕhÄêþljÑ4BTUA|'ãÜÄy僩÷f$:V׺‰D"¹¹ÑÁâƒY Ê#‘Ü2\+ Htz7ÎYÞð¤Üç Ò?@Ót僙! !hkïáÙ—¶ð£gVÒ?àÿP'î-mÝ4µtýQëÔu¨kh§£³ïCà@×uô „K]׉hZô3ýTUåš {c G8}¶…A_ðZ7E"‘H$7;B04%º>^‚ɇĵò·ÚCAcS'Ͼ´…¦–.|þ BÀC÷Îb‹&¹ï!``0À¦­GxwÇq¼k&NLJXÓtþé{`` Àþ㳘Lïíò Oæu]GAoß_û‹g˜T™ËßüɃh„´wôòêÊÜ¿b·=ÖŽ–¶~óÜÎÖµçÄf5cµšHMò0cj1™éñhÚø®§¢ˆq—½R=Qa TEáà‰Z>÷ÿãï¾õËn¯&‘æ‰D"ùÀ‘N°’[Šk¥BzzùÖ·E͹>ñÑÛøâ§– EX·éPL32Òl)j¦5rûüß—3CR›Ôä¦pû‚‰¨ª«c,ËXçYßX犖»Œ¢î_1ƒGÁ ŽÚ©ó_X‡‚æ–.š[º":¹¶YÍ|ü# ¹ã¶I•½\;G•÷5ƒ—ßÜNK[N‡5& êºN¼×Ayi¯®ÜIfzÑ8qº‰P(<ö˜\âÕ—Ó5Íô÷Gµ\𮓑ÏW>»Œ²âŒQÎåÆaÔX]'š‰D"‘H$’ë•ëZQÁ±“õlÛu‚'žOey6•eÙ|¾ ƒ¾5µ­t÷ ŒÒXLž”ÏŒ©E1Á  s¦¶•šÚVüè†ÃÎÕ·sìdè:‚Á?xêMÖm>D$¢‰h(ŠÂ¼YeL(ÍŠ Bººû9y¦‰Î®þ¨`44&¡P8ַή~jj[ñBW4“RÁ™³-lÛu’GïŸÁ0úö2›äå$c6ÈÉL¢º2ÛNäÛñ(3&ñßþ'N7Æú®i:Íœ9ÛB0Ž z×ò¯ÿõ]=„Ñ¡q„ÂÎÕ·Q[ßF$¢<#úÆNžibÐDQÍ­Ý|ç?þ@͹6ÂáMÃé°rçâjR“½±k§ë:Í-]œ®ifÀ% útvõ‰h4µtQרAD“Z‰D"‘H$’Kq­L°Æ‚@0Äêõ(.LÇã¶sÛ¼ Ðujj[ùŸ§ßâà‘s|â# yôþ99VÇžz“¼œr²yþ•w))LÇf5sàp-@ˆoÿå£ÌšVŒ®Ã®}§ùÍóIJtsº¦™´”8þú›¢A_¿Ÿþz 'N7ròt·/˜È_|ã~üü÷OÞdçÞS<ùÈ|^ys'‹‘ÿþçOqøx=¿~nI‰nzz‰ó8øü'–`·[øõsùÝ ›˜>¹@ ÄÁ£ç°ZLüëß=Aqa:o¯ÝÇÿ<õ&KUñÕÏ-§©¥‹ÿüß×QÁà`«ÕÌwþêQšZºøÁOÞÂl6 †9{®•¿þ“)/Éä×Ïoä×Ïm¤ª2—ƒGα`v9ÍmÝüöù|á“K¹oÅt‚Á0xu+›·%=5ކ¦NfL-âÑûæÐÑÙÇžz“{N±pîΜmáØÉª'æñù(.§í’foMç¹—ßeæ”"ò²“/6‘Ò£ffºÚ?H$¢a4øÈCsùÝ‹›Y»ñ eÅ´¶õð̯ߡ·ß‡ß"¢iüÙ—ïÁñÝï¿À¾ƒ5ü˾HJ’—Ïb Ý=ƒüì7ï ¨ í}$%¸øêç–ãvÙ9W߯S¿\ªªôøèîà_¸‹Ÿÿn-o¯Ý‹Éh -ÕË‹ªY¹v/;÷œâ{ÿøqJ Óéìêç'¿XEk[n·–Ön}`sg”±÷àþó_Çç 2©"‡Gj9WßΓ,à3O.¾nüZ$‰D"‘H®'®k ˆ¦iL(Íâ#Îå‡?}‹Ç>ó}ž}i ½½ƒ  òRyðž™´wôP˜—ŠÙl$'; ·ËÆ“Ìgé¢*0½}>>òà\¾÷Çl6òû7PßÐÎ_}ç7”¦ó­¯ÞÇœé¥lÝyœ¾~ ­À—gòùŸ||xm+§kšñ¸íL«.䨉zví;Íç>¾„'Y@cKñí_QZ”Á_~ý~þäKw³{ÿiþóÿ¢BÄÌ©Etu é:ŸùØíüÛß?I[{/¯½½ ELž˜‡ª*´´õ ª +ßÙËν§øæïâ+Ÿ]†Ùd@×áÝÇÙ½ÿ4ŸýØþî[00ൕ»PU•93JIIò°h~%_úôR¦M.dzu!¾]=¨ªÂš øÏÿ}GïŸÃ·¾vO<2Ÿ=½’7×ì!!ÞEuegëZ£ÂØŸ<ÈŸ~ùnÞZ³‡ƒGj/éü¯* ûÖPSÛÂ=˦]Mp3t]#9ÑCb¼‹c'Âüðé•´´õð_¿Ÿ¿ýó‡©khç™ß¬%-ÅËôÉ…¤¥Æñ©ÇñÄ#óBðÏ߯×Á_ÿɃüùWïe͆¼µf/@üçéíõñg_¹‡GîÍ¡cçèédáÜ â<{`Ÿ~b1e%Lž˜OCS@]×ùÑOßbÓÖ£|ã‹wñ—_¿Ÿê‰yüõw~ÃÉÓ契‘Om}3¦ñoÿ$w.®æg¿]Ó*I$‰D"‘HFs] º6«™¿ÿóGxú¿¾ˆÍbâõ ûâsàðY„L®Ì£0?Uëö!DT£‘—“LA^ ɉlV3eÅ™TUäQZ”AUe.-m=è:lÜz„ŽÎ>î¹sŠ¢pϲi<ý__$!Þ‰¦é¸]6æÌ(%/;™ÙÓK°˜tu`6IMöàtXyèžY,^PÉ’…Ùºó8]ýܳl*F£Œ´x–/™Ì«vÓÖÖKZJV«‰êÊ<&”d1©"‡‚¼š[»HLpwx×Án³P[×Ê^ÝJœ×ÉŸõ^TUaé¢*žùÁ—0T=7dj6è$Æ»0›$Æ9ÉÉJÂ뱓œäÁj1!€P( ¯m#/'™™S‹Q…©U”gðÜK[PU…”¡¾ÍšVLAn ³¦•à°[.9©€?äÙ—ßåÎÅÕ$%º¯*8€®ƒAU0Uº{hjéäµ·w¢( o¼½‹7VíF×áè‰zTU%>ΉÅl$3=‘ìŒDNibÓÖ£„Ba^xu+¶B8v¢žã§Ù²ãÞ &P^šÅoò ¦Vçu`4HK#+#·ÓNJ²UU‡¢¡õòò›;Yº¨ŠìŒDŒF•å·OƱjÝ~¼;q^©É^fM+!/'™¹3Jôôd(_‰D"‘H$’1¸îM°B¡0ªª°|ÉdæÏ*gý–CüÅ·Í¿ý÷Ëüô_Âa·°bÉd~ñûõ|ê‰vvì>É]K§ ( ¡pÐÑ4ˆ¦ß;"¶®¡»ÍŒÍfF×uº›ÍÌÝwNcÛ®±o³Éȹ<ý«5üô×ï0¡$k(|꥗ …¤$yèè죳«·ËvÞgá|\î1ñ©˜h HK‰c`ÀÏÄë±#„ £³—ÓŠËidOŒUå§ B|ü±ÛX¼`"ÿô½?ðí{Žß?ýMþý¿_¡®¡ï÷¤$yرûdT˜:nØÇâ¢xÌ&ÉI:ºú‡Ôš¦ÑÑÙKJ’'úWOì«á‰úËoìà‘ûfãtX/ºvt¿£BAUxwGÔômñü ÜN³‘´d/Ë—L!Ž i^ttMG‡Øä·ƒA¥¨ YS‹ G4”!‡õþÿ°ÙNEYVìz ­O\pt=ªsØ­Ñü)C_ùýAý¤¦Ä!”÷‰ÔvH$‰D"‘Œ‹ëÚKA}c'[¶£¯ßO(¡¾±ã§™?« ›ÕŒ¦id¦'0sZ1?ýÕ¦Ub³™ó+Ûš6¤àü¶¦iÌžQ‚Åbâž~“ƦNzz9z¢žÞ¾Aô!‰¦kQ}h;2¤­ˆè1­ D'¬óg•ã°[Xµvš¦ÓÞÑËÊwö²xþDR“½„‡´)‘¡I¯®ŸoϰР i„üø«Ø´íeEÜ»l:&£J âèÉzœŽ¨¦å\};Í­Ý蚆Ž‹øt¦¶…¾~?ÁP8–0¢E¾ï¹s'Ï4±ï`ÔŒíð±:=ǽ˧a2bZŸh4'1Ô®hÛ.\ÚWÁ[köçu0cJÑe…P8Úžp8‚Ϥ«»ŸWWîä¿~ü?<ŸSŠILt3wfOýj Ÿ¥¿ßGMm ¶!Ž`4¨´´uÓÒÖMÿ€ŸâÂt óRùÑÓ+©9×J_ŸÃÇëØºó8…ù©TUäòçßâð±zúúýœ:ÓLsKCÔ)½¶®ÁÁá°ÿHD#)ÁÍ‹«XµnÍ­ÝhšÎÚ¡ðÏ‹æUÄÊišÓœh-v%‰D"‘H$£¾ÿ*®Ž¿]À4TÃ2=g¶À‘Ì¥òï!hjîäÕ•»xwÇ1vï;Ûkö—“Ì—?½ »Í€Á  €3çZøò§ïÄf5Žh¼¹f›¶! QZœAcs/¿±Îî~’ÝLžX@a~*¯¿½›7WïaëŽã´wôâtZyíí]Ô7vïu’™ÈËolgÿáZ ªBR¢›WWîä䙦¨”–@œ××ã 7;™7Vïáè‰zV¯ßOœ×Á7¾p&“_ßή½§Ðu(/Éäð±:Þzgƒ~ÒSã8yº‰w6¤ÐOVF"Í]¬|g/gj[Ùw¨†û–OgZu!š¦óÆêÝ>zŽîž|¾ ud¤Å“—“‰3lÞv”ƦN,f#»öžfÛ! rS™:¹UQxýí]?ÙȪuûX²p>0‡Ööž}q §Ï6ãpX)ÊOã­Õ{صï4š®QTNœ×3kjîâ™ß¼Ã§ŸXLÊPèÚK]ËæÖn~öÛuÑ ¿/À®}§yýíÝ=ÙÀ£÷Ïá¹ ‹Å„Á PQ–ÍÁõ<÷ÊV¶ï>ɶ]'HŒwQZœA8aÃæÃ;Ù@GgU¹TUæòÎÆƒ¼¶rÛwŸ`ïÁò²“))JgBY;÷œæÅ×¶òîŽc?ÕHIQ‰ nvì>Éž5´¶÷`·™xkõNœnÂhT)/ÉdúäBjj[Y·ù0ûÕ°kï)¾ô©;™9µ˜}kxéí´wô‘ž‡ÛiãÙ—·PSÛŠÕb¢´(‹ÙôaÿÄ$‰Dr# Â×R³  Ögõµn”Dòá𡎄þÐùFË" þLè) _zµ8ŽÐÔÒEsK7::ɉ2Òã1¨j,*¼ôÆvš[ºøÌ“·Ÿ÷ h鯢 q.4]‹:RV«™äD7ªªÐÓ;Hcs'f“‘´Ô8B¡0-m=&“Äx-mÝ„ÃB€×ã «»?ªÅÐt\¸œVt=ªèê ®¡›ÕLVF&£P8BSs¡p€¤D7~ž¾Aœ+š¦30èÜ.6›™Æ¦Nzû}¤&{IIò D4_]C4ßDzj@4o‡Ëi%1ÁEÿ@€Ö¶nì6 .§•öÎ>B¡h¾Œ„xn—-æ;ÑÚÖMb‚›Ôd/B}š[º¨cxr’‡¶Ž^‚Á0 “˜àÆé°Äÿ|@ˆ¯~nÙýM-]1»Í2ä7cò7º1E4?˹º6Ái)qÄÇ9c×¶¥µ‡@0„×cÇé°¢ª }ý~jëÚ2Òâc!ƒE0è ÒÐÔ‰ÑHKñâJ’ØÙÕOOï·³ÙHëP€! 5Å‹Õb"ŠPWßÎÀ ŸŒ´ø!L§«{`È1?êâvÚiníŠÝi)qºŒ/‘H$’¡ :kP×~|=ÿ€àïŒv­%‘|8\÷ŒÎ>l¶щø–íÇPU…u›ññÇ’•ž€6"ÙÞ°mte~ä6èc”vF>¾h9EˆØh OP‡vÚŽ j,3º>*Æè:.nOôØ‘ÛúP‚À¨ÔHíÂp8Üh{£õ ·u¸ýç·/ÝoE\ºî ë¿°¯‘ˆÆŽ=')ÌO#1Þ5®ÈW†ñîçX‡ ˆùYè´ñÂ>wÆ(Ïß]\º>t¾ó}ÝîÑík\•K/‘H$É(¤"¹…¹®Ð‡‰NäFOæ†þêÙõœ8ÓÄ·¾z/Y £&} —šè^Xnä¤6Ö†áHR#Ê\Š '¿—ªc¬ö\¼}qßÏÉøÚñ8œßÑ/_÷åŽWU…ÙÓK/Ùß±¸šIù°†i¬þզ˵c¬k:æØ]¢}c݃cµA ‰D"‘H$—ç†@ÆB×ulV3ßýÛÇ ¢&:rò÷á#­%‰D"‘H$Wà +€ “”àF¹ò,‘H$‰D"‘ÜÜðȥ̃$‰D"‘H$ÉõÇ /€H$‰äÚ"d"ÎK"È$‰äbnJäÂHK’?ÒÌM"‘\H ¨Ñ?FGÿðÃ*^ÇèD#:ìFLF92‰D2’›JÇÎôðûcaW%ïM×±š¡²,U w‰dUUؼý${‰óÆ;Þ-44œcáÌxÌ.” 8‰D2‚›L4¶ðû—“”˜†Ãá”úï÷‹ôöõqüè~ð݇±ÙÌ׺Eï‹‘¹X$’ñ ýÌ.ÐÐØJVö|fNŸED‹\ë&]7(ŠÊ/õΞ«GÌ)b¬pâ‰Dr«rS ‘p˜Ä„dîZñÉIɱ¤„’÷†"MÍM>ðM;Ÿ´ïD8r²“–ö ªª\ëæHn4-BE‰—8ù†½ï?PôèD;9)‘ÌÌTÂákÝ ëUÇ4_ë¦H$ÉuÇM'€ Àd4á°Ûq8ìrÒð>ìvǨ á72o¬ÚC@Ë%11Aš‹H.‹ ‡íÁbÌdæÔ"™óflt44íÆ]œø ã!‘H$—ææ@=šE[—/€? 7É꺎P–Þ¾‚‚üB™DQrYTUå·ZˆP¨UZíIF1ì^(ß/‰DòÞ¸)ñr¡9ÑXÛr¹ÎÈã/ü{,Æ:×XõË—ÝE(X­Vì6 Ò'Tr9̦ÛçézB²z~Ž]/Ï3!Î?¯uý|;/½>¡Ó××O0Äãö¢(ÒœS"‘H®–[VÑuÁÁA &“™@ €®k(Š‚ ƒ¿ß?ô’Ô ‡Ã!0™L¦‹"lE"aV«]Ÿo³9j7øÑu£Ñ‚¡ Š˜Íf #Á``0Ì& &“)Vo(Œ¶èdhäw’÷†®ÓI$—CÞ"ï! »»›}ûw308€Ýf§¬´œä䔨¤äãtx{¬…—áïÆsLlc_Çá›Øµ{;Ê*ÉÈÌb×öí€Îäêi£ž·Ãå#‘o­|•ã'ñå/|¯×+Ÿ%‰Dr•Ü’ˆ088ÈÏùE…%,½c)+ß^M_/ñq ¸Ýn*&Lâµ×_" Ñ4š›ñx¼¤¦¤1mê,RRR€ó+f§NaÕš7ùèc' ðó_>Å‚ù‹éîéâÔ騊Jjj:áPˆã'Žâtº(**aÆô9lÙ²ýöàp8)((bÆ´Ù¸Ý|¾A¶¼»‘35§ÐuŠ “˜=kîE/f!¢«uŠ2úÅ<–6F¿å‹S"¹m.—¿?€ÉdÆåvÓß×G(Äãñb³Ùèê·›Õ‹\çrºèééÁårèïÃjµa³ÙèîîÆï÷!ÓáÂér᤻» ‹ÅÕTˆèBNo_ôYo³™8rä þ_áÉ'>Íù$ßûþwq:]üÛ?£ª*>¿§Ã…ÝncppŽŽvöíßéÓ'†‚W#EE ÇâSºÁS$ÉMÏ-)€øý~^xñw,^t'Ë—-eëöÍ´¶6““‡×GJro¾ý*áP4¬‹Ûí&++‡·Þ~ú†:ª«¦ ë:ÕUS±ÙÌÔÕ×òâKÏrÏÝ20ÐÏo~÷3Lf36¾CNvóç-Âh4²qÓZIKKçw¿ÿ%éi™lÛ¾™º†sLŸ6›çÿð[,+óçÞFSs#¿ýý/HKM§¢bš¡®þ'N# S\XЦk:´Ÿùó±wß.Ìf >ß =½Ý•áv{8uê>ÿ E…%˜L&Nž:‰—W@FzÃ-{H$—EÓt¶ïh ¿×tM}†tT³™ÉU™$¸õ«ÒÌD5âŠá„…€ö.Ø»¿ß7®ì抢päX;i9—/ŽDèèÒ0 žúéñûý¬Xv/ññ ¬Ý°šp(DvV.K/ãwÏý’p8ÌéÓ'ÉÌÈÂh4:=ø~õ›g˜3k‡¤§» ‹ÕÊ”êé¬Zó&>ß ·ËâEw°k÷v‚“&M¡³³ƒ“'‘ššÎÁCûøæ×ÿ»=•P(Do_/‡íçég~Dmm 99¹lywGŽB×4ìv'³fÎåÝm›hkmáàáý˜MfÄe¼ƒ†~vê¶²a\÷®i8m&fNJÆã¼ºë,‘H$7·ðÌS'Ñ"1µz8Æð³eëF9}ú$é™!HNNeîœì?°‡]»· Ñu˜P>›ÍŒ®ë„Â!Ðut]' bµX©¬¨¢¥¥‰­Û61kæ\ÐuÂáÁ@]×Q%zîp˜H8L0D‹Dcé;ìN ò‹hh¬çä©ãdgçòôODsK I¼µòUJK&ðÓŸý/%%eüäéÿ!>>öö6RRÒÈÌÈfÍÚ•;v˜… n§³³ƒ5ï¬äàá}¨ŠJvV.ŸþÔÉÎÊ‘š‰d „¦¡=‰©§›ˆ¦ïR›´ÆT‘—¯S¾`˜­Ý!î"Áã½*Õemà íAr3íÄ{M—D„ÔÖu°ëÕT»”¨°0ôݥΦ z¶+K+Ñ,é&£ ƒjàä©ã¤§e2}Ú,V¿ó[·n"';¾¾>22²X·~5_úÂ79|ø‡Äbµ ‡™ÛÜÄÁƒûX·~ ¹¹ù¨ªŠÃîàà¡}TWM%#=“·Þ~ ƒÑȶm›øÒ¾ÉŒi³8sæo¼ù2‡ï§°°·Ë=dŽ©c±X™XYÍÙÚ3$'§ iï¬[EGGsç.äåWžÇð±vÝj/ZJ^nMM \ÉHOÞ®Kaç¾âË9• _¾>{v“•jÃërÈç²D"¹i¹eÕ` 11‰Žö6ޝ¡««“Ä„$TE¥ ¯éÓf²qÓÚ誕ôööpæÌ)º»»HNN#)1™ˆõÑõh¨Z‹ÅÂÉSÇñù}¸Ýâã(((¦¥¥‰Ÿÿò)º{º1M44Ö£ë:N§ Mú—´¶¶Ð?ÐÏ=w=@Å„‰˜L&fLŸÍñGùÍï~†Óá䨉£xÜ^¼/Ûwl!+3—þ~N>IKK6›`(Hõ¤)•òûç~E8¦¼¬EQ8}æ$íííäd碨*a¸ÿЍjô32Îkª::çðñÃŒ·ž›ƒ—÷ÑVQ¢ÿ®æ¶"zÌ{ ‹ªÁ¬t¥‰v¶Ÿk!Ûë¤<%î½€€¦žö5v`7 …)Iòïºx.+†ÿÓéói<ÖŠ¹ºß«®ëüî…M¼ôÆ^n›7‘…sʘ:)‡ÝŒÙ¨¹`R¬EÂä:Œ,ÏCUB M×1Ô±O Zû}WÊTÕ€×ÇÔ©3X|Û¬Zó&^O ‰¤§g’š’Nrr i©$&$‘™‘ÍÑc‡hkkÅãõR\XÂþ{Y»nF£‰œì<ÊË*p8œ¤$§’’’†Ûå!3#›ŒŒ,öèþœœ<ŽŸ8J\\%Å¥¤§epøè!–ßyV« ]£Ñˆ×ãeÞÜÛ¸ïÞ‡ùñS? ½½Â‚"Âá0ÍÍMäåR_Ĺsgikm¦£³›Íޏ¢º@¤LD-YzI,!b—™H'ÁÃuD".í½"‘H$7>·¤¢ë`·9øÒç¿ASs#çÎÕ0gÖÓ¦ÍbÁüE8ìNŒFãú^Çl6SZRÎ'?þy&VVS^VIKk3‹…¯~éOÉÉÉÇ`0 ¹ãŽ»ÈÍÉÇ礲² «ÕÊý÷=ÂÙ³gèìl'=-“Ç?ò ›ˆ‹‹'>.„øÄ[~•mØTBÓ´¨½ÿˆÕ\!àíU+ègù²{¯h® …x{Õ**+«HKM#ްaãz‘H«ÕÊÌs1›Í±ú5MÓŽ~øÐtE\]¤óQ}ô¨ýy,òPTC7ÜÏèßÑÕo†œóG:ùþ1ï@ Àó¯½@Jjóç.¸â‚ð…( lÞ²‘³µ5Üïñ€W‡³µ5ìØ¹•Óf“••}Õ}À–³Í4õ R˜è‰ŽÑUö}ø]‡µ§k:çºúÈOpcPÕóc?â˜þ@ˆã­Ý”&{G7æjΫC]Ý9öØÇÑcGyåTª'M +#Ž;”2gF.UÄÆêÂê}á¡H³A}OýnCfF_úÂ7ÈÌÌÁl¶òÉ}£)„cú´Ù¸œnû±˜­–ðµ¯üÍÍlݺ ]Óyôá'˜5k¡PˆÛn»ƒÒ’ræÎYHkk3𦓔”LzZÉɩج6âã)*,aÚÔ™Ô՟àªtuwÑÞÑÆí‹–2¡<ºÈ£iP^VÉwþþß)))ÃãvóøG>ßï'';—ú†:z{{HII##=“ò²JêëkñûÄÇÇãt¸®|ÆÆmŒì!ÐvkZ9B‡2I"‘HnnIÀ`0°xÑàâÈ*ÃTyè±QÇ\8)vþÖuˆ‹‹ãᇻÈñ»¨°€Ù³æ\Ô†I“ªÐu(/Ÿ«dˆJ¯7Ž9³ç°è¶Å )c.jÓ¤‰/jÛp]³gÎaöÌ9±ýyyy£Ž½Õ…p8ÌÎ]ÛØ¾ó]"‘0v›;︛¼¼ÜXT_~–æ–&–ݹƒÁ@$r±Vc¿?ÌŽ[ÉÈÈ$+3H$Âo¾LgW'@€„„Dª&MÁj5ÓÚÖÆ /=KOwO>ñiÒRRc¡C¡û÷ïfÓ–õ +«¸mÁí¨C“ÅáÉûÈÀÃ÷¢¦iœ8q”uÖ00ÐÏäÉÓ)È+äûÿý¯8.’“)-)çÕ×_rĵSZ:‰•Õü×þ¹³°`þb^xéYjÏÕð™O}‰ô´ôØùFþF.üÝŒ\ŽDˆfÊV£ûûú}üøé0cú,ß¶€Phhr¦ ·û¼¶bx{ø|ýƒÕb£²²Š·Þz…ªISxkå«|åKÊ}÷n‹‰mµÍLÍLÄc3sµæA#ŸE>{/ìÏð÷ӧ͢ϸ«}_øwœ7Ž%‹n'¢]ùÙ}¹\%Wÿ Uè;öZ ŸpOha"¾n„jÄß|KR!öœi¸+–£X\t´·óÔÏ7’h¹è\M£º2;W£Ë‡¹D"¹¹¥‰Äb¶2{Ö|ÖoXË/=KeÅ$ºº;yö¹_“™™Åì™ó0[,twwñïßûGžøè'ùߟü7 æ-ŠNðöîä±Gžäg¿ü Šª²yËz::ÚØ±kI‰É(êhó)ô÷²wß.:;;ilj`÷ž]>reKï&33•Ús5œ:}‚Ù3çQY1P(Ì¿ïŸÙ»ov»35§¹û®زeG¢´t“¢!¦}œ={†»VÜϬsxó­W9WW‹ìܵ !I‰É¨ŠJZjÕÕÓxö¹_sæÌIE¡®®–çþð\N7=Z7B4 Þݶ‰ÿûÉQU5•ìÌ:»:xs嫘Í\N7¡Pïÿ÷¿òðƒeÏÞÔÕŸ#55wßÝÈÒ;î"!!1æt½fí[ìܵ€½ûwñ¯|‹S§Oð»gI\\<›ßÝÀáÃ9~â(.—›ööVvíÙN|\{÷íÂï÷ñ‡~ÇÒ;VP\\†Ùl!°gÏNvíÚŽ?àÇét‘‘žIgg¯¿ñº®sôØaìv;íÔ7ÔqöìüþAL& {÷í¦¬´Çs~⧃ըⵙq[M…4·_8›¯ÕL¦ÇNK¿8‚/¹HMi6¨tú in‹ ·ÕDªË«³$ÉËÆ3MìkhÇjTIwÛ)OŽ#ÉiÅb0ÐÒïÃk5a0HOK$/ÛyUˆÛi»ä÷V«•¬Œ23âÉËI¡«Ó‡±¶ù¢Y¶QU(Jòp ©ƒÐ¼ú®ªç5T‘¡áTÕ‹Z®œ0ð±€ð5ñ¿ÒF+ZЇ £˜ì„ûÛ¬ÛGd° ÕêFL„{[0,M&2Ó“ÈJ-h*ŠàÐÑ:V­Ûϲ۫åb’D"¹¡¹e M-ÞÏÃûB3”÷R×ðê•¢ˆh»tÐ.S×°íþ¥²î·idßF&æi¾5V®[‘ᾓ˺õ«yé•ç™9cõ ç¸sé]ܾx/¿öyyÎ;ëÞ¦µ­!íôöö°léÝtvuDϧi1ÿ‹Þ¾Þ˜©VCc_þÚ§˜7÷6zà14 ÒÓ2HMIcÏÞÄÇ'ÒÕÕÁá#±Zm$&&SWW‹ÇíÁåvs¦æ43¦Ï!)1!Àl¶˜˜ÌÙ³g8xh?V«•ÔÔ4„Ìš9—î{”“§Ž¡éƒƒlÞ²ÀGff˜9cÓ§Ïæð‘¼½ê˜ŸHYiË—ßË‘#‡8xx?<ô8;wnãtÍ)>ñäginnÄn³óÈC¥©©ºº³twGÇê®å÷¡ª*‘H„‰•ÕØmvvïÝA|\"ùÅ,_v;wm£««“9³çÓÚÚÂÙÚ3F>òèÇØ¼e=/¿ú‡!›{ÉUÓˆD"?~—ÓÝî`מí$'¥ÐÕÕIvV>ß 3¦Ï¡©©]×éìì ¹¹‘»WÜϾ{¨­­! °lé=(ªÊþç?/Îë é:S2’ˆ·›1* ©.E ÐÐ;€×j&'Î…‚ ±gMÓ E´˜Åÿ¼¼T6œn¤0ÁCšËάìífç¤àµšiîdFv2Ó²’IqXñZ-U¯ÕÌÔ¬DšzIsZ±ÛíL]8•iU‰èãÌ¢é:›¶eí¦ƒ£ö§¥¦pߊ锥3v9‰ñ6â¼víkåÄ6 é6tòâ\$9¬øBa’Ö!mŒñh?4MCÓ"(Š:®láB@OO¿øÕÓL›:ƒ9³g£ipôØ16l|‡Gz·Û @__«V¿‰Çãeá‚E¨ªzU>Eš‰†6ÒviZÔé{d;‡}ÿEÂ#D"„PPÕ¦jãxиÊn§ßhA1Z±eO&Ðr‚`×9Ô´rÌÉEèZ˜`wŠ=ËÅÒÛ3˜XêuUƒÊºMyñõíãï¨D"‘\§Üˆ®ë4·4S__‹Ñh¢° »Ýþž&ß¡PˆššStõtáq{ÉÌÈÂf³*s¹•9! ­­7W¾JA~E455"dfdãõ^aGQàLÍY^{ýV,¿¼Üü LtΞ­¥«»“ÜÜ|\Ρ—t?õõç°˜-¤¦¦ÓÑц¢¨ÄÅÅÓÞцÅl!..þZ_žkF4ür˜S§ŽQ[[CÀïgÉí˘7g!ÉI)<´žžn¬f e%p¹\Lª¬&33›I•“‰‹KÀ`4RVZÙl¦¤¸œÔ”4Âá0•&át¹Ø¶} ~Ÿ å ‡Ã¸ÝEÅíò°léÝlÞ²£ÁHbBÒФ*&Tñõ¯}‹­Û6QßPGEùD>õ‰ÏóÖÛ¯ƒ®s÷]ÐÙÙÁ`à Ÿÿý}ÔÖÖPZ:ÛÃC|„5ï¼ÅÚu«˜3{>Ê*™XYMaA))ñtv%0¡|"ïn݈Ñhäá?ÊœÙóY½æMæÍ]ÈŠå+b älCÑ‚ü~Á`›ÝNFz&‰ ‰¤¥eÐ?ÐOYéü~U“¦àry(,,Æl¶°xÑRÞxãe~ôß§²²šòòJr²ó°Z­ úq»<„#aTÕÀ„ò‰,\°˜ã'ŽR_Äôi³8|ä n·›´´ &”W’›“?æ:€®é8.rsò‰hn—‹ÅB~^!+« G"¼þÆKäæäSVVÁôi³ÈÈÈâèñÃØíÎ[ÄᣇˆO@QÊÊ&`4/ºOt*2@ÓHs;b’ëÂÂŒQ¡t—•e£*‚>ˆÿÛz˜›ÑÀ]å9<6¹8¶Z1-;t‡tY¹©ÌÊKeØ¡eYYvìÄóóÓAú|~ôÆ"‘¡PdÜæ7š¦ÇòOäf'“šìaÙíÕÌš6ªÊ<vš¦E›¦iDÂ#êÖ!+Î#‚ñfzCý¸Ü9#:|€•«Þ ðS^VÁ²¥wc·[Gg(¿`qDQ  °{Ïvq8\¤¦¦ÒÕÕɾý{x྇cÇ…ÂANœ<†Çã%)1™øøÒÓÓÐõóõ#¯ßÈE™öö6V­y‹ŽŽ6fΘ˔ÉÓØºm3ûìåÓŸú"f“‰H$®Ý;ؽg;©©Ì™5W_‘¦¦ JX¾ì\#ÂäFým.½ ctÅã­¾7Öƒ3‡8ï÷bô¤"û:AÓ‡#„C‘Q¾>º®~¯áã$‰ä:ã¦@„€®®.þåß¾Õb!5-«ÕFNv Ç&á¡ï𠘪*C/ï芗Á`@èîéâ?¾ÿ]ZÛZp9]<øÀGX²øNƒªb4ùýs¿Áf³³bÙ=Qµ8ŒÁ "D4dïöï²ió:ù¯ü;==]•2mê,ªª¦ EUQ•ˆpØmvjÏåõ7^æóŸý*Š2¼ >Ÿ­Û7ÓØXOÚñ ~ð£€ÎÉ“ÇØ¹{íÜqûrV¯y ÀÏC<Æï~ÿK&OžÎ½w?8ŽQŒ®ÚÔè9Ç;ù‰N¦?8‹Ê0<îòCÇœoØlvî½ûaü~ˆhÖe³ÙÌ„ò‰ ö£k:êƒ*ªªb±XùÑ~†ÉdâÁûÃf³£ë3¦ÏÁn·ó÷ÿï_0hZ“ÉÌÜ9 @ FD½X­6„,^´”™3怱|0v»c¨]V–.YÁœYó …BØlv, U“¢ 0m6;-BqQ)f³™@ 0=M ªfΘCeÅ$Âá0‡UUùñÕj#„Üœ~öÔï G Fìv;ªªò£ü ‹ÕJ(K/gÁ¼Å1»´tÙY¹Œì6M œ–ܾœ¢Â¨Sû‹/ÿ¶¶V¬V+½½½Ü¹ô.rsò.¾F„Ùóö#ˉ‹ H$ÉMÈM/€@4úKí¹&”W2sÆ??üßÿ¶öVR’S)È/âç¿| —ÛMÀïÇëgê”é44Ösðà>²²r¸ÿ¾G˜\5 ]Ó@×t‚¡Z$ÂÆMëØ»o=½Ýܶ` +ß~ú†s¤§e²{Ï9@Iq?øQ¼Þ8Nœ:F$Á㣮®«ÍFuõ4ŒF#ñ—_£«§‹ å•,˜·˜»¶ÒÙÕÉý$ii8¸—ß=ûKêøÓoþ5&““ÉLÅ„Iôõõâóùbf>ùy…ÄyãYýÎ[„BA"‘mm-¼»u3½}=DÆ›LAzûÙ°å v›e\®§ŠPÈÈH%;ÓûžBw^ ]‡¦–~ÎÖÖ§4Žƒ›:P.˜ØÙí6ìvÛ¨ºM&fsÜEçôx<Ølçí³Íf3º.—sTY£Ñ€Õj³í5ÿ6)¹ð»hD)eÔ÷Ñs¸b0`:·Ñh¼À^\UåÛ ª*^¯÷¢óŽ,c6›±X̱m»Í†Ýv~œâ¼q|òã_ 99&<žht!§Ó«×ápàp8®x=¬V V«%¶oXS9ÖXºœÎX9U¯gt†…¾ Ï1|]£‚Þùëh2™.v†ÖuöžkE …ÇyjôD|ôyß . 9Ûág’~uÙ!„€% '²ô¶IÑ•!SÎpxì•tM‡Óí=¬ÓPõŠgR„àdkÃ1¿t=ªÍ›6e&µµ5¼þÆK,\p;'Oàµ×_r~?ΉG©o8‡¢¨<¼ŸÆ†zJJÊBá•×þÀm –Ð××KRbí¼þæËäçàp8iniÂjµräÈ!lV===¤§¥ÓÙÙÎÊ·_‹æfŠ‹J9uú¾¡¬îÁ`]»÷RXXŒ:gjN1kæ\„ˆúÂŒÔ~)ŠBZjíäæä—€Åjeõ;+iïh£rÂ$܇×ã%ݱs+y¹ :ƒGé>¼‘K&qû„{1u6Eïã~‘H$’럛^‰†ÈMàϾù×¼úú‹üÇÿ÷]¾òÅ?AUÕèÊV{÷ßû0‡Ž`áüÛYµúM²³réìê Ð?ÐßïgÆw¨˜0)–5½¾á¹¹ù¸=^Œ-­Í¼³v%Mͪ«¦bµZø¿Ÿüápˆ›×2iâdfÍœ…Ål‰:‡º<|ã«ßâÍ•¯òÔÓ?dú´Y;~„ÔÔ46mZ‡@°cçV’’RB! bµÙÈÍÍ'..>–Ñ`P±Ymt÷t“𒆢ˆØJûÁCûÈË+  ¿˜ýöb4iim"';‹ÕV.‡"à\™¿\›‹Ád׸‡ZóøÔF¾ù1â*´¡P„Àl2¢ëÚ%M"U[šù¿ >BÞ¢qÉš®ckláSÊèJ/íwsuû®&òÙxË\©Î«‰Ö3žö]®Ì…ß¹\.ª«ªFùÕž«1u¼šþ]m¯Ô§1ÇCš3ð¤eB¿6èºNÕYéö«ÎʼnhŒÇ÷Z×!+ÃAÑârê|ãZ‰W„ Ó¹ ÇËÒ;Vðô3?â·^‰E—»}Ñ”–LàÔ©ãädçÓßß‹"fΜˆïŸ_ˆÑhqƒÔÔtÌ&3)I)Üߣ¬[¿šø¸xn[ð5gNƒUQÈÉÎcéwñëß>Cÿ@?{üÓ˜L&ÎÖÖ`4cãÐÞÞ†ÝÕ˜eeæpîÜÙ¨–:&   ‡MhZ4¸Ä¹º³Ì˜6›¸øxzà#ìÝ¿›}ûw“›GRb23gÌ% #„`÷ž@çö¸}ÌÌ ÇLá.‰蚆§ÊBZ²õª¯³D"‘ÜHÜôˆ00ÐOSs# ñ‰<´Ÿ³µgxá¥ß388µk…0M$Ä'DMmÌÂC«êÝÝ]x½q(C&TF£‘iSgÒßß[q[óÎ[ƒAúûúHJJ¦µ­…ÒÓ31LªœTWMåÈу;~ƒÁˆÅbÁçÄç÷ ‡immÅf³‘‘‘E[{+‡àÈу466°hÁê8uæ$wܾƒAÅï÷Ssö4N‡¿ßGCC=&“™ã'ްaÓZ&”Wâó¢(*•UTL˜Èž}»Æ?ˆº†bOÄTýF«s\‡„¬!$v{ò) ùÛù­í{p3&ç牆8:áh:!Í™s1—.§êÖ®‹V"GúÇŽtгí|{‡Ë¿Æsü°5Æ…6ì×Kà]¿ù³º+ªÂ’%“™?»ŒÈu`‰D>°ë¯ë:)I6ypãM9hP"†Í£Ì2u]§µ­…½ûvQXPÌŒésðx¼¤§g"ˆšN(ŸˆÁhÄçŒ &Mœ›ysÐÙÑNFFE”•MÀl¶0¡|bô9m4b±X£ymJ&pôØaº»: e·X,¬X¾‚––6ÞzûuÂápLrüäQš[Ù½gqq ¸\.Μ9ÅC{ñù|ܱd9;wmãØ±Ã”•N ..žÌÌl\.×NzZæE­‚…3 øÔã³Æ}ÿèD…¥ëåw.‘H$7½`¶XHˆO³fÎ#?¯€„øDºº;1Mäææ3ib5ÙY¹”—Uâr¹Ñ4ß=ûKœNŸøØç˜9cF£§ÓÅg>ùE'‘H„žÞnœÕUS ¤¦¤“””ÌñGIHHä»ßù§ÏœˆeÍXY…ÉôyL&3Ý=]h‘BfÍœ V®|ÜÜ<~èq²³rp¹Ü,Y¼Œüü"lV+«©9{šÄÄä.—›ì¬\*&DE!>>‘’Ⲩ)…óæ,Àãñ’’’‚‚p$rUvåBã¼EÆpˆŸhþ~„j@-ÑIþUÙ^ "šÆácu¬Ûtˆu›ö3yR!¥Eiܾp S&fàu[ˆhú¨ÉŽrˆÕ‚>úOmÁž;ƒí¼iΨEÄ ·‰N蛚éëëÒJ¹ G"  IÊ)ŠÑh"33“ÉÀöÛØòî>ó©/í70V‡m5Mç7_ãä©c<ñø§ˆ‹óøžÞZZš‰K >>MÓhmkÃåtaµXåúè‡D$!ŽÜÀQŸµ«è§®_´²o4™9}Õ“¦ (*‹!¦TO# b0¸sé] “EM †!ß©… ÑWS(ŠÖ7c.‹…¯~ùÏP”¨OÞç?ûÕ˜oL äÀÁ½Ømv–ܾœ„„DæÌžÏôé³0›Ì±…ƒp8ªà¾GÑÑ£¿#¦TO§rÂ$ŒFŠ¢ ™`e°|Y4BšÕbå¶…K˜?÷6¬V+ªjàöEwŽÊ“•™3vž&M#Ö® V"‘H®nzD×zy,Š­k¬X¾â| ¦M:ä 9€ANž>ŽÙdfù²˜M4-j+¼pÁmgö¬Y£ÂàNš8‘¡ÈŽL¬¬Î'Ó²X¬L©žÃð9¬9[˼y·±`Þ"æÍ™r³³Ñ‰—›“¦ e çWŸUÕÀÔ)Óbç&==Š å±sìÚPfë«2A'ØYO¸¿ KR‘@D ˆ tÑ{x%«ìŽXÅø_ƈ >úEçˆÚÚ;X¹¦ƒÕë üþÅ-Q#Ñõ¨¯Ñ…~9&Sô»‘>IK4QŸŒF•U•âq{b‚Ñhóc³YGµíB§ácGù# ù? —¹0bÚxB K$‰$ÊM/€ sádí"ÿë §L&+_øì×@€Ñ`5±ÏÄ/V^;ïX‹aéi™üÙŸü Õ€¦‰‹šu¹lè—Êûé/ár¹‡&=Ñœ§Ïœâç¿zš¾Þ*+«éííælm ŠL®žFcSímtww‘•™Ãó/ü–»WÜO(¤§·›ÿûÉ3eÊ ëÉÏ+äÎ¥+Pؽg'Û¶oá¶K(((¤»»—UkÞÄçó ‘H®wÞ‹OÔ…åÆã[4¼Ëépà¼@ù~ü»Þkû%‰Drenƶí¿ôеÀd2]¶Ž?Ö i¸Îh˜[óU×;¬ÙO¢ÁËù\É/A„ vc¶yÑ‚Å@°«t“7kz%zØÑ™D¤ëM'ÖQ.ð¹‡#¼üúFfLHnNš¦!„ Ö.â7ƒÅBGWÚÆ0Ù9:m„M˜®£‡èZa0áÈNû柢‡\ªª˜MfTÕ ª“ÙŒÍjÅ`0`P X¬ÖócD4Äêá#ùõožÁãöèé馣³ººst÷tqôØÜn7§OŸdÖŒ¹„‚AœNƒƒ˜ÍfŽŸ<Цi¤¤¤ÑÎK¶ýý˜ÍfŽ;„Ëå"..={wâv»éëﻪ¤kÉ­€$‰äÆá–@"‘ýý}‚ì6;ÇŽ¡¥µ™;ï¸k(Ë­F__/ÚÀXêô@ÀOÿ@?è:v»‹ÅÂ¥®ÆI¹¯¯ÁÁ4]Çn³ãp8Ç훡i»÷ìÀh4‘•ƒÁ`ÀápÒÛÛ‹¢(ØíŽXÿŽ;„ßç£b¤‹B”†Ãazûz°Zl—0“ÐQí^¼ÕèÀ–==$âïC±¤– ˜ì œÝI ½!Åéܳ$U1–Û·™;-ž)Uéh ! ¯ßÏo~o‰5™L¸\n2ÒÓ™Z]Jqa6³¦æ’äÄåt•½g£B¢b´â,¹ £+gÉ" ®œ%‹PL¶ËFUÛCzZ&w­¸Ÿîî.’“™4q2Ë–Þ…ÕjÅíö b&R5ëóx¼dgå0¡¼’ääT&”OäÐáØí¡0ñqQœÚÚ|>.—›üü"º»»b6æÉÉ©ØíÎÖžÁírÇî™Âü"ÎÑÙÕ‰ÙlÁd2‘ž–IÍÙÓôõõ‰hÒäCrÍ¢(R‰¢È”‰Dr)n D×uNœ8ÊÚõ«‰D•räÈAvïÝÉÒ%+PUA}C¯¼ú<š®óÀ}’ž–>êeÚ×ßÇÖm›8vì0‹•ÉÕÓ™4±z”â0B@k[+==Ýädç^”£a¸MQÁ ÂÊU¯³oÿ’“©®žÊŒé³£+ñcÔ{¡Æ¦½½g~þ̳uëW‘˜˜Äƒ÷?Ê /þ—ÛÍŠe÷Å„ãDzk÷vâââÉÏ+UWÍÙÓ¼³v%ÅÅeÌ›sÛ˜ýRT΢ùè‘0Â`LÞL@ÅÕ%ä"„ÊàÉõ(J4y¡¢ŽÎVЍŠÀ  "ˆ¡zÑr‹•ì¬, òYrÛd óÓ¨*Ãn“QÁàÐ\ˆhÎ ³ ϤûŠŠÑý¬º¡^úÚuÛùècÇápb6›ñx<|äÑ“ˆÉ·ûï}$­gè:jTVVc·;˜\= ›ÍFsK3I‰Éäç:=½=¤¦¤ÑÝÓÍóø- u•rçwø±Z¬L›: ›Í†Éd¦­­…ääÔXÄ«üü"Bá½½½L(¯ÄétQ\TÆÙÚ3ÄÅÅ£ªŠœìI®="jÆxú̼Þ4é˜CQšššpçJ)D"‘H.ä¦@¢½Ýüä§ÿƒËéfù²{±Ùì<´3gNñ³_ü˜ªIS8tx?Ûwl%!!‘ÕkÞÄårSR\NYi9¡P˜-[ÖóÒ«`áüÅäçát:9|äG&?¯ø¸V¿óŠPÈÍ+àä©c¼üòó|çÛÿNB|";vmÃb±0kƶlÝDwW'Ó§Ï¢ ¿˜}ûvS{î,óæ.¤©¹‘?õâãIII¥½½ ¯7ŽŠŠIìÝ·‹Ú³5D´Ü÷(©©I9zÝ{vðÄãŸâù~Kœ7ž©Sf²vÃjÒÓ2p»<465H|\<õ çØ°ñöïßCqQ)eehšÆÎ[ñ¸½:´Ÿª‰Sðz½cgôU„bŠmÇþBÎ2´ôwa#í¶G¨ÒuLF#ÝwK—ÜÉÜy$ÅÛHJ0cPu„ˆ–ά>2·›òHÃþ$Cšq†`¬i€ÙlaCõDs§Ì™=?¶=œ¹yx{¸ÙY9dgå †2r›Ž]¨¹ª9{šiSg2}Ú,æÍ½Œô!í !ÂL&&ªÓf³RZR)|H® 4M§´(›½‡ÏqpÇ%M(oE„¤%«L(+”ã"‘H$pK ýý}>r/|îkLŸ6U·W½Ž¦i¬Zý&gjNaµØ0›Í$Ä'RSsÀÓ颼¬œˆáä©ã ô÷1mÚL ò èêêæ?ÿû_Ùüîª&Maú´Ù<óóÿ£¤¸Œõ›Þ!#=‹ºúZðâ+ϱný*t]Ç`0ðÚë/’’’ÆÌ™sè份£#G±k÷vÙÏC|”½ûw±ÿÀ^’“R¸ïÞ‡ùÙÏŒÁ`àð‘Ìž5ôô$úúûðù}ØmvΜ9É«¯½À¹ºZÒÓ2‡Ãì?°‡Ô”4fΘC8¦±©'Ža³Û)+«@×5:»:XtÛRV­~ƒ`0xÑ jA‚u0Xìã÷`ëiô¸«s–6™Tp2B( !´˜À1&ºF°£íܾq'"´÷·sáäÿB¡áJÛî:ÙY¹¤§e ª • Bw]– ëŒÎaäjꇦCDg™Ð?X„Cf€×ÏdVÓt&OÌ ²ìƒËOr##D&£rùç˜D"‘Ü‚Üôˆ®ƒÍn'?¯÷‘›S€Õj%‰“KQQ çêj™;{ÇN¡£³¼ÜBÂáNG4Ÿ„ª¨dgå²oÿöíÝM_?¡P¦–&4MÃnw‰„±YmL®žÆëo¼LfF.—·ÇKss#ƒƒƒ”—aJ<¸háJŠK …ÂèºNvVw,YNOo7õ ç˜3kkÖ¾M8Âëõâó ÒÖÞJIqáp8–˜/7'ô´LêêjÑ4¬¬\îX²‚=ûv¡k:]˜Íf¦LžNwO7.§‹¢Âššp:\¡àrº9|øè‡—ÔÄ©=Ìq¯Ãb±r¥ ®å~¦—§ù)Œÿåk4œÏ p¹ ª(T•¥óx° ¾f\¶Öº®sÄÔ€Î{÷¸ð˜C|C9š>¶ƒ>døÁ“Àdkx+Å¥Ғ⸞´ çÇ@"‘H$’ñqÓ  fÏšOyY% »Í¢(CAŒF#áP¯7ޝåÏÑup8L®šŠÝî@Ó¢“é¤Äd¼ÿ1z{{pºÜ(B0Þ¢è¶ÃÉ„òJlv3§ÏÁát2{ö|l6V‹•Ê “…B¸=^Š K°ÛíD" ª >òè`0˜X²xsfÍ'..!a) —@Iq«Ö¼EWw'FcÔ÷ÂjµñäãŸFÓ4æÎY€Á`Äl¶ñ™O}i(Ûy¿ß‡ÅlÅd6£(³ÉBff66ÛysªŠ “HOÏÄaw\"ü°ÀdR1™ÔqÏ6ôx’¤(:Š"ŒsõU€¢ˆ‹|O::ÚÙ»--M8.fΜCJrÊEÝTUع{¿ùíϸû®Ùµ{õ­oãv»bÎ㺮³~Ãö؃Çåaʔ锕N¸(!šÐÐXÇ~ø=ª&Mf÷žTVTñÉvTÎ! «»‹¿ú›oòÿþúŸ˜9cƨ<4CùÏûÄ š¦ÑÖÖjPyså+¼ôÊsüêç ÎwQN! ¹¥™5kÞâž»DQTöíßEsK“&Nr¬¿5QQ˜™0“y©sÑÇ\…4 6q¦÷ U UØ ¶‹üFnÞ‡·G .c ÷Bú}4µ7Ê™¾D"‘Hn n ¢fEIII—4eÑuHJJŽm_˜õVÃáˆe½ÞïpØcÛNgÔdË5ôétØcÓ´´´QÇoƒ ÎÛçr¹F­r§$§ŒÊó1ÞB¼/éi±\.—뢾$$$Ķ/ì³®CòP_GfNMI½ m£j­ô^oS q·ç‚Ž  ²jÍ›lÞ²žÉ“§c 9~âXô[]§««o\êìššŽÃ餮®–l6k×­ÂðÓ××Ë™šÓìØ±ÂÂÐÝÓMÅ„‰±hgƒƒ‡÷³pẺ:xwÛfòó ¯˜¹úV`X<¸”†£y°™]m»(ó–a3ØÐÐP…Jw°›¾P)Ö аF*ŽNX £_ØG»¿T[*FÅxÉFœ}½ý%‰D"¹:nˆ ÃŒ51¿šã/<ærõe>>\þrmù½®CbB2‹n»cTÙ+eõOÖßñôÿ¦CÀ o€õÖ`6›¹÷®1 <÷‡ßpàÀ^ F]]ج6vìÚÆC÷?Mš¨(ÔÕײyË: ò ùÝs¿bêäéäääãp8Ñ´Á`·ÛCBb¿îW;v„ysr¶¶†¦¦“q: ÐÞÞÆž};)+­`ßþÝôôt“•™Ã“O|š¸8o´©BÐ××Ë÷¾ÿ]Ž8œYóB°výj\.ùE–²ú·èïë#99…ÎÎÁ9Ùy~ž~æGx½qTWMåÈÑCüË?}›Í†®ƒ×ã%5% ]Ó¨««¥¹¹‘Üœ¼[ ÂloÝÎî¶Ý"ÂìïØO‹¯…ò¸r¶·ng[Ë6>Vô1T¡r¢çU U”yÊØÑ¶ƒcÝÇ(ñ”Ðéïä5`Yæ2îʾ «áJBßõåˆ.‘H$ÉÕrË ÃöðÓ~¿?@$¢ZáNu©Pöb(ÙDŠ‘“³H$L Àb±^Ò‡  "Q³¯p˜`(ˆÅlÆhŒ®Bë:ƒ!4MÃh4¹â:òü’÷A5OgWMõ¸ÝRRÒXùök¨ª%·/c㦵´¶¶PQ1‰ýû÷€®300@[{gkÏPWw–/|ö«C¡‹54]')1™Oò‹óÝþ[âã˜4q2«Ö¼ÅÀ@?))i¤¦¤—@uÕT¶ï|EQˆD"lܼŽ/~þëÄÅÅÇÚ)„À78ÈÎÝÛ0 àP·ÛÉÇÐuîî.¬+ÝÝ]!ˆOÀíöàvyHIIeç®íܶp ùy…£üSÂá0>ŸÁL&3qÞxjΞÆãŽjÛ$ ¢š­;P„‚*Têêyñì‹"ÃƒØ v, xLž9þ ázƒ½¤ZSYÛ¸–©‰SÉsæ¡ à5{©Œ¯¼¤D ðù|lßÓBg_è.꺎Ñh¡¬(‘”øÐµ]‰D"‘Üä܈ÑlãGŽ¢««ƒ¬¬vìÜÆ‘£ù×ïþgtrçóqàà^"‘“&NŽ­ £iuõç8}úBQ(Ì/"==EQPعkOýô‡üÃßÿi©©i'úúûøÅ/Ÿ¢ºj*óæÎeã¦<ÿÂï¸ç®¢anµ9Ùy455°wÿnî¿ça²³sFÕá÷ûØ`.§›ââ2™ û}¢ë`·;øì§¿Ì¶í[Xµæ-âãâ)È/FQâââ™5c.éi8N6l|‡ì¬\æÌžOA~!³fÌeö¬ùôôt³jõ›ÄÇ'™‘Myi©)iL(¯Ànw0iâdB¡e¥øÜg¾Ì¶íïârºÈÈÈbÎìdgç2Þ"E!9)…üû§¹¥‘††:Š ‹°X¬,˜¿˜ÂÂb¾øùo°mûf’p:]ÄyãˆO¤§§›ÉÕSÑ4›ÖQTXÌ·sî\-f‹…Å‹–2¡¬»ÝªªD"áØ8( ´¶µÐÕÝÉ®ÝÛX0ÿvÚ;Úðù}äçߺþW ˆè:8NLЉ8sª¢’åÈÂatp¤ë=ÁâÌq8MN²œY”èc·¦¯†t[:Ž Ìª™³}gÉuæb¸ÄcÙd2’—GE±ûœWB k¬ßÖ:© ^©ù’\’ë1(…̳"‘ÜxÜôˆQmÇ/~õ4;vneÞÜ… ú|477rüÄQ:;;q¹ÜlÜ´Ž_þúé˜S÷äê© FL&š®qäè!~þËŸàr¹ÉÉÎCQ¬C~"»“´Ôt–ßyf“™®®n4-ª]‰jD`ý†5¬Û°šÅ‹î`Ф¾¡Ž“'±~ã;ìØù.·—Ëͽ÷<ÄÑc‡Ø’˜Œ×‡ÑhÂb± Ø·ï¬[…ÉhÄë#--MjBÞ'Š¢ŸW@vV.¡P4oÉÆMk …B,¾m)qqñÄÅÅ3¡¼’HDÃh40wÎEeñ¢¥F¾ô…o …0 eœàþGÑÑ1¨Ñìðyìã *w¯¸Ÿ;ï¸ ]×QU•»–߇ª*L™< M‹F¡2 „BATÕ€¦Çãå¿ý *+&±bÙ=Ñ(cŠ:ʉ¹ Ÿ-[7’Èüy‹x莃î¥iB4MÃ<Ô^Mƒô´ þáïþ!Ìf÷ß÷H40‚ñ¦D¼7tH³¥q_Î}´ú[‰7Ç“ïÊÇatp®ÿiö4Rm©hº†×ìåñÂÇ9Ñs‚$kn“›|„Ý'ÐÑI²&qoν †/s:U5o"=ÅúGÍ+!„ Ô0tÀµYÉuL$¢ÑÛ7Hä:Êxo0p9­rAN"¹Á¸égB@Gg;+ß~xŒ<ò$MØwêô ¾òõO³`þb:;;0™Ídfd±vÝ*^|ùY–.YÁK—ô‡Ù¶c Mõ̘>'jÊ…àíUopøðRSÓ)-)çÍ•¯Ž„ùù/ŸÂh0RZ:¿úÖßãv;8th?}}}xÑLÌÑö+· ÇøÏðÆy½ÄÇyѵñ¿b?ÌËq©ƒ‘ü¼üض®_ÝAÞR—@ p%mã…Aª.œÍëã('Æ®Wq]š¾Hn„€¥e³xâ‰/2ã¼V„Caþì[ŸÂï ƒ3H$77½¢ëр˗ÝÚµ+éìl'-5t‡ÝÇí¡½½ÉUÓ8tøçêÏ’‘‘Åo½ÂÒ%+(,(Ä`00}Ú,Ξ=ÃÞ½»B  ìÞ³ƒºúZÜnOt0Õ¨pcµXq¹Ü± ƒ¦Áí·ÝÉáÃ8Ww›ÕÎþƒ{ ƒC«èÑ|ªÁ@}CN»“òÒ lÚ´ŽÌÌl&”OòróY³ömLFññ rÂø1V´³i’÷Ç%¢GXݸŠúÁ:´q&¼ü ð…|ÕŽPEE,Œ¯Dò¡#¢]«E%gþ¥°ªÆè$ÉÅ-!€X­>þäg™sú}}}$'%3qb5K—¬Àf·ã¤  ˜””T4M#==“‰•U¤¦¦£ëQÕsEÅ$âã¨o¨ãž»$==“þ¾^šZš0›Íd¦g1ib5ÉÉ)TWMÅápððƒÅíö i››Ç׿ú-lVY™9ÔןÃb±ÄKV £“–šŽÙlaÖ̹$&&“‘‘…ÍjGU4 ª&MÁj±aw8HJJ‘“M‰äF¨:®õÄ—©h‘k÷ƒÓVÛီƒ"àä»`D‡p$L0$É ©ï“h’²àM!È !ðûûyîù_‘œ”(ï ÉeBaßþ?˜/£ìH®{„tuõ³ië!ö:Ë‹¯W0{Z.Õ“J˜21‡Í„¢ª¨êК’EU ¶Gëk–Y… GÃ>+´@?ý§· ­Øóf¢(FEJä‰äÃM'€(ªJSs/¿ò‡S†¿èííô¡ü#׺Aï]‡>8¶ö^„è»ÖÍ‘ÜL¯,¡ 7U&8“\èQá!ê<>úžv(×uÞÞ>V¯}—5ë¶祢<éS§RT˜Ç‚™¤$DÊC½-èþ>|ª‘Á³;Q­nìù³¨ÙŽ¿éÂhÁàJÆšV|­{/‘Hn"n*D×uÒ’¿!׺I7ºfbÞ´åX̦Yþ ;3‘œ¬¤kÝ É D4óø~çKntt@UÚ:ÃlÜÞvÑ=©TŽž½°¢ë:í¬ßÔÍ–mñz½Ìž9»îœ Z€î‚¦‰øz<·Õ‡P „{›0º’ˆøzn:S\‰Drm¹É°[ufT¹÷µnÎM†¸)&aѕ쿉äÖBÓtòs3¸cñÚ»98ª•¾Ð˜Ç꺆®k˜ŒFZÛºhmëÃdÐ …ôHе0æä"„j$Ôׂѓ¯~?ÂhAµºåcS"‘üQ¹©an‚yòuˆT‰D"¹VèºNr¢‡ï.s1ÈhPñ÷ŸµÏ`0bµZ)*̧¤¨€…s«()L¤ ×KssëiLÁ`¶£˜ìha?BQA×±fL$ØU‡jv`r§ÉW€D"ù£rS ‰D"‘ÜŒ(Q'‹ö«ª@ ( ©©i¤¥¦1gæ$*Ê2¨(Í +Í‚ÍjÄhˆ ˆ­­t GþlL®‹ÍR…ÁDüôÇA((&Ûµî¶D"¹ÉˆD"‘H$78š¦“ž–ÂC÷ßÍÜY™XžJvF‰Þá¼:ºA×A!¿£ÅdÓr@±8F¼Ö=¼4ŠÑÐêúø©£KK ‰ä#‰D"‘Hnp"ê‰Ùüà»™X,FÌF-*pŒ9Ù„»<·Ÿ°3þʶËBÅßt ݾÖ]E8¬qøD¾ möägIOKG×AQàôé“üýwþ’/~þë>|€/éOÈÊÌáµ+q:äåå¢iªªÐÓÓÍ/ý ÅE%•Å]×/¹hì%Ðv£; ƒ=ž`ûŒÞ BÝ há½‡ßÆ‘?]¾E *ʘc é2ù¨DòA#É-G$&1!‰ùsoÃår]7šƒº»»¨=uòZ7E"‘H®ˆP_Ž7ßzE(ô÷õñÚë/!„ ´´¯ÇKfF{÷ïA‹Dðû}ìÙ»“ÕkÞbÒ¤),½ÃIVV.Á`gŸÿ=Fƒ»ÝËå&ðÓßßÏþ{@Ì&3½}=”—VàñxGµC×4z¿M°½ÕæÁ=ñ:¶þ‚ø9Ÿ¤cë/°eVÑwb=ªÕ…9±ˆÞ>ލÇá0^$h!ˆóºIŒwp)È%’›)€Hn9qjbïAùÒ“H$7:ç' ðÊk !>6mZKwOw.½›úç¿åÁÃ`0œœ‚Ñh¤¸¨—ÓÅ›+_¥§·›—^yž‡îŒ³µgˆO$ £TÚÚ[YùöëèèL(«¤r¤‹¡…é?ý.ŽÜô_‹£hÁîü-'ñ·œÀ;ålqOXF¨·…–š6Öo©Åj1Œz ®ÉGzz.Ÿ{b&£|K$R‘HÞ'ãqº”H$’›]×1™Í,]²‚̬Ö®[Ŷm›±X¬ôœ;ËÞ}»éëëEÓ4@àt¸°X¬œ={†Üœ|‚Á¡Pˆ€ßOsKƒý¤¥¦`4))*ãÕ×^¤µµ™Ç~§Óyq#Îâ ÔìÀ–3 £3 {ÎTÎlCµy1ØãP­:w=‹5cùy|öc¸]¦Q!›v¶qütº¦#Wƒ$’)€H$—@ˆ¨í2D… íVzzz0šLX-ÖkÝd‰D"ùÐÐu˜XYÅg>õE¦MAFF:è:9ÙyäqäèAÚÛ[ùòÿ„)“§“”˜ÌÌsÈÊÊ¡³³ƒ®î.>ó©/¡( Ï>ÿk‘0÷Üõ +ª8~â ‰X¬V,3…Å””L@ˆ‹Cç EÁSy7΢…(&+B5’0ç3ha?b(“{â‚/¢GBø[OA`¸‚ WFlKÙC"ù@‘ˆDr :;;©«?踜nÒÒÒ1›Í£Ê„Ãþ⯿ÎìYóùø“'!–øk,ûa©%‘H$7 ºÊ+©˜P‰¦A8 ÕUS˜\=]‡ªIU£ÊΛ;]‡I«bω•;~œò² >òÈ“,˜?ŸpJJJ‰D4öìÝE\\K—¬Àãö\ò* Õæ:¿m4¡Ïç7QÌ6„¢]N{$’ëùK”Üð¨Š+?®²"QEè—-¯(°vý*¾÷ýï2cúúúzXtÛR¼ÿ1CΑV««ÕFCC]]´·wÓ?ÐÅbÁåt ˆD"˜L&}ƒØ¬6,ãÐ’(B`P•qeõDû­išn$ɸ€¢ˆ¨Faå ª‚:F8Ü 3­Ü¾ð™4Öþpòr ùõÏ_Àd2 /#„ÂÄÊjÊË*1™LcFÀÒµîT‹{y@üÝ-D”Àµ|‰D"Éõ‰¢ˆ¡Ùå_‘ˆÆ‘ãõôô "Æ¡3W8|¢‡Ä+–…BT÷ßû0GŽâù~KÕ¤)¼ðÒï9vì0II)<þØ'G"üüWO±oßnLf÷Ýýmí­œú1æÌ^pù 8×ÐÎæíÇÆ)PèF òÒq;¯œÍX"‘ܼÁ‰’~Åç‡/ q¦¶•ÞÞ^Æco¤*‚Gj ×Ë^-Š¢`·ÛÇl³Á`À`¸ÄTE”P/Þ…Óí¾²ŠY€ 5¹ÕPôGï‡D"?R‘\w‚:»ú0$Ä9†²æ^übB00èçoþ¿·9bZ€Ù•xÅ‚–~–øQÆi㫪*Fc4\ãþ{xñ¥g©˜0‰#G±ú·¢±ë•⢺»:Ù´e=o¼õ wßõïnÛLýºz232ÉÍÍ¿b`¼~ÔÎú’ÆÕ6-ÄÚ~€ÿøœùÓ“eìz‰äEƒƒA:»ˆó:qØŒD´±ŸŠ"hhäž©á` ƒíÊ“w!ú›{øüå Oû^]º§…¿ýÚrŠ 3Ð"ã¨D€ª0™T©5–H®!R‘\W¨Šàб¾ñ×OávÙùêg—1uRn— E‰zièƒ{õcØ’s£øK9`BNmG»¸’Ñ–"¢™É׬}›£Ç±hárròÈÎÎ%7'%‹—‘Ëæw7 é¯¿ù2mm­ F|>y9ùdgf³ùÝ<úðã$'¥Žã…§cÊœ‚sög/ݼ]‹ý°ççh„¯Ø‰Dró¢TÖo9ÄŸýÝoxìÁ%âÅ1¼oØÙ°£³“·VmeÕ;;øÕ³ëxüáÛ¹mn…yd¦»G•®X1ÙÑ#!jv£kaLÞ Œžô«jŸ®C~^…±m]‹6urõ¦LžÛ?òsÒĉ±:Nœ<‰Ñhâž»$9)ùª^Z(H õ$haÌÉED:QLv´àŽZz¾Ž=w:¶¬)¨"jC­ªÊ}0%’‹ j %z)ŠœÌÝ€(ª2¤%†p8ÌÁÃÇ9xø8Ͼ´‰©Õøô (ÈM¢¬8§Ý}vŠÁ„0Z v5h¯A1Z0'`°¹0ºR¬Ýu­»&‘HnB¤"¹&„BaNiÂj1_‘#*€œ9ÛF(U>‰ÐÜÒÆ÷þçwüàÇF&W•ðÀÝs©(I``À"*Ôhþ>:wþ–„ÙŸ¤yÕ¿cM)ÁàH qá—¯ºº‘ÈÅûµËLòG–ÏË-àÏÿôÿ],$]¡( Öî¦çÀ« ΢„z›±$ào>æï'Ü×F¤¿="Ss¶…ƒÎAi„%yO„Â:u Íôö9x$ˆ.賈ªr®¾ý¢ý@€-Ûö°eÛ’“Xºx*÷-ŸŽÑð™hÜb0`°yé=²ƒ3Gá\¼“ïAµ:ªáñùH$·6R‘|訊B^N +ßÙËÚG}'„ ¹m¾¾¾1BÁnwÐÞéçõ·÷³c'Ô7q ½!u]-šŒÃ`óâ*¿ƒþS[.ër¾îóµºQÁ™ÚÖ1¿Óu0›Íöj ·o#h>êµ*„-t]Ó°åLE1˜õ4îï$Ô׎  ˜ÌWÓ‰D"¹,R‘|è *_ýì2´1"´¨ª`óŽ&k¤ £ÑˆÃá$3#ƒi“Ë™XY”‰©¤&¹0ˆ~>ñ7¯Ó0T—b²á(šÁ™ˆ³x>Fw*¶ÌIWŒ2©iý‚Œ#v»ã¢Ðë6¬! ±è¶;0ÆA% 208€ÙdÂjµ‰„ñù|˜ÍfLc¼Ôu]Ö3-Ø á(˜‹òÑrŠÕ…)>„Š¿ùŠÕƒËéâ+=Ä‚i ÒtFrõ5^\YOœÛÄóSä}tb4¨<÷Ê»¬ßuB`³Ùq¹ÜTM,£¢¬ÙÓKÉËv’šd§®¾ƒ¿{ÞÇÁH>«ÅhE@Q‡ê@ ùPÍv"¾^sâµî¢D"¹‰ˆäšÕ\,¨ª@UTEÅép’‘‘Nqa>·ß6…Âü ªÊÝØÌ ª:B@w÷hí‚jqàüB¨«Ó£ŸÞL.'ýý}üü—?¡±©ôôL&WOgrÕÌf º®£(‚ß?ûK˜;g`FÓ†!Ð4mÄ6@tßþ{ؽw'i©é,˜·ˆºúZvíÞNaA1S&ÏÀdº ‡®ct%᩺t¡A×1Åg¡0'€A‹„ 6ºú©ªÒv_òÞPÕ¨QÌ—HÞG7êP¢@£ÑDJr)ÉÉ,˜7ªŠ|&NH'+UÁ  „ÐP„†¢* kز§`v§0}®2äóæ*½WÉ¢¡gеî¡D"¹™ˆäºB×tRSâùØGïÁf53of>I v’ŒT }ÈË::A:/Tœ7F'èB ªŒøzÌ÷¨ßïcÃÆµx½qX,V~ù«§0›Lø|ƒtt´S]5•P8êo±s×vZZ›1$$$âø©ž4•m;¶PXP̹sg)/« 55•P(©SÇñû©©9Í„²J9H àÐá–˜˜4æ„o¸C@¨¦›jtÖ(½Î% Q-nA~6_ûâǘ6¹„²"/‰ñÜ}È|4úO×A…ÜÕŠŠ]œ7Cúª1V¿”?$É)€H®+4²ÓLüéf „À Bô¥©]bUV@8€ïôfôÎÓãÈ„«ào<„–6ÈXZ‘´Ôtrsòغuë6¬fóæ 457pÿ}…@ú9zô ëÖ¯¦¸¸ ³ÙB[[+[ÞÝÀ§>ñEŽŸ8BfF6©©©E`±Xikk%99EUðùÉË-àÄÉc‹üABí§8ºfÜY}M5²®õ¥“H$׈¦3¡$…Ò¢”¨6Dhèh—|ŒEAèdðÄBޏ+'"T|uÑ=ÒD"‘¼¤"¹îB!x\¦ ®c6›¹oq5u=gQ ã¨[Pç«ÇcLsE¯½£ ‹ÕJzz&&£‰žÞn22²ð¸½±2'Ne÷ž457’—_HNv¯¿ù2S'O';;‡C‡÷a4FWuMÇç÷‘˜ˆ¦ëD"Ì& õ u¨ŠŠÑdÕGA™­‰‰»Ç5Vº¦aMw’™w­/›D"¹ÆÁгSC»Ì³S×u¼'+¦'QÙvE½òT@Am &¥ìZwS"‘ÜHDrâf³'¨¸(Ëï¥PرÏÎîÃú¨cÌf ӦΤ©¹£ÑÄ“ŠÌŒlì'm­-¤¦¤Q]5 M‹HzF ñ‰L<»ÍÎÚõ«˜5sv›ƒÁÁA"‘0ªª’“Kgg;))iÄÅ%PRRÆŽ[)**Åíò\ÙæLtó§Ofß_EŒ{ $É­®C¼_‘2î熪*¼»ÃÇ‘é#$‘HÞ?R‘Üð( \1ÌÕê³¶à¼ï„®ƒÃáäÿ\,:•×ãÅh4’˜HoOf³…™3悳É̼¹·¡i:&£‘gÿðk–.YAqQ)&“‰î{‡Ã‰¦E{«&M!7'«Õ†Ë妴¤œô´Ll6û˜Q°„"0¨ ÚU½ååŒ@"‘\ úÕ=;Õ±‡H$É{A ’[ŠKMÓUU%9)9æ1<÷÷¸=x=ž‹Vü<7M¨xײûñÆÅáv»ÑuHH×f³a³Ù¢ç×£Ú–¤$KlûjÚ)‘H$‰Dr£#‰dˆ‘‚Çåö ïPU…£öUÇ¥Ž—H$’=ê?¢iѨ[×MÓ¤é©Drƒ"‰ä}"߉äV@UUNž:Áëo¼Šv„„#tuw¡*êû¯L"‘|¨HDrk"¢1ïÅudÒ¬(Œ×["‘H>T4M'3#…ª ÿ׃¡¨®Ã½Ë¦‘à•š‰äC ’[]×éëï§±±‰¾¾ôëàE Qs®ŽŽN4íúhD"‘ £ë:ɉ»§ðºÒúŠ¡ÔíR‘Hn,¤"¹µÐ!ÞkAÕŽðêËßÃ`¸Ž~BÐÕÕÉ´ª´k݉D"¹$דæøzÐÄH$’«ç:š}I$<𮓗e盟Ÿs]8Q^ˆåÿgï¾ãä*ïCÿž3½—ÙÞ{—V]BBD7`cŒkÜÒß›ø&÷&¶ãÜÄé¹ù¥ØŽ»mÀl0 Bê½K+­´ÚÞûNŸ9ç÷ÇÙ­’„zÞ/íÌœóœçœ™Ý}¾ç)_E‘wó$I’$Izß’ˆtKB`0ȉ‹’$I’$Iï6åFW@’$I’$I’¤[‡ @$I’$I’$Iz×ÜØ!Xr˜»$IÒû†¸¹f'KÒB_ ý]kŸhïæÁ$é¦q£aÔd’ؘ !äÏž$IÒ{œ¾¼u„xB^Ž™OSzïÑB`40®óÙT Ѿ¥ehlD°ûFŸ½$½›nTFð bá2eÏO‰ŽBóÉ~£¯‡$IÒ­E€’R¡|„G9¸M»²›AB€2Å8Ö†µu-öI7ašIºñŒ!FÛ}G!>ˆà¯C°¤[Ì»€˜þÿÀa#ý=ѵÿ.ѽ?˜oô‘$Iº¥P4³PÃsª¡aU ý*t¥£§„1HöcçÐɈâE•£j%颒h "x Á¿!8‚¦·$éVqCz@¦Èÿ@+‚/#ø Ønô‘$Iº•( j>û€šùš§Ã øÛä.Ñn0 íìÀ¿þ$_XÕÊwKæÓ¯&å˜ZIºˆ‚nô^„éÞèêHÒ»Oþ$Iº…ýå_þ€SÑÔ_'€/|õë_}'Ee_þ èºÑç%I’$ݼnlI’$é†R¸¦“5äM-I’$é’d&tI’$I’$I’Þ52‘$I’$I’$é]#I’$éZ‘k_I’$I—$ç€H’$Ý´©˜AAÑÆL½%ë²þëÓs¾‰ãJÊ Z¸WûSÔç˜O9ËÕRr>ˆ$IÒ; !p8ÄwáFWéÚ“ˆ$IÒ-jî· èø\~\ò¹ó†>\:jé*²M«a¼¢Þq!@ h8 ¸2MK,Ff¸Ñg'I’ô^¤‘J%‰Trø±üÓÜo1ð~ Bä*I’¤[ÔÜo&¨7¥,OÏ|¬¶¸¸„Ü;,XM¶+L¥ÀXÿ?ûÆ+<ö?ï&ëE“™Ð%I’®˜†Æhx˜}§·²ûÔf5žŒÿBðe ö~ Bdˆ$IÒ-hî·PÐø-«ÅVë²zÉòäP›Wˆv…©Ð… ©£¸¬^ 3ÊÈ ®¸ I’$iŠÔå5a6Z” G_ý8ð `Ó®Öµ$I’¤[—KÕXPà/%+™‹ª©¨ZŠ+USÑЦÊPß÷ˆ „\ÇåFSUÙÕ&½i`1ÛXPv;;O¾åÇBMBÈD’$Iz°AŸ#³ÑrÅÇ­,<§ãTñx 9šùݧ¡át8É/ËÁd•ޤ÷MÓpÛ½ØÌvB±PÞûí·Œ @$I’nmB( ²}ù„tîäÍŸ¦¢¢“Ñt£«tˉ'âìëiæžßv‘YáESeô,½ßh¡ „Ð×ÅzŸýŠ–ˆ$IÒ­N¶Ý®†–ÔWÎáÉ} ›Õ*/á»HáH„Ÿþüû¨)yå%é½H ’$I’ôhšF*ÉԮɭEH¥´©!ƒï³ÛÂ’t‹ˆ$I’$I’t!gR•Jד@¼ïî8— @$I’$é&"( ¨*×ma}/½ü+9†2µð—\|ê}L@"”bÏšãœ:~£œãt]išFJÄYýñÛÈÈòÝ2ˆ @$I’$éS£‚4íìï/WgW'==]ÔT×áp8/ëXWr¯ÖÖV4 ° EQ˜ºIŽ(Bÿ÷i?½o M2x4¼Â{¨©®“Ë_GB(üä¹o1:4N Û/I’$I’.Ÿ022¿üÛßqçª{XvÛ ~ô“ïár¹yäBQôÆ]JÕ·5(gìªz¦Wbý†×ùÉSßç_ÿù›ÔÕÖgzC ½ UƒþþA6¾µ§ÓÅ«¯½Hf0›’’2V,_I^n —?Ývœîñ0 ·¯‹¿ÿ§¿fÕÊ»ùìg¾~MUõ^E9óxú9“ ~ý›_ ¦4~ç‹ÄèØ$?y껌ŒŽà÷ù)È/bÙÒ;ú¹Š3ç¥(¤•iÓõR„>Æ`8DÍ ¦RrŽÍ a±Z(*.¢²ª\öxÙô€õ€IDAT]GB€ÏçãV[ D ’$I’t ápˆçžšü¼n[¼œ·6½IVV+n_Å›ë_GUU/\Jo_ÛvlÆh0RYQÍœ¦ytvu°uÛfÞ\ÿ“„B!ÞÚôÍÇÒØÐDVf6¿þÍs¤’IV­¼‡ññ1Nn!+˜Í¯_zž¯õïY÷æk âq{Åãñ2§iÑh”îîNJK+8ÕÚ‚šJEˆF£ìÙ»‡»¶ frÇíw²gïNÚ‡Åjcvc³gÍcßþÝìÞ³ƒÍ›ßbþ¼E€`rbœ ×ÑØØDvv.Ïüâ)Æ&Ƹså=ìß¿‡¡áAfÏšËÈè0{÷íB«Õ†Ùb!ÒP? ÇË‘£‡¸wõƒìÚ½»ÝÁèØ‡“h$‚Ñhdá‚%X,ÖýöÞ‚44õL*]Ó÷­F ’$I’tMi¼¹þuB¡IŽ;LvV¿xîç<û‹ŸbµX8ÑÒÌÜ9 £­­•5¯½Ä‡>ø8»vï`` Ÿh,Цilß±…m;6 Mòü ÏòÁG?Ê7þî«<ôÀ¹ëÎûh9ÙL}m#)UEUUÂáBL&3ñD‚ŽŽ6^]ó"ûöï¦iö\ÞX·†‚‚b::ÛXvÛ Œ#‡ïgã¦7)+)çÍ ¯31>FAACÃCœ>}’µo¼ÂýþŸòÍoÿ@&Éd’ôÊSB`4ÉÎÊaÉ¢¥¬ß°–ýû÷ÐÕÕÁ¶í›Àƒ{‰Å¢¬yí7<ñø§øõ‹¿¤¾~~ŸŸ~ý î\¹šW_û ·-Yί^ü5ÕõÄâ1Ö¯‡ÃÅÃ}Hfœ—¤÷!ùS-I’$ÝT„(ÊMü%oß&4ÍžÇ}œâ¢’©$'N#Ð4{…Å ôÓ|ü(š¦ÑÞÑÆáÃéìl§ª²†YsPAWwÝÝÌjœÃÒ¥·c41[¬<úèG´··ÑÐЄ@Çhk?Í#ø0óæ,àÀÁ½ M»™êª:Ê˫ػouµÔÕ6ÐÝÝÉ©S'XzÛ œ'-'sº­•Ó§Oátºhn>JëéSôöõ°bù**+«QÕ©1Qš†ª©Äb1šc` Ÿ@ È©S-Œ1{ö¼©sQ(,(æ Ÿû}2ƒYܾl%÷ßûNµ¶ ‡ÐÐèêêdbb§ÃIaA1ýý¤RIÊÊ+1›Í7ú#)]'éáyç|¯iêys!¦‡õ]¾ó÷ŸþÒ{´‹Î·¸UæaÜH²D’$Iºî¦ìÚe åèëflR nÒ?QBÐÑ5‰’²œ•†BÓÀd2S[SOee5E……ÔÔÔãóú™5kÅ€ÃáÄn³£if³“ÉDii9••5”””±wß.Æ'Æ)/«âöe«È fEq»<¸]nêkq»<4oÆëõ’•Ã)—›ysò‰}ššš*NŸîÄawF³ðû2ðûäåæc³ÙY01™Á,ŠŠJ(*,&‰°~ãZ¼^÷Ýó§Û[1 ˜Mf*+ª)/«dõ]÷óÆ›k˜œœ ®¦!‹…üÜŽ;ÌàP? ,áû¡££M[6`³Ú°Zmäå’H$°X,”—W’™™Ç㥶ºŽÙ³æ28ØÏÏŸþªªb2[èêêàî»îCM¥8zô •åUØl¶[r˜ÊûY2™d`°Mƒ` “p$ÄðбxŒM›×3{Ö\Ì_@,ãäÉŠŠŠqØÀ™ܦç+Í Nš7óËç~Ϋîeþ¼Äbq‡H$â  Šƒ‡öãr»Yºdiú³¥(°mûvžÿÕ³üïÿõ5œNǯ']ž›ô·»$I’ô¾ @7Ðstd×ø0xR Må8绢À Oíb[ï2lÁÂË‹XÞîà×eb§ Ö>ÎCù±³Òàiddø¯ÿv»U…ßÿÿ¢(Øívjkê‰F¢˜Ífìv;+n¿“x<†Á`Äáp¢(‚<ø!Rj ³ÉŒËåæ¶%ËN‡“%‹—ãtºèíë¡`j%ªóño=…Çí%‡ìì\þן~…p8„ªiX-VÂáñxœÇ>ø8sfÏÃb±òçÿëkXÌ@011†ÙlÁív3{ö.Lýš¦½mœ­(‚“»»Ø·¾L—žÌ/€H(Bï±n–ÌQ¯K0¢i`·;¨(¯bÝúר±c ïÇíöàõøX³æ%8uê……ÅX­6úû{ioo£§§‹ÿï?þ‰U+WsûòUüß¿ýKþ÷Ÿýûì¡££x"N}]#Šb˜J¦F£ “ÉDGÇiõu³8ÙrœÑ±Q¶mßL<#È!hš=—h$ÂK/¿Àé¶S<úðGdrÈD’$IºnÅèèlgמ]8t€×^,#¿0¥w-bÞuø*¬£vVÎe ]ÝØTd ! vB›.ìÚ4§„¦q±VßÌóž?¯¼‹äï¸Ø>—ÚîÜdz…ììœôko—/äB«ò\n=ÒyA.RîÌ}.÷ÚHTè;<ÉèÀ8…õÙØs4¡]0QPØ·ã ÿø½”¼Û@»ôºÆjŠHñ9í*߆¢*+ªÈÎÊá…Íjã±} »ÝNGW;F£‘ñ‰qzàƒX,~üÔ÷X±âNêjéìê §·›žž.Ú:Z‰Å¢tt´ÑÛ×ÃᣱZmÌ\÷9äᇣ­ío¼¹†ÖÖ“(BGoo7+n_EaA1ÿòoGmM=ÃÃC<ûËŸqçÊÕÔT×ÝØ÷ú}J ’$IÒ5#„HßuœzFŸ´=õ\8æÀƒ:t˜]Ûö0oÍ\jç—Ótg ų²°¹LéFìÕU´d #Ñž#D{Pp–/Åè \·%÷g6Þ/7 ¡¦©ŒŽŽ¡i^¯ïœëw~ù—Sæ…3ý¯Æèè(©TŸ/E93£>‡p»<†óö};Éd‚ÑÑQç{wFFFH$2‚ésŒÅ¢Äb1\.÷ÏûjÎ÷}K@<’äÅï­cÝ«Y²b·ß¿ˆ¼?® &7gó©T’¸9¼µz’0€ÑzþÏ‚¢ã¤¢C\ÏÁXšÙ³ærèðª*k™=k.Ñh„Ì`>š¦1™LÔ×ÏbÛ¶Mج6V,_EOO¯¾öMÓèîé!ðûü¸œ.‚Á¬ôçpl|”S­-D"a|^?ù…Äb1Ün7Á`&ùù…dee±ÛìTUÖ°ú®ûèçäÉÔÕ5Þèwý}G ’$IÒUâI޽ÞE0œ^EFAWK£c£gm¯ª*ýƒý¼úêÖ¾þ¥Ï”pïï¤iqC­ˆâ«oø¤"ã(F ‘î#ćÛÐÔ$&O&wàš7h§“8¸ó¡i°}ÇfÊË«(,(8ëxçö0D£Q~þ̈F£üöþ›Íšžø:œpzû¶¶Óôôv3Þ¢tàpnæõsËŸ~¬i$’ ~þÌéëëåKôeÜnOzûÍ›7pøÈA>òØ“ôöuÓß߇ߟAcÃ,L&óyç<}\E@goßüö¿ñÀýsÛ’¥¤Rg¶~òÓïÓÑÙÆ×þòØí6„€¶öVÞX÷>üá³zh}Nk n·‡â¢Ò³†§ÝÊ ª)û9ÞÒLk[+Ön"¿0y ›Xöà|òçúP¬çö^Ìèµo“\Eú<«™½ƒšT®[”>ƒÁ`àÎU÷PUYƒ×ë#/7ŸX<ÆüÞŸ`µZI$ø|þÏŸ}±±Qrrrù½ßù]Ý$“I>ôÈG©¨¨æËò&''LÂá0ÙÙ9hd³X¸` ““,^´ŒÜÜ<"á0Š¢°háR22X̾ò¿ÿ†ìì**ª(*,¡£³ FàF¿åïK2‘$I’®Š††Ýagå½+1#ý‘tÓE‚ÉÑÈTþˆó©ªŠÃí <e¨g„É(ñHêÚÜxÕ¦†ui*¶Ü:’“C¨ñðu¹Š­§Oñ¿ÿ*ßÿÎÏQ5•¯ÿßÿÃïüöã÷=ÀðÈ0.§ €ÑÑŒF#>ŸƒÁHGg{÷íÆ`0FCSUÜ/¡ÉI&&'p9]dgÙ¼e¯¬y‰ï~û)ÅL2™dxdˆT2…ÏçgbbœP8„ÕjÅãöE™˜Çh02:6Êö›©©®§åäq𥽣Šòj,3ãããü⹟‘••á#øá¾M}Ý,|>?>Ÿ~×8‰RSD#Q¢±†©qö«•ѱöÜKiI9U•µ¸\.Bá¡Ð$Œ 'Oàø‰£„Ã!FFGH&˜LvíÞ†Ûíáî»îÃn³ãpèsWzz»h>~„ÉÐ$+–¯¢¦ºþº¼w7‹Ë^bvºGqj‡D"NëéVN·fïžýl{k'MK(«.fö=åd8ÏÿyŠ@¨L6Èh‹÷]?ï@F€`@o䫪>ߨ¾îÌ{=±¦º8 æå奯™ª‚Ïç½à0?M§Ó™ÞæëâÌ ¿ß‡¦ANޏL?–=pמ @$I’¤«£ÅnbÙã¨ê¹kï ²öxxíÅ ZO·Îx^!Ȥ¡¡Ž%÷Í¡vq¾\'¾[Nž¢C½ú¿ø« &̾|« ÅâÄ`÷^·ËHÄ9ÝÞÊk¯¿Œªi´µ·28ØÏ÷~ð-Ž;¤¯ÀÓÐÄñãGéíë¡©i>¯žïÐáÔ×6²cçÖ®[ƒ¦ª,[¶’ÇÐÙÕÎü÷Ý{/“¡IûÓ ¢»¶ñ¯Ÿerr‚{V?Àþ{9rä @;WÝKsó=ˆÙh¦²²š_¿ô÷¬~€D"A[[+ÿïßÿ‘O<ù[¬X~;ãcì?°—O~b±X”¶öÓ̳€‚üB~öórÏ=ÑÙÙ†¦jlÚ²žÞn\.7n—‡Æ†ÙÄ¢QžûÕ3tvwpïê9pp/{÷ífåw‘J%Q„Âúo°cç6òó xä&‘L²yëFúû{ilhbåw#„ ;+¿?ÀÀ@?ñxüº½o7ƒTRåÔÖ>ƒñKF"B@4£¯³ÿ¬ç5Mcrr‚mÛ·³sç.V®¸£Ñ„Ëå&Q[]Ï'?þY6l\G{G.§›_ü%YÙ9ÔTÕÓÖÖŠÙb¡··{ju¡6Ì&F“ ÛÞ½;q:œ´wœ¦»§“órÇC"‘@A†?ƒ@ 3½r—zN•éáFâÊ2н§!ˆ†£lxy Õåu˜ÌÆKoJL\x2ùôgÏd6žˆOˆÎØV ÏÑTýË]c§ qy½ƒ3ߊëÑ@?÷­¾Ø1Îou¹u¹ÒmõJ¼Òn-2‘$I’® o†›{YÅòÕ‹™µ¬Š`‘¾ ƒ]Ÿ«¡¡NÝÞÓ±‡˜ñý;$¦ ƒ>™úš5a§–?=·D£ÑHNNÜ÷0ª¦ñÓŸÿ¯×GmM=““TVÔ ‡8rô ‰D E(™Ø¡I<ÅÅe”–VPTXLaa #£#TW×ÈЇ‚Ømv‰8¿~ñ9rrò(+­ ¬¬‚²ÒJÊJ+˜Ãçó“L&p»=ÑÕÕ¡¥÷úÉÊÊfdd³ÉDA^!N§ ƒ¢/Sì÷ùy྇¦­½•T*…ÅjÁd2±pÁþù_ÿ–Gý¥¥åøý23³0Œ– ¦R˜Lz~“x*Ë«frr‚‚‚"œ'­­'ioo%/7Ÿî{„={wë`MƒžÞnÆ'ƱÙì(ŠáÊß§÷TR{’9c±½}æw! 2šdó†,Ø6ýœÀétâu{iœ[OQYMËjÉŸ•A°ØËÉ¡CppÆm}o9X<úÐ+k(&°gr©Ÿ¸T*E$&a2šp¹\(ŠrÍ‘xÆ}÷½hÀ›ë_gbr‚Üì<æÎ]@0™ÎùrnFòéç¦÷¿˜éýŽŸ8Êú kÉÍÍgÿ½X-V-¼eKW`2™Îú}±}Ǫ«jp8œ<÷³|ä±aµZ/Ñc¢ràà>òròÉÉÎNwæ¿ÓÛö³vÝB¡IjkX´à6âñV«í¬@çrzT®¤×åV!I’$éúR4 vý¶ª¥ôv.BÓó›Jp܇ÁrìF×ü¢ÌX(˜Qo}å‡ü`zuªG~ !ôï«*kmê±6ÕàÑ'—–”O ?(ŠBf0+ý˜>¦£¢¼Š²Ò 4ô× ŠåËVN /;»WFÓ4ŒF#K-Çãñ0þ"2ü´s™BˆôøúÜÜ<²³sBP^V9Õhôôtñ‰'?Ëüy‹°Ù¬,_¶òü‹’Îræ\¼^õu¡P_”ÞtÞÜ…éëTXP„‚… –œÕ°ËÍÍ'''„@ÊÙ‡‚Á¡N?Ó/ËwE ýw…¦QZ¤bi£›+èÊ»ôX “ÙÈò»“•¤iYÙ>|¹nÌn¡šþ>«€2]¦¢†Kô( Ã#†={vòËçŸæ¾{"˜™ÉK¿yp8Äý÷=Ìî=Û1›-TUÖ00ØO8fþ¼…twwÑÝÓ‰¦isòÔ ½÷ÂhÄh2‘ÌbNÓ|ü~¬}ãUjkØ»7M³æòÝï¿?À‘#X¹r5ÙYÙ=vƒÁ€×ãcã[ëxðþG8pp‘h„Ɔ&œ{öî"Ñ4k.‰DœýörìØa²2³éïàà¡}ää䑓˺7_#ÌdÁ¼ÅØíZOŸäDK3 M´œ<Ϋk^¤¾n‡ƒ±ñ1Š ‹I&“ô÷÷QZZN~^!]íœ<ÕBYi9¡PˆööVÌf bêó¾pþbœNç-ÈD’$Iºþ.ó­¦i,¼¯šùw¥nÚ[†B4o43|èì¡'çæ@™9lÈð6 ¾s‡ÌÌËq¡mÏ-KßþÂûTTTSRRŽÉhÂhœ’&Þ®ñ)Pq^/ZÆâEËÒw¡/ZÇsÚ¬ú51\ð<Ïun™3÷½ÐaºGãülç$Âf}—>+—5Oˆñ`}/Ÿ­_„Ï㸶’+,z¼š…©Âh6 Œj: áùAŒPŒ5£t®»¬^E5F˜{8· ’âRn[¼ŒÁ~ÚÚZéééB( §Z[ø»ü:ûè'9ÑÒ̆oFùøÇ>×ëçõµ¯päèAêfÑÞÙŽËébxdˆ¼Ü|EÁíö°À¿MÓ‡cªªŠÍj¥¶¶M›×ÓÛ×͉–f/Z–îMH$’œhiÆétE™ MòÔÏ~Àää_øÜïSXXÌëo¼Â©S-¸œNB¡Çš‹ÇPU•;·òÓŸÿ€††Ù<úóì/ʧ?ù…tù99yÌž5£ÑÄøØ(>¯ŸH$‚ªªìÙ» £ÑˆÃîä•5/ÒÖvŠ•wÜÍý÷=Ìž½;yåÕY²x9š¦166B,Ãçõ3>>F^n>5Õ57믷w @$I’¤›ŠÁ$0˜oÞ?OBLVBÜ|ÃÃÎe2š0Ÿ3tåÌyLOf¿ð¾Óñ€¾4ªéFŸÊy4£ƒ¨¯Í™Ï;›-4c†qºP†‚ÉîÒAGt:ÖAÙC \ê³) ÜG”ÃhêuúŒPÌÀÔâ oS¤PYrÏ<þ)?sªN¹Dقȸ•Ž-> Š8kE(“ÙByyo¬[Ãé¶V‚ §ž<3•L²úîûÙ¶c ‰Dœ%‹—‘•ËÞý»8zìƒC>zŸ/ƒ²² ¢G¢äææsøðtž =Ò4±ñ1¶lÝHiYþ½}½ÄgVC3,˜¿¿?ƒ××¾Œ¦iX,Vüþ G¢¯¯—”šbdt´3sÍ4M%™LÌ"/·UÓðx¼,[vf³e꣠a6™‰Æb?~”E —R^V‰ÃéÄjµ1§iÁ@&h99ydeæ00ÐÇÎ]Û§zEzñùüÌ›»Î®ŠŠJ8Ùrœ±±ÑË_rù}ìæý /I’$ݺn껃&£ß½Ma4PA*uå%_—Ú^$øhïh£¿¿¹s\p¿M›7b³Ú™3gÞye¤Rú£Ñ˜î¹PUõ¼^ ëN( Þþ®¾šÒ·Ñ¯Æ™‹é×Û‚ú£iÑa}iÚéòŠê+E¹ªgïsn„òî\‡Ëø9ÑT¼’, Js.»ØÐpŒÍ=ÇÏú–L&hko¥¨°„ùóa2šxkózÌ&zôq23³ùð‡>†Éh¢»»UUY²x9ñxœPh’ìì\œ'ùù…äæä“ŸW@nN¹9úÁùy…ܹêòs @èï“÷|šÂ‚"ü>:Ö4¨®ªÅïÏÀép²dñ2§\88¿"`ÿþ=lÙ¶‘ùóæ£iâ¼í~ð£ÿ&++‡… ç‘LNG£««ƒ×ßx•x<Æ÷=LAAûöïåukxøQVZÆõºñE´ôí‚‘Î_„z ƒÈ Óƒ¼e5ïLφš„Þ0Ù ™s`´E>Rq}û–À[ ùËõ±PçxêZêó`4åâ-N¾B\·¸[Õ4}þÕe’j õA]ÓìyÌjl‚é:Ë—Ý wßu?Š¢^_øÜï§REQ¸ûÎû˜îMºP`6=©¡~õu<òð‡Òe~í+‡¢(éÏÖŠÛïLïû‰'?‹¢(ó©Ï§‡ !øâçÿ ýú“O|:}NÓÙÓ?ó©/¢iƒžpóC>žžã4ýµtÉí,^´4ý>>ñÑOžµ Àô %%úw7ÅÏÇ &I’$IºJBÀØØ(Ûwl%;+‡_>ÿ4ÿòÿECýl¶l{+½”íþý{8ÝÖŠÅbÁ`0Ì¢¢¢Š––ã ÑØÐDEy###¬ß°–‰É æ4Í£¤¸Œ»·3<<Äœ¦ytuuÒÜ|§ËÅÊwã÷g°ïà>Ž;ŒÙl¡¤¸Œ ÍÇNå9I(J7?¯ÉÐ$'O¶ð³§ŸbÉâå8ì¶l{ éñë‘Hˆ_>÷¹¹ùÌŸ·€H$ÆŽ][I&Ü»úA²²r‡£ì?°‡]»w°jåê›dx‰€d z¶C FšÁ]‰I=éÞôR´™³ÏV%päèy1ÆÛ / Ô§÷„„{¡ì0XÞ¶m§ÛyõÙaÛ%樓FúÇÎëq¸ÙèsÎn:žûôýÌ9=†KMzŸQþÅzŽÎ-ãìùVÊe÷Üåœg¾~¡ã^x¾Õùu6θïçœ5×’ @$I’$éZ‹ÅˆF#8.žúÙ÷yþWÏ¢ª*ŸþäçÙ»oí ôQPPL,eÙÒlÚ¼yóÒP? ! §§‹oþ÷¿199IuU zôqþÑh¢®¶x<ÎÎ][ùë¯ý#V«ññ1þë[ÿŸÏO0˜ÅŽ[ÈÊΡ¯¯‡ÊŠ~òÓïáóùéïï#?¿UU©­®Ãh4òü¯ž¥µõ$^¯·6¯M£«»EQˆÇãlÞº‘ÙsX¸`Éd’žžn:»ÚycÝîºó^û‰D¢ÔÖÔc4o’á%SËËš£MsÆÛôÞoúãÉ=ßô*ÅŽl÷éûmšJÜ§É v=ÉåÛq8ìäfáζ_rº¦AÓ²:LÙ,“n ò“.I’$I×¢(X­622ôõ÷299AÓìy¸Ý^Ì& 奕Äc1 ò‹8|ä6›ŸÏÏ–­o±pÁª*«Ð£ÁˆÃî`pp€á‘aúúz˜7w!ÅE%=v˜œœ<î\u7&“‰ÉÉ……ÅìØ¹•â¢RÉû÷ïæþûÆíò`³Ú(+­ ’ŸWÀÑc‡™˜ÇïË ‘H044@,Ãb¶ i*}ý½SO#yySCº2220ôö÷ÐÞqšÃGrèð~†‡‡¨i®£ºªîmWòz×,ú0©ƒz†Á¢$jJïá09a¢&ÚÁ˜êàȃLv°øÀì‚ÑÙ¤'ïËšsf¬ÛÛÌ^T‹¿ÐuYC«4M»à°'Iz?’ˆ$I’$]%M¯×Çm‹–±té "ÑÍÇò¡GŸÀd2c6™ñùüÔÔÔ!„‚Ó館°‡ÝN0˜IA~!…Åädë“q ‡°Ym|äÃgÙm+ø­Ïü““dffc0ÉË+Î,œá0oÎBêëìg|bŒùóšœ`þ¼E•â°;),,ÆétQXP̃{1™L<ðÀ£x=^ž{þi>ðàÙ°qŠ"8rôP:µÕjeÞÜE¼µi=ùE”””SPPDuU-í§° øæ‚"x+ô¯iù+ÎÞ¦üa}~GëËúÜG¶>Äâ%=ÃÛ™ú3û¬ärhšF*¥’BESoŠn¡+½€ú‚›dXÝûÓ­z}e"I’$ÝT!Ò ünF‚é±àgîV«ªž$ðó¯˜Lf–/½˜ÍfjªkI&“˜Lf–.Y>µ½†¢Ô©†éê»îÇd2a2é }¡(dø<úÈGøð‡>†Á`à~÷‹ÅPF£MÓǨkØlvž|â3FZOŸ¤¿¿E –’“ƒÑXÈÿúÓ¯LMà=s\E|ø±!‹ÅŠ‚ªÊZ, ÕUuSuU1 ¤Rúy—•VP_ˆ f³ EqÛ’åS×å]^K\å1=%z1]žb¾¬Ž‹×I\}n©d’‰ñ FG'PS²gæzBÆ@sÝ誼«d"I’$]wÓwÅ/5^AóþV:Oöܰ˜ª¦Rü>?þ<7fÐïúM7Ѱbåά»¨ T^Y!ô f">Õ`Ål4_0À9ë¹™Ï}ímŽãïË`·rè"›kS½ Wvû;•JÑ?Ð dgç¾íþo×À?7h9ÿuÞÞ^‰8¹¹yFBá0cc£(ŠÂøøÅE%˜ÍæwDD£ÆÇÇp»½X­Ö ÿÜs»ÐsoKÓðy½TÞSHN¥ï¦¼s¬25©üæ«Úe1š ͆÷b'Î{Ž–þß­C ’$IÒ —Û ¿üÒáÝ'Ùµg';ßÚGfV&YÁL–ßuËî_@ö,&‡@(3Ž<Ý;ò6U‹Ñ2ÞB¡³ŸÙ‡ŠJJKÑ2ÖB¾#Ÿ $¡&LЉ¤š$©%1CúqJKa6˜Q5•¤šÄ¨1ˆK %Ò@ÕÔ 6z;»:Ø¿7‰D‚ššzª«jο&éy…ÂüèÇßEÓ4¾ôG†¦©ìÙ»‹üüŠ‹ŠÒE*¥’HÄ1›Í¡œ5zhzBëÌ äÜd„Ñhœ§~ö}º{ºø‹?ÿk|>ë7¬åàÁ}def³vÝþîoþ•ÌÌlL&}e¨™±Á¹‰g[Ðßß˯ó’É.—›ÁÁ9€ß—h„B!~õâ/X¼p)“““$âq\n7ápˆýä»<üÐcÌ3Ÿîî.É9Ù¹ 2:6ŠÝf'''MÓAÕT&&Ʊ˜-¸\nzûzèìl'¥¦˜˜˜ä…_=KNNEE%Ô×5²mÇföíÛͧ>ùyr²séêîÄd2áp8èï#™Ja4BÁåtáñx"‰`³;˜˜gÝú×ðy}3³dÒAH*•dãÆ7X¼ð6úûûذñ ²³sQ ŠlìJÒ-B ’$I·8!ñxœ“›Ú‰ŒÅ¯é-O¡ºZ{:ëyMÓ…'Ùµk»wífíËë¹ïá»™ÛúšÇÆK²lYä;ò™œCO¨‡þH?K³—²±g#ùö|&œÓîfiöR À¬˜Ù3¸‡GOx £bDÓ4ü?ÇÇŽóqËǯ8øPèêêàÍõkùâçÿ€ÉÉ ‰ßùÞâñx$''—â¢RÖ®{›ÍN]m#/¾¤g÷Oe-?yò8 Ü4M%püÄ1þ¿ÿü'ü>=ÿÆÊ•«ùÙÓ?"/·€Ph’gùSB¡Iî»÷8¸—ã'Ž‘•™Í£„D"ÎCû¨¬¨æÄ‰fN·¢ººŽH$¢÷ž …'9zì0³ç04<ÄÎ]Û˜œœàgOÿˆó³mûfÞX÷*B**jؼe&£‘x"¡'> d²hámìܵ¬¬l~è1œ{öîä—/ûq»<é¡Tf³…ÌÌ,&C“‡hï8Myy%>ŸŸ¼¼žùÇÉSÇ ³Ð´£ QVVÁ‰–f ûì!?¯€žž.=° …ˆÅcƒAŠ‹J§öKŸÎŒôñ=‡ƒ÷’“Ëüyóõ@E’¤÷5€H’$Ýê„F°ÞN ¶ôšQ ï.ÞŸùÒÏ«…üÜ|æ-šË¢û¨\X„ÝcÆæ7s|[3ÚñKÔDÙC½¯žîP79öüV?fÅL­¯–l[6&ÅÄ §_@AÁköÒàoॶ—ÈsæQå©âÉŠ'96z ÙCŽ=—ù¯Ã¯ª—WÀí·ßÉ¡CûÑ4ðx¼8œ.¶mßÄØØ(µÕõœÀ©Ö¬+»ƒü¼B¼^½}=45Í#™JP[]O<§·¯‡ì¬††É d20Ї×ë###@oo7§ÛN‘J&¹}Ù*zûzèíí>kÞȾ}»8zìí•p¬ù0ƒƒ R%Izÿ‘ˆ$I’hÓ‰¯9E.§‹Ò²ÊÊʘ»¢¢Ê< êXƒ f´+[ËÈf´qgÞgM7(æçaFL>‹W v£Bg!…®B–d-ÁevqGî,ÎZŒE±`j¨¹‚£Ÿsõ4ðz¼|ú“Ÿçĉf-\JE…HÔ×6H$¨¨¨&•JÒ4{f³…¼Ü|îXq7U•µ”•U’““Ghr’ÂÂbŒF#§“<ö$f³…††ÙÓP7›ªªjjêpØTVTSXPÌøøÁ`åe•dø3ÈÎÎå3ŸüŠ¢PUYC $È$‰à÷e`±XPU‡Ã‰Á ðàýÓÕÝ©'N¬©§ª¢šÚšzòò ˜7gsç, ‹a·;XyÇÝx<^ÆÆFÓÿA Šq9]äçPVZA^n>}ý½Æt®€ŒŒ >üQ\.7Á@&‹-#‹RVVyÖv’$½ÉÕÕ$I’nAs¿@vJå­•u÷–?±ô·¯Ïzÿ"°õÙCÄã fÝYާÀ†ÝkF˜õãu\~ùçkùÔñߥ*Puéù(3ÿгœnRK2Åirb5Z '„!¼/&Åtþ¾W° ïÆþìi8Ì_ø4ÖIù.7ÿŹ gTû²¶?; á…ynn½ í{¥Çz§u¹–„€p8ÌÏŸùå÷¹È©ö¦3ÊKÒû…‚þñþõå¿``¬ÿï…/ïþ®յ#{@$I’¤ëG[Žàö/Ö£UEESÕ 7š öŒìeX~G‰g–%„ÐW÷šùxòê²FàÐèaâZü¼»x—[Ý &,¼‚í/•èðBÏ_hß+=Ö;­Ëõ ij"E*¡Þ”Ëð ¡ È[½’t2‘$I’®/EÃ`Ó[aš¦êi¬/FT/®ä´éÝÆÓ7岬A[{ÙÆ’ëSþ9=7ªœkUs˼å !è¢åǧðýïjàsyT*Jó¨ZÄè•É4$é\2‘$I’®¿+H.×pw)©•7ïRHB çÜý×H&“Æ+΂®—«_§Î®º»»¨­©Çápžý:—×€O¥’œh9Ž¢(”–”c|«›u÷tÑÙÙIuu-n—ëªù©TŠŽŽ6òó ßQ}κV@ß„ÆO÷š6ׯ…¯¦Â¥’S¦7WA(åÁêÃäÍ›Ïç¸>Ã%é=L ’$IÒMÅ`Ì7ïŸ'!&‹!Îtå( œjmåég~Âç?û{øýþôüˆK—±XœÞÞœ.6®ã™gŸâþîߨª¬FUAUUºº:0™Ldgç¦÷»˜h4ÊO~ú=Ì& _ú£/ãr¹/ëÜf¶“ßxc ƒÊŠÊóê{±s;÷ù™åÅã1^zù>ñäoáñx.¸Ï•´Ó5ƒ˜«ÍUp™;ÎÜæB€. 1 Ý[¡`(¦·ßGSa´Ì0gÓê=~’$çæý /I’$ݺnêÆç©úú{yö—?å‰Ç?IF†ŸÑÑQ6mÞ@gW;óæ.drr‚­Û6áóù™7w!±XŒ={wÇ©(¯dÃ[ëÈð0œ3µ¤n‚êªZª*kxãÍ5ôööPS]ÇÊ;V£i011A4Úφ·Þ¤²¼ŠT*Ŷ[p8ØíŒF#n—‡S­-äç²oßn>þ±Ï f°gï^üÍó<úðGXóúË îXq§OŸ¤¯¯—9M 8~â]mجvTMÃåt1þ"z{º9|ä ¥¥åÔÕ6b6›õ«¦i„Ã!TUeÿ½ì?°—ysâõxymí+¸ÝÌ_D^nÁ•½©$£`²Ô$(FP„P/ø«Áä8óþ%£ %A1ƒÁ¬o›Œèß eêËñ èßyKÏìg²ë¯©q}£]?^bÆN»l—|JÒ­J ’$I’t-hz#[0àukøÛ¿ÿ*B(¼¹þu**ªÙ±s ÉD‚£Ç322ÌèØcc£,œ¿„#G±rÅ]8NÌf ÍÇ2žäŽÛW‘J¥Øp/~ŸŸœì\öíßͦÍëùÙÓ?âñ~‚ï|÷?i¨ŸEGg;‹-Ãb±’J¥Ø´y=Eæñƒÿ7›·lÀl¶P_߈Ãî$à÷ÈÎÊ¡¯¯‡d*‰¦AA~!åå•A~úóòøG>Éhâð‘Cl|kV›Ã‡ „ÂàP3ÙÙ9´¶¶àñxxãÍ×8|ø¥%åƒY¤—×BO¬øÔOÀÀ`í¬¼ã.ÞÚô&à1ZZŽ““‡¢(—wÍS1h{ B}5¹0°õпb£0tJ€œ…zàŠAëo :îbÈ^ -=Û/Ø3Áì‚‘fÐRz Ñ½Â}à«„¼eµzÁF½Ìp?¸ õÃÔçaúëJ¼“!|×”¸ êp+Ò´›p>Óõ!I’$IºFR©$½½=Øl¢±(±xŒóÓØ0›‘‘a²2sbrr‚D"ŽÑ`Äd4¡,f3F“>ÌÇaw““G2‘˜¢$°˜-˜Lf‡ùéÏ@4exxˆ‰‰qTMÅb±žÕhÔ4 UÓPUUS‰Åc8NæÏ[Ä¢·Ñ|ü(GŽä‰~³Ù‚Ë寠Ð4ðû3ÈÊÊÆëõât:i¨od`°Ÿ­ÛÞbtl„H$‚Åb¥¤¸ ã)#åe•?~Œxž¦A]M#ŒL–,^ŽÍæÀ`0qÛm·‹F)*(Æír“‘Äl±ÌÂh0QTXÂÃxŒ»¶áóe`P ¨ªÞ`0˜Õ0·ÛÍý$;vnÅíÖ“.œ¿·ËM^^Á•ÝyWôá] Ö{"ŒVˆŽ@÷f}8•É®ƒ 8k*z/Èø0سôáSC{ôÞ ƒUbA¨ršÄX¼0Ü ŽH„ô¹!B£ â“ú/¿žÐ2;'›Åw–àÉwÀŠAaí³›éï"·(‹«[4úÊ Epd];›~µŸœÜ< ŠÌP½ EáèÑC̾¿ˆûŸ\yK~2‘$I’¤«¤ªP\\Êßþõ¿ N72“L¦”tCNŸÀ|úô)=Äüù‹X°` ‹,™ª£7Àg6Ä Þÿ÷ßûB(ÌŸ·UUõ¼&hô÷÷r¢å8 õ³°ZmX,>üØÇΪ£‚YsÐ4öŽ6Þxs õ³0 ,Zx ,AQ”tËÊ;îFAaaqº.O|äé×§UWÕPUYƒ‚‚‚"êjØ»oÛ¶o&™LpÇŠ»¸gõýh,˜¿ˆ9sæ#(ŠBqq)B22‚W€h`²Aö|˜èЇA™Ý5O2eË«_>Òç‚1µR•{@ïÉpä@f8óôy"f—þ¸ ÀSªÛ²úô‰èãmQ§oS´ a}[dÏÓ{JÙJàt:)(ÍÅ_ä¼¢€‚/蹂=®1Mƒ„ųîàáG>ŒÙd~׃ [ÉhäÛßùOúÇÜ2icd"I’$I׈¢(çÌ_XrVobdgçðÄG>ÅbÁãñê‰ëÄ¥Ê?s7Ú`п×4ó—0«q~FzØÓ…òÓuËËÍã·?ÿ‡ØŽô¶çn?ýxæó—SÇ™u«¬¨&33 MÓðû2ξ.†ó› W>ï@_•>/CÓлwšôk<ý8w©8toÒŸ³gBF-¸ õMÕËðW믵èAD ^ïõ°ôçÝ%z@’>Î<Òùë5 ²æ¦ß[B½ÀÔð7´+F%nø²½B FF££ÉpËÌK¸QŒ&0.sÞÓû„ @$I’¤›Ê…Ã7>LåjÙívûÔd嫨ƒÁôò¸—S–Ùl!ÐÇš_ÏÆ¥ÇãÁëõ¤sÍ5ós2=¼ê¼ÇšÞ›áÊŸ~áì}…rö>žrýë¼²/r}Æöß¼ŸáË1ýVÉàãÝq«]f€H’$I×—Ð'X¨—¸,„`çºý4ïiE1ܤ 8!:5Ieæ¼³Úç.Ü4½ò“ªªé93]Ëù…Êš v±¥Þ†åu :¦ÅÇPÚ÷é½7UóM@b°_^"éœêf§ýýœNH)ŒOL0::J #€Õj./ ˜illŒÉÉ 2A,fËYeÄ úºûðyýéžHЇ¿uu÷3•ôSºöd"I’$]7Bôç_¾ôºº»XñÐîyryUzÂ=}¨þÌuZ5ì6;so¿H4L~^>.·ë²×ÞÞN2™¢¸¸è²sIÄb1š››©­­½À| Û¿?¡ñ$ÓwÞã‰8[·mâ—ÏÿUUùà#!Ã@³;0›Mø¼~„$ITUÅ`0 „ •Jƒ!ÉdÅ  …dJßÖd4‘J¥xáWÏâp:Y}×ý$ „˜Í&Äô¶©ƒƒÁ@2™`ÇÎ-˜Mfî¾ë¾t#.•J‚ˆÝSj E(¨ªŠÑh¼©‡¿MÓ4 ¿ßÇ¢û‹É©ôÞ”“¤54½Çïæ«ÚMAèééfËÖ·¨ªª¡²¢š£ÇŽÐr²™‰‰ 6¾õøûœ¦9lß¾}öòäŸÄf³z023¨˜Ùk²æõßðòË¿âËújkjaóÖtt´a2™ÈÊÌæ×/=Çg>õ–/]Jj*°‰Å’|ýÿþoþëß¿Õ=1Ò…ÉD’$I:ß5jƒ @Mj„Æ"œ8v’¶SìÚ¸¢š\–ß·˜†ÛÊñe¹Aazq(@>´oß>N—3½âÓ´é EqÖ÷§N"’ŸŸ—&ôä€â‚w¢…D"vïÞMYYY:hÑ4H$‚¦iØíöô¶ÓÔ·a5 ì6;{üSìÝ· UMqÏÝòµ¿þs}RºP°Z­47áµµ¯ÐÖvŠE —âv»Ù¾c+‘H˜»ï¼E1°c×VŠ ‹i¨ŸÍ ¿þ©d’Ï|ê‹äååóÓŸÿ€P8„×ãcç®mLLŒS^VÁœ9 øåó?g` ŸÆ†&>ôÁǧê*èèçåW~Ecc¬ß¸‡Ã‰ÛåÆlÖ'¿Ÿhi¦¼¬’·Þz“ÿù¥?'++û½ÑØÒô÷!…zö€¼ ¦¦·\Ö¦âò7Öç`½;3X¢±(/¿úkNœlæ‰~’—~óCܽê>îXq7ñx‚"üò…gøõ‹ÏQ[Ó@]mý}ä166B(Âbµ222„Ùl!33›H$ÂØø©¤ž\sÛŽÍ|ÿßböì¹ø}~"‘·/_…ÓéæÀ¡#$“I, þ㌎280@Nnö© Gº6d"I’$¡ Ô„–Jtµƒ M¦ìñxœ½Û²oÛ!Ö<½Yóë©]RÊí/ ¤º£ÑH*©"„Þ3±}ûvzzz˜5kÝÝÝ=z”ºº:òóó9|ø0ííí466âv»innæèÑ£099ÉáDZX,Ô×׳uëVâñ8MMMdff¦³S>|˜S§N‡QU•;v088Hyy9;vì ¿¿Ÿ•+W Ù½{7ùùù444\⬡ð$¯¬y‘O~ü³D£Q^]ó"N§‹]»·ÑÓÓM"‘ š$ 3>>†Ë妥¥™-Íx½>î¾ó>¶n}‹ûï˜ÂÂbÉAaA1EE%ìÚ½½ûwñü¯žáO~–g~ñóæ,dïÞ<ôÀ£X,V’É$[·o¢¢¢ŠYsøÙÓ?bËÖXm6Ì[„Åbedd˜êªZü¾ </ŠAæ|x/Ð’5©b0*ÓÅWÍB06<ÁK?ÙÄØXâ²§¤Œµ†¸½qÕõ= òr hllbß¾]¼µi=-'OððCBUU^]ó"O?óc‘0?ô!ÚÚZ‰DÃì?°€?û?Ìó'üâ—?cËÖüÎÿˆƒ‡öÓÞqšü¼B Šr¦{Äd4!ÁððÅE¥dffñã§¾GwO?úG,_¶’¶öVÌ_ BÐßßË?ýËßH$øã?ø_8ÞgÃo4€H’$I:‰8öj/ý}—=ém‹‚îŽÎz^C#޲mÃ.¶mØÅ¯ø:«WßÅÜ9óè=2Š(ÕóCŽ9BQQëׯ§¹¹UUq»Ýœ>}š-[¶L&ÉÍÍåôéÓ˜Ízbº#GŽðú믣i999lݺ•Ûn» ·Û®C,cÏž=äææ¢( ©TŠŽŽöíÛ‡Éd" b·ÛÉÍÍ¥­­ææfNž>ŽÕj%̤¬´‚ÞÞnJK+Ò×Ýçó3gö<,+“Ìjlbtl„ì¬VÝq7­m§‡C<þ‘OpøÈZÛN’H$nô§Pº-%èÙb÷†ƒWP¶, G– MŠ6£‘,L ñìs#tWê=—<€À9Ê¢ºë?‡Þl6±bù9rˆïÿð[4ÔÏfá‚%lß¹•±±QFÇF™={.¿ÿ»ÿ³ÙÌ‘£‡¸}ùJ¢ÑÍÍG8yê“¡IFÇFéèl£·¯‡ÖÓ§¨«iàÌrÌ—WÀÇÿ4m<õ³0Þ"ÆÆF ‡BF~÷‹ÌßþýWÙ¾}3.—›ŽÎvì6;O<þ)|>¿ >®1€H’$I€ÞhàÔÑ6òggàÍr_õÀg¡°'ÓØfR³ÉLEU…E”Ö’ßäÇqÌŠ¦jØl6ÊÊÊèïïGUU|>¹¹¹&&&èëëÃf³‘J¥0›ÍhšF,CQìv;Á`›Í†ÙlÆjµRRR‚ÝnGUÕt¾³ÙÌÄÄŠ¢Ï…BØl6ŒF#~¿Ÿ––FGGikkÃh4¦·»˜=þ)44‚ ÿðÿ¢¢âñ8sæ, ´¤œ¾þ^zz»¨©®gá‚%éyÕU5,˜¿„îU!ðû2h¨ŸMvVš&“™Ïöwéëë¡ ¿ˆ¯þÅ7‡Ã JKËQ„Âo^ùÙÙ9˜¦Î÷Sÿ,ÉT ³Ù‚Ë墪ª†ùó“H&°˜ÍøíÃaw°|éAÆ»5s^ÓÀépñÐrïÝ`±X0Ìž5—Úšú©å«h4ÍžKUe )UÅépò»_ü£ôϲÑhÂb±°pþ’©ÅL TUÅjµP[SOIq)š¦a2›1›Ì,Y²ƒbà¾{?€Ãîà“ÿšvf¾™Ñh$‹a“ï®9€H’$Ig›j„êKc^}¢6›Üœ<ê«©¨*§iE-9¥2Š]šžýyúxS‡¬¬¬ ªª !‡c*áž> _—sô:ë{E1°ì¶;B?–¦ÁCä¦{c.u©Ï}]›úŸ K/gñ¢eéÕµ.´ýÌrLîºó„¸ôq¥wŸ¦iD'D&⨩³{ÜR •x4žþ<&“IÆ'Æ9|ø0'OždÍ+%äçç±lõBæßSO4–<3I_É0„Áä„Î`´‚·‚SAÊ»KÕlÁj±¤?‹&“ ³Ù”ÞFÓÀ`0¦‡P꽂ƳzV5 ÌfÏ®åÌ2=g=o2éÍ`V4 ûyûZfÔKºvd"I’$]7š¦Èññ±/|UMQµ´[–“Õ†3«¥ÿÀ =ÇôÊUÓæ©:wU¬ =žùœ‚¹sçêì˜Mæôó—SæÌíÞ.0›ÞåB›ÌLF(W4ÏfæðsË6\áäqýÚÞæõ‹ŸƒtýYMvN¼ÞOèˆuÆ› Ð{¼no&Ÿµ†F$áÈ‘#9r”ÛwñàÞûÉ+Ì$:‘ïTvödb#ÌÒ‡YÙ³`²[@n-ý¿Ï]à³w±ÿíž{»×/ôXˆKGºz2‘$I’® Ì™*s>ZèsB4¡¡i*\èfëÔèÃÓßßÍ“¸‰éqKS•{'Å §OŸ&7»„s+M&D"Œ&6«õ¼×/·aîv‰D‚H$œ^ât:¯ú:\,©[*•" £¡//|9ÁMgW©d’ÂÂ"Ä9sR©ÇšP^^™N']œª©,¾»‰‘š°>‡êÜ×*=Ù ^Íf3N‡‹òŠ2Ê«K˜¿²£+iÓè™e®…¢· Xý` è½"—afÎë1\o:)áåãr³•'§V3.ÝäUU•x<–Λ3óœåðÄkK ’$IÒõ7ÕX8w•žóh —Ï¡÷èŠáz ¹Ê‰õ¬Ã¦©Þ˜3e%“ 6mÙÈþý»ÉÈpï=‘áÌ85ÁÁìvv»ã¬ü%3¥R)†‡AAŒFÁÎ]»yþ…gÈÍͧ  ˆïE9;087X›n4MÓÐÒ ‡I$d31Ìh˜ Çeëö͘LF–,^NyYÅ9w„gä`AC‚ƒ÷Ž„ÈËËÇh<»—*™LðúÚ—ÉÍÉÃj± ªï…d‡7Ц7×7ïÂAf*®’½#ˆq*0T„‚×ë%˜dîü&f/ª£º©œŒ:+§‰®ÖvŒ–©aƒ`ËQ­ÏñÁì£í’­kMÓa|l ƒÑ€ß—Ýî.¼ZÖtq3ƒ‰·Û.34<ˆÉh"‹Eq:œ™ ÊyÛvwwb4 ³°X, î5MãÈÑCØlv*g̉ºPÝúúzY¿q}ð‰©a‘*£ccŒb³ÚÈÈb4.xçÿíÎ[22‘$I’n"šKò(_œÇÍšBZAÆz7{Ïô ( tuwòïý'‹ÞÆú k1›-äçb6›‰F#˜ÍÖ­‚B*Ê«i9y›ÕFuucc£D£L&¡Pˆ»ôeH÷·¿DyY1ÍÇòÆ›kø«¯ü=ÙY9 qðà>"Ñ0õu³hoo£½½“ÙL2™Ä 0õ¬è¹¹ùØmvN·µb0(È/âõµ/sôØazðƒD£îZu/^¯€í;·2>1FYI9ÃÃÃì›ÜCeE5¡PˆCGL$¦ÆÓ[Ð4•òò*¢±Çš›“G}ýlñ8‡ïÇíöPQ^E"‘@UUöØKWw'‹.ÅçóɆØEho¥j`µXÉ𨨨 ª¡œÆ¹u”ÍË%çÞe 4„Pg3Õ½hvë_–©9/o÷ó& ñƒ~›¡áAJŠË¨ª¬ iö<E!c41MÄqì6;š¦2šDQvªª‰„Aè?GŠP°Ùì˜LFºº;øæ·ÿì¬\ÚÚN€@FGù(…E ú\2E®®¾óýÿ$3˜Å‚ù‹Y²xápMÓ0õ›F£h4BKËq ee„C!ƒ›Õ†¦i„Â!Ì&3‹…x’É$ŠbÀd2Æ0™LX­zžP8„ÕbÁd2‡}K2•¼ìžÅ÷3€H’$I7qîP©›‹çg–††9uª…?ûÓ¯pìøQ9ȦÍëñùüô÷÷‘•ËàÐN‡“õÖò«I ¤iö<&&ÆÁnw¤‡Z…B“¤RgB†Â!Ž;D$áÀ¡}üê׿ ™J²xáRZNààÁ}Ô×5räèAüþ“¡ þ ÙÙ9Üs÷8´Ÿ={wPVZÁøø­§Oqôè!¶ïÜÂüy‹ðù¼zX^ÉCûèîéÂçó³oÿ.@pòÔ 6l\‹ÕjÃét¡i6›ÉÐ$‰D‚¡¡A6oÙˆÃábll”m;¶•MQ¡ž7%™JòúÚW˜ M2«¡ ŸO.ùûN(…ÙKkù’ëwÈ+Î&³ÑŽÉ® ŒÓ=ŒSŸËé!W ?§¦.ÿGê“Ñ'ÆÇÙ»7y¹ÔÕ60>>Îwð_üñ|™]»wÐ××CMuñD‚Þ¾næÍYHNNomz“‰‰qfc±XY»îU„ج6,V+÷®~†úYD£QNj!™HÒÖÞÊí·ßIKK3¯®y ¡Š Kxôá#D¢ŒF‡“ŽÎv„€]»wÐÓÛEaA~€Ì`»vo§½ã4Aº:;X¿q-N§‹•+îÆ`0ðÊ«¿&Ã`ñ¢e¼µiûöï&‘ÐçÖããcœ?G&“]]ÏÈÈ0}}=  ÈЗñÍËͧ­½UŠe³ÓÛÛƒÕjexdˆÉÐ$³»ÝŽÃ‘M #8U¾†Çíaù²Uø}~~üÔw™œœÀf·sòÔ ¢‘0ùùÌŸ·ˆžÞnÊJ+8ÕÚBnn>½½Ýtt¶säÈZ[O‹ÅÈÎÊÁïóSQ^5u§Ö–ãžÌ¢iÖ\ÚÏé¶S464±~ÃëôôSQ^ÍfÃíö0>>ŽÛåfxxEQÈÊÊÆîp M011FVf7=i_Q*+«Ù´yÝ=]äææßè·í½IÑðÕYP_†­ëoÜ'e£ßu÷&ˆLìD¹ŒD¬‘Ó-ë¬çýÜwÏCìØ¹•ó_¡Ð$Œ õu³¦–éޯLJÙlap¨›ÍN49«>½½Ý”•”3§i>“´œ<ÎŽ][¹ãö;éëï£åäq:;Û1Mh𯱿#D"&''iï8ÓéâXóÂá0%%e¬]÷*•5´ž>¥_ ²³rxðGéééât[+EEÅ”—2«q.½½Ý rÛ’å¬ßð»vo#?¿ºÚ‡8ÕÚ‚˜FÙÕÝIf0‹cÇP_ȦÍë™ÕÐ@2u£?L7Ž @$I’$é*iäçðаsçVrrr¹cÅ]ØíÞxs jJ%/¯€d2Ao_ããc ö“Ìdñ¢¥(Š`xxp8LiU-ÙÙ¹œhi¦£³¿¿Ÿ×G}Ý,ê0›-¬¸ýN††‡‡Cܹr5î#™L’•CyY%Å¥…üü¢©ññú<¼¼JŠK©¬¨áXóŽ;Lsób±hzœúÐð{÷í&QS]GA~!?{ú$•ÕÔ×Íbbb§ËÓáÄj³EQUÉÉI\N7YY98NŽ5Ád2a4ÉÌÌ Ò‰"åkåíçTiš†7àãw?¿ˆèd겯û©ƒ.¬¦³—hVS*9Ù¹”––³yËF23³±Ùôek…46̦ºªƒÁH~žÞäåWM"gbb‚D2A^^>æA Œ }}=D"}^ÑÔòÔÊÔ"-'›‰Æ¢ÌišO{Çéó&äÏjœÃãýf³™-zð199A ¤µõ$'N4³jåÝLLNè;ˆ3Ëk«ªÊ‘£‡èííIÿl¡L}9N"‘ •LRTXLgg;Š¢ èu-,Ðsó˜Íz’¬Ìl‚ýöÐßßKaa1𦑛“OA~!ããc–pôè¡›µƒ÷]#I’$IºJÓ= ä“  `³ÙÉÌÌ"''%‹—¡ª*Ð  óæ†×Y¾ìÿÈ'©­m@SU–,^N2‘Äívc±ÚÅçó“JÁ²¥wÐØØ„ÑhÖ“.¼ÒÒŠôDò¥Kï@Ó4œ'sç,Àl±Ç1›L$’ l6;«ï¾Ÿx<ŽÃîÀáp2>1Žð‘Ä“dgç¤Wj¨ŸEVVvzÜûá#©«mäΕ÷••M"™À èIÞ„¢ ©*uµ X,22úùú˜Íf'Üÿn·‡…ó—L ÍɽÑoÙ­A«ÓÌ܇K/{!ŽL¨½æs^€‰‰q,f þàÔÔÔ“•™M$áᇣ¦ºŽŠò*¾ôGÆðÐ ‡¢‚¼ÿ¢Ñ(F£‘¦Ùó…&™ Mâp8˜˜§¬´!>ŸŸ{W?ˆ×ç§¢¢Š‰É êëf³âöU<ÿÂ3éd¦š~M³çb6ëuôz|,Zpƒ¯ÇG8ÂãñR[ÛÀèèV‹>Üktd‡ÃIQa Šb`åwé½w™Ù¬¾ë~ºº:¸}ùªôrßf³EQ8ÕÚBuu-sšàrºéïï%ÌÄãñb2™YzÛ ¬V‡›ÍFEy5ƒ‘Šò*|>? õx=>L&ÙÙ¹ØmöK®Þõ~w‹Ç_’$I·¦¹ß ;¥òÖʺ{ËŸXúÛ ` eœ}¿<ÍÜ–â/ržI`&¥ ÍoöпGå‰Ç?δ<ýÚôìéÕo.´:O<'•R±Z-é;®ÓÓ^.–›àÜ2.µºÐÅê~nù8÷m>S¶F<f³é²î _l ‹Ç;¹þáp˜Ÿ?óÊïs‘]핟ÓkHØ÷Bj¯Gù&“žPÓ4R©š¦b0QA*¥N}àõEQPU•T*‰¦éynTUM¯ˆ¦¯,uîjmgžOçýACSõa{ƒaj.”HOÜž9¬oZ2©Ï—jkoåTk õµS½g&äRz/Á`˜:^*]®ªª¨j !”³&ˆ§Ô©T ƒbHo—J¥Ò=yÓuŸyÎÓç2½ÍôùÏüwfÝM&øæ·¿I¯mÿîƒ$U½žýã=üëËÁÀXÿß+ _Þý…ýé¸vdˆ$I’$]#Ú9#b.–;Àd23Õ®;kÎðņӼ“¤l—]ÎÛn'0ÏÈÝq%Ã…êw+Oº}¯Bœ—{äB+9)Š‚¢˜Ïz|¹åŸUÞÌoÏÉáqn’Q8“Ô³¼¬‚ò² `úó&ÎÛæÌñÎ<Öë}~] ŠÃŒ%¯/´~mLg=ž¹Mú&Ã9ÿÞÊd"I’$I’$½/È ÷½A ’$I’ôNL ¯RÙèy7ÍÖ&IÒ{“ @$I’$é išFh2ÌðÐ0V«U ï"! ‰‰D@s^}Òéó/À([Š×цË©ö¾!?V’$IÒÙ¦ÆW „\ªä„›ÏDûø!¾ùìßž5>\zw¤R)Xœ¹òs:E»fQ°ž4²µåonXwÞ¼éÚ3 4ŸhÆÝxë|å§J’$I:CƒX$ÆPÿª9.ïì_€ÙFúƒ¥éU{¤w™Ð'§ {†¹Õ?¦F£‡ËŽÑ|m‚áüY>†ã} ¿&'L¿K2BýÂFTnß)2‘$I’tX\&RÎoüj#F‹ü!I7;5¥†»[FåÒ¼«^’XÓ4²Ë3È©X*;–Þeª¦¡Þ"KJË¿.’$I 7<\™VøÃ%¨©[ã.œ$½×ÅÃ)v>u’TøÚ•9gC’®€H’$Ig¹Øzø’$ÝdhI0 re0é=Eþ…‘$I’$Iz’ýÒ{‘ @$I’$I’$Iz×È!X’$I’t“˜ú¦jê5¹µ=½‚‘Ïÿþ$@_†X’Þcd"I’$]b*hhÚÔcôvô{u¹Ú·kÀ+ŠÞüÓИʚ‚¦i¨ï°±ŸL$9²³…£{ZXx×lJk ¯úºMŒ†ˆEãø3=r9Õ÷ -Å™E"$ã)RÉÉDŠT\M¯‚%„@1( ÈàSºùÈD’$Iºj‰x’7~±™#»Z°XM8Üv,6 þ,U³K)®ÊG(¼§òŠ(ŠÂÁmÇcéýóÏzmÛk{Ùùæ’ñn¿ƒÑ€7àfþ ä•f_ñ±„$âINnãÇÿø<ÙAÊkŠ®8#€", EðÌü†CÛ›ù«} —×!{BÞãÔ_×KgkO:A`2‘äÄþÓ¸Û] tŒêï±hP»¸ŒìÙNù¾K79D’$IºjF“ÊÙ¥ìÛt„ÁÞß3‡ÊÙ% t ó÷¿ÿ-žý¯—IÄSgí#ÄTÃ97ægÞ©?÷õ3½,î¬Çbú8\´Ì B01â×ß›ÃzÞª`•³JGرv³o«¡aa%Gw·ðŸøZžNo/„\¬÷APô^»ËÆ/Æ›á>Ó`<§î?g=dO[ÿ™¡[Ì]QÏ=OÜŽÅf´ôµH_“sËÓe_ûψtu„€x4Ááí'n £Ž™I™`ÒBIq®LC ê¨mÜLëZvÜèjKÒÉI’$éª)ŠB~i6n¿“Œl?us*ÐИG#…•¹üÓ‡Œlw~è6TUEAh<ÌÄhß…ÍiÕs¨¡É0f‹MS™ áò:±Ù-D#qƆ'p¸mØ64M#•R™™Äl1ápÛPS“ã!R)·ßIt2¦c‹ÕD"žDM©EÁæ°¼m`°ù7»ðd¸˜½¬î¼¡P™9r ƒ´¸íTÏ)ÇãuQV_ÄïÝóÖ¿°ÊY¥!˜3><ÙjÆô ‘._S5F‡Æ‰„¢ø‚l+ª¦¢¡•ðxUÕ0l+B’‰$£ƒãEà xôa6À–W÷phÇ >ÿ•b40 ÔÌ-§jv)&³‘d"E4OßQ}ˆŽÕfII¡‰0#!Ü>'v—MÞ9¿Éhh8œÊjª)(È'‘HpüøqŽ;†ªªTWWS]]ÑhÄd2c0¤®þ ’tÈD’$Iº´ôÄiMÓH¡EB°xõÊŠxíé·Xþà|ƒ ¿ÚÊ-Ç0YL õŽðèçWSÕTÆšŸmà埬§aQñX‚#;OWšÍ²°ÓŽí=…Çïäÿá3dæùyå©õ<ÿ×xüâžßÎŽõ{øÉ?¿@uS)ŸûËòÚ3oñÊSðgzøâ×>Æþ-Gyíé·Xùèbøä*Læóÿ !èbÛë{yòKc2Ï @4´t²6UUIi)œ^ž cÃ$“IÖ=·•=á z8y¸¹·7ðÁ/ÞƒÁ``|x‚ç¿óãÓôw ñ…¯=ÝiÓë€ ŠñÝÿû í'º¹÷‰ÛYùÁ%tŸîã×ß_‹¦jŒ Œ‘_žÃG~ïŽïkåßø%Éd ! °"—¢Ê<žþ÷—(¬Ìãw¾þ1öl9Ê3ÿñ2y%YœØßJ0/ƒ/ýóoawÙØøâöl<ŒÅjb°g„‡>}'³—Õ^ufmé:˜úìE"Ž9ÂáÇõD¢.åååúð,óçf×úƒlm/÷|ìv~篟äts›_Þ‰Él¢iY‰X’ÉÑU³KñÜ öŽ`4YýÑåÌ^ZËéc(…T2EãâjV?¾ü‚ÁÇ´µ¿ØLY]!¥uo?\AQ0 'ºè¦fn¡±0Ï{ …•y|î/?ʲðÒ×1Ò?†ªªüøŸ^àØž“|ìKàÁO­âä¡6Ní@(gÊ OFˆ†c<ò¹Õ,h‘P”ÿþ«Ÿãñ»øì_|„'¿ô0kŸÝ̶×öRR“?täòЧV±xõŠªò0™Mô¶÷‚Ðx„І"~ëÿ|˜Ew7Ñq²‡šy帼Nön<Ìsß^ÃCŸZžö¥u…|÷ožabdRN^¿‰FjkkY²d yyy8NE‘=WÒMOö€H’$I×Õn!4"2eí³›HÄ“ß×ʉý­„ÆÃ´ïbbt’Üâ,ì+U³K(­*"ë§ ,›’šêçT‘Pä—f3Ø3‚@àÏòb¶š¦Ž¢áÉpâðØ‰†cØœVžøÃ‡8±¿•þÒw(©)àò(N·U½ÐÊV §urlÏI~ûëOêó3.Ò „`x`”uÏo%O²íõ½,¹g.·?´›ÃÂÿùïßÃb³Ð×1Èähˆðd„X4Î`Ï~µÏåq‚Y¸¼¾ñÌ—ÉÌË 4ÑËíå'ÿô‹înbé}óŽí9Éž ‡(«/bý ÛHÄ’¤’)ŽïkåŽ,ÆåsL¤(¬ÌC(_ÐÍèà8ªªÒ´¬–ÆÅÕhªÆ3ÿñfßV˃Ÿ\…¦©¬}v3ñhœ–Cmœ:ÒÁÄÈ$]§zìÁísÉíMÊ`0à÷ûÉÌÌ$ b±XdÀ(½'ÈD’$Iº®TU¥¿s¦ƒQ¡ët™y\^ªª2{i-sW4à zˆGhh¨ª†:µ”b0 júcMÓP gîð¦Wü™¢M­þ“~¬jø>ð™»ø‹ÿK?è%¥^xl|2™bÍÏ72oEÙÁK/ƒ«A$Åísòä—¦º©³ÕŒªªôu²uÍ^¬63‰x2=é~¤”h8Š/Óƒ††Ñd¤¨2ÐM„ÑTm¯ïãÔávªšJÓêëB(‚@¶‡Ûަi|á«O_–­Ï™þ60iŠvÖury Áþþôuò?ùØ6âñ8]­}ddùpûœ¨ªJÃâjfÝVK0Ç/ƒ›”¦iô÷÷³aÃjkk%‘HPRR‚ÉdºúHÒu$I’$隘Nˆ–^\I€" tžêáðÎãú O7.¯«ÍÌÒÕóÒ )RÄ¢qÎ_šI»àÑfS›.å«f‡8¶÷$+]Â+O­gÑÝMVäž\(ŠÂ¡íÇèâ£ðà%Þš¦áÏôrß“wàñ:ÑÐHiúû£»[ø—/}OýÙ‡Xñ…Ø|ŒuÏmEÓ4œ^}˜L_ç`ºÎš¦uçzå#‹iZVÇþá9*‹©¬+Áíu¢iPÕXJeC)*)b*8Óª™9 f^'Evm<ÈK?\ÇÿêcUå3Ð;ŒÍaÁ“áÂd6²äî¹SùM@ T“2¹IišÆÀÀ§OŸ&ãv»©¨¨À`0È÷LºéÉ9 ’$IÒ5 ô^ UEUU’ÉáÉ(-‡Oóͯþ”`nøì]˜Íf–Þ?o`Ëë{‡#ŒŽŒ³{óAƧæLOîžn:kêÙ‰5õÌ}£ÙˆÝeãäÁ6FÇ&êe|h¦!ª)•ßühÞ€›/ýóoáÉpñ½¿y†H(zÞ2¶ÑpŒ×ž~‹X„ÇéaGjJ%•RI%S¤4•”ªOºNõ1>b‘8%5ØV@o o]³‡îÖ>þìÝ(ƋߟB°oËÖþb3cCã$I +rÓ+X!Àj·rxÇqvo8DoÇ Éx’ŽÝÍF*K¨_Áñý§xý™MÜÖLóÞ“øƒ^l=ÆáÇêTQ9«„WžZÏ@׳K¨_XÅÆw²ù•ÝÚ~œ#;[È-Î"¯$›ÑÁq¶½¶¾ŽA¢‘ã#“¼õâƇ'ÈÊÐÙÒÃú¶‘[œEËÁ6v½yc{O±è®&f/«%MðÒõ÷dÏÆÃŒ S3·«Ýr£?®zœˆ¦hÛÓßÀãñJ¥8xð ;vì «« ÇCqq1&“‰î®nŒn¼ºŒ]uéBŠM²íÄ›„c¡ÍB°¶ç¥]«kx~7º’$IÒ»oî·ÈN©¼µ²îÞò'–þöU ÛPS*½íSC¨ô^ «Ý‚ËçÄíu‚8Ó‹!„ •LÑÝÖÏèà8¾ ‡ì‚ B@w[?‰X!ÁÜ &ÇC„'"sýDÃq&F'AoÀ?ËK2‘¤ýD7ñh‚¼Òlñ#㸼âÑ8±h›ÝBFŽ®!â1}>FNq&«!cÃüÇŸÿˆ‡>s «.9÷c¸”ÑÁ‰ôp¥œ¢L,vsz´˜‚‘1ú»†ÈÈòáñ;éi@Sµôq£á(=mÄ£q2 8ÜvzN÷“LèKéf1ÛLôœî'MUÀåq064NWkŠA!§(·OÏtL$éi@ðgz‰„czo‡ÛŽÕna¸o5¥žÕƒ”]Äj³ ¦TºÛúÛá&»0ˆÉl”ÃynB@x4Άÿ>DY~ùù„B!ý{¡‰š>FÁŒòg©dŠÕ]Nõœ²KO<Ÿ*?íO?V§†_Íu MÃá¶ÌñŸu]¼Sûͤªz@"AAY6e9éë%®7/!N§“Å‹ÓßßOaa!999zéýaúwçû°»@~J%I’n]1`t"2F2•Ä \ݨ\MÕ®(˜Ñ—ÁÕ.ùܹà 5ŠÏK8½vv€u±òý™^2²|—|Lïs9“ÔgnsÞ²¿ÚTq…×äíŽ=óÓÉ/uí.u|é&#‰d’ÐÕÕ…ªê F<ªª¢(rŠï{@‚MDnt}®5€H’$ݺ&„àÀéó:†NQ–UªÝº ÐsW¢’¤›‰bj½8}E3—Ë…ÓéäÈ‘#ddd‡I¥RΘŒ.ägú=H_ÝNåPÇ.B±‰"8p£ët­ÉD’$éÖ•T?ž¼çé­ßÎ]ÝøAòüÅ òOƒ$Ýl„DÃIRjƒÁ@aQ!ÙÙÙ„Ãa†‡‡1 x½^ ÃôÄ“a†'äPº÷˜pl’ýmÛYwø7h/ ÁÖ]§kM†Å’$I·¨©‰è ðQMã/Ì&K¥ÓâRLFó®š$IçѰ$\_Åšåäæé¹lÆÇÇéëëÃl6PU§ÓÉ}9Û@WÉVdsï½CÓ4¢ñ0“±Éˆª¦^‚?Zä$tI’$é=o÷`î·PŸ Á®x"vûP"VކõF×M’¤³iÍ›ÀCÂð0à½WÄëõâóùB088ÈÎ;Y¸p!B€2éíy]h2yO Á>!ØŒÃû+ø€H’$ÝÒ¦þ¨iÀñ©/I’nB_ý˯¢¥(” -ÑмÓϧw A*•"‰è+› ¤h[éþÑsÏ>w£«/Ig‘Ë$H’$I’$½œÓ¡ª*Ñh4½z›¢(X­V¹ –tÓ“ŸPI’$I’¤÷!‘H„]»v10 ¯ÒêñxX¼x1.—KN<—njr–$I’$IÒ{ÑhÄ`0ÐÒÒÂÈÈ@€ŒŒ Ù"Ýôd"I’$I’ô£if³™ªª*FGG1›Í Ùó!½'ÈD’$I’$é=FA"‘àØ±c=z”ÌÌLsçÎ=“ D’nR2‘$I’$IºÉ ÎÏæ‘H$èî³“‰‰ l6›¾­Ì~.ÝäÎ @æ~þ[ÓßZ àd(-I’$I’tƒ<ß#´ g(¯Ø¶€dØl6jkkI&“¸\.jjj0éaX1Íè?í¿¯qîçW_("Ñ€00€žkBÛýí÷Y² 馕@fYÀê¦=€F%çÔvrP¡$I’$IÒ 4žˆÙí0øT5E{{;###¨ªJyy9F£“É”îýP€á¤mµ¦¦kç7á ¢º…ë…à鹟ÿÖa@•ˆt½‰ÿŸ½·Ž“ã¼ÿß3˼{°{w{Ì C13YfŠ1Nì@áÛ6M ¿&M1…¤iÚ¦&lj!¶e¶l˲Ō'àtÌŒ{Ë3¿?fou§™bÙž÷ë%Ý=óÐÌ<ŸçùL>˲ü/¢(,NtXµiIvì#ZêMAEEEEEEEåÃC@ˆ;1«0‹¾þ~èëëÃl6FÉÏÏgñâÅèõzŽ>Lǘ9¥f¦ H²ÌD DÏàÝ£r0iá[ÀÏ *„¨|h§KeYþ©Ýb,XR•GMQ:.›QTõUTTTTTTT>LA àcß–h´Z*++ÉÎÎfûöíȲL0œv¾,Ëd¦¸¨ZV~YÏX² Áõ­}Â[‡ësZ{†¾-€ øÎì/ü(ª !*“Ki²,ÿ«Ãj*¸sUkç‘ä´ªÂ‡ŠŠŠŠŠŠŠÊu¤*• €^¯ÇétRRR‚Ùl&%%…üüüwäKÀjÒSSœÎçPžl‘eù¯õ0MCFEå}eR¹[#Š WÔäS‘Ÿ ú‘VQQQQQQQ¹N/ÚeQILLÄívc³ÙÞUBYI’ñ$ØØ´¤§Õ”(Ëò¡¬„¨¨| ˆ€]’ä= 6MuQ†"«¨¨¨¨¨¨¨¨\·‚@0äÈ‘#lݺ•mÛ¶Q__O4}WéI’L¦ÇŬ¼4dX”}ØeTùø"Y@~fŠ »Å¨®|¨¨¨¨¨¨¨¨|$ “ÉDzz:z½žH$¢ŒãÞå\²F#’—ž„N£qÊ2åvùT>¾h— àpÚLˆ¢p] ‚ ˆ"²,#K҇ߢ(‚ ]㬆 Šˆ‚€$I×u{ª¨¨¨¨¨¨¼;dYÆh42wî\ÊËËÃjµ¢ÓéÞ}àì#zFŒD£)ïZ’QQ¹ Z@h´ïÀh ”Añ¤®¡,Ëñ%?A5"Š0•¢—pÿöî裹áV»ƒ‚âYï}p-hD ‚ Ä »eEÀ‰ýû° ´µ42ÔßGyÍ| &ÓëSŠFénk¦½¥‰‚’Y$$¹ßU9B¡ QƒF«}Çת¨¨¨¨¨¨ü~hkkãäÉ“¤¦¦âp8°ÛíèõúwžV#NÆ1|ØeSùøò®G—§kR_wI–Iö¤2{Á2 F-ç8yô ‘p›Ãɼ%«°Úìïy0/Ë2ÇíãW?üOæ.YIaIù{JSÆGG8¸çmFG†ÑjuhuZ¬6nOé9y˜Í¤q¥EEz»;yúW?¦îÄa¾óÓ§1šÌÈ—™ÚŸoŒ7_ÙÌóOü‚¿ýÖIr§\]tÒîG– Ÿÿý÷¯QP\Îí÷?r]b*******@ @mm-uuutww“••E^^^<á{Dýø«|`¼ëƒ&³…=Ûßà™_ÿ^¨“ÙLóù3üì{ß" ¢1ƒ~ù‡âJŒ(Š,YµÜ¢R"‘ð»ÈñÌ´µ:Á@€Ÿï[´4žÃh23Ð×Ã3¿ù ÿùÁù3§„÷#£ð®ŽI’Dfn+Öß|É B#Ë2v‡‹µ7݉é2ÂÓÌ:ø'Løâih4")i¸“ßaYÞÉ9*******ï­V‹ÃáÀçóáóùÈÊÊB§Ó©‡*×=ïzt“_LNA1Iž4*f/@§Ó#Ë2iéÙ”UÍÁîpR5w&³%î*N’¢üÀ…° ˆ¢H8Ä7>†›…ŸdÒî#øcÕEÇ`ÀO4‰«… ±¿R4 ‚@(˜ö@ʲŒÉl¥rîB¬ve•sX³évn½ç3üñ_ÿ‹ïüÓ_ÑÝÙOKE¢‘Á€?~ßÉüK’¤¨rÉ2áp(¶_Qk …3+>vMÀï‹o_ê¸ß7N4™R^åo(x¡<‚ …ˆF£î{QŠ¢H(dâ¢:Wžù ÇîE«Õ"F“™¿ð%–­Ý¿‡³½ ø}ñöœš¶$Eãåª75•Y–Ñëõ,X°€Ï}îsÜsÏ=½£8 **ïZK–¥˜!øäUƒŒ„Ê2ŠýÊCrdÿ.ŽÜC(Àd±°éŽûIr§0>6ÊÛ¯½HwG+ÿ­–;ø<ÉžTû{yó•çêG–¡þt-ó—®”Áo_Oomyž±‘aüþ ­XGÍü%œ?}’×_üî”4Ò³ryñ©_që½3éª)*I²" È2’%‰F±;]Üñàçù«/ÞËž·^ãÎ?O(aÏÛÛ8wê8¿ŸD·‡n¿AxkËóœ®=Jõ¼Åœ?s’ŽÖ&¯Ü€73‡½Û_§¥±žÙ –qÓ]¢Óë‘$‰ÃûvrxïvDX¾î&òŠJcö4öíx›“G¢Ñjim¬ }=¼ôôctw´ñů|ƒÑÄ›/oæàî·¸ïsBIyõô†|c£¼ýú‹tw´á÷O Õj¹óÁ/˜ìá­-Ïñô¯¥¬jíÍ —WáŸð±ýõ—X{ÓTÏ_‚rêØ!ö¼ýºâ@’X´b¥•³bÛ+ÏÑp¶ŽÊ¹ 9wê8í­MÌ[¼’MwÜV§û°û¸ŠŠŠŠŠÊÇA…Bœ9s†¦¦&DQ¤¸¸˜’’’KhŸ¨¨\_¼'ý"Aáäуœ8¼ÚÃû8~x/-õfçE‘£ûwñô¯Ì‚¥«¹ýÏÑÑÚÄoú=dYfߎ­<ýë±håzn½÷ajà­-Ï#ŠFG†ùþ·þž¡>6Ýù·ÜóÒ³rÁGæ'ÿóo1¡ås””Wó“ÿùWÚš0™Í´·4òâþ ¥•sÐŒ×d/E£¸S½$yR8æ$’$ñö–xóågY¹án¹ç!ŽìÛÅK¿ûµ²2 Éìyë5ºÚZ˜¿t5Ùyüè;ÿ̾[©˜½€ÒŠžúÅi¬?F£åȾ<ú_ÿBiån»÷a\IÉüÏ¿ü -õˆ o¼ø4›û3æ/]Í|ŽùKWÇW Œ&3£‰Ú#‡Bh5Z“=œ®=ÂèðÐŒ•QÔ°ûí×y江°xÕn½ç3Ô9ÀÛ¯½€(Š8’E‘To%å¸Ýè FŽØMow†³'ñ½ÿ:™9ùÜ~ßÃdåð½o~ÓµGÑjuDÂavm{•ŽÖ&æ-YEɬjžøùhª?ó®‚"©¨¨¨¨¨¨\Y–ñûýttt‘‘Á¢E‹ÈÊÊR¿»* Þc/¡îøaN;ÈÉ£©=r€¶æ@F"¡/?ó,V’$Ñ×݉+1™“G0<8@YÕ\¾ô·ß$;¯£É„Ýᤷ»Ù¿óMºÚ[¸óÁ/àÍÈ&É‚ÅjCFF#j8v`gO#%-ƒŽ¶ ##ÃCœ«;Av~)i¤¤¥sûŸãÁ/~‰ŠÙó‘¤kse«Ñh±Xl ôõ02<È«›Ÿ ɓʄoœ¡~œ ‰Þ»Þ@Ѭ*lv'‹Wo`Þ’U¬»é.ìó—¬béšMl¼í^tz=}=D"a^üݯÉÌ-`áòµ$&»YóÝÈÀ¶W63ÔßË Oýš57ÞAõüÅ$$&“˜ì‰«LÙ.²óŠâ/½ÁHna ƒé’¦²¥¼z._úÛ#+·£ÉŒÍî §³AÈ-,ÁfwSPÊœÅËÉÈÎ¥¨¬›Ã‹Ž*ñêsObw%°bÃÍ$$¹Y¹áœ I¼òìo±XmΪÄît±æÆ;X¸|-ëo½‹ÕFoOçûe§¢¢¢¢¢¢#³gÏ6oÞLKK 'Nœ`çÎ477¨ÎsTT®•÷´F'Ë©i™Üõé/ļ3V£å—žæìÉc€€ß¥‘ìü"šÎŸA’$’=©Üxçèôz¬v;-<õËÿC5Œ ‘–©¸À=Ww‚dO*6‡ãBL @q›ÛÚ|žh$B_w'}=È’ÄMw=HfNÑhY–°;]¦wTˆ„CŒŽ ‘™“ÏøØ(ÝmdÑpî4²,‘WTJõüň¢jddIFŠFÐh÷µ’¬l‹¢FQQ“eü>:ÛšY¶v“rN4ŠÉl!ÙBksmÍ øÆFÈÌÉWìJ`†íÊô—Ëäö¥—vd’<©t´6óÔ/ˆ¨Ñ0:2?[ŽÕ«,KHÑè…ôeE€ ‡B´6Ö“_„N§¨éôzR½™4œ«#àŸˆÇd‘%)¦*&ÆË¦¤«¨¨¨¨¨\;“±¿.F`2t€ˆ^¯§²²’¸†€ÙlF§ÓÅC%(ÿ4—õž)«ñÂT>$Þ³’ Ì”²,Ïèä¢F‹V«#'¿˜[ï}˜h4‚€/$ðÔ/~È‘ý»xè¿Bv~-Èò…í„χ•”h%Ï èõÌkoº36c/# Šñv|Pü.âyhD ­õô÷ts˧Â`0¢Õé)­˜Í†[>E$A@ˆÙ»Ìœi/·G–ÑêtŒ&Å?–/I’8]‰‚H(R ݹ`(~eïaWhYæÙÇ~Âу{”:Î+¤­©aF ÇËÕ‘F£Ál±Œ9˜´ñ ü˜Í–ËÇ ™î+@EEEEEEå*D£QšÏŸell$>ˆ#@È?AsS#‘Ç=C­\F™¨ó hM–„ËÆó¤¥ãNIS…•ß;ïZEB îí @Äi–Ìf å³ç³kÛVn¼•oápˆ¾î.l'ûv¾IN~1¥Us˜ÃçÇjw j4—W³ýõ—¨=²ŸÙ — ø'p¸A€ÒŠÙlþíÏØóöë¬Ùt;ƒ=H’„;Å«äO5¢‘È¥J÷p%¢b`‰ÐÞÒÈcþù%³X¸bf³•‚â2¶½²™9‹–ãp% øéëé"-cRß2–VÌ+Ôd] L¹‡(b6[™½`)'ŽìgtdWbMõgèjoeÕÆ[IÏÎÅîpòök/PTV‰ÑdÆ76Š,KñtF#ápˆÁþ^’=iø'&ˆF£ˆ‚¨ü›âµ+±oç›ä•QV9‡ñ±&|cØ® žÂ$‰áÁ m/€N¯g΢ålyþIúzHMϤ»£¦úÓ¬ÚxF£9îªX)ÿÔÁO}€IDATäìÍô¾ ¢¢¢¢¢¢ry”8\c<÷›Ÿh³¡Õ\4Db“…Q®Ž~zº¯˜^$ÿµ;^Ÿ13*}ý½dÏ⎿ðδDTTÞÞ} ‡i8sŠþölÅ+Ö¡7˜h:†#ûwá÷O°çí׸áöû¸ýþGèjoáÛÿJ+g 1[,Üvß#TÍ]Ä›¯læ§ßýwN—ù»¹úÓµ,X¶†#ûvòýoþ³àp%0Ð×C8¦©þ,ÅåÕÜvßÃüîW?¢îÄac£#¬Úx+£ÃCt´4 ø9¼gå5ó¦ÍÖ ‚b¿²÷í× ü=°‹áÁ~úzºhkn -#›Ûî{‡3A€{ù~ðÏ·¾þç””ãÃ’ÆÚ›îäø¡½üÔÞ‡;%•Ú#˜ðQ{t?¹…%œ8¼@ÀÏÉ£(­˜Í-÷|†þÞnûñSXZÉá};X´b‹V¬Çd¶pÏÃÌ/¾ÿm¾ñ×Lv^Cý„B!ŽÚ˲5›ÈÌ-Ä“–Î÷¿ùw”×ÌW6ÊÉc)«š‹+1I]QQQQQQ¹ ‘H„ÌôLþ¿?ýkô†ËE3ŸœØ»Úwõò牢†ÃGðÆþÝ×äœGEåýF˜ý…­–eyóKfÙÖÌ+ºæbKÃ9º:Z‹ÕJñ¬jôí-´4Ô# Óé)©¨Ábµ1:<÷ÔäñfWXŠÙbeÂ7Ωc‡ˆF£ä—ðOÄ€¬¼B|c£œ:vßø(yEe„‚úzºÈÊ- -#›h4Jã¹:Zë1[¬ä•âNñÒÚXOgG+È`s8(žU…F3]™ðsºöáPYVfîÍV+IÉßø8z½žÂÒ Z›B£Ñ_2‹Ä$7¾ñ1Ξ:Îðà)iéäÏB§×ÇUÆëOÓ|þ,Éž4Ýí4Ÿ?ƒÃ™@jz&í­Œ!Š"¹…ŸS¼üœ««¥¿·‹$w ¥˜LfF†9{ò8‘H³ÅJai9 çN362Œ¨),)Ç•˜¬ ******W@úØþÜ|õË_E¯7|`÷ÒhàÐáC¼º{7~ê3q=¢ ÐÜ5ÈŸÛƒÏü† _?üã/~ØU£ò1ä] ¢xA½Fñ–¤t^aŠ ’ ŠýF,>ȤjϤÑó¤M8EA@$YFŽ÷»pÝa@šb8¥äE‰Ä.IJÚ‚("^"ÓK¯¤=UIhÒ¦E¾Lñ©y™ >(ÄÒ!–gA˜º-Äëj2ß®b†ßÓó7Y&%/Š‘Ù”zu«Éã“êT“¿'Ë4i°~å:EYV \*¿êJq7TŸÚÞ±ü‰¢&n—"©n******Wåý@&¿Ã—úk4pèÐ!^Ý£ *ïZërnÞ”@zÑw¿_–‰^Ãu3ór‘Qµ$qUF9ˆð¹T^dYFž±oæ9—JK¾Â½/.ÓŒûJÑ)ǧ¦u©t¯\ÇÓ_âmu™ººT\««c•÷ÊÕ4¨|ˆ¹>Q':TT¦188ˆ,K$$$}ØYQQ™*SEEå#‹odÿøè‡ •A°9\è̶;+**× ¡P×^ ­NÇ]wÜ«Êç*ת¢¢¢ò‘DïÞÆD_V«MýÀ~¤ ¬‚Ây+¦xdTQù¤"0::Bskî$â%S}6T®3TDEEå#K_o믢 ¿Hþû DD¶ï|“Á¡A$)ŠFd©¨‰Dijn$9ÉÙl¦±±ÂÂBÔW¤Êõ„*€¨¨¨|$‘V‹;ÙMZZŠúqý"˜ÈhÀwu¤**Ÿ$)Š,ËTWÍÁçgtläÃÎ’ŠÊ TDå#€jdüûá#8‚“'½¯¡ Ÿ@„X`¶`ÏUQùÀˆF%ÆÇÇÈÌÌf||Œáá!Ô˜À*ת¢r]#KQ"‘ðGrlüQCE´Zê—êƒçJî1ß+¢øî„±÷#Od¹TT>éH’DsK#:Ž¬Ì¬˜ëüéçtvµóâË›Iñ¤ ©¨¨R_ë*ת¢rÝ"KQŽî¦¥þ,V«užóƒC–eÆ&|,¾á.¬vç'>v‹sH˜ëHŽÕ‰94¼ôÂ5rüü‹·•™zⱃéíí&7·½^ÿrvy&&&hjn$#=»Ý ÈñöœãgjeY¦§§›±ñ123²ßQž&ÓˆD#46žÇn³“šš¦ !**ï3’$qðÐ>:;;Xºd.§‹ÌÌltº Ï«,ƒ(ˆ$&&a6[¨¨¨¦²¢†wq@Eå÷‚*€¨\§D#z:ÚñzÒ™?oq<¥ÊûO4å—ÿ‚ññq¬×'v ;rªî­m-hµZ òŠ0 ¼½ãM¬+F£ FÃàà‹›ÍNQQ)CCœ9{šªÊ’“Ü:¼Ÿ@0À²%+±X,ô÷÷Swº–ѱQlVímüöñ_ðÓG#=ÍK$ªxNßžœé¼Ò>A€æ–FþìË_äïÿö_Y±|9íí¼¾õUl6;V‹•¹s˜èŠ +~ö؇Éd¦¦z6omßÊñGøÊ—þ†”÷Œ.pqžFFFxó­­,Z¸³ÙÂþï¿™S3Ï<ôp<—Ë÷'´‹©¨¼'¤h”×^‰-¯¿Huå¾òå¯âNVž×h4Jcc=õçÏ’“‡Ao ‰…>ìl«¨Ì@@T®[dd´:Þ´t òTÿh4ŠÝîà“¬ë&Špìø1¾ó?ÿÎ]wÜGSS¿üգܰñþëþû—ÿ¢|V?ø¿ÿbxxˆ{ïyˆ^|†7ÞÜBRb2¿yü¬_·‰Êòj~øèwIJL¢ºj:žoÿ׿Ò××׿ô7H’ÄÉS'¨;s’'Ÿzœôô æÍYHgW õX-VÊÊ*æôéZ’“=súôIúúû0 äæäS_DcÓyZZ›™UVÏ磹¹ßÄ8 457òÿþWþõŸ¿CuÕl¢Ñ(¯ny…¡áAÆFGyñ•ÍX-Vî¿ï³Ø¬6òó 9YWË«¯µ Z­­V‹ T–WÓÕÓE{{+Z­–to çùî÷¿ÍÍ7ÞΚU(-™Ebb2§êNsö\6«" 55§¡¡VKŠ'•9³çãt:U!DEå ÕjX½zƒ‘ ÿîdú)«¢(’žžIbR2ÑH”H4²ŒÃ¡>k*ת¢rÝ#ɲjdü#I|⧤ššèïïcþ܅جV~ðÿMeE ÃÃC<úÓâep°§3‚¼Brs xuË ”–”£Õjhnn þüYŒ#áPY’†‚ìÙ»ƒåËVQZR†V+pôèA¢Ñ(Á`€'ŸzŒ¦¦Ö¯»¨á7_eûÎmè´:öØÅÚÕyæ¹§X0o;vnÃåJÀåJäɧc㆛Øp»ƒÇŸü7Þp ¢("Ä7D£QúúûøÉÏÈÎ]oSQQÍ˯<ÇÊkIHLDôzîd[^‰Ý»·“Ë‘£Y·v{öî ° ˜p8̃{¹÷SŸF§Óqæl¿z짬\¾†h$Br’“ÉÄSOÿ–Ä„Dlv;I‰Éôöö••CKK#MÍ,Z°”ß=ý[þä¿ÂÚ5ë?é].¦Â'ðIü? \/.¾%I¦¾þ O=ó[RÜ)äåRR2 —Ë[i0›Íh´¶ly‰­onadt„ûï}ˆ6©jX*ת¢¢¢¢‚"%%%£Ñh8yêMçINvãp8Ñhµ|úþG¨¬¨á¾÷ŒÒÞÑFcc=©)i˜M&’“Üܸé6Μ9Å©ºZd@§Õ‘—›O[[+--ÍH²Ì„߇Õbå¶[念³îîNŽ?Ìk¯¿ÄÀ@?:žœœ<2Ò³Øtí;q„Þ¾DQdÞ¼Eج6Ž=H{{+MM TVT“›³Oaн”Œ^oàŽÛîaáü%‚êêj9pp/5Õsñ¸Sp¹(((âÍm¯‰DˆF¢¤¤¤±fÕzÎ;MYiƒCœ9{ŠC‡÷óöŽ71èõ46çÎÛ?…Ãá$?¯oZÑH˜¡áA|¾qª+ç084H{{+Á`¼¼V®Xˉڣ }²}Û !ÿÇö勞¯wš-‘Êõƒ,+«ð‹WmÄj³è¶q’$ÑÝÓ…Óé"*EñMŒ# Â4ùU–A«Ñ±`Á ŠØòÚKŒûÆU#t•ëUQQy\¬Û>õ%ñ6¨«8×3’55óذþF~ý›Ÿb4šøô’“ÈHÏ$''—ììlÒRÓxýäqþ÷ÿIŠ'•Ï|ú 46ÖÓÞÞÊ’EËñz3øÕc?¡ FƒÑhàKúÿñÔÓ¿áÿöuÜnY™9dffc6™ãBN§chxˆH4‚×›ARb2z½³ÙBŠ'¤ÄdÆRGILHÂd2ãMKgé’8NNÕÕb2™E‘ŒŒ,Ì& ² F£ ÛÃK/oæø‰#,^¸ŒÖ¶$YÂíö0oîB¶¼öÿóÝo¡ÑhIKK'9ÙF«Ájµ‘’’F‚+wr z½±±QÆw’;Ù5óø¿G¿ËÆõ7‘––A^^Þ´töPVfÖ­½»ÞFÅxšV‹í=ç/ß(=çO1«´što’jãvý!Ë<ûÂÓ ôa³;>tDE\Î::Z©?Ž;n»³Å2ãY GÂìÝ»“­Û¶ ÓéXºd¥úíQ¹îfáG«eYÞ|ã’Y¶5óŠ>ôLEEA òsäÍ)Î)båŠÕ×Ý T îô)ÞÞ¾NOFz&‚ ÐÐXÙl¦ ¿ˆÞÞºº;HMõ²rÅZœÇu§zFùÏï~“ÊUIñf"_o•})çý(÷Þx+ÅÅ%ï[ÿðû'C£Ñ`·;e‰‘‘aœN:ž±±Q|¾q@Qw°Z­ƒAv»FƒoÂG(Äaw ŠdYÂçó1>>†V§Ãh4ðOàr%âóÇT¡ô #E£ŒF´-²,c±XWò‰D0 ‚À„»ÍN(btt°Ym‚ì6F£`0ÄÐÐ ÑhQ1›-ø|ãèõl6;Ñh”ѱĘ*V4E£Ñ I‹•‰ z½I’ˆD"M&ÆFGG"h5'Á`ññ1Ìf ’$¡ÓéÐétŒ¡Óé”tü ˘L&|>&“£Ñø~tÞØú*M]mԬ܄F÷þxû ‘þnjßÞÂM›n'//÷º{¿©È|ç»ÿIî¼¥dåäàªX‚ 08ÐÇöçžà«_þ*z½aÆ9ƒý¼õöVššÏ³rùZjªçÎXA“e™á‘aúÐhµxÜ)˜Læiçh4pèÐ!^ݳƒ?õ$IÑÏæ®A~üÜ|þà7AøúáñCn•#ê ˆŠÊ»Dáðáý<ù»Çøçøéé™ü÷w¿…(ŠT¦c6›1›•õd[¹Ýžøo»ÝŽÃaoËò…k&÷Y-°XâÛ‚ b³Ù°ÙlñûجVdG|_Š1%î²wY—ËuÉ|Ê2èõzl6«”°c{™Òëõ¤¦¦L+‹Óé˜æÊl6]²d †™z“Ñ8-F£1žæ´óL¦x:N½cJš†iùù$#Ë2ѨL4ª®Ž^È2H×Q?D"=zQЈΞ;ͬ² L&Ó´ç)r®þ4O>õ çøâçÿ„›n¼EµQ¹®P•÷‚ 0>>αãGðûýD£º»{9vü æ-¦¤¸'…@ÀOQQF£Ah\ç\j`|±@pñ9W۾ܾ÷zíåò3•‹ûÛÅey§uq­y~·÷TQQ¹4²,Ó?ÐÇÙs§ij:½¥‰U+×Å…}P&ÆBá çÏŸÃd2c0š†Bª ˆÊu‡jù¦¢ò^el6³kæQ\TŠF£ÅëÍ`vÍ|<žT$ dIB’d¤¨:øú}156Æ;½î½Üïý>÷ƒª›2/WJïâû½ÛvRQ¸R}^üoÚ9×xý•ß÷šþ'µßˆ¢ˆAo`ßþ]X­6¼iéDÂá)ñƒ$‘¢7Þp+wÞ~³ªHñ¤ªß•ëuDEå= 7HMI£²¢§ÓÝn'Å“JeE¢¨! a±XÑh´â'ìkù!Ž„™ðùˆD"˜ÍæºÏ—B ««“'÷7l¸…¢¢¢kZ©š¼î…—žeÞÜETUÖ\öü~%}ƒÞ€ÝîxGÏ€ @CãyöîÝIr²‡ÞÞn6¬¿‰äääOÄ[Eªªfó¹‡ÿˆÔT/z>ãC  òêk/b³ÙqØ8>ýÀ#¸\ êÊ»Êu‡*€¨¨¼K$ Ö¯ÛÄ¢K1™¬„Ãð'ô4Z-²,"I Õêø£?øsdYÂfµ">’Ê 7ÈÓ›g߾ݸ\ Ì›» ë”ÁîÔÁðÅÊDº{ºøþÿ‹Â‚bJK‹â‘¿/wÝäïP8DOOãÓΟtè¡Ñ´´´päØ!V._ÃÈè0cc£€Œ ñt.×7.•ß©yšÜ–e%=a2¬Ä”ëdY1:ml¬çåW_`ÁüÅ‚ÀK/?‡ÛíaÅòÕq¾§©ßçK–§§§‹W·¼ÈÜ9 »”)çCA^xùY z#«V¬E’¢¼½}+Ï¿ø Ë–®ä‘Ï~AY1TŸ‘+"Š ðÄSqúÌIA +3‡o¸•¿û§¿Æaw2wÎ?on{üüBdYfÑ‚¥X­v¾÷ÃÿdŲ5Üzóüö‰_âøù»¯ý ¢ßûáw8th?óç-böìy¬Z±&>pìÏñ>Æåûɥމ"|ïÿÉÛÛ·²|éjŠ‹J¹qÓ­ñgóâþtñ³4yߦ¦ê×ܼév&ü>‘ðŒú¹ÜóòQ'RWw‹ÙÂÂù‹b#.”O¯×3«¬‚;·±s÷vR<©def³jå:jªglêAåã*€¨¨¼Kdœ'.§3þ‘öx¦ü ‚€ÇãAT#ÓßÁ`€½{w14<ÈwÜÃÈÈ/¿ú³JË9rô ‰46§»»‹ÄÄD–.YEk[MM ¤¦z§Ÿ}‚¶öVª«æ°uÛDQ¤¨ „±ñQÆ}ãÌ›³÷20ЇÛBii9.W"áp˜—_yžÖ¶Š‹JñùÆiji$7;ѱQ¾ú·_æÿômœNmí­¼öúˬ_w#GŽ öäq2Ò3Ù°þ&RSR9s¦ŽÍ/üÒÒr’x{ÇVÌf y…ôôa6[˜;g!ÛÞz ŸÏGnn>9Y¹<ûüSˆ‚ˆN§C¯×“‘‘E$áô™“üüW²`þb@’%Ξ;ÍÞý»1è ¬\±–to:@€ÃGp¢ö‚™™9ÔTÏeë›[¨ª¬aÛ[o06>ŠV£Åh4’”ä&3#‹¦æ~ôè÷X·ö\ ìÛ¿I–)+- $•¶2MܸéV›§­­ÍÏÿŽ»ï¼ošÑ¿ÊtDZZšøù/ÄC~Žìì\þ÷ûÿIzz&,^¸ŒÕ+×±ùù߇¸ã¶{Ø`O?û85Õs9sæ‘pNÏÖm[ÈÌÈ”{wwf³…OÝýÇáoÿþ¯IKõ²léJÚÏØø©©iÌ*«d÷žítvv ×ëÕ ƒQ£aÑ‚¥X,VÞÏÈè0e¥,œ¿ƒAKOOÁ`›n¼w²›®îNÞØú*ýý}-\JwO‹.åÈуôJš­­M€@YY>ŸûÂh2¡ÕiÙòÚK ô¡Õj¹ãö{9rô í8N–-YÉ‹/o¦¯¿—ùs²vÍ ù˜+==]¼¼åyÞ|ëuŠ‹J¹óö{q:±I åÕä±há2’’’±Ûˆ¢¨>O*ת¢ò‰åJ³Î×ÊÅÀ—3 V_þ<² £‘ëodÛÛoðó_üˆ¢ÂR†G†8~â@€ùó²ù¹§Ðét öÓÙÙAWO'7l¸;A‘e™ÿýþ·¹ÿÞÏò³_ü_ùÒWéíëáåWž'-ÍKwW'Ûw¼IbR2ÝÝ,Y´‚=ûv24<Èà`?:­ŽÂ‚b¢Ñ(ýìÚõ65ÕsÑê´äääñÊ«/ÐßßK[{+ûöïÀ7áãÜ¹Ó +û2Ò³ð¦¥ÒÐXÏOýšÜœ|vîz‹šê¹¼üêó|þ‘?æÀ¡}ìÝ¿‹‚ü"“…B45ç±ßþŒ{>õi~õØOY¶d%ÛwncÕŠµüæñ_pçí÷b4šØ³wýý½H’Äèè¿yü9zoZ:N§‹to:£££ìØõ½½=”–ÌâÍm¯qúôI†G†)-™ÅSOÿ†ó³}Ç›¬Y½ç^xšÏ>ôEtz=Gޤ¯¿›ÍÎñGE‘µG øý˜ŒfeF­V‹N§UÜÒŽŽpðÐ^6m¼å}y6?Îø&|Œâñ¤’áÍTÜ)Ž ËûöïÆd23îGÔh°Yíx<©ŒûÆ%9ÙCv¶>/·£Ñ[ÝE‘¦¦ó<»ù)vîz‹Ú“Çøî=J‚+Qq½¬Õ²åõ—¨««åà¡}dddátºxeË‹ÚO£Ê'’IãCQ¼ÌïØö例¯„˜€ßÿ®üº_ÎpSåÃEˆë»çdçáóù°ZmdfdsüĪ«fSVRŽÅb%77—3!>@$ `³Ú(,,Æd² v›ƒšê9aµZE»ÝÕf'/·»Í˜Mfì6IInÎÖŸ¡©¹£Ç³gïzz»c£ŒŽŽ ×é1M¸\  F #.§ò» ¿ˆ””Ô)ýR@– 6!!³ÅBRb2ÕU³ÉË+Àép’”˜L$áµ7^¦öÔq|>áP§ÃIaA1.§‹¼Üüx%i4Š!«ÃáÄh4b6[HLLÂápžž‰Óáuޤ¤d:»ÚIHHÂãIå7·°bÙj’“ÜØl6f•UàNöPRT†ÉhYF«Õ¢Õjq9]$%&a³Ú°Z¬JþÍŒ±8&¡P˜£ÇŽÐØØ@cÓyÞÙlA£½0/ÖÜÒÈÄ„Où럠©¹‘@ ðawµYoZ:‹-ãС}¼²å ò ).*Åb¶rëÍwrï§>;ÙC0à­[9~âóç."/¯W"kVoä¾øg¬\±fš‡N«cöìù|éOÿ‚U+×âv§PUUƒ,ËìÜõï§·§ß„«ÕNEy5¥%帓=TUT“š’†$É$'%c4Ñiu¤¦x5 Ö§“),,!Ý›Ir²‹ÅÂØø˜bwbRÜYïÝ·“¾þ^A ®®–]»ß¦½£•ÑÑÂáP<ŽŒÉdæÐ‘457R\XJbb2w ÀÅX­6L&3¥%³ÈÊÊü°›î=#"©©^r²s±ÙlÆËÚÐȲ²êît¸p¹TáCåºC]QùH!Ë2}ý}tv´Ž„1›ÍHQ‰@08Ce™to&©©©H’LOoÝÝX­6êã³gééHòµé½ûÆhnnÄl¶“‡ tuw¡Ñhp'»Õ—ü‡ˆ,ƒN§%-5d¨(¯"55—^ÞLjJÕUsð¦¥óÿþè˘ÍÆÆFIII% ÒÓÛ×›Á?þý7ÉÌȦ¢¼šÌŒlf•U’““ÙlA«ÕÈË+ ¦z.v»ƒõk7ár%°vÍFÜɆ†Y0o1……%ŒŒ 1»z.³Ê*)+-ÇépqóM·‡ÉÉÉ### €ÊŠjÊJËÑju¸“/¨ ‰¢ÈÂ…KY»z#f³…95ó)È/¢ ¿˜¼œü òr øÒŸüÃÃC äç0«¬’¬L¥ ™™ÙÌšUEVF6…ÅXÌòó éëëÅ`0àv§0§fÁP€´Ôôx ‘Šòjòs ÉÉÉ£öä1ÊJË©¬¨Æd²ð•?ÿÙY9d¤g‘•‹×›Avv.IIndY¢°°«ÕÊœ9 %‰œì<::ÛÑjµôdYB–%V¬Xƒ (³ï›n¸5nT«4ê…¶EF]ATz<©üåWþ–¦æF¢Ñ7mº ¯7ƒ/ýé_QXPŒV«eÙÒ•¸cQíK‹Ë(((F’$R<©”—‘šš‚(.¥ ¿A$¸ëÎû‘e A€Õ«6›£Ù‚ ð…Ïÿ?†%¨ªÏ7ŽÇ‚V§ÃãN¡¤xNg))i´´41::‚ÓéB«Ñ"Ip÷0wöLf3‚ pÇm÷PZ2‹µÇÈÊÊaÙÒUô÷÷RS5—œœ<ôzU•³ G <îTV®X‹ÃádÕÈ0~¿¿ßË墲¢†oüãÐß߇$I¤§gò×ñw¤¦z?*°Ñh”³çêèí퉽ücß¾ËÛ ¿Wg**׊*€¨|¤$‰={wòÜ󿣬´¯7ƒ7¶¾ŠV£eΜ Ë ö³ÿàæÍYÀ oÅëMelÜÇ/õ(]ÝÌ®™‡ ü?Ã#£È€ÙdB’dBáúXDåP8„ÉhB«Õ01ág×®·9W–²Òr²³r‰DÂl~î)ÒR½Ü~Ûj §­VGYi9e¥å ’”˜DQlÆÕd2²|ÙêË^_R\Š,Cù¬Ši–,^?/';ïªyÉHÏdVYå”krf V­Xÿ˜4í˜,ƒ×›Îm·ÜÅ-7ÝAq‘í½° 8~ÎâEËâ¿ssòã[”±ú¬2%ï³.*KYYÅ%Ë‘š’6íþ&“™ys"00ÐOZª—ê·àr%"Š"«W® /·@¹l•%7'Z:)žÔ u¸&©®šCuÕœu7YOÙÙ¹±|Æþæ\½Þ? ˆ¢HNv.ÙYJ½L@WNéOy¹ñ¶™zÎd{D£àMËÀ›–(ÇjªçÄOïk —^v;ÙRb}Hfö'Y†êªÙTWÍž¶ù²•dgåÒÒÒDqa)5553Þ£%Åe×\7Õ®éÆÖ¥%³â÷ÿ¨#Ë2¡PHydY±‘Ÿ ~1J›Ë‹²«|ü¸>A@•Ï?ÈðËôõõÐÞÑÊêUëIKõÒØtžÔ”4òó I÷¦384È /=ê•ë)ŸU‰,ƒb‚=ûv’œä¦° ˜ŽŽ6"ÑçÎæ¥—73::šÕhïhãôé“–`³Ú8pp/>ðÅE…t÷tòê–Y¾|ul€+púLMç±X,ªÖu†eÜÉÝwÝF£¨]kÀ¼‹ÿ¾_ùy§çÏ*«¤°°½^ÕÜxžßç²È28 Å‘£‡Øpþ‰ Ž;Äü¹‹ÐjuH’DWw'Ïn~’®îN›X²x9QIŠ»Ÿ ŒŽÒÐP ,^´œ]»ßÆåJ ËêR÷u†(Š1#Ûk;ÿÝ?Oº¾½–K/vSz%4 f­é}T]ÉeêåE“éÚêñj.…¯µì*ïŒ÷b¸ÿa·‹(Š˜Ífµ_\A ÀÐÐ áH˜MoÁíNÁjµÍ¨7I’èííá\ýiAdÖ”UO•ë…Yƒ¼ùü˜Ðêt\Û'\å#àócw:˜»ö6´&ËGv Ëœäæ¶[îÆìá—ý„’¢Rzð´Z§NPâ+L²"á0‡“œì\š›±Ymˆ¢HKk3gÎÖQYQMbBzƒôôL*Ê«Ñëô¦ªÛ¬vf•U Imm­ ÑÚÖÌèè--Mܰñ¼ii ]ã:ŠÚÁ¤@xu¡P`llœºÓµäç’˜˜xÍÇøøçêÏâMó♢nt©{È2446 ‡)((º&õýzL'UÒúzÉÎRTfššÏ£ÓéÉÎʽj^®–A€±ñqºº:ÈÊʉ«1N‰Fhh¨Grs b1 ”‡E]U¹Àdß9¦ (ûbßFaJ¬ Qèè§¡¡žÒÒrlS@^É&Ÿì“……ÅW<_’¤‹l bgÞ—rÿþëú£„(*ž¿÷Ú†ÂÂb4š™.vÃá«ƒ±ñQüþ 6¬¿A­c•ëŠUåAéïëãÞ[ïÆb¶¨âÇ„(œo8ÇÉÓÇ …‚èLͺ‘’â2dYÂíö`³Ú¸iÓm¤{30™Œ$&&qÛ-wMDŠ¢H(Æh4²~Ý&DAÄëÍÀív“žžF£ÅãNáþ{>CCc=‰ IX,ÒÒÒ1ŒH$%¹Y¼h9çÎRZZAº7ƒG>û‡´¶631áÃép©/øI’hh¬çì¹ÓD£ ò‹(.*C£¹ôw2`™(BGg+ÿø¯ò7õ÷¬X¾‚HäÒš Sƒœ ôövóË_?ÊM7ÞFJÊ¥@0ˆÏ7ŽÓáäíí[áOóÿQf¤9¹=ɵ,ª]êú‹¯Óhàô™“l{ë þßý9?ñ+’øã?ü¢¨¹ê½/7Q„ŽŽ6žyö þà‹JRbb<˜£ @Ðà7¿ý9:½ž¿øó¯¢Ñj9zôímx<)ÔTÍÁjµ|¢øP(ÄÁC{iniÂjµ‘š’†Ï7Nz½`‚`0HRb2 ,&œĩS'øÖ·ÿ™ïüÇ())‰§›Ñ' ./D"Q|¾qL&/¼ø ##Cüãßÿ[¼Í&¯å¹:W†sõg()*£¨¨ˆžž^êΜ¤¤¨'E}÷}ÀôôvS^V‰Íf§¡ñ<}½½x½éÓ‚ˆNÚ}ø&|ŒŒ 3:6Êþƒ{HKõR^^©¶“ÊuÃu ‚&³™Ò’ÒiîUÞ_&'‚›Û?쬼'DQdÁüÅÌ›·­F‰ðÅÏÿIÜ‹ @ZZ:úÿþ­Vßg±X¹å¦;$ N±X.¯F@`ýÚÐét–Ä”5 ëÖnЧc0˜7w!55sÑiu‚@Qa±HÃj°§A€‰ ýög457²fÕzêÏŸCRS½tt´c4fdt«ÅJNNÃCCôöu311Aýù³ìÙ»›ÍŽ;ÙCCãy"‘0n·‡H$B  +3›¶öVÆÇǰÛ˜L& ò‹°Zlœo¨§··›ÄÄdB¡ CCC¤¦¦ÑÕÕÁO~ö¾øù?%5% ‡ÝýPTTJ{{+]]¸œ. ‹±Z,ôõ÷qæL²,‘šêÅd4ÑØtAp»Sðû'Ðëô¤¥¥Swú$Ñh”´4/»“SuµH’„^¯G 9ÙÃÀ@?GŽäà¡ýdeåÐÑÑN8fph¶¶´Z¹¹ùXÌ¢Ñ(Ý=]´¶62nw i©^êÏŸ#Å“BsK>t:‚ ât:™˜ðQ{ê8{öîdNÍ«¨$| ªö#(ŠØ¬v@™MìãùN2kV%GŽ   ˜mo½ÎààF£‘Mo¡±¹½Þ@QA1¢ °wß.=ÀÍ›nç¿~”êª9dgçræÌ)D†šª9¼±õUÁ&£‰Å‹–³ÿÀ´Z-Ý=]DÂaV,_øoŒ£Ç# ¸-ݾc7Þp]ŒŒcµÙxñ¥g¸ùÆ;Øw`7§N ##‹O?ðU•ÕÔÕÕò­oÿ3§‹Œô,òó xö¹'©©žKbBu§Ob·;¹û®û8vü0 õÈ’ÄÒ¥«øÞ÷ÿ“´´túúzÈÊÊE£©¬¨¡··›ß>ñK-XŠŒL àç­¯²õÍ- îýÔ§Y¶t%££#¼ðâ3´´6‘˜„ ,Y´Œ-¯¿Ä¦·òßßý&V›žž.òrò †‚ܰáfxü‰_ÒÖÞBbB;vn ¦z‘H£Ñ(.“ ò‹¨=y“ÙLÿ@?/¼ô,_þ³ÿ›í“'€ÈÈD"|>†‡‡E‘p8Ìèècc#,\¸”ÓgNqôØ!Ì_ŒN§Ÿ¶ÊÛÚÚÌž};cíš?~„“u'°Ùì¬Z±–‰‰ öîß…o|œŠò*=ˆN¯GDúúûøñ£ÿËŠkE§ÓS\¬ ƒ´w´‘î͘`ÓË• ¨c}Ûê÷,+žÍæÍ]ˆ€€$KdeæL‹›sá\I–ÈÌÌ"à÷£7ÈËÍSÇX*×ׇò{âý0´û°õT>x>îmüq-ßäÌßšÕp8œ<ÿÂÓTTÔ E^~å9²³óÈÌÈ¢³«ƒ¤¤dš›9xx?#£Ã|öÓ_Àh4!……żøòff•UÒÚÚÌW¾ôUúú{imk!?¯Ó§OÑÞÞJ~~ugN’˜˜LsKÅE¥ ÒÛ×Muõ††ih8G{Gë×nÂl±PPPDíÉcôõ÷røðFGG8td?]]¸Ý¢Ñ(]TWU3>>FwO.W‡ìG`hhˆó–päØANÖ ¸°”þþ>šš8ßpŽººZ’’Ütvµ3wîÚGUÕl^zù9¼i¸“=Lø}œ¬;$ILø'Ø`gÏ&7'~¢R”‘ÑaÚ;Ú¨(¯æDíQòW•’HgW·Î]ÈÙ³§ÈÎÎcóóO1gö|œN22ÇŽÆd2ÑÚÚŒF£% …âíJìÚ½]»ßæÁû¦¨°„¶¶ôzC¼o†Ãa4 Ñh­VC$E«Õ~|=ÄÊm2™ñxRâ}ÒéLÀãIÕ|É(¢ ÐÒÖÌ‘£ñxRèîꤳ««ÅŠß?Á‘£‡ü„Ãaüþ ††1Œ$&$áo¦¨¨³É̱ã‡Y²x9Í…á Øíš[ãBdcÓy&&&hïl§:2Wµãù€‰F¡ªr6åÕ±UwQÔ\ò]ÞÓÓMSs:âš\Eåzã#€H’ÄÀ@:§Óõ®Òe™±±1"‘‡Q•èËÒƒ×í‡ñ:ã‚‘1Óô_ß+Ñh”‘‘aôz=‹5Þž š?Œ2¾¿ýjtl ­V«D®þ1iSÖÐXOww'IÉnÊJË™ðOP{ê8·ÞrY$'¹IKõ ð¦¥c±XxkûVjªæ–šNjJ©)iØmvRS½$%%ãñ¤°cç6ÆÆF™7w!MÍ ¤¥zÂápâNöàr% jDzz»ðûýôôv3<<„Ål!==ƒ’â2êÏŸÅjµF©ª¬¡¡ñ PU9›ññq%Úº `Ð'K…ßïgph€Ye•d¤g’ššFZªFCgWÞ´t #Í-„C!“1[,¤¦zIII#-ÍKŠ'·ÛƒÕj% b2[()™EcC=V«¼¼ÁéÞ ’Ý@‰ŠœäF§Õ’HjŠ——^ÙÌg>ý, w ))i¤¦¦ãñ¤àv§`±X‘%‰°¥¬´œ¤$7ããcÈ2Ì©™Gmí1¬1~ÿ;w½E[{+­m-èt:jOÃۙԮ%;+—æ–Fr²óhl:¯¨»½Cë¢(ârºp9],\°˜ññq’“©®šÍ‚ùó³ÙBRRò4û£Ñ„ÛB^N>³cªo^om­Lø'Hñ¤b6[xsÛkôôõ0gö|Ì+Ñh›ÝNšìÅd2‰(Îôze¥W–Áíö‘žEGG®„D'Þ´ †‡‡H’¤ ¿DQ  ŽÒÁ¥5G´Z-ÙY9ìÚó6©ž4 ò‹ÕÕ•ëŽ"Ë2gÎÖqèð>Ì_‚Ç¿{ w’›ú†s¤{3øôŸŽùdž—_}…Þžn>ýàÃq£=Iº ²4õ%„bú¹müá¿„Ýî ¥µ™»Þfp°Ÿ„„$n¹éœN{,/JZò{òžp!XØT#M.Úž¼æãø¡½*‚âíåb$Iâࡽl{ë tz=ÙY9lX· §Ó¯ï©nÏ'ëóRƳ²»Ïƒâ¡¡!¾ÿÃÿ¢¨°„òòj††8~â(##Ô—W±võF }¼/i^hÛÉ´.nóéå¸ÐÎSûÛäï#G³åµ—0›-,]²‚Ù5sâiN-ãä=.vÁ) GO]ñExåÕçñ¦e°|ÙòKèm ñ¾ù{oòX4ìwp‚x¡È2 FæÎ^@NvF£ “ÑijÏ=ÉÂK¨®šƒÓáâ/¿ò· †xôäp8ÌÀ@?O*ÿñÍï‘””̲¥«HNr³dñ ò‹0M|ùKC0Ä›æeþ¼E˜M|¾q,V+ãããØmvFÇFØ´ñVÒÓ3ðùÆY·æA ++‡Ù5ó1ŒÌ³€h$JJJj<0_nN>E%h4Àaw"I`4ÉÌÈâž»dÙÒUèõ–,^¡œ_\JNN>¼iéüÃ×ÿ±±1A$5%•¥‹Wœäféâ$%¹Yºd%ÉInæÏ[ŒÁ`Ä›–ÎÈÈZ—3ªÊÙ~RS½È²rï%‹—³`þb¬VìáSw=HqqZ–¯í$'{˜UV‰;ÙMYin·‡‚ü"dY"== “ÑDuÕdY&Å“Êò¥«E ƒI’¹ëÎûY³z#Z­'…ôôÌiÍw ƒ1ö׀Ǔ:Mí(ÞßEQ«UÔQ®ñ…)Mq±ý~ LH]ÛD ˆ±¶žÞÍf3>ð‹ÕÆCŸþ<.WBüY]µr•5hcöѨàï?¿õ}òó )+­`xt—Ó¥Ä+Wåf³™žžnŽ×Ád6±téJ J% ˆD"hDÍ…‰˜M›,ƒË™ÀêUë"++«ÅJey5ýý}Ølöj¬'@#jÐh´µºÈ²÷ðö~FÙ±ë-††Y8 «—3AéK‘œì&';NÑhødŽ#T®k>vo !Ôpï¾]æÏ[ÄK/oæ¾{bvõ\, Ggdd­NÇ3Ï>IKk3%%å$$$10ÐGVf½½Ý˜LfÆ}cø&|˜Œfimm¢±é<‘H„`0Èó/RSÒèééRTc.ѧdPúF4Š,_ãÇó*}crõF’ä+·» 06<@KS#‘HäšûS_wç´ûk4²²²ÉÊÊž‡üv@vN¥%³8Q{ A().£ªr6ó·NZª—Ö¶BÁ ÷ÝûÃ#CLLŒÓÙÙÎÁCûøÉÏ~À×þæŸxü‰_±|Ùj’’’9Uw‚ÓgNQRTF(Š”´Z ùy…ÔŸ?dz›ŸdÑ‚¥tuuòßßý&^oMMç¹÷ž‡øí¿dÞœ,^´œ‡¹›‚¼BFF‡¹ûÎðù|l~þ)ì6;sæ, ¥µ™gŸ{)% òé>ÇÆõ7½/ËÛPwö<»OÿÑ| ˆ€,…X¶d!󗬼ä‡Z™õc³‰—9‹¢Hcýi6?ý ’hàêBˆ@4Bï§$·xFZ##üõötvup®þ uuµøýÜzË]üî™Ç‘¤(V‹QÔ06>J‚+‘á‘!þà F__Ûw¼IfF6‹•W¶<Ïòe«éíí¡³³Á¡ÆFG dgç21áãTÝ ª*gc1[øÅ¯åégG«Õ’˜˜Œ;ÙßýÉ_òÝï}›E —qèð>Ž=HiÉ,r²óyúÙÇYºx9ÁPˆÁÁV­\ljÚc<ûÜ“ŒqÓ¦Û8td?sjæó'üe¥ô‚ÀÙsu¼ôòs,_¶ Ÿoœí;¶27ÜÌ+[^Àh0‰Fp:\44ÖãMK¹ ^Æ[ooexdˆ ënäDí1\ œ>}’ÚSÇéìî˜áCUFGFùñÅjw^Ṵ̂,Q]šË¢•ë0Y—eúƒ$º=è F¤Ë¸Êú“Çø·G_b@H¹¦Aœ,ËdÐÉŸ‹ÂEû/üÖju$''OÛÿ^"‚¿ß×\-šµÙlÂb1Åݪ^-ý÷ûréË(ŽÜnÏ4áàZëãJç]m…÷ªÑÜc.G7ïj¤m»Q£»†W‹€~ä ßüÚ¨š»0æ%h&ÑH˜Ñá!’Ü ˆ—}Ç ÀKÏ=Ëã»z͉×4äàëóÅ}ýjmzµ~p¥[›ŒFÒÓÓßÕêúµô¿0:â{/Dciº¦v%4ÎÆb |á\žô÷w•M#²pÁRããcdfdc2]~‚ròØÇ½T>š|,£ÑHMõ\¶½õmm-|ásLJJ*@€P(D0`öìù|ñ󟧣³Q¹qÓm<ñä¯ ô3>>F(¤±ñ<'N£©¹€ßOv¶2S*#£Ñh¨ªœMbb?ùkýé÷¹ïÞÏÐÖÖÂçùcþë»ßäô™SÈ’ÄØø}ý½ü~‚Á 9ÙyÜzËœª«¥þüY¾ô§ŪëøÅ¯åà¡}d¤gaµZ‰}ôÞýÚvŸ•Ãù`°sÕ/µ Âp#©îz,]5ãE*E£t6×Ó××GVv.ÎdOÌ Nžq® ŠôvwóâñÑÔ¹ôŸbµy‰›C$H®tbÆI’p¹ظáfÒR½<ûÜ“Ẋ8{î4¡`€¥KVR\\Æ7þõo))™ECc=9ÙydefóÚë/Q{òCÃCæ‘–šÎÆ 7óèO¾ÃáD’%:»ÚY¼h96« ƒÁ€Õj£¹¥‘¾þ^jO£¹¥‘¢ÂR ó‹ä§?ÿ!’$1»zO=ý~¿ŸH$ʄ߇Óáäî»àø‰#üò×?áô™“èõêNŸ$-Õ‹^¯çî;ï'Å3uVS¦¬¬‚;︧ÓÅ˯OyÍl®Ä¸ºËÅ×GÑMYBÔ‘©¼ßdIy‡^./þ>$ÃI.î¿SUrß¹0½\÷¹ëY¥wªJ꥘TS½Tþ/î³WKëÚ‘A4 ¥.Ešl×Ë—@ùçï%ª«½Ê¹ï¶Ž¬V+}ý½€â–×7á»äª×T0Õ>Uåzäc)€@^n¡2ðl8GNN>½¢óìñ¤‰Dð¸=H”•VqòÔIþïÇߥ° ˜¹s°}ç6D‹ÅÊððN§“¼Ü’“=¸Ýü6´-áp˜cÇS{ò8Qdù²ÕÌ™=Ÿ3gëxf󤥤±bÙj,f í£¥¥‰ÔT/™xÜ©èuzÊJ+X±l5[ßÜB[[+y¹ùÜ{÷§ñ&°Û¤§g¾¿/­,É`tÆv\êk4i¨"@h„á™u,„ƒ~Þxú—<ùäo)«¨båú›)Ÿ»„„Ä$l΄K "`MQ^Îá eŸnªòÉó h™Ñº‡‹œ¬\23³HMIãž»äõ7^&;+—åËVÓÕÕ×›ÁìšyTUÎfÓ ·rðÐ>Ò½xܩȲŒ×›¡xr{¤„$–,^Î[o¿A$AE¼Þt,VùùE,\°„ÇŸøû÷ïaÝÚM„B!2Ò3™;gã¾q~ý›Ÿòàýàõf²lÉJZZ[(*,F«Ñ’žž©Ž&&“‘‘…Õbcöìyƒ4 ^oO=ýæÔÌgvÍ\l6;ÙY9d¤+úø%Åe¼ðâ³FÒ½™ô÷õa³ÛINVtîW­\K8&-5 ß„¬Ìlô:=&“‹ÅŠF£¡²¢†··oe` Û¥bÒ7¬)±v¸Œ`8)8 ‚vðòò,3:>†ÓéÂb¹š[W™Gú}4 Ÿ}è‹—Ô©¾‚ ÜwßþÝìÛ¿› ëo¤´¤<^¥/½òm|ö¡/ÆcÐLS®½æ[]1¡p˜ŸýüÿÈÎÎeãúMÓ_‚ãããüèÑÿeÉâ,˜¿ð²ƒ3Ÿo‚Á~L& ®Äˆqq¬ßÄ7'…×Éÿd ‚Þ¢îšFáR$ÂØÈ ‡îãTí1ʫ璞•DzÕë)©œ‹Õáš©ë?)xHQ: öLÐY§Ÿlyæ²–â,¥Ÿá‘!¤h§+w²çš¾ >r”£G‰F0›-ÜvË]×Ð÷¯FFGð“ìö ÕLš„B!‡0Œ8Îiõ!Ë2ŒŽàñ¤b6™bl|Œ””Ôx¬”wǃÁø¤™|A¸œú7<®ô¯°²£Ñ(G¢¥¥—+‘ÁáØ¤ÇôÛƒA^yõyºº;‘e™’’Y¬]½VÕ¢r]ñ±@&½v|õ¯ÿp8ŒÍfC5üç·¾(ŠD¥(:­ŽpnØp3K/GŠJ8NæÎY€ßïGÔˆXÌV$Ybb‡,ËôоÿäàFV®\Ǽ¹‹›ÍŽÁ`䯾òu|ã FlVe¥ÜqÛ=HRQÔ ÓéE‹ÅŠ(Šüñ~™ññ1ìv'sç,Äç'ÄÏyk‡ø TŽÆ^ž÷µ)i³ç*/S9V?öîâø‘ƒXlv–._Íw?DFnF³9a9žþäGx¼=fáXR,ì´ ™žÏ‹˜†›o¼õë6ÅU¬n¿õnÖ®Þˆ X,V–,ZŽ^¯Ç`0òÃïý“ÉÄ-7Ý(Š&þý_ÿ›P(„^¯G«Ñ"I‹…ÜÜî¸ý¤¨„V«Åf³#_ùó¯b4Y0o1š˜mÈŠå« MfLF#«W®Çf³¡×øÜÃ̸o A0ŒÜ~Û§°X,¤¦¦±`þ,KܘxÂçÃh4²xá2t:²¬ HW­\‹$IñFiI9éÞL41Á8## ƒÞÀ²¥«X¼x9½ì¬¼Xÿ”X½r=¢FÄsã)Ë0wÎJKfF±X,—þɲÒ/¤L¶›Ì¯ á1ûÀ”oGA5déB[ ˆÍ4/bMõghª?Þm¯ÒÙx–êE«ÈÊÉÖ‰¨Õ"NÎOÞOÔ*÷<­äÇàKêeg•ÆÆFùÇo|ÑÑa6¬¿‘-¯½Ìçù#–/[­;ÈȲ„$]ð0&Š¢2ñ ŠÜïgcª 2‘ˆ²¢¡ÑhˆD"H²3HUê&‰ €Ÿg7?É„"á‚ÀcÇsúô)î¿÷3D£QDQD§ÓrêÔ)‘°Ò&’"tM¾&‰DÂD£Š‡!­V¹g4*Åìj¤xe ‚@4aûŽ7fíê±tdÂá†`0Èë[_!--ys ãϦ(Šˆ¢¢JY{ê/½¼‡ÃÅ]wÜKvVÎGbK4¾NB`ñB4 4Bh-œþ5¤Ì…´Å1¢Òo/5£. qõR€@ ÀÁ½;9´oÛ¶<Ǻ 7Q³d-9yx2rÐé.r ,½òc¤YyntV°e\±ÿú|ã|÷{ÿÁî½;(+-gù²ÕÜrÓñvÖhD$Iq¿:Ù#‘0‚ b2éikoaϾäæäãr)j¼Z­QÐÄÞu²¬¬ÞK²³÷RÚ_3åyÌÒ£ñ>999£ô•(’$ǯ›ôØ7ùwRµMù‰åC¼d¹GFGyú™Çiimæ3Ÿþ<9Ù¹Óž½Ú“ÇxáÅgÈÈÈâæ›î 9ÉM8F«Õâ÷OðÓ_ü--lÜp3«W®ã‰§~Í™3§øìg¾HeEMÜ3Lÿ¤M 8ãØE¹„ÐŒ4Ñ–ïS¢"ØÊ2Ô?)sÀ䎽S43Þ‹“(“sïv…DyöÏž;ÕbE¯Ÿî”Ai7™‰ _lebÂ÷îŸ+•ˆ¥–*áÂKåâeJ9öÁOJLŠo zìvû´ó¬ËŒô'Ó4›L˜§è`Ê2X,f,s|Ûh4`4&_6 “Éw©'Ë ×ë0›M3Î{Ÿj"i„ÑVH(RfnD=ÈåXÛ[€ w€¨}œ´â”™j„˜W ”`0H0ØÇóÏ<ÁÁ};É+.§¬¼ŠE«6RPV…xñ¬²s5xúŽÖÞÅ`LâJ*@&“ “ɯF‹ËåŠ×ÕÔßN§3Ö®† Ç/á†Y–×…F£aÚ>»Í6͸óâ4d’’.x1›MÓÚoò‡Ý1mÛfµb³ZgœŠçÔY-Q§•Ë+ÿd”kŃ΅:1ÓÒSêI7¾|Ÿ’¡¿†ê!¹RQÕï³ÆZ•ß}'”Aœ3‘Á~ú‡F¦¯dÄT°&|ã3î066Êã¿ú ¿ûí/((.eñŠuÌ]²šö¶f"Ñè…‘ÏHD& û ² ž€â{•YÆËôI–¡¯¿—¶öVúú{8vüGŽÄ›–A[{ ™Ù;q˜‰‰ tZ-:ž+Ö€,sêÔ þý?þ‘Ûn¹ ¿ßÏ›o½†ÃîdÝš<³ù zûz¸ïžÏ0gö|êNײ嵗¤¤dŽ;„Éh¢¯¯—´T/ƒý<ÿÂÓl}s éY<´C‡÷X¿nO?û8îã¾þ¯ÔŸ?K__/ ‰ÜrÓ¸Ý)œÆæ§'¿ ˆ w<@Åì ô;Q‚žÃà] íoܻ֬ð®é+"÷ߘºnZj:Þÿn·‡­Û¶°õÍW ‡Ã¬\±Ž½ûv²pÁRöìÝÁºµ7pæLc㣔•ˆ­ªZ,t:=ÛÞzƒ'Ž”äfÁüÅ:¼Ÿ±ñ1æÍ]H{{+ûöïÆ`0 Kñ•¿%ÝëÙI ÐÜÒDKkK¯d`°Ÿ7·½FVfåUl߹ѱÊË*ÉË- ±©to]íØ¬vöìßIZj:…El{û rsòY³j}Ü{×…º†ŽöVš›Y³z#ñE‹ÅÂüy‹il¬§  ¿‚–æFtZ-/½ü6»êª¹È²DeE CCô÷÷ ¹aã-œ¨=FFFÛ¶½NNN™Ù$&&šƦóÔÕÕ’žžINN»ó2~2ô„ñ.e3{t삌åб’Êc“3`Œ222BÃ¹ÓØ‡fª» ®„Dœ‰ÉMÎ]¥‡ `Ðk©©žÃÑc‡˜ðOPQQƒË™0ã}îó£Ñj©®žC__/Fƒñšï£¢òûâc+€Àµh¾=ç÷Ã0ôÝ’¾'ü}Š¢ÑÃðye§·+n¹Êl³«Fi>–[_žñ" ü´¶6_òtvt°ëÍ-ló5üƒ/S¦nJ16Û®dkÍ®_¾Þ‰楌W߉ñnÒ/ýâý.ã”3!ToUú†3WQ…ÒÀ?Ž@€´£££•Ç~øm>|I#ô±Ñ‘ËäC‰ø|¦î$¾ÑQ:Ú[#ªœrRLíAkÏh~M™Ý¾ÊÞãIehPñ2ÔÓÛÅÉS'(+­àÔ©ãÌ*«äàáýxÓÒini¤¿¿Þ¾‘0w {÷í$ ÐßßÇɺh5ü ¶n{ ¯7ƒ‚üB$IâÅ—6sìøa¢Ñ(¹¹ùxÜ)Š+Yo&‚MMçùí¿ddd˜ŒŒ,RRÒHNvóäS1î#STXLeE áH˜®®¾ûýoãõf°aÝì?°‡#G±qÃMtwwòÚë/c4š°ÛìtÉìÞ³ƒ¼¼|>QƒÑ¤¬veef³ÿà<žŽ=ˆN«ãð‘Øl6AàÔéZΞ;ÍŠåk°;~¢QÅó˜pÎNsKc,òzÑGcõ 4 :‹ÒwñßðDüŠmIQŠ'Ñh„[_åôñ™ý6VLŒÑÝÝuÙþF©?wáù§hÖ¬Ú¨¬¡ÜÑ‚¥8ŽiîÑEBáQIÂãI¡³«ö°oÿ.l6;.g¡p§ÓE$Æô3:6JTŠr fÿ& °ÿÀî¸ý¢’¬25ÕKsKf““Ù̯û :ž/<òÇ–àt¸ã±ßþ«ÕƆu7²`þâK!2G ¡$¶"Vö†bBGØsÀ] r”––&^y¾ƒÙvÑKW ðQRϺ»ÆâH¸&#uA€ ¿ŸÝ»·3::BQa 9Ù¹$&$ÎPÁ8rìßübxd»ÍÁ?üÝ¿q Z|**¿W®kä÷±ùƒºS ½–d¯Ñ©…˜ÿùHP±¿ÐY`¢GYbv)ÂGhTÙF™•‹FÂHS2' ,«_É×¹N§Ã“ê%ÑB4‰Í4^üŒY Ú3•‚¹Ä9—(Óëu²þ4E…éRõ(ŠÊ¿è;ð@ü‰DŽ*m¡3+‚ax†Î(®µ(_¿¢¢%ˆT-^Í‚ wN¯TÂÁ OüâÔ×ÕNKÞjµ’œâ¥ ¨„ùËÖ’‘GAI9G÷íâìïê Nê`鬊–Ù­!f·¢Js¥¬ÇTì'ÉÉ4Ml5Ià|ÃYÆ}ãȲŒÑ` 5%>FF†ü?Z­³ÉŒÕjC€x,W·¼HFz& ‰„ÊkgI’dE}³§§ ½Þà¦ÑhÑét„Ã!`ç®·øÙ/þ‰‰ ²²rIJJ¢·¯‡Ö¶þëþþþ>†‡C«ÑP_Äko¼ÌoŸø%Ü÷0§Ïœbdd˜Ûn¹‹“§N`0q'§0¢B–!à÷#Ë0>>F4Å`0b6[A%Š6™žÅØøOþî1î¾ó¾iªr’$±wßnöíßÅœÙóAø¨<(2XÓ•É•\1Ïy½‡•'­\…йôv´Z=÷|ö©ž·8.|MEDºOóÝù*===ÓŽYÌfÜiä±`Åz ʪÈÊÉç‡ßû_ÎO™`1º”çÇèÑÆ„)*¦—íÀȲLnN>wßy?6«ó õø|ãH’„Á`Àd4qöÜidY¦¹¹Ç~ûseådl”@,( ,Ë„B!ÞÞ¾•Ógë¸åÆ;himB¯7PR2‹ÙÕs9|ä ‰IdddrælÝ g‡Sq+.KD"a´:CCƒXbî¬)*(áÄÉch4FÇF8tx²,“””Lª'´Ô4ÞÚ¾•úóçW‚øvvu‘àJŒÇÎêéÄf³c4Ù·e¥ôëû‡Ã$%&ãv§0>>ƹs§1 Øm¶½õí%‰066F(bÎìùtv¶3»f~¿Ÿ;·‘sµDHñ¤•¢ÓʇÐi4¸ÝŠ•ËÛÚà̃îCÊ{HoktPúžÖ¦$h~K˜U^ɺWJæ4U+Aém=Oýá]ï8Nˆo|œ_=ö9€ŒF ò‹(È/Æbɘ6UZ<‹¿øò×bï?³Ê*Õ@„*××­"Ë2@h4‚N¯ÇhP>êï×C‰„ãÑ[C¡ `4NÚxLÏG4Û~H’tMA—dYæT]ÙY9˜Í櫸š” ȲŒ^o¸¤®êûŠ) ¤\:Î|EéÚˆÊKUgö0\¹…%¬ÜpËô¦ ôÑvú(ðfl—€V«Åb±RR^MfN>7ÝyžŒ\¬6fÛ›GL–ZYé@$e` Åô¦¯\ðH$¢ÌrÅtšEQ$0îgÿþ=Ì›»¤¤¤iõ'ŠP__Ï™su¬X¶úcIù½#(ƒýð$U(}Å”¤¨öå·Æ½G!iÞÜt–¬\#9mºN³ ˜˜à—ž¡žZt:=zƒ‘ÒÊæ-Xš›îÂæLÀ05‰0Õ!© IeÊC\¥"w€&¶Rv K/ÇnwRR\†¨ÑP]5‡´T/ÇO¡° ˜êª9¸ÝÒÓ3q»= öãMË@’¢?q”ôôL>uׄ#<žTû‰F¢¬]½‘‚ü"@Q×»qÓmD¢Q4¢ÈÆ 7±oÿnL&3Z­bË“›“Ïý÷~†½ûvQQ^Cù¬J/ZÎØøóç-¢° ˜ç^xš®î6®¿™º3'©©žKvV.QI"—[@iÉ,Š ŠÙ¾ãMÜnE…¥øý~6¬ÛDvv¾˜šÛí!%5cÇSZRÎêUë¨(¯âwOÿ–Ù5óX¶d%­­ÍX,Vt}Ü|ãí”ÐÕÕ‰&fô+Ë2££Ã´µ· ‡HMõâ(v|4ž³GQAVTJléÊ,Æ u¨A !ÃF.e—0é5H)¸^o ))™Â²JJgU²ö–OÅû¯ ó.v!2V*ïµÉ¿™«”~7rš‰^¯gîœìÝ·“§Ÿ}œ…ó—°rÅ~þË ÉÊÌᑇÿµÇ¸aÃÍÌ*«d㆛éîîÂjµR>«Š´/Q)ŠFÔ €ú†³¬\¾NÏ™³§‡ÃTW͉كY1™Lˆ‚½T‰?³˜Ù5séììàÐáýŒŽRS=—_þúQ‚Á å³*ÉÏ/$!1‘¼ÜRS½¤§gRþ,ÅEe¤{3°˜-Šì$7…ÅFDQääÉãÌž=“§N0{öÅ¡DEy½}=xÓ2ÈÏ+dtt„ÑÑa,+éÞ JŠË8yê8·Þ|I‰É”–”Swº–yóáLàø¹÷žOǼ^P³ÁjµqÏÝâM˸r\”ÄYàÈSÚPÔAê"ðÌV„J^içhB£ OéCâ”n‹›ô—#d“øßÿþ ¿{æ· S>«’CGö_Ò–DY-ŠîÍ ¡±žÝ{¶SR\¤ !*××­²gï^|éYl6;……%TUÎF£Ñ›“ÿžÓÖhàÙÍÏÒÐXOVfol{•Œô,Š‹JÙ´ñ–ø ÀèØû÷ïföìyôôtÓÞÞʲ¥+1Wü(K’Ä«[^àž»Äb1_A%Fæø‰#ìÙ»X¼hyy…þȬ¼,Ý5\}awAúôÓJ³•ëàÙ˜1tt†[¿É­VKJª—oË×n"=§€¢Ò ,vçä‰ÆÜŽ(ÉQEø™Æ#ñôôµ$IìÙ»“=ûvPZ2‹Æ¦ Š9p`K—¬ä¹~GNv.ÉÉÓÞÞ±•ï~ïÛ¼°y+6›*€\AQ#H®Šm˱zÊqòn‰YÌv"ËÝHR”h42]• fŒš‘ÇøØ(«o¸•ÌœŠÊ*±;PÌt}wl%[©›rkþŠ9W쯬üá¿ß7»f.² kV­SÜs2S|¹ØƒÌÔíYe3öO+È/â/¿üµøñ’âYÓòâp8yðþ‡yðþ‡ã×ÌŸ·xÚ½.XÀúµ7Ls °~Ý&Ö¯Û„,ËìÛ¿›Ä„DnÚt&“‰E —²xÑÒ«öaoZU•³ãåþë¿øú?s±{-œ¿Xq÷ +vB›n¸•M7Ü:­,4ÅÒL 'ˆÊàQ¸¶wªÎ`"#§U6K×ÞHZF6ù%³Ðé/ØWMößio©ÉÛ‹±Á¬pÑß©çL½L“ÉÌ÷}–îûì…"h 3#›¯}ý+ädçqß=0i*%˰bùê}çrÌ*-¿¤ø¾nÍF¥6ÆâEËù·oþ=Á`‹ÅÊü¹‹ÈÈÈ  qìøaúéëïE«ÕÆ‚ž%QXXBZª—#Gâ›ð±tñ Μ­£§·›þ~AàÀÁýtt´áJHdÞœì;°‡W"ÅE¥hµZÚÚZ$—ËÅ„‚;·qøð~Ö®¹‰ cãcÌ*­ þüYÁùyÌ*«äDí1ëY0o=½=´¶5!Ë2¢¨Áfµ1wÎB¬Ö‹\0Ê2Dà qõ8 1oH—@–e´zóVm"9»ˆÊš¹x2ru9¦0ƒhD™%º ѰâÎòâÝR”cÇs¢ö(’$qþü9z{»Y·v…Å ñ­ÿüWlVZ­–9³pðÐ>öØMTвwß.ÞÜö Ìdôz½â¡HIHLŠ…¡Y¿îFL&ã'ãå-sí}¢‘X;_*-½ÁÀ¾ü·È’„ÁhR<ï\!`¥ˆŒÎׂ6(\Ó¡$ƒîåJ*{3Ù]áœËm_mÿ«ô¯¹l =”ÇÜ9ó©©žs: ¼£´§–ûâWÁåê䣅ŒèëD3qD DxÕ‰è&Ú®ØÇdY&!5ƒÏýÕ?ÇÔ]L(Þ‡¢\Ng_$Šfø$b¨—i./‰€A°ú¹šÊi4ª»¿þÅ3±÷Ôd/ý÷Ê5u¹ò^yÿ¤ptï=¡Óêfx^ú(pe-„+\(…‡N¢¹Æv%8‚6!pÉ•µ÷Š(j¨©žË™3§8xhy¹˜ÌÓä(ÎI ,Z¸”¦¦"ÑY™Ov*Ÿ(®KD@`Ù’•„‚AÞÜö+—¯% ¢ÕhäÕ-/à}øØ»o'G&)19`k÷žíœ¬;ÁŠ¥«Ù³o'îdcc£x½œo8˪kIH˜î…D§Ó‘–ê% Æ>ÎÈÈ&“™Öp˜¢¢Rl¶éˆI&=t`åZ™²ÐÃzéU'VϬ¹K)Ÿ·,lMVfR/åßU–1d{‰\ý! aN7E‘to:½ž¶ÖfÖ®½7ßzÜœ’t-‘ü&m<®E¯ë!IMMç‘% oZ:Fƒ‘p$<à V$¦¾þ,õçÏ26>ƺ57|@5¤¢òî¹.Ap:]ôõõr÷]0gö|8}æ·‡OÝu?^o7ßx;™Šßõì¬\n¾ñvª*g+ƒÝ¼BæÌY@Rb>Ÿ—+œ¬<ì'Ñ(,\°”œœ<’“òÙ?$33 ·;…‡üÕh4ZÊgU¢5ÌŸ·ˆ¤Äd::ÚÐ ÔTÏ¥±é<QCYY9 D¥(I‰I,êXƬ²JlV˜G¤OÊŒŸV§'=¿”oÆ5ÌÞ¾1w ¶p±§’™>Ž8Boov›P(Ä /=Ã?ÿ§xÜîø`ìBò”·0m€65¢p0À“O=ÆCŸþ<.—“‘‘QÆÇÇHLLžfÀ:5!ûâûrÉ{2=|ä mm-”—ÅT^äù™Zî‹ï=y\áܹ3üË¿ÿÿûß?!11IV2N^+£Ä·D%‰­on¡° ˜Â‚â÷šWQ»woçɧÃÏJËcˆ|ÅzD€€?ÈÐЇ“]»ÞF’% âm3yþd÷Ý{vŽ„Y²x9N‡sf—bA ×.À¾ß¼ãbAqÉ7õlA À[o½Ȭ]sC\àºRLö_A' ÐÞÑÆ÷~ðîùÔƒdeeÇm8ÜË©ºZB¡ yy,˜¿;eJ.¦? ¢»÷ìæTÝ Ì_ÂéÓµ,Z´ŒÌŒ¬x Ä©Fõ“í‹|áúöŽVvíÙAyYÒ”åÊ«õá‹Ë6¥–ééíf÷îíÜ|ÓŠw·+ÖÏûЮ¢¨´Ù‡ìÊV–e$Y"33À‚€v†ãeÅ´° ˜O^¯†Šò*uõCåºãº@æÔÌgvõ¼)ž$.lΣ´%&&Q_ùLÿèO1¬\±6f<}!-€Å‹–M¹n¾é@™Õ4™ÌTUÎP„ôÌø5S#)×Tͧá°;â~ÆA ?¿Ü\EIÅx“dz³rÉÊÌf2¢1Àº57L+—RþÅÌŸ·(¾ï¶[îž–ïK1ãCsS:©2õûæšï)ÇVW.1˜ÐétÓŒï»÷¡øïxA¨¬¬A@ ²¢A(,,‰Õ'€¢SkiÆÃ“äæäýÞëæÃGŽ÷‹£o¼óÜNG ²ù¹ß±ÿÐnØp3v‡“ÖÖfZZ›ÙöÖkˆ¢@R’›––&ÁY™Ù +ñL&3%%etvvÐÝ݉Åb¥¬¬¨áô™“Ølv2Ò3ì'[!ݱó-ž}îIî»÷!œ==]Xmv ò‹hnn¤«»#f°[Lýù³ôôtS\\J~^~ÞÞ¾`‚W"³fU10ÐKGg¹9J\QàÈуD£QJŠË” }=deæ“‹ ˆ<´ööV\ ‰$&$ÑÓÓEvv.iiéœ:u‚·¶¿AWW­mͱèêQôz=i©^êNŸDNŸ9ɾý»y྇ÉÉÎ%))™öŽ6ÎÕŸŽÍ¶š8|䆌Œlf•U Ó飧§‹‘ÑššÜÜ|Ξ­£··§ÓEIÉ,†‡‡¨?6¶ú¬áùŸaþ¼ÅôôvÓÜÒ„7-ƒ‚‚"Ξ;M^nE…ŠÇ±ó 稯?£Ä‰p§0Þ|.¯Íwý÷Û+å3 ðúÖW@–YµrZ­–ööVNÕÕâñ¤’’’ʾý»A–III£ ¿ˆ3gOÑÛÛƒÉd& °s×ÛÌ®™Ggg;»voÇ졬´›ÍNZZ:O<õkššùË/“'s8¸Ÿ¬Ì22³8uê]]Jß_ºd‡…ývóèÏ~À†u§ÈÈÈBDNÕ¤§§‹ÄÄ$‚¡ ÿ?{^GræïÃwwf3³,Ù’™†1™À„9›Ý,dá»ûfËÙÝl’ î„a’™L†™m™Ù–%Y`1Ãaè~ÿ8’,ÆžI2¦º¯ËÖé>ÕUÕpΩ§êyžOrR j\¥¯¿“ÉŒÏ7Nͬ9¸\›èëí&sí-ìÛ¿‹ÕJEY%ûìI|æÊª8yê8ã㣠Fâñ8yy$y“ijj`dt„²Ò <ïÄ¢Ñ(cãc„Ã!ÜK,£¦z]ÝtuE§Ó3«ºö²(¯7dY&;+‡ÝËåÆf³cŸ&pÇ9Õpœááaôz³ªkhii&9)…ôôŒêz®o®I˜1ðž¾ïråf–¹üño·ÿ2=D–¥KÖqþöå–¬ÏX»Øù_®MÁ¹k29»{¥Ï†àÆ  qðð>ô:=K—¬Äãñ…PÕ8{÷µ™»ïz?gÙ³o'»“ŽŽvFFG0›Ì,^´Œ†Ó'éêîD§Ó±~í&‘om{«ÕÆ]wÜ7áç’hop°ŸÓ§ð‰DسogZšX±| û÷ï¡«ë,……%¬^µž§žyŒŒ´,222‘eåëßü7’¼Éø~>úà§ÙúÖtvžeñâåDÂaÎv´FسwU•³ˆF£<õÌc PVZÎ?ÿx=I<òÛ_ÒÓÛÅÊåkyxÏO!';[6ÝÁC?ú±h EQ8}ú$om{sB ÅD~~‡`ŲÕtwwÑpúƒýìÞ»“ÌŒ,Nœ<Ê›_%+3‡Úš:~ðз(*,A¯7ðÿöMl¶t ñý¶ÿžxêQRSÓYºx9¯¿ù ƒý˜MfÖ­½…3-4œ>…ßï£nÎ<›NSXXÀÈÈýè;¬]³‘#G²~Ý-”•& ¡¡AÒ3²Pd™á‘¡mF66‰P8È‹/?ÃK¯<ËåfÓúÛùïoü+…ÅD¢>ðþð𯆢ÓÑ×Ûúµ›hm;Cue L•ßþÞY>ÿÙ/³zåj ò §ROçåpìØa^|ùYtŠŽ[n¹“‡ó3"á0>ß8ÕU5¸\V$z{»éèhçSÿ<££Ãüà¡oÓ××CrJ*.§‹¬ÌTUÅ𑜔J[[ yy¸ÝŽ„”¦ÑÒÚÌþ{Xµr=cãc9zˆÆ¦¾øù?çõ7^Âf³ÓÓÓ…Óébtt˜òò*^x采C,_¶zÆï¨,Ë °yëë ô‘äMæà¡ýŸ™(IIÉ¿[ßõHÂÉ¥µ­«ÕF’7‰hô\Q,ãðáœiiÆíö°k÷vÂáÛwlÁðóÁ¼¡®‡àú柦A x‘噞“ÛÒÄʹàæA‘uxÜ^Âá0==Ýôõöà÷û°XläÑÕÝEgg§OÑÜÜÈž½;ilnÀépGŽ¢ ¯ÇK8âè±ÃìÛ·‹³gÛÐëôŒ1ÝME–eœN99yô÷÷qòä1Ž=È¡CûìÃb±Ò×דŒÅ9rì#£#@b¶r` œœ<ÚÚ[8uê8{ö¿‡cÇÓ××ËààÐ?ÐËÉSÇ9ÓÒľ{ˆF#¨ªJ4ACchh€²ÒJ-\ÊÞý»ü¨jœÎÎN’––ެ$t!ºº:èèl§§·›£G0wî¬V.—›Ô”4††èêîäØñ#ôõõ°wÿ.º{: ƒdffsàÐ^ü~ßÔçN’$šÎœæð‘„BÁDBŒ±QÒRÓñüœ:uœÆ¦L&‘H˜P0£——[pn•Y‚®®JJÊñz“¦î©Á`Äçgllƒþú˾ôNÑ4H4B `|lŒS§Oø1›,ŒŽ02’ÈòxüøNŸ>ESóiÜ.}½ÄÕ8™Ù¤¤¤¢×ëÉÉΣ««#¡†>Q·¦j A4¡µ½…'±c×[=zˆ3gq:ôõ÷›–nËnw`09zì-­gØ`7`«ÙJVV‡¤áô fUϦ ¿Üœ<Œü^o³kêp¹ßøÔyêuzV¯ÞÀ‡>ð1/ZÆ’ÅËY·v~øS8/æº(\E®ÙàíÐ4UM¸ íhÇl2“žžA,£ùL 6«ƒÁÀÈÈ0™™YÆ Ó­¢Mù*ÿáý†ï5‰T¡fn½õ.6o~7Þ|ǃÑ`¢¨ ˜Üœ¢Ñ(&“‰h4‚ÇãÅb¶ )(("‰`2™ðù|¸\.'Yd¤ga·;ÈÏ+$5%¬Ìœ©ŒDyyäçp¶£ ¿ß‡¬Èäf瓚’J__=½Ý,^´ŒÌŒ,23³ˆÅbô =½NOqQ¹9y”—‘››Ï†u·ÐÚÞÂÂK ýèõz¼ž$RSÒ±X,—²aÝ-D£Q ó‹1HHdgå’•CFF·nº‹P(@aA1ùy…ÌŸ·ˆ@ ±]_DWWƒƒSXXÌþ{ص{;™™Ùäæä188@VV™Ù8B¡¹¹ùäQRRFNv%Ee‰à_51À,,(¦nö<:»:ÈÎÌ!--¼Ü|’¼É˜Lf ‹ñx“صk£££¤¤¦¡èû1ôx<Ùöãtº9ÓÒDá„˪ªB^n>G&°4'ï†D)ŠBFz&§Oñô³SXPĜڹhq•‚‚b’¼É”–T“CqQEE%ÔÍ™GGg;h Ý—@ ÀèØ(E…%äçFq9ݱ2iiéCAdE! ãt8III¥²¢š¶öššOOehœÀ[´`)×߯±GY¼hÖ߆ß笠°„‚Â"ÜÝî ¦z6í££³}*‘‹ÅbÃåö`µZÉÈÈD¯—‡CØlvJKÊ1™Ì¤¥¤áv»ÉHÏ"))NGJr*³këÂétM)¼K’„Á` É›DJr*yyŒŽb™ˆLò&ãÿƒe »–Ð4±ñ1ÂÀà^o2:E7cB$5%P(Äþƒ{سw'±XŒO~âó,[²ê†þì®?® D’bKŠr‰^]GÈr"cÍ0%466ʱã‡éíëÁb±ò«‡œÙõüõ_ý-££>þëëÿ¬êZ¢±ýý½üé¿‚ÃáÄh4 KÒ”—Ãèè(==ݸ\nFGGHINÁëñ j“Ùu&2õ¨×gùÍŽ¢(Ì«_@qa)Ã#Cèt:l6; ,Áh4%>v;+—¯Áï÷%XуiMC’eT5Ž¢èÆ‚Á€Ãî`ÕŠµ„Â!\Nµ5sp»½¨*Ô×Í'7'½^nž5«7LhñÈ´µ·’‘‘Å'>ö¹‰Q f‹…”äTâqp»=|íß¿…ÝfgãúÛñx¼S³ºž‰˜P8„N§§¼´‡#á÷][SÇðð:E‡ÃáDQ>ÿÙ?Ã`4âvyøË/ÿCÃhšFZj:…EŒ¡St$'§°`þbB¡n·‡ÝÁ¼ú…hh8.–,^ŽÁ`dá‚%˜L&ŒFË—®Æîp (:æÕ/Än·³iÃí¤¤¤Áºµ·0î"ÒÓ3˜][‡?àÇn³SSS‡^§#b³Ùhi=CGG;²,3·n>¥%å„#á ] #+–­F§Óáøq9ݨjâs˜žžÉ·ßƒªª¤¥¦ß°Á´“IOüð'ÀírSSSÇ‚ù‹QU·ËCeå,œ'«Wm 9)YVxò©G±Û,Z¸”Õ«Ö¡×éϼÁH(Â3ñ¼êt:î¿ïCDÂa’“SùØG>Ã]·ß¢K>²¢ðãŸ~ŸŒô,, ñ8ܺé.–/]MJJ*ý}8.æÍ]ÈðÐHp¦¥9‘‘pþRRÒX8 Õ•5$'§CIq)ùyèôz ò‹ˆÇaÓ†ÛY¼pª–¸§éiØínÙx;F£‰X<ŽÍjã®;ïgtd½ÁÀî=ÛéîéF‘eJKËY·öìv·ßr7cãcxÜ^–,^Ž^o ;+£ÑxÃ=+Š¢LCÊ4Ÿi¤¾nÞŒX<ÆñãGØ·7ol~•P8Äèè--MlÚ°‘‰…$àšàê ™eŽ?†Õb»hбà÷GžøÂ ü\ÏñªªrðÐ>~óÛ_RXPLjJ*MÍ FŽ=Íf§° ˜p8ÌSÏü޹õ 8y꯽þxࣸœ. F#^5çä©ã~dY¦¶f###8.ìý}}ø>23²0›-¿çï ²¬””DrrÒ%'4µ’œŒ¤¤¤W5rsò¸ãö{ÉÎÊ%7'³ÙxÑë4™M*uâYÓ4HMI%-5•‰Å`rsòxà}’—[€ÓáBU!))‰¤¤¤ ÕósÏJ’×;•µì¾{ fÖdYÆãñL¥zž0´X&Ú·œ{'ÓXO®\N®¶LWuŸ|Ö}>?]]è'Ò›M–‰gU"==ƒŒŒ TõÜq‹yÆçãF ‘^yˆ€ßÏœÚzÒÓ2(..C?-S£sªá¯¼ú##ÃÈŠŒ,Ë$%ý~éÇ‚?WÕÑ4 £Á@n^;÷¼…ü.òž ®œH$LZFFÓõ­ìFñûƉF#¤¤¤a±X8~â(ýwÊ-›îäÄÉ£ø~zzºåø‰£üì%fŽG†ÈÎÊeÃúM¸\2Ò3yæÙÇ™][Ï¡Ãhh8ɬYµ,œ¿„§ž}ŒP(ÄûîûÐ —MåFçJÓß¿œ1òvõŸ@¯7°jåÚÇ^zPøÎú:½®‹Ekëí¶ßçúR}›QÈÊÌ!{" ¦½3í”›é³w¹û§MÛ'!1»¶ž9³ë§ö]Ýýªª¬¡ºªfF¹KõeòoQa ÅE%—ìû;©ëRϲÅbeÁüÅ—½^ïDþzCQ`ï¾]üë¿ýñ áåñ±QêfÏ#55ñ›®×X³zÙÙ¹<¸—þ~ÊJ+X±|ÍÛdŽ®W}D§×3oÕ-Ä¢®ç™ùë zŠÁÈõêT$IÅE¥¬Y½×ß|…ήÆÇÇ(((¦³ó,G¢­­…ââ2Ün/E…%¸Ý¬V¹¹ W™É`“‰Tu"!›A™ªª„BA ãÛªº¿S®ôy …ÂHÒLÕø+!‰„QUU‘$£ñÕq>“‰&ÝŸþЈÏÐå™t—Õ¸òûð‡¼®ÓëšJð¡A(!‹a2™/ˆ•{§í‡Ba4MÅdJÄiLOò‡xö¦wï!z5PU().ãÁ}’}÷PZRάªZl6ÛTY–°Z¬´µµpøÈA‚Á ¿ªÊš©+àZ᪠a°Øøý~6WÊ\8î*œÏïÃï÷‘œ”B~~!jòó 1™L3Ê&ŒPhkkã«ÿô×|ê_`ù²åÌN®R¼¸I/sþ~MÓøÑO¾‹^gàÓŸúâÔûÓËž¿R‰UÀ-[ß`Ç®·¨®ªe÷žílXw++W¬ž1 <½EIlOKntAŸGFFh?ÛJVfn÷…îX‚?.ñxŒ3gZééíÆjµ’Ÿ_8‘¡m&ç?K—Û¾Ø±Š’ÔNº.M¾‰íH$Lk[+ý$'§°sç[:r€ü‡Çáp¼ëþH<ô£ï044Èß|嫘LFFGG9ÓÒD,£° ˜¤$Ï«)ç?Ãç¯N=08@<Çb¶Ð?ÐONvÎ QÙëqBIÓÀns—W@ûÙVr³óÈHϼ@,7Ð|æ4)É)dgçqèð~NŸ>ImͬÂÜ8\ q¼«ÝÁu$É”•VPXP R"“P\#1¡þ,Khª†,K¨ª†¢ÈȲÂÿþÏÿMù@˲|ηÚéâŽÛîA–eŠ ‹Y½r=’$¡ÓéøèƒŸI 7ˆ/îëI‚ññ1þýkÿH0àO¿ô~û»‡éíéæ«ÿð蠟e Ëò”Ø™^¯Ÿ^ôz“ÑéôŒˆF#‰g„Dœ†^§'¡×ë‰D£(²L,›h3¡×c2™§VOTU%  ©*Š¢‰D0&‚Á±Xl*P=Ñ6›MÓðùýèNO0 ®ª˜ŒFL¦„Âx MÃðóÂKÏà÷ûÈHÏbËÖ7øÌ§þ„h4>‘–SÂnw …ˆÇâ˜L&6oÙ̸oœ•Ë× Ë &“i†A.I00ÐÏ/~ùc6¬¿•µkÖ‹çþ=dR­üû}‹-o½NVf6÷ÜõwÞ~/Ñh½^¬(Ä¢Q,+Ñh„p$Œ,ɘÍBáщLnF£‰X,J(šú>;—•ÊJOOícVu-ÙY¹CA z=FcÂHD¢<ó쓼ðÒ3¸\n23³éíífç®m c6[Ïr<†ÉhÆ`0 ‰Åbèõzôz=ápxBðÒˆÉdšxcX­6Nž:Fww'ªš°†}ìW<þä#,Z°”¹s‹F),(&77ŸH$‚^ŸHTpàà^úúX¶d%6›`(„ÉhBÓTÂápbòH‘iiifÇέäæä304À=w½ƒ^ÙlI¤ë ‡0 ïxÕñj¢(ðÖöÍüåW¾€ª©üò៰pÁ¾þŸß%##sÊ`³ÚläçñÓŸÿO?ûóç-bÖ¬Ùâ³,¸æ¸6 à ( Ê´x!å b‡ô©OÏG’¤iÇK3\X&Œ×±X”æ3¼ðâ3;v‡ÝÁ‘#yéåçè#/¯Ÿß‡NQ'åÌ€IDAT…B”—W1::©†ã|ïß@–Bá IÞdôz+—¯áñ'eõªõ¼ôò³deæÐÓÛ XÌV †„ßõúµ· ÓéØºí ^yåyŠ‹ËÈË-`ß=Œ²~Ý­üê×?!c·;hkk¡¬´‚Á¡æÍ]Èž½;yòéß’““G^Nüö$'§rß= ¾nGæ©§#‰’’Êá#Ð4`0ÈÀ@ÍÍ9z½ûvQY1‹²Ò žyöq†G†X½jÏ>÷{÷í¢ùCŸ¤ —Oâ‹äååO­dgçPS3G¬ú]%44b±6«I’iljà;ßÿÚÛÛ¨ªœE/cãc,_¶Š––f¶n{—ËÍÆõ·c6™8zü:EaÞÜ…>r€C‡‡X¿îVÂámí­dfda±XùÎ÷¾Îý÷~¢¢RÞxóÒÓ2øÀ!?/ή¾ûýÿaÍšMüÙ—¾B8â;ßýº{:ùÖ·ÿ“5«60::BcS£‘¹uóyá¥gèíí!++›º9óزõuFGG¨®®eõÊõ<ÿÂSôõ÷që¦;Q§/»gZš…B,Z´ EVøê×þ‘… –°bùN:ÎÀàåUìÛ·‹í;·òÿ}õkŒŽ sàÐ>æÏ[Œ,I<ùôcü÷×¾MZZåÕìØ¹•½ûwó¾û>ÄsÏ?ÁÈÈ0K—¬¤££'q˦;©(¯ºÚ·üЉÇañÂeüü'¿…‰ 7—Ó…Ç33Ù†Ñ`ä®;n>cc£¤§g’•™- Á5‡0@Á…$‘””L$ÆëIdVr{¼ø>ÞØü Ý=]ÔÖÔñ³_üšYs¨®ªa×îídeå°ÿà^V­XÇŽ]o±qým¼üêóx=IìÝ·‹Â‚"víÙAqÑN§›h4J8&M(¥¯X¶šx\ÇsÏ?E0`Ýš„ŠúÉSÇùÙÏB–eÜËÊkÉË-à…—žá¯þâïyä·¿ ¡á­m-ìØù==] ôsâä1¾¼îVêæÌ#‹ñêk/rôØa¬V+Ã#Cæc±Z©¯›OSsÕ|ïß ¿¿¤¤d^xñiêQsæÌåàÁ½è $  ûìÁn·SVZ,ÉȲˆÇ»:$–Ñh”ËÖ0·~¿øÕ¨¯›Íjç©g£nÎ|~ý›Ÿãp8éïïCÇyîù'ùÒÿŠ3-M<ÿÂÓôõ÷rôØ!\N7ÍgY´pY™Ù8°—={v0Þ"’“R¨®ªeë¶79pp QZZAQAÑh”qß8n·›Õ‚ÅlA’%R’S >z9µõ¨jœ—_y¿oœ†Ó'IINáðá€DSs#é™466022Ìó/>ÃîDQd‘0Ò´˜Ï÷Ýû! z?úÉ÷X¾t5‡“¹u ÈÏ+¤§§‹×^‰“'áv{ÈÍÉÃépñ½|ƒÑÑ:»ÎrÇ­÷’ƒ2áŽd³YXºd%ony ƒÁÀæ-¯¡×°XlX­V$9±rǯhëZ@Ó 55•Ì̉¬e0Ím:‹…‚ü"ôzY–…ñ!¸&ˆàºã|?ùw3Y+MýwY~çÙy¦3©cs¹ã/æÛ/øÃPzV),(泟þýîaÜÇ®ÝÛxå•ç ‹’””Lnn>²,366–x4 ‰$oz>a¼hf³‡ÃÉCûˆFn,»ƒh4‚Ao$ LÅ )ŠBjJ‡äБô÷÷òÜ O266B  -5›Í†Á` ++¢I"3# ^O~~O:žô´ ŒF=¡JJJÚÄŠG€ÂÂúúz‘'\%IÂh0RVZÁó/<$ËÌ­_€ÇíeVõlæÌ®çä©ã´µ·ÐÐp‚îž®)—œDŸS1™-ŒŒŽpâäQÆÆGY¼hÅïÔ.x‡hš¦Q7{.ŸûÌŸ0::Š,+d¤gaµÙÐëõtww’™‘E H¤Z•e Šyþ…'ùÝ +2.§›¡áA¢Ñ(]¼üêó´´4cµÚPt: ­½«Å‚Ùlaný2Ò3‰«äMæ–Mw²gÏN¬f+F“ ¿ß‡ÙlÁét12<Èo÷+ÚG,' ¢È2wýÄc1t:¿ßGfF6.§›ªªæÖ/àÍͯM­²itõt’“›Oó™F¢±(zŽ3­Mt÷vñð¯:¡þ^@vv.=½ÝŒŒ ‘‘‘…¢è˜U5›H4Bk[ ±XlêûÕf³a6™°YmX­öÄ ¼ ¢püøŽ;DnN‹õjßõ+FU5ÚÏv'®­ÛMwO7^Oò ÑÅÉI…—_yžœœ\æÍ7qìÕî½@0a€®;‚Á áp“ÉL4Áh4¡×ëßQþ`ßøø„Ú¯ŠªªlÛ±…䤖,^ñŽgÅâñ8üö×”•V0gvÝ%¿ìBsc(:Öëè‡ïzÁl6sÇí÷b·ÙÉÍÉcù²Õäå’““‡Çãexh»Ý‰ÛíæÞ»  ·ËÍg>ùE*+fáñ&QUYƒË妺ª‡ÃÉòe«ÉÎÎ¥¡áóê’™‘…ÃáDUÕ„O~,ŠÕbÃh4b0¹ïžàv{bVõlBá ç/aÞÜEäçRS=‹Åʧ?ùEœk×lDQtÔÖÖa4™øý•ð±|š¼¼4-‘!kã†Û0 CA/ZNsói$I&;;‡?ôI F#f“…Þ÷ K—¬ ¬¬ÛË©SÇ1M¼ÿþÉÊÊÁl¶PUY3•ZÚ`0PZZ†$Ak[))©X­6"‘0&“QÊï!F£‰õk7¡’¤`6[ذî ŠÈÊÌæ£~šîî.Ö®ÙÈw¿ÿ?Äãq6m¼ ën%‰$bCbQ/\ÆÈèÿægôôtS_HuU M ¸ÝæÖ- ° £Áȼ¹ qNˆ±N4Ûívþä Áæ-¯ÑÒz†¢Âb–-]EQa ÙÙ¹(²B(¢¨°^Gue-µµu$y“©­™CRr ³fÍ&9)…p8Ä‚ùKÈÌÌâä©ètz6¬¿•p8ŒN—øÞ6M °aým,]¼‚ÌŒ,|>E…%èuzúÈÉΣ¸¸”cÇàõ&ó…Ï~™»¶‹ÅHOË`nÝ|ŒÆs)æ=n/sfÏ#55»ï¼Ÿ=ûv¢È2cãc¤¤¤2«ªv* ×õ€$Ïïç…žÆnwP[[Çk¯¿Ìm·ÜInnîŒßUU9yê8?ù¥%lÜpsëç #DpM!Õ}úÿVkšöä­Kªìkæ• ß_Á5‚D4äÀëÏR–_ÊÊ«QÕÄ@ÿ¹çŸäÙçŸdÓÆ;hn>ÍšÕë™?o.±Ø¹‘‹e€™Ìþ#IpôØa~÷Ä#=zˆÂÂbêçÌçW¿ù)µ³æðÕøôzÃE3Mº.Ÿ¿F¸í®5Ü}çûùÂç>O,ÊÄ bæªH,ãñ'ABâî»îŸú¾ÚÄãq¾þ¿_£fÕFÒ2sЮ‡_*Iâé_þn½“²²ò©k<}%j2è eû‹hL/sþ_UM¤E•äsÇÍ8–s)S'ëº °Ä ¡´É¸‹xü\Ùé±ÓÛžž¹gz½ÓŸÏɺ”ɶ¦ÿô•½éIà.–îtz׃n€$Á«¯½HK÷Y欼å±^×’$1:ÐÑ7_ä–wSXX8õüL¿Ç“Û“ÏŒ"3áv£ñá¡þæ+(H$žQI‚XLåèÑ#¼öÆËèõ:n»õ. €suM¦×Uµ™ÏèôçøüÏÌù+ÎÓûv©ÏÐd›“Ï–¦1ñåxî;?õðôv§¿ž^ïÅ>/ÓŸÙÉ㦦ŸÛ•¤ûÕ4o~÷ëÍ_Jn~Q"vå÷¹ï²L_[#§÷o£fÅ­ØÝI3Æ\’$14ØÏ–§áïþüïfÉëtðìóÏò_ù:E‡ÍfcÎì¹üÿþß¿’šš6ã\Âá0Ï>÷/¼ô ¡P}ä3lX¿qÆõQØ·o/îØÊ­ïûèTBY’híâ¡§và†ÿE’¤ØÿÐgþ¿@ˆÁu‡Fÿ@ÇŽ¡¸¨”ƦŠ K8rôÕUµ:|€Úš:¶ïØB4 XÏHËdã†Û¦f}««ja÷ž,]¼‚ùóóèc¿bï¾]üôç?bvm=ÇŽa` ÊŠj@’X²xgÎ4r¦¥ £ÁÈ¢…Ë`ûέttv i/¿ú:m­gÈË+ áôIjfÍaÞÜ…H’„^¯£¨°”††Äã*@Ù ÁÓdÿPvT\®°.M›Ù‡K ä'÷OïãÛ úϯwú€crÿùz'Ó”—«ÿbmÞ{TõÒÛçî¯Ä'?þy4-a‰jS÷N¦²r•Õ(rb5w"qÛE¹Ø=¿1Ïw*&y©òª:óãu¥ó —û¼L)„«×¿ ’¦BfF ç/!‹’—[ÀÜúØíŽ Ê -\Š$KŒár¹ÅJ¦àšC ×!ƒÁ@/ƒCƒüú‘Ÿñ¡|”_>üS4MãáG~Æüy‹Ø±c+¥¥œ9ÓÈÜúùä&fÀtºD€ž¢Ó!Ër"(Qóø“ÒÖÞʃ{ÉÍÉãLKÛ¶oAQNŸdé’´¶áÅ—ž¥±©Î®%áR‰FxöÙÇ1[¬deåÐÛ×øoü\Ï%©ù²Ú‚›“É™éw:^˜œA¾’Æ{‡t¹6D,Ôï‡t™/ó5×7qfU×ò¥/þ%ÿúgØlvÆ}㌎b±X¦ÊIRBèñµ7_æñ'Áçç}÷}ˆE \÷F˜àÆB|C ®;T5ŽÑ`$))N7¥õÑÔÜH84LF³ªj±Ûäåæغm3ÿñŸÿÆððÐÄ2¾†ªªhª61àÓÈÌÈÆj±âC¯ÓQUYƒ×›D$aΜ¹±}Çžá)èìê a6›Ñëõ(²‚Ýî`ó–×8ÓÒ„ÛåÁb¶Lë;ŒŽŽ088@ ¸Ú—ò†DQ@¯OüûC$¸‘å„ûÃ;ÏM ½½Óã4Mcdd„`(øŽúFéìîJè„\aÃ##Wìr;y.:ÝåE!áÒ788€Ïç»èû‘H˜þþ¾ ú;yÝ&ÝgÄZ 8G<§­½…®îºº:èîî$\(pŠF<'  .pÑ®Ä ˆàºbRˆ0‹±`þbtŠBII9±XŒ–Ö3¬Z¹ŽÒ’ 6m¸’âr6n¸Â‚ôzFƒ‘á‘aâ¾®))i¬_{ 9Ù¹˜L&V¯\Ùl& áñx),,I¨¨/_MRR š¦‘ššŽÓé&‡¨­©'#=“m;¶P7ge¥ØíœNÅE¥ìܵдÁd,ctl”X,ÊÀ@?.—ûj_ÒŠp8Ìî=Ûimk4*Ê«™3»N¹hÌÇ$SnNüÕ8pðMM§)+« ¢¢"Ï(3É}ccc:¼ŸŽÎ³Ìª®¥ºjÖŒ¸‹µ•PŸŽñ£Ÿ|Ÿùó²|ÙŠq#crÞÔÜ¿ô þæ+_eÍê53”¢§#Ë FøÉÏ~@<çËú×èõº ®Íä Œ¦%Œ…£ÇÓØx —ËÃÒ%˱Ùìôcê5088Ä×þû_˜?w÷ß÷ÀŒ™WY†S 'øÞ¾Éûïÿ0«W%ú+IàóùØ·75³æ  …Cä\4nçF@›¸`ÓãÊ‚K1ù™T5•ã'a±Z1Œ|—™Œ&V­XÇøø³…eKV ×JÁ5‡0@ײ,³|Ù*–/[@Iq)õuóf ¸–.YÀ²¥+¸ç®û¸ïÞ¦üÜ ŠùòŸ~eêËû Ÿû³K¶[YQªj}¸ëŽ{g¼¿v͆©×Óû±rÅš©}PÖ¾ýÖ»¯öe¼!‘$ðü<ô£ïp¶£5«6™‘Íèèè”b´ÅbÁç'®ª˜Mfâj¢Ãjµ166B<Çd¶à°;e‰†Ó§øÞ¾‰AoàÕ×_ä“ÿ<9ÙyÄbQ #6›@ @4Åd2ã°;$‰»·ñ׬Ì,f é陨¬vFF†°X¬ŒŽN©¡;.ÂS*Öfzz»hkk¡»»ƒÑ€o|^Ñ` ‚¦a±X‰D"ƒôz:Ž¥KWâv{èííIÂj±‹Çˆ„ÃÄâ …êGý%ÕUµ—Çñûýƒ$IÂb±ˆ„ÃÈŠ‚ÓáÄá°qºñÿüoOZj:™YdeåPTXL$!MÄY¢È  !´±ñQ::ÚHMI¥§§«ÍN4! `4álG;}ý½ôõ àr¹Ñ놆‡øú7þÏ}öÏÃCäæä3<<„¦i8ŽKŠŠ^oÈ’Œ"KøÆÇFÕ„̵F"`^E¹F–âY¡¤¸Œä¤úûû(È/ÆépÎ(#I02:±c‡™W¿‘ÑaNŸdñÂʼnX6àA ‚뎷›}§3¤çϽ“>×WÒÆ6S{½09‰l³ÙÉÊJ“=ô£ïÐ~¶xû™?Åãöâ°;ÈÍÉGQtœíhç{?ø&µ5uìÛ¿›nãßÿ㫤§gÒÓÛÍ}÷|€]»·“ššÆ÷?ˆóÂËÏðÒ«ÏS7{¯¿ñk×lB’ ¡á$ŠNGAA#ÃCœn<…כĜÙóصkÙY¹üðÇß###“»î¸Ÿžž.vïÝÁÑ£‡yß}äÙ瞘%Œ2>>NWW'NEVÊË«hl<Åàв,³~í-<ð¾a2š),(ÀíöðÒËÏ‘ššÆèØ—P0È#¿ý%ùùEôötQUUƒ×“L$a×îí4Ÿidé╜im¢¯¯NGaA1:E¡½½•§žù÷Þý~âñ8-­MhªŠÞ`¤³³ƒ3­M46ž`||‡Ã™H+«(XÌdYžp/Ñp:Ýäçò³_þëocxd5G“4††o˜q”¬7’QV{M l—&MJ¨Ó_íû4én966ÊÖ·Þ@Ó4Ü.sfÏQNÓ ;+—[7݉Ãá$ðc1›Å¤˜àšC à†A¯ÓSYQÛí%?¿MÕ¸eãìÝ¿ “ÑD}Ý|dI¦¨°„ÊòjV­XG{{ ,åž»ÞO,#;3YVPU˜][ϲ%+9qâ(ë×nbÕªõD"vV‹•óc2™ðù}deå ×ëÑ4áá!ÚÛ[ÉÌÈfÎ친òü~6»‹ÅJZj²,‹Æ°ÛÔ͙ǸoN‡ÅjE’$ÊË*ÉÌÈIB’$¶¾õË—®J¨OMüÓWÿ“ÉÄm·ÜÕjE–eFGG0™-TVT£i‘HƒÁ@$Áét¢( E…¥¨j»ÝA(BUU$YB‘Ö®ÙˆÙlanýtz=.§›Š²*n»ån$\NqU% +2f“…¹u e«ÍÆÂK$ US1è ¨*ädçq×ïCSUœN{öîÄåò°zå: kVm`Ñ‚¥ F"ÑFƒMӈƢ„ÃaL&N‡‹9³ç²fÕL&3£‘ys¡ÓéPU»ÝŽªB’7™}àcØív>úà§‘e“ÉÌ]wÞ¦j¸Ýn1ˆÜtHRbåã[ßùOδ4…ñ|œ€ÅbÁb± I¹ûÎ÷‘š’†y"%sjj*hs’é¹üÏg²^¯÷ܹ™Î›ùœìƒsZ_ ý¹íKÔ›œœ|®N£ñ‚÷ i©iSûòó ùÓ?ù+ª*™½l6¶i éLW­ÖëuX,æ©zÍÓú?y~Š¢àr¹Ð4¦êÔ4.¸§ÁÍ„¦Ýæàãý,M èõ\NW"¹„NAÙüüB–,YÉãO>ÂÑc‡Y0 •••Wû4‚DpÍ¢Sôäs¦á$‡Nâº_ãhšFvAÁ„ªîõ}ß.=îå^kWPßå¶§ïK fÌ_8C™ùݤßIÒ„·;§wZçôý¹¹yäååMͨ^iRˆ+¹nç_»wr®ÁŒÙlbù²•ø|ãX,VêæÌ㥗Ÿ# àÁ3UN’@Çih8Á™3Mœ8y”ö³­È2×}òÁ…0@×.²LFélR «Ää=@–etzÃ5ãó|#q#-ÞM7¤Á{CBÿTUeûέ44žd|lŒòê ʪªŠ^§gá‚¥ i¸Ýñ™\sDpM#):ôŠþ÷¯Hp…\g¿RÓDÜ®óÁ»@ÜsÁÍ„"'„w·n“={wr×÷ãtºf”I¸;ê)/¯$==“ÔäT*+fÝP“ ‚a€®®³A±à=A"1Ó7îó16æC¿°7’$PUá["¸ñ‘$‰ÔÔtêëæc6™q»Ýýu”$‰‘‘žzæ1ÈÊʦºªêjw_ ˜0@ÁuŠ„"K¼úÚs<´G¸ŽÝ„HH´µ!»¨I¤ÊÜਪJSS/½üû졽½ó—`–ÀB’ ‹ÑØÔÀØøiiX,¶ß£Uàƒ0@Áu‰¦i,Zµÿð`"{—à¦$©°„¤”4dE¹Ú]þ¨¨ªJGg;6‹’â2\.ñx|*ÛÜtb±(ýü~|¾ñ«Ýuà„"®S4’3rIÎÌ»Ú\m®¥jà¦iÄãq ŠˆÆ¢ ¦ ñÓ  ‡ˆDÂF4M¸§ ®=„"®[4‘’I Ü$H’DVfÉI)ÌŸ·«ÕŽÇã½hŠk5®âóãøñü"aƒàšC @ ×0² ]üðÇß%‹ò¥/þµ5µÈ²r¡‚†Óéâ/¾üw,Z°·Û#4@×¼çH’„¬(ˆ @ Ü,H²Œ¢èÞÕj„,ÃÉSÇHOÏÄb±°ÿÀ***°Zì¶ŒŽŽðÜ OòÒ+Ïñá~‚µ«× #DpM! Á{Š,Ë´·4±õÕç…϶@ n$IÂ?:DŠË†ô.¬ŸÏÇÀ@6›ýö`4¹ç®÷ãp8¦VA4 óç-"‹‡°Z¬"›½àšC ‚÷I–9ÛÚÌ@_U³ç í@ ÜhRFyy˜,¶w< g³Ù8z쪪±gïN6n¸‡Ã1£œ¢èÈÉÉøo»“ü¼BTa€®1„"xoÑ« µs²æÖ{Q㱫Ý#@ Þ3TU{Çâ™±¬X¶†9ÏMì˜X阾ú p8Ìæ-¯ÓÒv†±Ñ222ùÀû?HLüÜ ®!„"¸*Äã*ñX”¸pJಘM&ÌfÓŒ}[D‘e ³ÙÌÈÈ0áP›Õ&’ ®9„"@p£Mý÷6e4Ðë ¬^µ½Þ€Éhdé’•ogÁµ†0@@ ®s$ ‡Ù¿…Å$y“˜?!v›] ‚ka€n:$Yâuï™^4ñë't¡0­mg°Û465PZZÙdE–å«Ý5`ÂÜTD#a{»Ñ)ÊÕîÊM€D4A“e2²ó®vgà†GoÐÓÞÞÊ–­oøÙ»oþàÇYµrµÐ\SDpÓ IŸ±³-T””£‰ÄèTdI¦£¿›m‡ösÏG>{µ»#74šN‡‹>ðQ††‘$UU)((.X‚ka€n*Y&+#“šêjá…õGF–Áj6±óð4ê¼@ øã¡×멨¨œ¡¶®ªÂëXpí! ÁM…Fâ‹X|!¿7hšà‚÷±Ú!¸ˆ@p39Óu1ƒjú,˜0¸à:@J|wKÄecIIÄ¥ ®"Â~O$)á^4¹º2ùÃ19àŸn \lßÅ ˆ©í\½CÓ4üñX ›ÝŽ<í%‹ðûÑ4 MÓp:]"Š@ \ÃHH„Ãaz{{1Œ\¸†,Móg½Ü¬Ò¥g§dYap`U,—®Â~"‘0ÝÝ]D"a’’Sp:\´··âø1MØìvFGGˆÇã˜ÍR’S$‰ÞÞlv;n—‡ÁÁ‘Y™ÙH’L4¥»§‹@À‡,+¤¦¤ár¹¦ÚœnäD£qÞÜü*ÝÝ|ð`³Ù¦Þïèhç¹çŸ"  …ø‹/ÿ v»}Ê:uD¬–ÁÕE¯×£ª1ž|êÝùÙ%âjœ±þQ¬QFÅpIDÆc㨠‡ÓÁùÆŠ$Éô÷÷bKϹڧ,¸Iˆ@ð.$ðù|<ÿÂS44žÂh0¢¡qïÝðƒ‡þ—”ä4**ªáùŸfNm=‘H„ää ò‹øñO¿OYi÷ßûAyìWŒñ¯ÿüߘÍ&víÞÆcOü†²Ò ¢Ñ(së0·n>#£#È’ŒÃáÀï÷ …e™X4J,cllŒ±ñq$ÀjµÑßßÇ››_!--“¤¤dÆÆÇ÷!IN§ ŸoEV°ÛCA~?f³‡Ã‰ôÇ\ÿÁ 4MÃlµ±áž‹„/, I„‚>N>ù ûëȱç ]b¶HBâ­¡·èY8NñüÅ ^X® «Ãª‰UÁ{0@‚w$AwO?ÿÕ¸ëŽû™3{._ý§¿¡° ˜ÁÁÊ˪ÈÍÉg÷ží  ²xÑrÚ϶ò«_ÿ„Å‹–sºñƒƒX¬6vìØŠËåFøh>ÓHéÌ«_HFz&ÉI)lÞú‡ìG‘–.YÉž½;9ÓÒDýœyÄÕ8ápˆ£ÇÓØxŠ`8ˆÛå%))UӈŢD"aN5œ`ß¾]ôôqïÝÐÕÝAcS²$³há2š›O³kÏv6m¼ƒuk6¡Ó‰¯@ x/‘eOZöEÓJH£ ºNS*¤ÀUð¶^Xm‘Vâ)#¤æ]ÒPaÂEW x¯# à] ¡P~<ž$²2³QUŸoœXbD x¨¤¤¤ñ¥/üï#ð™O~‘Úš:Æ}ãäç`0è˜U]Ë=w½ŸX,J~~!Ö߆ÍfÃb±2gv=e¥„Ã!Îv´¡Ÿpy²Z¬ƒAl6;_þÓ¿aþ܅̪®åTà dY!;+—»î¸Ÿää K¯ ¤¨ŒüüBÌ ÑH„óSVZÁìÚzB¡‘H¯'‰óc2™p:üýßþ mí-€FJr©©iŒ!ËbõC ®BñÍcÍ8 N …¤šSgdC®U„"¼KE¡¸¸”üüÄêN§C’$6®¿ Y–QU(/«¢¤¤MÕeNAÓ ';Y–Ñ4˜[¿€úºù(Jâ½²²JŠ‹KÑ4ÐétȲLjZ:ÕÕµhªŠ,+Ì­_€$IȲÌâ…ËдDý³ªg£ªjâ=EžHã›Xª—$‰E —Nõ5?¯yó¢©*’$O¤èÕDª^@ ¸N0*FÊ\eb ²$†u‚ëñ¤ ¿'çkOŸeù‚½$¢èf”™NâÃÌcÐëômúñ— ??¶ãRu àÚE’$ÆÂcô{±ëí„b!Æ£ã„â¡Ä¤“@p# à]29î·:N¿ïñ@ ¸Y‘ðÅ|t:9ë;Kãh#Ù€Y1“oÏG‘„+­àÚF ‚›ž)Õq.®T~þ¶6‘yd÷žÝèõzjfÍyGAÛ’@“§Žát¸(((ºäñ—ë—@ n>4M%ÚA†%ãjwE xWDpS#IÐ~¶×^‰@ÀÇã%-5S '€„K“ªªøý> #e¥¬\±I’øÆÿ~ —ÓÅw¾õ£©ØU…I/§éŠã“†C(!30ØÇ÷~ðMf͚͟|þËȲ‚$%ŽŸ4.ü~ol~•ññ1n»å.œNt÷tS]5 ½Þð.ÎX àê" ÁM$Akë~ýÈϹç®û©›3]»¶ñÓŸÿ_øÜŸS_7ŸÖÖfþì/?ǧ?ñÊË«&‚Ç5¢‘Ñh”Þ¾^Nœ8ŠÍn§ªbûìehh€ìì\òò 8s¦‰Î®v]]¼±ù6¬¿p8ÄáÃxkÛ²³r9ÙpœÅ —ár¹ØúÖtt´±dñJL&3áp„Í[_g` ŸÒ’r ƒX ‚›‘ÉY­·Y|ÉÔ×2ÂÜôH’D(ä•W_¤¿¿£ÑH0à…Ÿ¦««ƒùób2ÉÉÉ¡ ?‹p˜)åXUUyèGßáäÉcøý>>÷Ù?ãÑÇ~Åà@?6»µ«7ñÚ/266ЦAMõlÚÛÛPã1dI¦µí ßûÁ7Y¶t=þk ¾ýS<ñ8œnj ©ù46«â¢N76àó“žžˆÀ@ ¸‰Ä" øûqè쨚 HH’tN ‘ WU$aé‚ka€nz4MÃl2³qÃm¬Yµm;6c±X¹ýÖ»Y¼h9c㣨ª†¦^0®j*M ôõ÷RTT‚"+XÌV’K“9uú$møý~23sèê< 8.ÒÒ2…’â2|>n—›;n»—Ë3µªát¸¨UGsK=½Ý<öø¯‰F# &f×ÖSd³_íK'‚÷ tŠXŽ™Ÿ=‰a"[¢3ÜÓÑlÅæNf"ÿ:ÑÔ(õ©Ë®v¯‚‹" ÁMÁ` 9%•²ÒrÊÊ 9ÙpŒ´ÔtÊÊÊ)--àTC3^o&“y†Ë“ËåÆáp²pÁžxê·Äb1Àåra³Úñ¸½TUÕ008ÀŽ]oá´;(.*¥«»“ÃG`µÚp:œ˜Œ&úúxæ¹'ذþV23Ó‘$¨¯›ÇÿþN— —ÓÍ·ßËÀ`? '1ŒWû² à=ECg0²pÓíÌÝŸ 2ŒEÂÝò<î´,ògÍG›˜)“$¢L­Ø ×ÂÜÔ¨*ÔÌšÍÿÇwpº\D"°|éjjfÍÁëI"¬Ìþù¸ÝâñÄq²,óÏÿß¡È ‡“ùó INJ¡nö<$Y"‰`³90Môôáq{Xµr›6Þ1G¢È ª¦¢×é¹ëŽûHKMŸj£¬´’/|þ˘MœNóæÎ4–/]‰Ñhñ@p"Ë 9‘íD’eüCœ8v”Ìñ…UóÐLÂè\óDpÓc6›±XÌSY«l6v»mj[¯×“››;µ=IFzúÔvnN0ó}I‚x\£²¼š/é¯ÉHÏ$33k*c–$Í,ïõzf¸xét:r²s¦ÚM&f³E@ M£½ñ/<ÿ4³jæ°dÃ]èÄ ¹à:@ ‚›žó ‹ó·áâbÓ÷]J/D’$ )**œÚ7yÜùm\̨"…WM #ï@–ås*@0I’ùÇxëõèë룻»“ŽæS×ÌGšTº®Q„"0sŒóû <ƒÁ ’$a4š¦öMñxœP(ˆÁ`˜Òð¦þ»²¶5M# ×Ðëõïú\ßÍ9^JqfÿÞýµ»$‰‘^NîÙ‚"Ë"åÕB‚X4JNÅ2 ˦|ÚÁ44•‘ŽfΜ>@KsÇöï ¿¼½Ùzý! nh„"¸éÑФ³£½Á@NNV‹mÆ€ûJ&a% ~÷Äop9ÝlÚxŠ"O/ËÐ~ö,?üñwY»z#Ë–®`dt„ήB¡ ™Y¤¥¥Ÿë×yíJ@(á¡}‡¥KVR_7ï’e/8lj÷ý~?'O'¿ ¯Ç{Å¿OÑh”ŽŽvü?ÙY9Øíúû{éêî$%%` @4¥¼¬òjßÎß I–éì8ËþÝ;¹ÿ®÷£(ºDjKÁ{Š"+>z€Ó§N]TA\¤f"I„}£l}ýENO ¡p˜=;ÞbѪ¤U‰8Á50@75’#Ã#<õôc;~Y–X¿îV._K8!‹a2›‰D¨ª†Éh$bÐë‰F£èôz‚’$aµÚ0Lèõ¢Ñ~EÑa2‰Dbœ=ÛÎëo¼Biqã¾qžxêQZZÏàtº¨®ªÁl¶‹Å0M˜L&ü~±xl¢¯ápN¢(„Âa¡£Y’ ýhª†^¯G˜1ÖétH²ŒÙdF’ £ó,¿~ôç|ñóA’÷Ê I‚±ñQöîßE{{+55uÌ®­ã•×^dtt„Å‹–qöl;‡ïãÿýí?£LJÁ_§Äâ1¼ždV®\N'¾"¯Š’Ð-8ÔÖzµ»"\“È’DoG+¯¿úã>Ð¥j>ÓD_wEUbêDpM#~]75’mí­lÙú:Ë–­æìÙ6ÞÜüV‹Ý{¶ãv{HJJaÿþÝ”””“–šÁ¶íoRW7Ÿ÷2»¶žgŸ{£ÑÄÊåkèè%ôóü‹Osèð\.7Ë—®âÐáýìÚ½‘Ña$YJgÛxõµY»f#7ÜN,套Ÿ£­½…h4ʪ•ëxô±_!Kf‹•ööVJKËéîî$/¯€C‡÷ÓÔ|š¼Ü²³rxê™ÇIMI#%%•±±Q Šˆ$s×÷!IFÈÏ+$7'H$†ª©&ÜÁ.…¦Íjgáü%X-Vâ±(ÝÝ´µ·0oîB²³rIJJáTÃq4M®o$ñ`\í@Üà’h*ý]g˜±{dx˜£ûvPY¿ÅdnX‚ka€nzÂáþ€ËÃà`?==]¼úú‹tt´ógò~óÛ_²ÿÀ>üÁOpäØÁ„¦‡ËÍî=;pØœn<…Óéâ©g~‡ÕjÅ 7ÐÕÝÉÙŽvì6;hony ‡ÝÅlAÓ´„;U8D Àáp’œ”B8F’$:»:xõµA‚·¶½ÉÚ5q»Ü<ö»‡ùÀáÿ~ømöìÝÁö[‰D"÷¥¾n>{÷í䳟þ>Ÿƒ‡ö‘••ƒÃîàüaœÁ`@§“Ùµ{7==]ܲé寂é±"z½ž`(H,gVõlûñû}ìÛ¿¢£²²úº_ù‚ë Ž ³sëk ô÷Ïx/r¦¹‘  »É"VA×,ÂÜÔh¤§gR]YÃC{ üÔÖÔ¡Óé&Œˆ6l6ƒöŽ6¬ÇŽF§èe‰`0ˆÅl!))™x<†Ùl!--US©,¯&7'NjߟX&×):4íΪžMCÃIž~öq¼^/›ßz“'‰„ ƒ Fòr 0›-ØíŠ K°Z¬ØlvÒÓ3‘$‰êÊl6;6«¢Â¢±(»ölãÈуTVTc6Yfœs4%SINJÁ 7ÐÚÖ‚Ûå!ð“””B$ FGGÈÈH¤ îïïãõ7^F§ÓŽ„q9Ýäç144@("‰WãWûv^$霱ö‡ªªÄb1dYFUUt:]"3Ô%ŽF£È²tQƒòJú©~¼âñ8š¦ ÷5à„¦ª´Ÿ<ȉ£‡1 H²L<G’$$Iâl[ mÇ÷S±x’,>‡‚kñd ®®8M§tAQMƒŒŒLüð'ih8Ñh¤ª²I’)È/BUUî¸í^jfÍM£²rŸÿì—ÃëI¢³ë,÷Þý ,axx“É„ÕjãLKj\¥¨¨˜œœ|ZZ›‰F£Ô×ÏGÓ %9•O~üó455 IMIãý÷}˜³íÄb1ÊJ+˜][OYi9Š¢ãoþê«$'§ðÑ?MvVëÖÞÂÙ³mF’¼ÉdfdQTTÊèèï»÷Cäää¡×ë‰O(j˜Lfºº;ioo¥°°U…S 'ˆF£„ÃaTUEÇåøÉ£¤¦¦¡Ó) òr GÂD£²òŠX81ÃÃC•ràà^$¤ lj«>™íë ï“6õß5O4¡¿¿±ñ1¬Véièõº©ë=yþ¼M±®®N$I"==ã‚÷Ÿ8Ê‹/=CAA--ÍÜ{ÏN•‹Åâôõ÷bµZ±X¬üâ—?"77Ÿuk7\`P\,Ó[(¤£ã,áH“фכ„ÓéšÈÌ,;YÇÅRNO¢(ðææ7…‚¬Y½ƒAÑ>¯à÷@’HÎÌåßúb"V1åÔу8ݲ ŠÑ):Òs ‘$‘ŠWpí" ÁuÅ®¬°$ ‡Ð7úQd…‚ü"òó 'Š%FI«V®CÓ4dY¦¼¬ Y’ÉHÏL§H¼ñæëܺéNî¿ïƒØl¶«’Ⲅ»ÕĬT}Ýüõ˲LNv.ÙY9Su—•VNe.‘$‰¹õ ¦Ê——!I«W­ŸÚWS={ªÙµõH’DfFåUSe¦®•éiÜuÇ}8Ω¾––”’’Š$IX,ŒFF£N¦ÛíaÃú[gœOUeÍ´s-§° Y¾Ð KLj†WìÐ/I2:ä?K—$]q,Áä¹] ‘H„½ûv±s÷6Y&--ƒëoÃf³&èõz"ѱX I’0ŒH’D$&®ªhªÆoýz½žO~üó˜Lfb±ñx ƒÁÈÙ³­<õÌïX´p)»vogÑÂe¤¥e M¬†ø|>ýí/©¬œÅÒÅ+ìÇíñ i †Ð4 £Ñh„Ãa4M›ê—N'ÓÑq–o~ûk8NœII)lÚpii ƒTÓ0è (ŠB$!‹¢St ‘j<Ž^o@§Ó‹ÅGâ8´p(Äòe«QUMS1 hZâši$ê¼¢IJÄL©W "2ÿnx$ Wf! 2 ‘€H8„ÃjÆ“–MaíBñ\DpÍ19Ô.3®FÃìÝü û· é —­W-ÎíË ]¤æóžÓ£’$19ŒÜ§ª°háRêëçc±X/˜Õ=0{©íôºÏ/w±×çï»X¿/zþX,VæN¬Àœ›•¾°¼ÙlÁb±œ7û}éó)))vÏÎ!Ë2MÍ­üê‘'¯``¯F-ÄŠ% È(~›4’W:•®ÆèÆ7>vÙ¶!aŒöw´ ÆßÞL’ ··›ýä{äääñà‡>N§ctl„—^~–ž¾n\Nóê°uÛ›  €K–¬Àj±òÚ/á°;Qd…—^~EQHNNeÁü%ìÚ³¾Þn ŠŸè·6qÃZÛšiljÀï÷¡i&³™—^yžÓ§Oár¸1 (²Â¡Ãؼåu@£¼¼ ¯'‰_þêÇ$%§àv{X¹|-ÕUUŒûÆhj>Íïûi©éüì—¡×먪¬a÷ÞD£Qf×Ô‘—WÈË/?G0 ²biilÝú:ÁPˆÜœáŽ5ÝjúëwR·ªjïè€`0@{{F“‘œì¼‹Æf¼4MchhY–q¹Üïè8#KÁBdùö¡t¿²LOGOÿò{Xm–¯¿Œ‚RtzãÔ5žºÎ@$¦eÚRoÁœZZü†§#+ŒIÛѯ¼íyÂ-ÍËÜú´¶6óÚë/c6Y¦V,dIFÓ4TUE¯×³jÅZ|¾qZZ›Y·nE…%ì;°›ììŠ K8ÛÑ>ÍÈ–HOË$%9ƒÁ8ãîëëa÷žH’ÄðÈ ‘L22²¦”&5MCCCÕÔÄŠ•,WAáFƒ‘%‹WÐÕÝÉèèÈDKÑh„S 'èêîÄd2QY^͉SÇÈHÏ$/· G¤iÈŠ‚4‰Ï¬6áJ6é®8µ‚‰†$Édeå’—›ßïÃãñ2¯~!ÉÉ^.·¨¡¡±XYÄý†û‰k—.,!¡¡‹Gytà·ü<  @ üqˆà*"]°Ç¥¿¿¦¦F6¿ñ …EÅ,]½‘ŒüRŒvnoòDfÉ)ù‰ÿ¢ãàï½"c‰A™Áʤ{Ö…#I‚Þ¾^Ž?BYi™Sªá“«Ër4¹OU5zzz±Ùm457ðÏÿú÷üË?ý³ªg‹ÁààM ôôvc·Ù),,&/7¢ ^PS~òo¼ù2YS䳪k§‚›'™ìÛô¿“¯[Z›Ù¼åuÊÊ*ÈÉΞ F¼Xñôú&UÛÏÏ褪qÜ‹Édbé’´w©,PÒ´Êã¾Ôh- -JÄxh*j$@xà ²ÞŒ!¹ðÜ1DÊ’ÄðÐ Ï=óñh˜“G²jÃí¸“RIÉ)$9-³Å†:i¤J ëôèÌôV;j$LÌ?„ÎæAÖ§Î{ªIt&ßÞàÓ4ð¸=¼ÿþÙ½g;Íͤ§¥S[[G,§··›%‹—3oîBìV;—êªRSÓ1Œdfdátº().'3#›­o½Áá#X¼h¡pˆ~'^—õën¥¨¨—ÓMii±xœ@ÀOff6¥%åx=Iœj8Aww'K¯ 77Ÿ´Ô 6o} ÐøÄG?‹×›Ìí·ÝCjj:së’–šŽª‚ÇãeÉâÄbQb±(wÞ~ ,¡¸¸”´Ôtb±·—ÒÒrÆÇÇ8vì0h÷Þó›·¼ŽÏ7Î=w¿ŸÚš:î¾ë}455œ”ÂìÙõ$y“9|ä ˆ/Òë²ÐétxÆ‘£G8~â8¯½ö zƒ‘Ô´ –¯½…%«7âMNAJý*Ax ÆÏ‚Þ-σΠÞ*HŸ—pÇ$hjjà;ßû:_øÜŸ“••Éøx€£ÇÑ~¶•Ò’ º{:9Ýx ›ÕÆüy‹Ðë lÛ±¿ßOIq)¿~ôXÌÖ ÁÁ<úÛ‡‰Ç5ÊÊ*p»=F¾÷ƒopß=Àãñ²yË똌&fÍšÝfgßþÝtuwR_7E —øùÿú§‰jþàÇ G"¼þæ+ô÷÷‘™‘…,ËTTTsäÈAìvÝ=]d¤gR7g>ŸŸgŸ{’@0@yY%¿ýÝ#ÔÍ™G àçØñ#¬^µ¢cÛŽ-È’„Óébdt„… –àt8Ùµ{«…šêÙ‰xîÁ¡A, ƒ8°«ÕJmMgZš8uê%%e̪ž}±«L<0ÌÐΟïÇV¸5ìC±%ïG‹†ð5½…bõâ]üqŒ$R¹Æcñ‹Æ€¨ª ø¶o‹ö%«&,[ÃÒk¨™·»;)±ò3ÍÒR#A"ƒ­hñ(¡®ãÄÃãX bðd'»ÉW€¢è¨(¯¢¨¨„X4Š¢è0 äØÖëõ”—£×ëÙ¸á6Ô «sVõlEÁh4¡i*óæ-Àb¶‘žE$A’@§×³jåzE&O¬¦¬\¾†ØDâN,ˬ]³½^OmÍdYAQÊË*&‚ÐMTUÖ`4ÉÍÉC’dT²²rø«¿ø{⪊"Ëè tŠŽ$o2åUÄb1t:F£‰}ä3D£t:=F£‘¢ÂRâñ8ƒ½^Ï]wÜO$À`0¢(2uuó‰ÇbȲ‚N§ ªƒõxGEcQ^éx…˜cAʺü]xM^Cƒ´Œ·ðtÛÓÌöÎæžü{% I–+3¤ï.àšB’eEd¼\wDð£a0š8´÷Ez»:f 0%Y¢ëlÛ§ñxœññq`œ¡ÁÎ4ž¢¹á9%œnècîTݨ1P£`IG.Û£x<>!²C–áä©c|ëÛÿIOo7%Åe´Ÿm£«ë,v»ƒ†Ó'1M¼¹ùU††™?wýdfÑéu¨ªÊs/ýý¼õÆË˜Ì¼Éi ú‘ò¥禡÷dcÉš…l´½+ãã\}o¿ïb¯Ïwå;p~þ1“å.×Þ¥Ú=ÿøÉÀvõmÄ/—¼àJ’¼Ûçú-1 Ëš…,ÉŒ„Gè ô0¥Æ[ÃXdŒ•+I1§àëõsäÀqìgÛ®lÁMS1èõؽiâ¹\7Dðž£7ð&§^°_Qt8Ýž©‘’$Ix¼Ix’R™¿h)%³ê(¯¬!5; ûǦÍÒj‰UŘ0<ôÖÄ?ƒý²_ÈV«ääTÞxãeºº:(+­à®;îgtl»ÝAvVF£iJ· ª²†çž’Îγ–°xÑrššO“•™MYI99y â‰Ù`£ÑH~^n·wÂMÇDZj:éé™,˜¿˜]»·Ó?Ї¬(×A!?¿ˆ¥‹—ØúÖ¬^µ[7Ý…ËéÂëI" ñÆæW(/¯Âh4rôøaTMEU5d¬ÛD@¶špÁ‘dô:¹¹ù$'§b2šHò&cµÚHò$a³Ùp8äää1gμ„ˆ¢L Te\N7F£‘‚ü"†‡1›-èõzlVF“‰¤¤d..ö¡¢³zqͺ˜oKn=ñÐ(:{ ’¢Ç”ZŠ1©PÏIdƒ ÈÈ-bîÒ•©²¢pìà^v½õ:áphÆ{&³…ü‚b–®ZO^i%U5uèd‰¾ß<ÏéÉÀtEΖ„l´¢·§ ›œÈzÓ?»ó{·H 14<ˆÝfÇçó‘““wQ}ŒÑ±1úHOËÀl¶\qý“ø|>ºº;ÉÊÌÁd2ÑÛ× šFJJÚ;Npp%mþ¡Æ@ª¦Rä(b{ïv¢ñ(·åÞÆ™ñ3< €ÛèÆ¢³ðÂÙ¸;÷nÜ.7ëo«#«¬ íøy 7BDp½ ÁUáb_’“.f³™y S1{>5sæ’_ZÙbÁ`4%„ÍTu"ãŠvn}!û¡·'6 )W NÞVKDMøãç[?""I6›ùó˜pó¹÷žP]BÑ[’¢µí >¿… –ð¾û?L(Äd4±jå:dEA‘eLf3ñ8äåðíoþ(á¯S˜][G4Å 7 …§ùL#µ5sÐ4°Û<ô½_œ­‹†±Zlüû¿üÁP@ÀÏŽ[Y¼h9µ5uxLeÅ,~öó‡ˆÇc|å/ÿ£QA‚€h46åò5yo7¶Ñ43-Í466P_7¯7é’.WWjÈišF¦-“/U~ «ÎJ•»Šu™ë%³ÎL©³”p<ŒQ6¢i"] ®„"¸fPU•Ü‚bþöß¾M~a1™yESPMÓ.pËJ¼ÁDú¥‰¿o;’¼øhH§Óát:ÏU©%æñ'ýÝgÔ A4eþ¼E¬^¹ŽÊÊY˜Mæ)_÷‹ùÓ+Š‚Ãá˜Úv8ÎéQȲ̜ÙõÌ®­§¢¢zb)Mõgz Å’4™ÌlÜp;OIÞd$IÂn³ÍHת×_˜jØn·_ЯÄßɯÝŒr£c#ä‹Çq»ÜXmÖ ·³ ë0›L¿ú“·Gvw4.ž¾~2›Ö¥î£¦%V:ŠÊ°Ú¬Úpi™ÙTÖÎE§ÓM¥áÇã3gö']dÙ`šØu‘tÌ]ĉÇUûÝüúÚ‹,]²¿ßÇØø£¤¦¦348Àðȃ‘´´tTU¥¯·ƒÑÈ~ò=rsòyðCŸd||”¡á!ÒRÓ …‚Œ£»§‡®î.l6f³™_þê'x½^*Ê«¹eã¸\n:»ºÅëMBÓ4º»;QÙÙ¹8ìvb±8Ï>÷$om{»ÝNKk3åÕ qòäIÒÓ³™][¦iC!ÚÛÛ'”Üãñ]]¨šÆž½;in>Í]wÞ^o ?¿‹Ù|IƒÂðò+Ï322ŒÁ``vm=áH—Ó…É43^$2::‚ÃáÀb±L¤Pæ’÷Ãf°Mí2È Ó„GͲ³ÞL,C ×Â\3hš†Ë“ÄÒ5›PUmJkà¢e$‹À9ø&²ÏÎ妱5 ìF 9¾á¢ï]Pÿ%|Ü].·l¼87+|¹UïKùæ[,VÌ_4µÿí|ùÏöZ¨›SÉòWÒ‡+)—ŸW@aAÁÔþé3àõÿ¿Xe’L¬çÁ-ÿ,_¡FÿYt‹.ZŸªªä–ðßEQ0[¬€„ªÆ/þ¼h„ô"í—̆v®¿ ‘ñ ˜#‘O>õ[ ŠøÔ'¾€$É<þä#<ûÜ“¬[»‘Ý{vrêÔqŒ&ÖÝB(âLK·lº“Í[^§  ˆêª~üÓÐÝÝIqq9Ù¹ ½Ž‰v::ÚØ¹{; ¬^µžmÛßÄëM&ñäS¿E–öîÛÉèèyy$'¥ðÜ OaÐøÈƒŸâCøÑh„Í[^cvm=•ÕüÍÿû3v'j<Îÿù)ÍgN36>†¦ittžåùŸB§Óq×÷36>Ê{Y±l ‡ïgÏÞèõ¶ïÜ·þç!JKJ/ùƒZZ›™]SOWw'))iìÚ½X,N^^>Õ•5¤§g"Ë£c#¼¹åU†‡‡ÈÎÊaÑ¢e$y“fÆ­£¡úÇûˆi—3.$bñ(ãá1Ì"W ®y„"¸¦¸äJÇ…Ñ›ÌÜó°þÖ1®ÄïB‚¾q¼Ãƒ¨·Ó²¸HÓ—Q›^ïä1—âݸªOx¡1=ÞûJúçt>¦÷ûžç¥ˆ«³‹ÒX¾iÑÇÈŠ‚Ç›rI_fYV°Úì ÑÂË\|Y–‰F#:|€±±QŠŠJ¦µ­§ÃÉéÆSÌéîL$¨˜ÅàÐ ›·¾FfF6CC¤$§$®õDÛáH„ææÓ8¸‡ôô E¡¢¼ ·ËÍèØ(Íͧi8}’ÒâröØKuU é™hšF[{ËÄs,a³Úðû}µÙìèõzÌf3ÕœíhGUUTUeßÝ46ž";;ööVšÏ4’žžÉÆ·sòÔ1R’SY¿îª«jHNJ™f€jS“«²$£×ë ‡C˜Íf23²X0 [¶¾ÎO~ö,[²’O|쳘Íf’¼I,˜¿„mÛ7óÔ3¿CÓà®;ïžñ¼IHüjè·¼Ý|EϪªX“-Üc\ðû=´@ ø£# Áu‹$ɸ½)x’R¯ôƇa°ÆîH$ÌÈè±X ›Õ†Íf¿¨r¸,Ãá#‡Ù¶}3þàDZÛí Þ§ûãN§s*(ý0á%ÅöÛÙúÖ|æÓ‚ËéBU5ÆÆÆK ѰÛ8ìÞ΋Ţ  âp8‰D‰U'§‹+²àÞ6‡“œÂÒwÔÂtEóK½%u˜mN>üÙ/óXôŠÚ•e…#vÓ¸oÇŒ6Œ#Ÿúøçyê™ÇøÞÿ}‹ÊòjfÍšM_/ƒE –²gïôú„&†Ûí!#-¯' EQ˜3{.­mgXµrwÝq?š¦Q\TЦi¤$§ât8IINett˜`0HZZ:IÞ$ôz=g;Ûqؤ¤¤RY9‹H$Lÿ@+–­Âáp‹Å»Í1‘’×È]wÞÏO=JwO'}ðS¤¦¦cµÚhj>Í¢KiŸÈµpáRÐ42Ò³¨™5‡ŒŒ,vîz‹gŸ{‚ŒŒLZÛ[xñ¥gع{ååUx½nB¡Ûwl¥¬´’S Ç)/«äÄ©cTWÖR7ggÎ4±zÕzúú{Ùµ{v»ƒ/é¯)).›Ò$éïïcÇέD£üÐ'˜3gÞ†¸¦i,ßÝ,ßpû©¹ßîþ F€.×8Rݧÿoµ¦iOÞº¤Ê¾f^©È  ¸a‘$‰±á!äá~–,X<¥ú½gÏnþí?¿J à§¾nŸùÔÉÊÌAÓ4dYžR<—e‰'žzŒï}ÿ<üË'I™Êä¥MÔ%Ñ|¦ NOvV²,ñ̳OðäÓñ·ý”–”N ²&gŽACU¯'WTUE’$¢±(ÇŽ!==ƒç_xŠo}û¿xñ¹-ädçÆyåÕçùÕ¯JcS%Åe|à²võFt:ÝT]“yY–‘eh8ÝÀg>÷ ŸüÄç8~â(ùE|ü£ŸA’ä‰>M2K3âo¦÷ïJ‘ehnnâg?Â~æ*_YëŠ"shïNŽoùêΪ×45aôùưYí˜ÍfFFG$ ×ÄêÈäý“e™h,J4ÁíòFñû}$'§‡B–dl6;Á`³ÙB0Äép2:6J,Å>+0™LDœN'áH„`0€Ãî@UUÂá„øŸ^¯Çét ¡ÏÁÔx¯7USéïëEFGGxè‡ß&?¿Ï}æÏ% %â1̆†‡*‰â±É)©ôTUexx›ÍŽÏ7>õ×étÇðûý8Nb±áH›Õ6u'^"‘ «ÅŠá"+’Н½þ*‡ÛZY}Û½ÄcWº'~¿‚ßY’híâ¡§và†ÿE’¤ØÿÐg®v·7 bDpÓ ðùÆÉÍͧ½½•­[ß``°¿ßOeå,23²Øµ{n·H(3ïÚµ ÇKII9Ï>÷$==]¬_+¿yäç ñ¯ÿüu232ðù}ôöv&”­ûûûxõõéé颾~CCƒ8°«ÕÊÚ5›èéébïþÝü~æÌžË7¾ý5fUÕRYQ͸oŒo÷ëÜyû}Ì›»ukoAÕ4þé_þŽ÷Ý÷aÌ&3ÿõ?ÿ‚Nѱlé*âñ;wogxh;ï¸E Fimoáç¿ü1K—¬à–MwÒÙÕÁ‹/=ËØøµ³æ …ì÷’“KSóif×ÎeVuíÕ¾U¿W60M¤1¸xYI’q¹\¸Ý®©sº)m*ÿ×{ñ¤“e=7ª F£§3a\hZb¿¦GJüµÙ¬SïxÜî:!‹Ï´>ÌèÿT‚é©i s×ËÍÍEÓ4šÏD¹å–;©,¯Æl6cµšg›™‘1•$`²Ÿ0=³—LRRÒŒ “õz&“)ñZ§Ãl6]Ô5pRlñŠÜ/%‚ëa€HÄcq2Ò2Y·vF£‰¦ŸfÇŽ­¼öÆK8.B¡ ßøïpªámm-üê7?ãÿýÍ?±ÿÀ¾÷ƒo`±X ýƒ²³rp9]çÅYh¨*lß¹…ïÿß·P…ö³mD£ü~? §O2:6ʱãG°Ym;~I’ˆE£äa±X±˜-ø|ã¼þÆËÔÖÖaµ˜1ŒH’œÐíÐëéîîbßþ]465 ( íƒA*+g±xQÂ7^Uã –šŽÝîàG?þ.?úé÷IIN¥£³ü¼B¶¼õv»Šò*B¡ ±+taºÑ9À¬÷ÞÅÊŸÿú‚:´‹ÿ½Ôû—jë|ÔiIáε)QXPDQaÑÔ¾ ]Ÿ.ßÎ¥ú|ÁµyÛ»ïôê àFAþý«®ot:^oË–®bù²åÄbQŽ?L(B’$²2s°ÙœiiM#33›¼Ü|z{»ñ¸½3Þ"*+f‘—[€‚$); ¡±mû¶¾µ‹ÅJQQ µ5u̪ªÅép‘“‹×ãE§èÈÍÉ'‰ 1 äçáó£iII)ç„ê´É¾ë±Ûí(ŠBgçYZZ›¦\°ÒÓ31Lþ)$E‘Iò&sÛ-wsìøa¶m{“ìì<Š‹J©¯›OÝìyèuzŽ;ÄÜúØíÚÚ[½Ú·IðbÒè€@ ®bDpS£i‰t³ÿØg)+­@U¡° „}ô³ `µX)--§­½EV((-âïþæÿ#?¯p8DQa)_úâ_ÒÝÝIjjõsæÑv¶i¢îÚš:>ú৉ÇãƒjfÍÆíòÐ~¶·ËCIIz½ys‘––N4åñ'¡±©ìì\6¬¿•~²²rHNJ!77MÓ¦ô8Š‹Køâçÿ‚ÒÒr ò‹0 ü~²³sq¹Ü F^ã%ì'ª ))i|å/ÿ9³çÒÛ׃A¯gÁü%$'%ÓÝÓErR ÇO%';—Ò’ L&K—¬$;;÷jߪ÷i*˘¨¿÷L 5 àÆD ‚›Mƒ´´ 6¤e‰™áää6®¿-„-%ÒV”WOc—•ŲcÉâSÛ’$Q\\6•š´  ˆüü©²’$‘ššN}Ýü©ísïAKËJŠÊ(*,aͪ N©Ï™=÷‚¾gfd“™‘=µ//¯`ªÞþþ^Š‹JÈÊÌ¢nö\âqp»<Ü’©sZºd%š¦‰FˆD"Ô×Í'9)NÇÆõ·]íÛôž éïï¿´²»àŠ¢(ŒŒŒ  ëO nHį«@p ÎÏúôvY f—?îbû4 ²³syðßD§S&”½yGÙ§¦—õz“¹íÖ»QdN?m&ÿâ}•$ £ÁÈêUë'²fÝ„šš†Íj#öóØã¿B–eþ|%‰Î®rªëè@pã! à]r¾æÇtÞ‰°á¤›¦N§`0(ïÚGz]²,c4\øÞyÜ̳þªª’_È}ÿj\ýãÉ£.K‘vO2q¡é!77ïHC ˜F"KU&´?.?òlnnFQ²³s/(?<<Ìàà™X,–K‘Hx*öÂjµ2<®>W’§W ×7¡…@0ÀÏŽ[ùÝðÒ+Ï10ÐwÙXMSùÆÿ~‡~ü4mæ ­$Áî½;øÚÿíí­È—¨K–¡¯¿ÿ{èÛ´´6£ÓÁñGø¯¯ÿ3}ý½ï(W–adt˜o~ûk¼ôò³ô©£ó,Ï¿ø4ÇOb£W@BÀQÿ®ò?a|Á‰XÜÔÈ´´4ñ×ÂÂ*Ê«9rô¥¥å A_/áp˜‘ÑatŠƒÁ€,ËäçÒÝÓISSÛw¼ÅìÚ:Á 'ÈÈÈbdb%cpxCG30ØOIq)™ÙD"ššèïïCUUº{ºh?Û†$ɘLf*+f144Ä©†“ iäääa2™8uê:½ŽêÊZdY¦©ù4f³™Â†‡Ù½gÇŽ!#=‹Ý{v’››GFzñxœíÛ·0<2DGGBçÃf³‰±@ ‚«‚0@75`2™IJJfttŸoŒ3g9ÓÒˆ¢èèïïãLKmí­˜ŒFŒ&3²,³hÁTUeph€<ô->ýÉ/rªá'N#''ƒ>a¨44œ¤áô ìv)I)defÓ××Ãoý%jŸŸoœç_xеk6’™‘…ªªôô²tÉJÞxóU"‘ÈÕ¾ì@ nb„ –à¦ÇëMâî;߇Åbå©g~’Äá#‡8|äee•DcQôz=:žX4J0`Ͼ]ÄãqÒÓ2éèãtã)vìÜŠÕj¥­­%áÆÄÕ8ÃÃC4œ>ɸoUÓåtÓ)FF†‰DœE}ÃiLF#ÙY9(²Œß?Ýá 11»ÃIrR &£)V¢êªfÑ26m¼ƒÁ««L4ebbœ`0œ %Ë2Š,ãp8)+-'--Ö¶›be‚Íæ`qÍr¼©iĬÄ44444444Þ´÷5Šii\¹ùZÒÓ2ÈÍ-ÀíöPXXÌøøã¬^µÜõQ††xi×þååU¸]nj_;ÄÐð n·“ôôLî¸õ’“R˜7wY™9$%&£(jÔªì¬ Š)-­ÀãIÄ›šNNv‘H«ÕFJ²—ì¬\l6;ÿègéë塞´’úò¿ÓÚÖL4aÑÂ¥ Ñ?ÐËܪù ö“ÀdÌ+½Þ@eÅ’’R0 x|?×~àãZX` w8¢ ÐÜ5È/}™qðë‚ |íÀ/>~©«¥ñD[Ñxß3u?ù7…•+Ö±|ÙÕ§":ý÷‹•3Ó±3]g¦c`ºàrv™K>x¾254444444Þ hˆ†ÆyEQõÑÐÐÐÐÐÐÐÐxÓÐfWoÚ ˆÆû ÕIˆÿOã­B{¼ïj´n\ã-CDYÖbqj¼ÇQ½ÁHPo ±§÷RWç=  Cdåk£˜†††Æ»„¨,O$Š\êºh¼wÑ£ŠÂØèDЩEÀÒxO£(˜,V &QMà~[pº©^ºêR×BCCCCc60î‰Ê ý—º:ï]t@+ÐÖÞ;œ>a5´¨9ïiDQºÔUÐÐÐÐÐÐxÇ¡( ­ÝC„‘qAŽ_êúh¼w~AžïìáDS‚f,¡¡¡¡¡¡¡¡ñ¾Bz‡Æ8RßµÀ‘K]'÷."€ ðÇP8rrÛþS´t"Šš¢¡¡¡¡¡¡¡ñ~@ÆüAžÛ{ŠÞ¡1¿(¿4,·ŒÉ(X'Aø®þÑýyëAÏe‹K(ÉNÁdÔk‚ˆ†††††††Æ{”HT¦½w˜m¯žæH}gø ð €–]ã­B˜ÿ±Ÿƒ*ŒÜª(ʘ ú¼l¯›¯§Í„N’˜ _ª¡¡¡¡¡¡¡¡ñnF@V&ü!:úGhhïgØ7áá—À7MøÐx+‰/pÄ„¨R>¤(ÊzA M3š×®†††††††Æ{EQ” ,+C‚À~A~ <4áCã­æ «)«!)@.àô—º¢o2àÚP#¢úA3»ÒÐÐÐÐÐÐÐÐÐÐÐÐxqÎ Èéµ€º’x륮¤††††††††††Æ[N€ €¢íoþEâHLð0Ë‘¹IQ¨D<±}ïm¢ŠÂ8pZx‡.xsâÂG* ÿ Â]:W¢Ë”U‚!9ÑdA Æ«¡¡¡¡¡¡¡¡¡ñ^F‰„ˆŒôl¯#ØÙQB¡ýˆü+ð< ¼YBˆ>’Qø‘`0ÞàX°At.»Cr&‚Î;êR? ·Pd¢ã#ŒßËÐŽ¿ênmGà3Àcðæ¬„è= _ Æ<ïV^`0‚,ƒ"Ÿ©Œ†††††ÆÛ…ÿŸÆ; E›hh¼l 8j6aôæÒóÀw2‚íõÿ@pôÍ(_8½–5(üɱè²ÔäþN>´FCCCCã218Ð`ï¬F»ùRWDCCãíD”˜8±—î?ü7ÑñÑ!ð9 ú·®‚èP¸]²'¤:—^…`4©+— Iâ¹½‡Ùv²‹Âü"dM)vI€±ñq,á!>ãÍ/TCãýƒÅ\8kY #ûžÛ,|¨ÿ[‹Õ)2+ŒiyR³´• K ÐÙÝEzF>·ÞúaÂáð¥®ÑûAéèìàÙ~Œ,ËH’t©«¤¡¡ñ6"è XŠ0zp[&²\Æ›!€z·Ñ`Ö w f³§Ó‚&\Z|>;’¤»ÔUÑÐиDèÝ©ˆF³^žO{3Üót€U4šA5ó+7†æ,úö¡) 4ÞO(j“ךý¥GíEhh¼oQtzI Ž7KÑÐxÄe ‰F5áõíÀlÐa5ê/u5444Þ$aæyýT7 mÞ¯¡¡qÉ9Ó)½)gMÑxãp²{˜¿¼°«ÕŽN[žë```€¢D#Ú¼êR×FCã] €,+1ŸAâÛŠ¢ ŠbüA$1¶£Lsžº­ J\!£–qþ±º¯¯‡Î®rsóqØñýáp˜ºú“ñ:åæäaµZ5ADCCã=ƒ6cÔø%*˜Xº|&“I ™ù!J»÷ì¤îøNe¥…FCão¤½£ã'Ž" ªPY1‡ã'ŽâóáMMÃjµqâÄQL&ƒ»ÝNFz¯«E’$æÏ[DwOGÕ²aÝå¸Ý.úúúÙ·&“ QINN¥¬´ü¼uhimâÅÛ¹þÚ[Hp:QUˆ™ðóÛ{ŽÉdÆëMÇãö`·[Ïo%­×IjBІ†Æ»MÑø›ä¤dÊJË0›µøðo’­ôÜ}©«¢¡ñ®'òƒ} IÒqëÍwòõo~yóÐßßGaA1K¯ ¾á4÷ýá×Ü|Ó˜Í~ýÛŸ²¸f{^ÙEGg;wÝñ!޼v˜wncNU5II.v½ü"ÿöÿÈ×¾ú *Ê«èêîbûŽ­ Q=wýÔ9DzzÉI)ØlvêêOñô³ŽDÈHÏ¢ ¿Ö¶œÎ ŠèëïåÁ‡ÿÌØ˜õë.#99•í;¶‡Yµr‚ ðÐÃÆh4rõU7P\T¬¹tjhh¼£Ñ¿EQeÍYô­D@Ñ&o Ñh”ºº“lX¿™Šò*Ìf §ëN"‰/ìÜ€Ó‘@$Æl6SZ\† Š´¶µFq8ì~y'‘h³ÙŒ¢È( ³há¶l}’}¯¾Ìõ×ÞÌCÿ™Ý{v’œœÂŽ[Ñéô457ðŸûgºº;yú™Ç¸ý¶{D‘®®¶>÷5‹–•£~¶ïØJYi%’$±õù§ÉË+àÏù=MuX,VNœ<ÆÒ%+¸÷¾_ð™Oýv›]ë‡544Þñhˆ††Æ›ƒ ÐÕ7À/þú4²Zd´w&Š"“•ÅUË’ì´¼/Í&%I$7·€S§Oðêþ½  °tñrzzºY0¿†Ûo½›“§Ž•e†‡‡9xx?€ŸÌŒ,ÚÛ[Y\³œ¥‹W0<<Ä/ýcµÁc0¸ûeÌ7ÊWþõ X-Vëeù²UH¢Ä‘ב—[Àe6³ãÅçQ…îî.ö¾ú2&£‰ÎÎNŸ>A$F1* „#a›ê¹úÊëYP]ý÷ýAY\3¤ÄE!11™»îü·G[ýÐÐÐxÇ£ ï ”˜JP„ø¿Ï‡æ_ñzúØWßËîù”öß‚Àðð'Nf‰o‚d§•÷£"I:î¸õyüAž|ú–Ô,çúënå¹çŸ!';§Ã‰Ûå!+3›Ú#q8œ\qù5̯^ÄÐÐ ¥Åå¬[»‘ææFvï©Äl¶0<<Ä‹/>¬\¾†õë.gíš(Ï=ÿ ’$a4ÉË+D'IH’·+‘Ò’ ¼Þ4RS½D#JŠË(**%à÷c±XE‘p(D__F£‰þ^>ûé/²ç•—½N‡Û塲bzA[ýÐÐÐxW  ïY†‡‡ùõoÊÐð»ƒ5«7ðâÎmŒúFÉË-Àépr¸öÁP›ÕΦˮdÁüEÚ þ‘¯×Ë—_¡ ï@Dz{ûìºÔU¹äTW/¤¢b‘HƒÁ€N§'/·QP€¼¼¾÷íŸF‘$ƒÁˆ ”–T ŠjD¬Ì¬¾ùõï`Ðë‰D`Þ¼”—U"Ë2z½ƒÁÀÂ…K‡B èu:AD¯×³léJ×,E’t\sÕD¢AˆE<ãY.I"‹.A–e #z½Žµ«7‰„Eµn+–¯Æ`0j}—††Æ»MÑxÏ"06>Æ£=Èå›®fñâåÈr”ýörå×QR\†ÅbåtÝI¶<÷wÞþ!Ò¼éÚþ7¢(NÏc ñÎ@–Õws±UÀ÷ ƒ!.$èõgr숢¨Fö›áœø1‚ˆÑ`ŒoK¢_ ™ŠÑ`œv\üxIB’¤ø¿œ{Ì$fóôáZ­Û™úétÚp®¡¡ñîA¼ÔÐÐx+Y‘9qò{÷îfttߘörâä1rsr™7o>w"Õóæ“™‘~©«¬¡¡¡¡¡¡¡ñžFS™h¼§QQ”˜SUͪ•kp:œ,[ºŠ’’rôz#шŒ,ËD£JÌyZãR!gVN&•ô‚  ’JlßÔß'·'³I+Šjf45"›8EÍòVDj{3Ê—9ަ:g?ïó­´M¾ 5JŸ|Ѥ€çCQEFÎþÙmprßd=44444¦£ ïYE5KÈÉÎcÉâ¥,_VéÓM–²bÅ*Ò¼^¬VYX,–¿ý¢ >ßýý}H’Drr ²,ÓÕÝI Àépb2›éïïC\$%&32:ÂàÀ©©i z:»z0Œ¸Ýd9JGg7c¾QRS¼$$$¼i“ÂH$ÂÀ@##ÃDe™¤Ä$<ž¤×5ÑExî¹-Ôן&+3£É̺5U_mò:`0HGGÁP«Õ†Éhddt„H$¨“~Q”P§ÓEjŠ—¶¶~üÓïrçdD£¿ŽZŽúïú†F}ì!Ö¬^ÏÜ9óg<Þï÷ÓÑÙŽÅbÅ›šÀȈZ/·Ûs©›†††Æ;MÑxÏ¢(”˜Ì¿÷KÌf d¤gñ…Ïÿ3‹•Øœ…šEK©ªš‹ÅlÕÂW^Bºº:yø‘û©=r^Ïeë7c³ÙùÑO¿ƒ75šEKࡇÿļ¹ 0MÜ}×G8òÚa¾õ¯ó_ÿñ-T/â _þ4 ,æÓŸü|c£üÛ|™¶ö6*Ê+¹áº[Y¸` Š¢ ŠQYF@@¯×‘HY–AI”böõ ‘HAP£(   ð¿ÿ÷Ÿ;q”‚b®Ø| Ö_Ž"OÕº«Ñ§DI"‰"Š"‘H$V£Qω“ÇØýòN®»æ&¢²L(ŠM‚Et:ѨºJ'I‚p¦ž’$½olÿENó_ý©)^ª*çÒßßÇ®—_¤°°ƒ^ÏØØÇO¼FRb2wÞþ!n¼á6øëc°fÍæÎ™K8F§“âï[Qd$I‡$ID£ês ‡Ãœ®;‰Ùlapp€ç¶=CVV•s!æ˜.!Š"²åùmϲõùgX²x9·Þ|áH˜ßþîD¢¾ð¹¾ÔNCCCãÇûcäÒxß"Šâ4·$IØíÓu ŒF-|å¥DVdv¾´ç·=ËßöËôôvóèãRQ>‡Ô/ÿôåÇ•àâ»?ø_ Jøïo|ÿûö×ùßþ:åUtuu²õ¹§hmm¦®þåeU€‚•ñÔ,ZÊ·ÝÃsÏ?ßî¿ókHOË`ßþ=ø|£”—QU9ßÿñטÍ"‘¢$‘àH qÃõ·200ÀŽ·b6Y¸bó5ñhG>ß(sªªùô'?Íjcûö­ì?¸ÑÑa z¡pˆ¬Ìî¸ín¾ý½ÿá²WP[{ÖÖf$ÄæM× È `2™ñOLðÐ_ÿÌÁC¯RVZÁœªùìÝ·›Î® ò )).ã‘ÇÄ`0pÙ†+X²xÅûB…C¤¦xù»Ï|—ËÍOþ2Ò³øûÏ|‰4o:=½ÝüóW?Çe¯äúënÁ`bç Œñû?þŽC‡÷3¿z¹9yüþ¿Åh4’™‘ņõ›yâÉ¿ÒÞÑJQa)½J$á²WàóòÀƒ »»“ÒÒ êëO±zå:JŠKñùØp·Þ|'¥%;v„‘Ñá˜Ãú™hVï`Ä÷ùw:içü6ñÞµ4Þµ¼Y6ÔgŸ?Syšðq‰Q`Â?A$Åf³36æ#  …ðùF9òÚ!r²sc/JÁ`0àp8!ãõ¦‘•™ÃáÚ¤$§rÆ¡ä¨Lww'µGòìÖ'1›Í¬\¾†±q¡Pˆ¦æþúè_øð=ŸäÙ-Oò¥/ü µGrðЫüÓ—ÿ¯~í èôz^Ù»›‘‘aDîA~öÄ. JªÞw9¬|c>‚Á1>¸f.YnëÛ¢•Õ7p8LKK#cãã˜L&’“Shkk ê‡-Ǥ«ÕJ~^!¢(211AgW¡PE‘Ù²õ)̯aåŠ5Ó„™©ÂËäþI"‘íŒOŒ“›“‡Ùlf||œ®®N2221M¯ïf4Þ6ÊÊ*øÐÝŸ ±©ƒÁ@iIŠ¢““N'!˰鲫ÈÉÉÃh4rÛ-wQQ>‡ŽÎv23²ÈÎÊA¯×qçíÄb± ×é±ÛÜuLJp%¸°ÙlÜ|Ó(Š‚Á`¤¬¤‚~èS !+ E…Å”•VR\\†ÇHÍ¢exÓÒùò¾Faa1‡“£Gkó‘–– Øín½ått¶#Š".—›»îüuu§Ø¾c+íímÜ|ãèt:|¾QJK+©ž·Ì¬ÚZ›‰D£$'¥àv{X¸`1n—‡ ÿ8ccc ô‘””BMÍ2ÊJ*èêîDEÒ¼¤¥¥ÇžÏ¥~koŠé™ÜxÃmØmvt:›/¿†`0€ÅbAQÀ“˜Ä‡îù^oZÌ?ÒÓ³øê?ý'sªªY´p Mõ @NN_ù§ÿ$+3‡’â2æÎ]Àؘ?Ýÿ;²³s¹âò«éííÁãIä£þNg+–¯ÆéH`hxˆôô̘baÙÒU44ÖQVZI‚ÓŇîù¾±Qzº»ðxßWïICã݇@0$)ÉË­7ßóþ@ήžxò/ƒàíQ˜hˆÆ›Šš}|ˆï|ÿÐéô¬[³‘îž.þûþ믻›ÍN8âÙ­O’àâª+¯'';QÙ¾c+?ùW*+ç’‘– ¨ÂLOO‘h›Õ†ÙlÆçó!V«¿ßÙlŽeV¨­=Àž½»IIN%5Å‹ÅbæÐáýüæÞŸó¯_ý¹¹¹ÚJÈ;½NO~~!…ÀÁ2%%5¾]VZAyYÅ4á3/·€ü¼‚øñ‹.žæó³dñ²øöÂ5ñ²Ün«W­‹__Q ¢¼ EÔo¼üM—]?ÍêõÓ&“&“‰E O«/@Nv.ÞÔ4 ‹©ªœKzú™—Š™Ì›S=íÚS…é³Í““ÎYA|¿Mj\TÏ[ßWY1gšrÂfµ±|ÙÊiÏÚ•àâŠÍ×Ä÷•—Æÿ]VZ{ï•( sçíTÃt—QV:½­ýw’œì=}Ýtuw’•%ÄŒ¹€IDAT•CFzÙÙ¹ìxñ92Ò³¸ü²«â¶ÚMÍ ´¶5sýu·àLàøÉ£  ðìÖ'9uê8UUóÈÌÌfÇŽçÐéõ,]¼œS§O°lé*ÊËÊ ‡£ìxñyA ºz!6»þþNœ<ÎÈÈ0ápèR?Yp± ÛÔÉåLç\Èççbþ@3{¡ó/´¯¬¬’Ò˜oÇÙBïÅÊy=õ|¿óz}¼.ôŽW®XËÊkãÙÉÏþ}¦6ñzê¦ñ6¢Í[Þ!¼Ëæ2ïØ1×Ê·Y ¾ |~mòöv!N»§Qzw~‚€¢(ôõ÷ÒÔ܈Áh  ÓØXO4%7'/æÈ)¢Ó‰ñÉÙêUðûýüù/÷Q=w{÷îÆ•à&';ú†S Fžyöq¶ïxŽÄÄ$¬+V«õŒ³©£¾Q$Qäá¿ÞÏ-7ßÉþûèïïÅnw0<2|©ŸÌû𳵯3ÍÎþýoñÝ9;!áÛ¿Âûn)ÿÝÄLícRðx³üÆ.u|¿¢(Ð32N ¾ÔUy#€ÛjÆa6\êš¼õ·úƒæ±H&:í½Ú\T‘e™mµ Ô ЉZvÞ·A`xxˆ¹EÙ\??ý»0,œ˜Œ&T×pÕ•×±k÷ $8¸îÚ›ñ¦¦‰„‘$bl°Ÿdl̇ËåfhhÁÁôzþ Ú¤yÓ©«wâñ$RU1oj½½ÝDãIÈJŠJõÐÚªFŸéîÎÎv›êY´°æR?ž÷%‘H„ht2‡†„Ë“1Ùíª™¿UÕ“^¯ µµŸo”ÂÂb 㬯%Š †ilªÇl¶‘žRÏ&"ËQt:=BLpžÌ¯¡ñÎD–£±<ºó¾×‹—!S{¤–ääÒ¼iç ìíím PXXŒÅlŽgTDÂñ§º¶ €ßàè±ZŠ‹Jq8¯{ò (2‘È™|#³?OQÃH‹’¤ñ“yct:²"ƒB<Ê{‘`8įŸÙ…bv¡×éÞ{3·w‚ÀÈè 2\¿rþ{6 Œ¢(„Ó‚î™1l6Ê'Y–‰DÕœPgòMA`Âï§©©„iÞôK}»o*@¢²ŒÍ–Àå‹–c4¼÷¥ØK(ìÞóý-D¢ÙèÅw—›Ž¢€Ífç¦n'33QÉÉÎã£þ4N‡QT²]sÕ ¸ÏrÎ4›-ج6î¹ë£äæPQ>‡Ä¤dº»:ñ&E‘믽™ü¼"‘^o&“ ›Í¨Û5k6r¸öeeUdeæpÛ-`dd˜Ãµ¨ž·P‡.¡PúCÃCdddáv¹9zìF£ƒÁˆ,Ë ¢E…%¬\¾“ÉÌ#=È‘×ñßßøiÞTdùŒýýÙA &ûú@ ÄØØ‘h„_üêGäçòÑN`¦j‘ÆÆ|¼z`/ããc¬[³«Õ©ӧ9z´–Ë6^¡…N}‡!01áçå=;imm&;'—… –à°Û§iÏ·²6µÝ„Ãþøçß²fõ²2ÓâÙÑ'ÛúüS<¿m ßü¯ï››Opxºî¢ P=o!%%¥1¡U=wRK9yŸoˆ_þúÇüÃçþ—Ë1mþu!YVonnæÀ¡},®YFFÌá}6tt¶±ÿ^,+‹k–FyeïnBáK—¬ ¹¹þþ>V,_sNN¤÷ ¡P˜ß7^ýAlVë»Ê轂(Š®=D÷©/uUÞ2FFGxáÅm46Ö!"…E¬Z¹§Ó1m¼™:NM~ãÇŽãñ'&%%‹ÅÊœÊy—¡Ó‰±g½½ÝüèÇßféÒÜ}ׇ¦E÷œÉwprûÝ ï]|v«(Ølv²³²4äm@ ¾1…®±Îw—ÝdŒIäúën‰ïËÊÊáC÷|"þ»$J\uåõñíIæTÍ£ªrn\s07æ¤«Ä U“–ü¼BE™fâ2ù±ySÓbÄê~›ÍJ¢ÇCnnþûÒq÷R# …xð¯&+3‡ŠŠ9œ®;ÉÃÜÏõ×ÞBzZ&Ñh„g·<÷ëÑét((ŒŽŽÐ××Cgg'­­-X­6ÒÓ39}úããcØíŠ Kèéí¦³³IÒa·;xú™ÇX\³œžžnÆÆÆØ`ÙÙyôõõ””BzšªEªk8̓û¨,ŸƒN§cÂàå=/ñ‹ϳrÅZ-tê; A€Þ¾nžzæ1, k÷£“täÑÑÙNB‚‹¤ÄdZÛšã9T‚Á~¿Ÿä䯯| ôc³ÙÉÏ/¢° ;‘îî>›°Ù줧eÐÚÖ¬Nœº;‰DTÍæþ{¹ÿ?P\TBvv.ãÃ;~ Ÿo„4o’NG}ý)DQB–£€@($/·³ÉLSs ]$z’‡Ãôövc6[°X,Œãp8 ƒèõzŠŠJÑé$ÚÚ[ã>n¢H\¿Š¢à÷û‰F#œ8u”ŒŒ,8züUs0MA×dÞ¼…ØíöKýZß",f3™™™Øm¶K]™÷%¢=½]ŒÖ½·W“õz6«»v`6[¨(¯âµ£GE£ÁHnn>¡PˆúÆÓDÂaDQ¢ªr.n·ƒ'ñ«ßü„üÒ¿qðÐ~v¾´/þÃW‘e…ááœ.‚Á =}Ý>|€‚‚b2Ò3‘D‰þ>rròéîîÄãNÄ7棽£•H$‚Õb¥ªjý;{Î>+õºj–ðî¨Þíˆ"(³hÞ«Ì´l©î¦m_hysêoÊÛÊ÷ë3}G (ü~Æ|>Õì)elÌ,˜_Ë;·c4Y0¿I’…‚@0äw÷ý‚ÆæœŽ®½æ&îûïNÇ'>þw<õôcŒŒ ÓÚÖÌ]w|˜Ú#)*,AVd›êøÁ¿ÅªëèêîdùÒUq¤³£ÑÑ‘¸¹ÕÑ£µÈr”ô´ ¢rôR?1% ³~Ýåüî¾_°oÿöìÝMww'—oºŠC‡÷óòž,]¼‚Þ¾^Ž=L[k3Wl¾†ã'Ž2<2Œ¢(Üó²k÷ ±\"/°ÿÀ^ F#×_{ O=ý(õ §!æÏ‡kÒÚÖÌg>õyJK*ìg÷îÙõò‹èuzòò øå¯~Ìu×ÞÄÎ];0™Ì¬Yµžg·>IMÍ2žxò¯ôôta³Ù‘$MÍ ¬]³‘îXhåÅ‹–qâäQ¬Vyy…èõ‚ ’ìÅawÐØÔ„ÃîÄí¾pT-AÈÊÌ!‰ Ij~™Ö¶~dEAÒÒÒ±ÛìïJ×ëaRûü^´7_¥¾Ôy Q#ïY¨®^@º7»ÝAEE[Ÿ{†Æ¦z::Ú¸öš›¨o8Ecc’(òʾ—ùùOî#1q `0Y½r-iiéüóW?GvV.Í-ÈŠŒAo`á‚% @[G+<òlv)I©<ü*ŸýôyäѨ®^ÈΗ¶£ÓéhnnblÜǯñ'ßá!ÀßQN‚p&‰ÜÙû_×M‰çž3uùKãíAÞ ã™ÚÉ¥z·oÅuß«m5##“Ò’rLFƒ‘¢¢RŠ KU3,EFVäéŠPƒ¼z`/==]èõz†‡éëë%==ƒÁ¡Zš›8}úiiŒ p»=ddda4ÉÏ/"ÐÑÙFFz&.—;^¾ÑhÂíö°ÿÀ^†††Øõò‹´µµÒÙÕA[[Ë{ò¼ÛÑétȲLWW‚¨&u‰?àgÁ‚Å º:ÛéèlWóª ’œÊèÈ0­­Í ö3::¢ªèÃh028ØOOO7n—Ab+­€N§£»»‹žž.úiimâÔélÛ±…ÎÎvÆÆÇØ|ù5è$iÞt.ßt5>ß(ƒƒýì{õeÁÐ××ÍfgÝšËðx9}úí¤§g’žž‰(Nšu)@(â¥]/ÐÐXO0B–e‚Áà´¿S#üõõõpìøR½i¤$§`6™Ip&pâä1ºº;U³±Ký"ß¼•ßûäœd¦¹ÉLǾצ7³þo´ïGEU«ã—L(¢±©ž®.5ÑmCÃijk‘’œJqq9½}=Ó¾WE‘¦££ ›ÍA{gûî# £“tLŒ!…ÅddfsüøktõtÒ×ßKk[3m ô÷qôh-e¥•¤$§Ð×׃}ç¯\EQˆD#ˆ‚ˆ$ID£Q¢r”Ñ‘ûÉÏ+@§ÓÇ …BètúY9⺻;Ip¹HpºÕ/‰ êrÙu\Ô˜“ΚѨŒ €Á`|£)ôõõãó’–žNÒFQQãÎÄoÇ=†Ãa¢rIÑë oÊu`bb‚‘‘aR¦˜’½›E‘œœ|*+çRTTHCãiJJʨªœCAA>ãã~Ò¼éÓÍUío*¥%ådgçÒÒÒDnN>)É^ ò‹ÈÎÎ#“––Áüù5œŸC‡÷ÓÔÜ@fF6áp‹ÅBNv))^JJÊp:ÈÉÉ';+«ÅJAA1ÞÔt6_~ CCƒxSÓèvt!I:œN'ÉÉ)¸=‰ º»;±ZíȲSBˆŒOŒ#Ge.ßt5r4Ê«û_¡¼¬’ã'ŽRZRÎÉSÇÉÍÉç•}»¹úÊëæ–FŽŸ8Šß?AvV.EôôaEl6;==]D£‘÷Dßòf¡Ɉ "z½.ãõ/Ë2†ÌÔC¡ ]]FO"v»cÚ1áp8R¢µ­•p8LNvÞ¬ÞÑdШE@@§ÓýMA4dY¦½£€4oº6_š’N"#= «U5÷‹F£èt:ÒÒ2HMMc…ÃÉû8qêz½Q”@§‹¬Ì^Úýc¾Q>üÁO’—W€ÃîD'éðx<¤¤zÉÌÌ¢¿¿EVX²dÅ…¥ŒŽŽ°ç•]„Ãa23³Y²d½ÊÑãG0MïŠïûmeÆ'&øËÀãö°níe<³åI޼v’âr^Þóßü¯ÿ#)IÕT¶´¶ñÿþO>x÷GX\³8n ÿ&˜ì+ZùÖw¾ÉÕWÝÀæË¯bpp‡¹ŸúúSèt:®»æfjÕLsµ¼hôL¹SW”3š‹™¶ß Ó´¸ÕÑëiDoÖZÛë¸æÙ\`hxˆŸþìû´¶5“™™Íg>ùy<×´ç-I3ÇÔ?Û±J–Õc'‰FžÝú/îÜΧ?ùyzzºx~û††ÉÉÉãî»>BvVö4g¬i×AV¦„µ“Õös¶ëÔv1õß‘Èd²Åa¾ûƒÿedd˜â¢R>x÷ǰZÍñkM]Ř)OÁÔ0Ÿ“mnò^[ZxfËS|æS_ˆG„šþ߯v!ÍBe7‰(Æ^Öt8“ÉÌ?ÿl6;Ñ(,®YNYi%IIÉD£ª€zçíDDDQTý„$‰ë¯½…Í›®Æáp284@0$!ÁEEy&³™`0@Rb2áHˆÝ/¿HÍ¢e,Z¸„%‹W I󫢓tD"tz=¡P‡Ý9ÙyX­6 v›5«Ö#+ ›.»§3á=mr* j0tÒìÛ‡¢ÀÕªÅÕ¿³<^'£‚U“G&r×ftt§3W‚›ü¼úú{1›Í$$¸©ªœK8&ÁébáüÅ~ÜîDöìÝEeÅ\îþÀGIJL"';‡Ã‰^o`Õʵ„Ãa’“)+«Àçóa2šHIQƒä‘ú4úû{‘£2n·‡êê…\sõˆ‚ˆÓ™ÀÆ ›Ió¦óå/~ ƒÁ€Ûåá¿¿þRSÒ(+­ ¯¿EQ0MH: Î6¬Û̺5—‘àb|| QÑëõÈ2—âp81 8ìvB¡0y¹ù˜Írsó±X,äæäÇ„ Ü¸ijyYII)è$N‡;—˃A¯ÇãIBQ6n¸‚„„„××5(€(¨ïf¶\…Ù9¯Ì¶ ÍþàY¶5…þþ>ž|ú1êêNâõ¦sÅæk(ÈÏ?ï4y;“û~äAÚÏ¿íëæiý{{ßúî7ÉÍÉ£¾¡Ž;n»›Õ+WÅW¡ ßÿá·˜3g.—_v=þý|í«ÿ…$I Õ¿}ý}Üû»_ÐÔ܀ǓĜÊylܰ§ÓŸ§L;¹=YÞLÛÁ`€_ÿæ'ȲÌ?~ù_qØ­ñûž,crû¢}ädN×5f½Iv[¢¨¶×Ùû…6Õ Ë·>ø DQÄåróéO~žÑÑP Õ륩©'Ÿz„` À·}ŒôL¨Y´”~ïW€Åb%))NOUÅœ¸¹¨ÃádÁüÅŒ¡ÓéHLLÂlR}M|c>$I"+3›á‘a~õ›c6[¸å¦ëãÁyÞɼ툢€^§# ðüö-¤§gòÈcèI›šFQa1uõuly®£ÑDGGO<ù0®f³•ÞÞŠŠJéííf|| ‹ÅFGg›jÛšžI8¤µ­™‘ÑaNž:Î /<Ç•W\‡ÕjÅd2ÑÑÑEíkA²² ¢‘(¯=ÌÒ¥+innD%:;Û …ƒ”•Tàr¹9qòcãc•b±X9uê8Ñh”ÂÂb²2²Þd-A8Æï÷C,DÛEŒÒßX@0s¢œÍ%ÁÀ´ú ü~öx…œì<6m¼IÒ±wß>zzº)**! rôX-’$aµÚHJLfÂ?(ˆLøÇ1MŒŒŽœ”BFzGÕ26î#11™H8ÌŽž§¹¥‘†Æ:ÆÆ|¼¼g'G]Ý,Z¸„Ô”4×îg`` î|:§ªÀϱ㯑‘žI{G+f“…ìì\êêNÒß߇ËåF§Óá÷OP\\ŠÂéú“äå‡hjndíê X­&ü´µµpÓ ·“““‹(Šœ:}šÎÎv*+æ22:BSs²,“›“ÇÄÄ„šiT’p¹Ü ôÓÕÕAIq­m-ŒŒSR\ÎÄÄ8»^~‰ŽÎösß»‘h„‰ ÿ¬µ‚ b0è§·‹Y,†£ì>t‚Žî¾)arÏ(ŠÔ·¶Š…Ežº?33+~I§Ó‰ÓyFEqZ¶óɶ•””/Ãétž7ˆÀ²%+ÉË-ÀíJ$99Iºð70Y†N§#͛ߧĮûN·›}3èìîá±íð8gÑ¿Èr”<¯‡åó*¦ìŽMò¸ˆcý#ãì:|ßÄoK’$±ïèiªW•OÛ/Š"I‰I$%ªmCQÀápàp8âÛ“m ÀívÇý¯}åجV‘eÈÊÊŽŸ“7-H…{Z”5õv»qkJíS’“ãe$'%!+5¥­ç忣(`±˜q¹âû'ÿfO tàJpMû=)1‰ä¤¤øäP§Ó“––Ž¢ìõz¨ž7?>t»Ýx<ªor_fFf¼ìô´t2ÒÓ_·€-Š-]ýüé™—f¥aW³AÇÚêr¶7,„(@8!ž}N ¿?æûü ŒðàÃæèñ#l\9®7‚ räÈÚÚ[±Ûäæäq¨öãô Šðx’8òÚ!‚‚(òècs¸v? ,fIÍrZÛZì'=-Q”hooÁb±ÐÖÞBSs#‘H„Qß(‹…p(Ì£?DcS=6«“ÔÔ4l6ƒCC=ZËØø™Y¤¦¤±k÷ (Š‚Ýî ²béééLŒ³ÿÀ^23²¨(¯bëóOŽ„Y¹b-ÍÍ‚~JK*p%¸8qò]ج6*+ærºîd¼ž¥%å´w´qðà«ìÙ»‹¬Ìz{z¨­ídtt„ÌÌ,¬‡ ¬´’ü¼Â ¯ ‡ñOø‰Î²Á‰¢ˆA¯Ÿ9íÃ,Ç®pTfßkutuô"Îb¬ŽÞ>zϲe“$ oª7^5oª—4ï™í‚ü"þëßÿ:ž””Tv'²¬ö]N百+þí'%“<¥o9ûÖE5ižºoŲUæa¶XHMQ#„¾ÓDZKbg`4Y¸` {÷½ÌŽžÃ7:‡ïù uÜ÷‡_ÓÛ×ßÿr_ú‡Q—4ƒÑÈøøßþÞóÙO/m§««“Þýqû9uúMõ¬X¶FÕÅÔÉÉ)¸\âaJJÊ)+­ä§¿ø>CCƒF}üAÊÊ*ùù/~À}¿}?Ý/½‘—v¿ÀÂ5xSÓyìɇil¬gãúÍ ñÇ?ßK]ÝIt:=©)©|é _#1ñÍœ´(<ºíežx~W,VûÅ‘äÿþ¡k™WVÄ9ñ¥˜º_¾°7^ âŸòNvŽÌz wt|‚U+×NŸ ²,säèaŸ{ŠP8Äÿþ¿ÿ@%<‰‰¤y3Ô˜«6pêô œ £×é(((æºknæpí×`õÊõ<úøƒdgå™™Ãî—_Œ™\)tww‘••ƒÃ‘@SS=ååUärìøþñ+ŸScq#`µÙøäÇþž¾þž|ú12Ò39\{ƒÁÈšÕصëÌf3sªª©=rE —bµÙyìñ‡8\{€ysæMç¥Ý/°hÁl6 ¢ 044ÈãO>Ìœªj,+ºÿwx܉ˆ¢¨vä‡^ÅëMçĉ×èîéBDR’SYµr-ããã<³å ØñÂs¤¦zÉÉÎã±'fddYŽžÓŠ‚ÀÓ¯åhû謗æmF‘¿¿ýj––怢ŽDèîÂb1áq%œi+ç;¾@ˆo=}Œgêõ`M‰3uúu‚Ã×—FΩûÍ&>Ù„'·g:ÎíöàñxÞÃélëò^BàX‡Ÿï5 `EŽA„‘nnÍÞ?MŸ``x‡Ã†+Á[™A{)@}Ïÿð—£4…³@oá¢*NA‚‰ù«Ï=îõf‰?³â•ŸÌŸ=9»Ý\¨](ç¹ÖLÁ.ÎWþ…®3õ·óÝË…2³_è¼ Õåbˆ(pñ|ëüsr8Í\„±Ó”äHpÚ¦?¸Éq Ôvs¾ 0óÇí¯òÜ+µÈÂìÆ¥`0ˆÓ™€(\8WËèèû^ÝCiI9—oº ‹ÙÈkGòÝü/.—›þþ^.\Â/ýcŠ JÔ„¶ÃC¬_9¿ú͹ý–»ÉÍ-PW*DQ”ØòüÓ<õÔ£x<‰ŒúFY»jCìzgæ%þ š›Øpi™èt:ôz=z½žmÛ¶ÐÙÕŽÏ7ʖ瞢zÞB~öóïsÓwð_ÿgV._Ëðð›.»’O|ì³Ë­”••×_ÃûØýòN:;ÛÙ³wŠ¢•™ÍÊåkùù¯~ÈÆõ›Y¶t;^|žþ#Õsò›{Æ·Ýó[ždxdˆ@ @0äOù½ŠÝ¦N’KK+øóý÷rÙ†+)/«ºx›E¶¾PË©Cí³ZÔP½ÝÀ ׬feyî´E¬@0DïÐ0f“‘Dá¼cL„Â<¿½ì¦b’ÍêªßäÐ5S=DAÀàkG¨éç¦B¿Ð7f³Ù¨(¯<ç· õ ³éצîKLL"99é]xá’:çææ“š’Æ–çžbÁü.XL}ÃéXÄ-…„7Þp+##ƒ|û»Š JÈỂ; ôFiniäå=/á÷OPWwмœEA‰53»ÝÁ·ßÃÁC¯òÀƒ¤¨°„¶¶fÊʪ°Ym<øðŸÈÏ/DˆMGGGñ¸±Ûì¬]½‘ÜÜ<þðçßâr¹Y¶t%ããã´´4Ñ?ÐGaA1.—gv+¯“†H6M”‚`äâë‘"ºž=|zØwŽôÞØ=ÈžCµ$'&² $Ÿ›%fntîGFØÝáUeÌg]c¦:èà ,–õLskT$IGÍÂ¥ÜrÓôôt184HqQ)mm-$z’ð¸“øàÝç›ÿûoŒOŒ“šêåÀ}\}Õ ªÝÏþý¯ÐÞÑFWa&£‰åËV#Š";wnÃëMçÔé„BA¼©ªŸDFF‘p˜Ãµ±Ùì´w´QU9—¼ÜR’Sy쉇+7_Ëþ{ñù¨,ÏÃl2#I‹k–³fõzêêO±oÿ\.ímˆ1»é¼¼BDIŠkdE!))™»îø0YY9D"aÆ|>–.YA0D§Ó1§ªš‚ü"~ä/¤§eÐÛÛMOO]Ý®=@cS=9ÙjVø•Ëך’Š,GÉÏ/äØÑÚ^‘B³’ÇÑèå1»Ã µ äÎÁÜ<PEš;{¸íŸ¾AFJׯ[ΆÅóqÚ¬˜LFUS4í¢ \ Μ˜§]D3vЂ7ˆÎýé¬è³e2¬¨(бºsì¬ßÉíÅv¢pþ„™ò\¨¬×…1’óbïuˆá$ˆÄgIâ©—öò•ý†EåÅÜuå–Ï«@¯×a6gh±yÁ´Œv£jYÂy† Q‚ñ®›ø §=µÝªó¶ÉtÆVúìà³mW¶/Ƥý¾$©“×·Y–‰F#oÀ_NÁà%aÎVPM¶SÀÒîDÔõ#|ŒøÆxz×>$QdÍÂ9¸œ5 [,IâÔ‘('‡§ß‰>¥,f7{áFöû¨ê ów6Šf“™¬¬zûz8u껓––&††‡X¸`1##à  " °bùt:?ÿå¸+õÃÔ,\ÊÉSÇ‘$‰œœ\N×dNå<}â!Ú;Ûp»=¤¦xAPßóä¼Ä祹¥‘ööV::Ú¨ª˜CzZ:ÙYy”—W©c±,ÓÒÚ„(ŠTUÌå©§ehhƒÞÀòe«ØýòNúúz˜ŒP¯( ¾1ÇOeÔ7Bnv¾š€·«ƒâÂRœŽºz:éïïc~õ"̯¡öÈA¢Ñ( æ×ðÌ–'hjj ½£•â¢2t’Žp$L[»”cNe2 NWÜThõªuÅM»ÎÿŒejôk¹Éz#2ïøYaËÈVz†üñPûˆ"¯?Ígþ燤'y¸aý .[²—ÓŽÙd:gìRÉÃúÌudØ2â fEQŒ g·Ùº¡:’?÷§éºÕ7dš;S_rvÿ>³9&ÞæÃa„˜_õ»…Kä„ Î.\B}ãi6¬Û„ÛåÄáp’‘‘…Çí!+3ƒÞ€ÓáfÙÒU<ñÔ_±Úl¬^¹žgž}œ¾þ^æÍ™,Ë1±Lrr*.—êx8)±÷öö°cÇVõ#šSͼ¹ °Ùì<öÄCˆ‚ȇîþ8EE¥:´Ÿ?þé^¢r”’ârÒÓ3q8œ¸]®¾òzžxêþ÷[ÿɦWrãõ·±õù§ÎÀÞTLN0å€ÎÄ5Γ3“±ú~xµ¡ƒ/|ï×Èr”õ‹ò©›6“çM")Ñ£fYŸÖ²0XÁœ£ JÂã ·ŸgYReÄ3½¢€¤Ó‘––Nqq)ù8N–/[ECC7\w+¡PˆÌŒ,ŠŠJX0ŠEÅ„B!*Êç°s×v‚¡ II)¸ÝÒÒ2ðx’ÈHϤ  ˜Æ¦z¬VNgÙYy¤¦¤ª£&/¾¸»?ðQn¼þVúúzqج\±†#Gãq{ظa3O"ããX-V¬+ÞÔ4=‰€ªI2Mädçqõ•×óÂÎm˜Lfššxi×n¿ånœt’Dff6eeåxÜnFGÇ(/¯âÅÛ¹ùÆÛQdub‘œ”BzZË–®T…ž.lV;Á`oj®7I‰ÉØíÌf+IždÚO¢'q&ûU£r/¼L<Ù.ä0Dš§9TCa;º8p¢ŽgvïcAYéɉ|éî›)ÍÏÁf³že³­¨í@‘!䃑FpnR‹­Ìpìôö*Ë2½½ÝøÆ|èuúxÉ‹¡j(Çø¯…¬ÌëX¸`1wßuÏ9‰ãÎþ÷Ôöx¾²§®°Ì´ÚòzΛ E‘Â`0Äíq§ž‡éíëÁírc6[Îù}xd˜á¡!\.76›Á~PÀãñ¼ “Õ˜T<ÇΨÉ)G ½í܉¡ 0죱½‹Æö.ž{å •…¹Ì/-ä?|;—S5¿–§,(SÚÇx—Úž\Egœø”)#»2óà †‚øFGq¹Üñö|ïÿìw g̼úóŸÑÑÙÆ×¾ò_˜Lª²ÅçóÅV*DQ$11 ‡Ý1cY“Û¡PˆÁ~Ü.7CCƒ˜ÍœÎ„Û᤟S±ßïgÛö-•QTT|ÁkÍĤ•ÊT!õBç‹"tvv²oÿ+¬Z±·ÛsÎym6\)Rýã’ &˜¢ œÚvºûùÇïÿ’áQæ—ñÙ[¯aay I‰.¬&Ó9ã’¤3bIÎØQŒ‰ Œ!-ˆ:ý9u"Žl¹àM©>En¿õnþòÀïùÙ/~@Fz+–¯fé⼺ÿœÎæÍ]È+{w“˜˜„(ddd…‘Á¡AÌ+9Ùyì?°ÿì»\±ùZ†èèÇh4a6YHMM#Ñ“Dš7‹ÙB»"f…aÂíJdqÍrv¾´½^ËåA–e®¹ê~ÿÇßðô³sõ•×3wÎ22²p¹Ü¤¦xq¹<èõz=I8°ÎÎv ó‹¹éÆÛéêê ‰ø1MÔ,ZFGGüó½ì{u«V®ãtÝIþü—ûXµb-×\uv»ƒ-Ï=ÅÐàK¯`Õªu8 Œû0šLØí23²±Oñ¥»psQH²$Qâ)¾ð“mUV8Â$¡ÿœ63î÷ÓÐÖÉ‘Ó<÷ÊAæ—âMôðÅÜHuE f³iújš¢@lQv<4ÎþT'Vc7N A}–¾íÜ6¢ÐÓÛ£*"­vûð¦¦Å3–Ï4æœÝgú·¢(ôööàóùp{<ªpwVA‘H„¾¾‚¡ w"6›=æç5½YOº×mÛ¾¯7ÊŠ ¢Ñéßÿ…ú‰KÉ%[E‰M¯`Éâå¸ÜDe¸bóµ¬\¾³ÅÂm·Þ‹!ðß_ÿ.cc>\ñEAÁfµc±XX»f#¡PNÍf# a·©^ йç# b³ÙñxÉÍÉgÞÜù ¨ËV:žoÿßO˜˜G¯×«Ęê^o`õÊõTUÌÅðãvy0›ÍÌ›;Ÿ ÿF£ ‡cvãëBA¬#þX Ó«JA:3ˆŸK*˜<œOH™”öûúúxèÙçØ¹÷U2Ò¼\³z ›–-"ß›ˆÅlB792+S&&‘ Œ4»”H¬%ëcpµô³¯«(àq'òµ¯|£ÉŒ¢$z’øâ?|•‰ñq\nápˆë®¹ W‚›¿ûô—@£ÁÈÚ5q¹ÜTÏ[ȨoA°Ùì„B!lVF£‘¯ÿç·˜˜˜@UÇO»ÝÁ7ÿë;è t’Žñ‰q=‰äæ02<¤FSJIå¿ñ=$I‡ÛåaÕŠuT–Ï! `³ÙÙtÙ•˜Ì$QâŸÿñß1͸Ý‘0+–¯,+7ßx;n·‡¨ O"Ÿúøç°ÛœD£ªVè†ënÁçÅãIŠ'K4Üób±XˆDªˆD F Š GÂj8Îðeج6DQä†ëoeãÆ+0ç‰Ä¤¨C9¬NÜ$½ªMb d䌶٠z ‚8é<Ý)/Žðríqt’ÄÞ×NrÙÒÌ-.`IU)sK DqáZPÛäÀqˆ†Àš ö¬ó D‚þ€ŸûÏB’$V._ËÚµQ5Ä®$Iètú˜É™û+¨‘ïôzüþ öØK4%)1 ‹ÅÊÈÈáp£ÑˆÑhÂïŸL&€Ÿp,yœAoÀl¶L»Õ!3J(F¯Ó#Ër¼ïÐétqŸ&³É (±ˆD“áXÕärª“°L(Âl6Ç#öMKk [¶>‰N§ã†ënÅéL`ll ƒÁ€N§gÛŽ-¼ºÿæÍ]À¦Wà÷O`0ñùFxò©GeãºË1™Í<ñä_Q…«®¸žŒŒ,Eº357¨“t£Ñÿ&gîc¢0Ú c`σü½`pBp&z ÷0¤/Ñ¢~¶É6c`d”ö×òê±ÓœêìgåœRªJ YP’‡'Á¢xf>­q ¨uð”ƒdä|ˆ"44ÔñÀC䳟þ‰žD¢Q™@0 *ƒŒ&"‘°zÿ‚ˆÙd? šÛla+Ë—®ætÝIŽÁÁA“0 ôõ÷rÿ_~Ïî=;Y¿ö2Ö¯ÛDvV.z½“ÉŒ,Ëñ|f“ £ÑHkk3ßüßeíšË8\{€[n¾“Õ5Œ:åÑd2ã÷OÄÃëõôz‘h”Ö¶RSÓ‰F£øý~ôz:Ž`0H4Áh4¢Ÿ!¡˜¢(œÌf z½ž@ H$F¯7`4žy®ã´¶61>QƒÃ‘@4! Åî1ŠÁ`$‰D§7ù΢þQ&Úksz%‘±~I `ôµ§ Vœs®ÅªDUÿHQP…JQˆ÷- /|SÍmØ-fn¹|w_½‰4·³Ù„$N—(äŸ@×qŒIù`r GÈz‚49sö“+Q”(*,泟þ"£¾QŒ .7••óVÇw»ƒªÊ¹8N–-]…ÉdfÞ¼ô<ž$Q`~õ""Ñ(ÞT/•åsâ~¨»“µk6 ×‡CX,VÂá°ú»nA¹òŠë0Œè 䨌Çã¡° „@0@‚3“ÉÌo~y? .V,_ƒ>Öï$'§ò/_ý:ãjàg‡ƒ4oy¹…ŒûD‰ÔT/ù¹ !‰))^òróÇéL Á™@ZZ—_vQ9ŠÝîÀaw2ÞB|>‚(`³Ú¹úªp%¸_ßJ€þˆŸ¨Å¢³Q"H‚DT‰–Ü:Çä!Íœ¦.ŒÆÇ¬émf’H4ÊÞ×N"Š"Nœæ¦õ«(ÌJc͹fgªíí¬1IDÄñ³¿o?cá1²lYT¸+ÎcÖ7™D÷¿ÿ÷߉F£ÜxÃm|û;ßà»ßþI‰Éˆ¢ˆÉd"Ž ãA Aˆ)Ø‚Á@<òªß?ÅbA§Ó ‡ùñϾG$Æ•àæ¶[ï&5Å‹( Ȳ‚^/ÑÝÝÉï~ÿ+‘0……Å\sÕ˜ŒFü~?F“ ½NO8&›Çtwwb6[‡'¡†ˆD˜ÍõRZR† ˆ„Ã!ÌfË%_-¹¤±&­V+6«5Þa8béë§.u%''“’’ïT¦:íØíg2ž­1¤§gL[Æ2Ó'†fÒ)  ¼Þ´ie¤¥¥ÇTù­$ 8 ½ûA4@ÆJè|+`à˜ª>ùguX| žÉAˆ}ȱ ‡ÃtôöÑÑÛÇ«GŽqïc[Èö&ñk¯äÆ5‹Ôs'‚€*tLô-cK“ž H™ÁªK’4Í©XŸx“ˆ_½¶Þ½U3¯Ú/0qTd™žž.æW/¢¦f)ÃÃCÜû»_ðêWHNJaNU5­m-$zikoeÞœù®=€TUÎ# ¡( ƒƒôôtñ‹_ýˆC‡÷³`Áb–/]Í_ü=²,sãõ·ñÈ£ÐÚÖŒ¬(–ðù¿ÿ'\.ŠrfÅáÔ©ãô÷÷±dñrNןâå—_¤´´‚ysðç¿Ü‡ \qù5ètºxpŸo³Ù¶í[ذþrÆÆ|lÛ±• ë/gIÍòs1êëOa2™9òÚ!–,î µµ™ÇŸ|˜‚‚b.¿ì*^xáy6¬¿œcÇ011ÎC¯²}Ç6¬ßŒÉh¤ µk6’—WÈÞ}»IIöÆÃ¬v÷vÑÒÜDyy%¹9ùÓ"žìÚý==ÝTÏ[HfÆ™ÐçT0<#uê_/$ª‚eBŒ¶‚9)f~e‡¨ÌˆoŒ×N5€  “$:zúÎ)vÜïçÉm/ðäöIòxXS3ŸOÞ¸™ÎÁqB¡co`&zU!60  Aæ$pdO_ 9«Ê¡Pþþ>5™¥¬PWŠþÃ#C\¶á NŸ>É‹;·a±X¹úªë‘g¶Êµ×ÜÈm·ÜMA~>W^q-¯x…ËWsüÄQ~{ïÏ1›-\{õôôñ×G`dd˜;n»‡ë®½™p8D]ý)ZZ[ø»Oysæsèðþü—ß¡( %Åe457ò¡»?ÎOñ}–.YÁ©S'ؼéjæÍ«ŽÉtªà½oßvîÚAY¬->úøCôôv³qÃfV,[uŽÖshhˆÿ÷­ÿ¢£³›o¸Ë7]ÉO~þV®XCyY[Ÿ{šS§Ž3¿z×]{ó™6*„ÃaŽŸx-ž÷dï¾—Y¹b Ã#ì[³Qõ©l¬çæ›n;k¢)è:ÁxÃn£(Ñ0á‘.$“¨ÒX@2Z‘,N£½4´v"Œãã¤( 4´wŽœY9ï¦wp˜oýîaÙ|䆫X9§DIÇ&û“HˆÐP;‚ÎÈxÓ+{êpT\Ž£tÃr 1î¸?ÙïšM&\ g‹™™™ÓæŠII‰Óúnk–:VÈ2˜L&=Ó~?›³ŸœûÄïSÔÔÔióŽì¬,± öŠ¢Ó˜i\ÔétêÜIHŽ×Ëh4âvŸ‰H©:;Ÿ9Çf³ÅçS“ûÎvˆž­IЙcá1~}ê×øÂ>>\üajjÉ´eÒ6ÖÆ@p€ûëïǪ·òÉÒOÂôwõp¢aÒ´ $I¤µ³y†Õõ¶î>¾ó‡‡€êò>sÇMe¦02:?ÎõS;X‹ÓèäùŽç1I&êFêÈsäaן?Z”ºRÑM(¢¡á4 õ<ýÌã´´4‚ °nÍeœ:}‚—vïˆ+¼, Wn¾Q”ØþÂVæTU“žžÉO~ú]¾öÕoPUY‰"+Œù(+­ ¹EÍ'ÔÔÔ@jª—H8Liiy<4sJr*½½=„C!Z[›xô±©®^Ä‹ÙùÒ^{íwÝùQ¤¿¿—=¯ì"7'Ÿç·?KKk3—mØÌŸîÿ'Oç£ù4:ž¦¦zn¹éÎxP‹KÅ%@”³‚ÎvΙiÿÙ¿Í´=ãuÎ:æléýbÔLuxk_œcíê¤/2Á!ð÷«Ûã=à]¤ #iËÀž2RÏ–Ýûèêé‰G›ØWßbâœÒe9Êé¦fêš[8t²žú†+ñz膴IcýHl’TÿK¬Tµ•ÉóΘM\ày]ìù}ÜÅœ@Ï÷ÜgåÄuöûWÎÝ7S^O»»Ø½œSö,ïoúQmQMåB£0Ö¡j‘M.µ}8r!y$V3‡‰ÖS|÷7å·F@ðCŒç-ÞhÐÓ;8Ì®C¯‘‘˜ÀÀ α–RTÇ] ƒ'cÆ‹üõ §Ù¿/€Ÿ=¯¼„Ùb¥¡¡›ÕΩÓ'ðzÓhl¬gŲÕ$&&±mÇVN×dtt˜H8ÌkÇjq¹<\vÙôöõž–Áïÿøkví~£ÁˆÛ塱©žyó‘ž…ß?×ðLLLðø“sàà>ÒÒ2X¶d%:½žúúSH’ŽÁÁ|¾Qt:9ÙyÔÕŸ"=-“Þ¾dYftt›ÝŽÅb%#=“Wö½Ìà`?GŽdáüšs4ÅB,b™Á`@‘e"‘0}ô/´´6ÑÒÚDÍÂ¥„Â!'²¢¨+=û_aýºË™?o!‡k044Èö[Õf‚€$ „#Ažßþ,[¶>…^¯Ç 702<Œ?¶ ¶ý…çÔ6 J?þÕó¢×ëY\³œ^|žô´Lü?Ïly’¯¿ CÌïM@Í•æMG§Ó±s—šaxph±qƒCg¢Ô ѨL(Ä3ãüíï~ÎÞ}»‘$:޶¶yüA::ÛÈÊÌahh“yº] à•½»8~â(Á`€”/>ß(9Ù¹qGê³çÖ.—‹Ë7]Eoo×\s#ÍÍèõzZ[›1è ŒŽ “˜˜ÄàÐÀ4?EEQ8]w‡ÃIYI¯î…æ–ôz=ÅE¥lÛ±•¶¶2b‘³Îùú#A$³CÐ "H:"cýDÆ1¥cL.@²º18Rî<Ì?~ÿ—èC#±´Š±H‰¡Ã#ç” …8Z×À±ú&ö½v’+Ö¬ <;•ãõãÈ¥9"<Ô†Îê&:1Œdq1Ö°{É:„Y:©ŸsOÊìûþ™ú󙎙ͼäBÛ3•s¾U‡ó]o6÷u±z_l¼¢ Ò4ÚD(b®g.}>º'º±ém´·“çÈcUÚ*ªÜU,L^Hm]-?þÝùÕ_ÎXp‚ð&:$4½^G[w/»¥§¯‡Þ>$OVš¸Nª9•Bg!'†O‘#­¿ ŠäæäsìøkDå(©©i ôñÂÎmøýD£ÑØje À¨o„g·>ÅÈÈ0'N£¥µ™®»…œœ¼3‘©b«+‡k0¿º†Òâ2žÛö /íÚÁÍ7Þ[hÂd2±lé*$I¢§·‡Þ¾^Ýÿ .—›¦¦z.ßtÙY9lÛþ,{^y‰ÞýqFFGxi÷ ‚@[{+Ö]NA~7\ÁÖ瞊ÕC¹äfX“2“½í›Å…ìêÎwìE})…éZìÙ{öÇ÷¦:‚^´âs+AR3ŽB tfÐ[!4¢ ‚@Fr"ÅÙD¦ m£¡¸½âL¸HKt“—î%#ÙÉÐ3ó†ur;ÚÊù̽fz'g3™ã|ï@’Þ¼°ñïMb 3Œ™æébêÐS0Ñž2uu,<QÕDèc·ÞÈê²tA ¾­“O}󸯧 ¥n§o¢‡‹çsûæuædQ`WÿKï2Y4:ÔÕ£K½ŽÑ9Å!~æ—>)ëåæä3wî|Nœ<¦†pöûQP°ZmCš[‰D#<ô*Ïm{†`0ˆ5f®0Yô„‚G}€P0HiIíÇíöpÅæk)Ì/æµ£‡ÉË- ‰ÐÝÓE$X§“HNJÁb¶0::ÂðÈPleôL(iEQHOË ?¯€ºúÓ˜ÍfZÛZhni$/·ììÂáî‹™äg<¢3 ©mEÆãNääÉcØlvœÎ,+©©i”—UâLH 7'—víÀawb0D‘¡¡.—›üüB|¾QFF‡ñ¸9\{X±|5€ŸÁÁ~B¡0‰‰ÉÓóÇÇÇéïïC–eÒÒ2âþpÓ_Š¢¾?K2 œT•Öu…k¤¬^Õ÷#„ÎÝà( (;ƒ¿»ýzõ|½:¹~`ë‹ÓŠ5d¤$Qœ—ÃG®ÛLQF E9™lêáÑöà L~Ø’Iõ-“LªŸ›Á Ò¹fF3122Ä‘#µ¤§©‰HÝn‹.¡¢¬ŠmÛ·àq{$áP½N¯šMÉ2½“ÉÌø˜Y–IHpár¹óÆ'èJl¢2>1Îöžcï«/36æcl܇^¯šžMFN6›ÌD"Æ'Æ1›Í”–VP³p)n—‡þäÛ¤¤¤rמ±Ÿ6x²ñ7¿‚¢È“ ‰ú‡yíi¢þ¬¹‹Ì Œß ¢ÕÀç?z9 úi+ Í=|îÿ~BÏÀÐŒïØãJÀ›ä…üÌtúzh2¨(±Y4XMV‚ݧ™Í¸oþ¼EÎŒ[“ùÄf*wÒVÿõŒogû7IÒ™òÏÎññfòfûèD‰b$4‚(ˆèD‡Ñ9ÞI…»—ÑÅhx”‰ðNg¼ézVTdÄÍg%QäåÚc|õG¿Á M+Ûi³’žœÈÊêJî¹æ2 s²u:þà?£“×בdN¬3“lNÆet‘dJ:¯ùÕTEÁårÇ¿¹WöîâÕý{˜ðûÂjµáq'bЈDÕÁ`“ɌכÆÚÕU3¨Æ:~<ÅlfÓ¦«¨¯?MCcêÛá$T„J¬ÿ¾ù¦ÛÉÊL§¾¾‰]»_Àï÷ bÖ7jõH$Œ$I8 a1[p%¸ÉÈÈ¢¤¸Œ@ÀO]ý)Æ|£d¤grôX-M-x½é—4aá@B¡>ߨj+h³c·[Îûá½FGGã‘o&üqÛÆ³'ÓÑh”‘‘a¢r§#aÆL¤ ~¬-­-ŒŽŒPQQuÁzNÆ?}úÅE¥ñœÁPŸoI”°;è§8"½é( سUDÔ©æ.‰•ªO†§L¼+a´ BjXÖòÂ</˜3¥Gè è§<£ÑˆÝb¦¼¤˜Å¥ù̯,§¦4o’;ækqòŒz^2Ab¹:ñ”©§¸ðê‡,ËŒÅ䈱Є¡ªÝÜñâóØívÖ®ÞpÎs ƒ¼ðâóT”Ï!##CBfBÕ•‡ázuòïÈQ ].U[í*_+GÐét”ä±d^ˆ6›$bÐëpX­”æe±b^U…y¬¨®Änµ`·Y…þ‘ñ)¤Šê#à]¬ú™“ÔviI¼àÄQQÀh0pówÐ××Ãá誚Çîü?òF}#Ô,ZJ~~í$%%SXXBZzFÜÙxbbœü¼BæÍ]€75Þ¾††éëëåcþ4åe•LL¨öµ×_w Å…¥ a0ãýÁ`dÕÊuÌ›» íNµï^0¿†–Öæ˜s¼Ú'%&c4˜ÈÎÉ¥­½•‰‰qJŠË°X¬„B!œNK/gxx˜¬ÌìX_8‚Íûh$JqQ)cc>l6;iÞ n½ù.ö½º‡p$ŒNÒqõU7²ç•—˜;g> N›6^Aí‘Ct÷t’“GOo7ÃÃÃT–ÏÁjµÑÛ׃¢(ê Go7¥%å\¶ñJR’S0ÏÄ|DÂÌ›;Ÿo¸ ;£Ñ8ó·$é!µF]-“Lê{ÍZ§ú‰zu_Þ€£“³eu{JHo³ÉˆÃjaeu%K«ç°¾¦¯ÛI‚ÓÏ?£Èr\ó§ÚäÄ|‡b¾IÞš˜ÛùµC² ÞÔ4–,^ΩÓ'ˆD"\¶ñ ’“SìÇb±²aÃæ˜é‚€Ñ`Äjµó§ûïEJŠËøÒþ£ÉÌê•ëX0&“Yõ7Òéc&/^n¹éNr²r¹lÃf=I~ª«b6YøÓý÷ÒÒÒw\OJJæÎÛ?HÍ¢¥¼ºÿÂáÿèg©(¯Šùž˜Íl±*‹’’rœ®ø·±`~ Þ´ ÒÒÒ9rä:‹ÅÊÂ…KHNJÁd63>>ÆÀ`.—‡áá!œ'¾1_,(Gõ §Y²xí­ª#úy~û³x½iôôDÔ F#7Ýx{,Û²DeÅ\B1Ͳ¤Óa2™™;g>N‡ãÜv£(\™$­ú¤ª“0ÙA‘1&©ÑŠ ˜Ó+AoÆ8pˆ¹%”¤9Î ”¢ˆ;Á‰ÉpÆwJ'I8lÒ=lZ¾ˆe 汨$·ÓŽ?åÅ.×5Ö¢d´aË[‚ΑŠh´!èô\Y³Ì^®àó111¡Ž…vǬ3}OZ7Oð ôöõòø³¸f9¯ìÝÅõ×Þ_œz^Ss3/ízšEK),(ºø c¾1‚Á ‡ƒÁ¡zø~.ßty¹¼¸s­mÍ\uÅõÓò*MejÒÀÙ X­Öóú·½dE&ÏžÏÏü?Ö $A¢v –$S™ÖLL’‰Cý‡èšèB¯×S”ŸË’êâ39<$‰¡±qDQD¯Óá°Y(ÈLgÍ‚9”åe³vÑ\lV N» PL›˜9 N®Î¾ƒhˆ_¿Â]Y2Ÿ·ÞŠ¢šZ_wÍM¤y3HMIÅh4R^VE~~!ãädçÅI”T1EÁbUƒÛ=vD`Ü,©YŽ#öž$IǺµ›(.,Å›šN¯ú»ÃI(F–ÁårS³h)6«šÀ×íö°léJz{{HLL¢°Puìonn`hhÕ5Ô,\ªúK&§pÕ×Q×pEü¼"êêhljª*«)È+¼äÙÒßF¹÷¾_P{ä©©^ªç.ÀjµQRRFzÚ™Ä^SïM–cJÌ)+ 3E ‘eˆÊQ~ðãoát$084@sK#I‰É,Z¸”k®¾ƒ^×6tvvñ›{ޤÓ1¿z!ëÖlD§Ó³R¡“ µ­™––fæÌ©š–þ`².“õEâå=/‘’âÅ•àdhd„m;¶ÒÔTÃádåŠ5ªó|4:Í?ÎÍ[0µ8§¯»‰Þ ©‹`2ôˆ«Hýo²ðÄ õ?A„Á×&Þ™lÅ1óU³›NuQ‹æÎamu)YÞT¼In¤)!yCrtú‹Ñ™!iNÌ´júßó 022Ì~òìЬf nni"+3‡P(H àžö&/‰xòéGHHH ;ûÂÈd,ÿ·Þîˆ-Mõù€˜“I¡úßä¶É­ ŠÑ0J°NÕ°ÊQPœfW®\Lnº—+WÔâq“•žÊ´†85Qó>VÿH±èW’~úßøqçvhƒ‘ÜyO¼zŠ%Å%$%%³ûåTVÌ!+ëÌûVXµbÕ´2¦ÚŸý}åååNûö¦f¢Ÿª‘$iZ’6€p8DiI9sªªIózãɤ&ÍO®½úz¦sš¼îå—]1m;555¶åVïuk7Äivv999ñm§ÓInNNü>ª*æPU9'¾½n͆xù›7]ßv¹\”–”Îh2§jÞYWÎׄ˜à1i>¦€Î ‚5öJÐ;b+\]ÓOUdò2¼\»f)‹+˸lé²ÒRp»œ1/g:tñì¶ ª1Õ JÒMiG3·¥Iá3ŸúÜ´÷ŸŸ›7ÍŸkj;ikkgNU5•sY¶lÞÔäxß?µ‰G£jUÓ¼iÜuç=±D…Y¬X¾2~LGG'e¥•dff³|éJA 99…{>ð!dJKJâeççå022Êþ¯ð¡»?NVV6:Ž[n¼5.¿ Fjj–Äë^TX¿·©~ª-¾š|1%9€ÔX[ûÀ÷œ£ûFÒÓ3©ªœGIq9Ïo{–ήt:Ë—¬dÅòUL͉0wÎ\‚¡0=þ0K—¬`ýºMçi3ê€&Y¦ì“ÐÙÝñŸt†$õŸƒ‚ÚÿL‹NJ4Ь(Ø,fVÌ«$/ÃËÍW‘êq‘Ÿ¡ ®±ãý¡0Ь@l"/šlØ —ª\JLé&bÏ7¯jmkåþ¿ÜG8›–Á ×Þ4Í÷cj»8ÛìèÐáC€ê—6)Tˆ"ôõõðÓŸ«ÕÆOþ}Ö¬^OR’;æwáÈkGQNOk[3åUÓ¢M««rfø>qâ(¿ÿão S^VÅ÷~øÿ(**¦° €þ>Z[[ˆF#HçÜC4ªPßЀßï§¢¼rV㥠ÀÞ}{xeïn–/[EÍ¢%èõºiÏál‹‹åiR£ÞÈ•ÙWÆ÷%(u•Æ·ÓméÌMœ‹¢(í;v¦ÍÄ ‡TwW¯^Jvj2×®YF²'œ uî5}ìšÒã>ì"½EíâbÁ]Œ/ºh¦Óé¸õæÛã÷ö÷E_@Q`ýº ÓžI¼Ï™rÏóæÎ‹?“ËWijÇët:6]¶Et@ÊÎion·›¥K–ÅϱÛ¬_»qZî×ÄÅKY²xi¼oœêWºjåV­\/÷¶[î<§¼Ôs§7(€D8tx?CÃC,[º³ÙÂW¾ö>pç‡Y¸`1‡ //ŸÁÁÆ|>Ì óæ.À祭½•`0@zZGA¯×c4šˆF£ä±léJP µµ·ÛCOO7ÙÙ¹”—ó»û~A~^}}½¬\¹³ÉH0$ ãv{èëë%‰ÒÕÝÉɓDZÙì˜ÍfRR¼ÔÕT5z=½½ý:|A().'5ÅËñGioo¡¨¨”ÑÑêêOÅ#1!7yHJJÆjµ1>>ξW_axdˆ«®¸Ž#G‘Ÿ_„$I44Ö¡ÓéX¸`1V‹Ú#dñâå9r¡á!5éNË妪r9 ¡qf kz‚¨šäœ¢P•Â?ß}¹Y™lXX‰Å¨ŸÒú¦„Öœürä¨z]fÑ:!f;>½î’$áø9xh¢$‚ü"Ü.7‹•~€¡˜mrõ¼EŒŽSWŠ¡¡!º{ºyô±GF”$"á0’NG8ÂhTÃçæäÓÒÚļ¹ f¥MzÏ@p|vΖr¡3öß²Bfj2¿ûÏ/«ízr?Ͼ ˆ˜„æñ:F¹Xo- kAH:WÝvî%–-]¥~ïD.nŠ{þG2CõgëC”š’Æí·Ý(ˆ3j ÏWÎl5НÇÞúl¿¤™üÔÞÈ=΄ñaôBšÅ{ÈD;F÷”ü/Q™ ‹ç³¾¦ZN3Ù§DfnK¢(bVF0ûŽ#èÍ\ AúÛA¨˜¶¦æ½@õ½Þt>þÑÏÆµÜkgSË?û¦¤xùÄÇ>‹ ˆˆ¢ΓÇO­×ä¿m6ŸýôâÚyE9·¾SßóñuœéþA`~õBæW/DD×,cò= 3´õht’žë®¹QΉ¬+y¬—pÝ6äYeB}§dÏY?($ºœ|ñ7cÔë¹ýò5êªëÔDAgI‰²%œ@ôOÄrÈ\A ì÷©“Ø)ý¤¬È<ðà˜ðó¡{>A4¥¡±gž}2¦HLg|bœææFL&©©i8ìÆÆÇ(-)ç¾ßÿš¾þ^¾õÿ~ÄË{vâóù0MdffÇ5ɲ,ÓÚÚBGG­mÍx<‰lÙú}|æS_ 3= ¿ßÏ“O?ÁÀ@?6›@ÀOWw'V‹ä䮾R5süë#pôX-·Üt'?ùÙw¹û®¢È2[¶>M8Ád2“––Á©Ó'yê™ÓD£QJŠË$‰ú†Óäæä³ïÕ=ÔÕäK_ü^Úõ+–­&;+û‚sDQ 99™ºº“äåÐÓÛÅè臓̌l\.w>ÎáÚ,®YÆsÛžå©g%5%‚¼"ÚÚZxvËÔÕŸ"/7ŸÚ#‡‡Ã„BAÒÒ2hh¬£¨°»]?­Q$)˜ Ã,ü{t CØl…œ=™(ËL¦ìÎëÎh#/ ¦EùÉÆ|‘ÐÏÆ¯˜è(™ÍÉlV“;=þäìZ±–†Æzº»;)È/â7÷þ ;‘®îNL&]Ý  ÐØØ€( èt:Ž;ÂáÚý&ZZ›ñ¸ikoÁåö01>FAA1wÝþAº»»˜˜‹>w ºÉöÍ.º(ãpá´[™ªm¦ôç=YÁj2ò‘Ul윕À#Š"M-"m}çjöÎoS<û%àóùp½‘DpgÎ9“øõð¶ú‚½É×T(J6R“k -Y˜Ey²ì¥(9†:ÍB•¦(d§xøêusÆ&㾨$ lÛ9sÝ^ÏŸÖòõµ±óû q'g傸³µÑç:‘¿€©Ö×ÃT“¤Ù†ÛœÔfº–Œ@¡y”E'fWžf$;Ίb¡(xœüÝ7¨Û“Ë”3Þ šÔ6Åi"µnŒÕÎêŇüãèÂýqÇ÷Éúôöö––ŽÇˆ <þÄ_yfËãØm,+:ަæìvGÌ­šcÇ_ã–›îŒû«MŒóÝïýV›—ËÅ·}Hm¨HCc=ÇŽaï«/SRT¦æ1[èííæþ~OÍ¢¥œ8y £ÑÄèè#£#LLŒ“™™EÀïçŠË¯A’DFF‡1x½é‚A&&&P…=¯ì¢©¹ojõ §™[5Ÿ­Ûž!Ý›ÎêU뤵­…¿ÿÌ—Ðëô˜Ìf$IGgg;@ >œÝ¶&Û§Á` ÁébphAƒìÛ¿‡ÖÖ×,ãÚknÂb6#Šj˜ÙÝ»_¤«»“U+×qõU×ÇÃúöp¸–ßM܇¢\\k£( ÖnV8ógãf7vÙ gñÊ\z;»z/Þî_O7Šhàì1éìïv6¾Ä¯Çßx¦s'¯õ^ç ²exxˆ‡“H4‚,ˤ§gÑÝ݉ËåQ“Ì–PXXÂÄÄ8UsA€ƒ‡ö10Я.®‹"w"Y˜ŒF|c“á>UL&£³ÙLsK#Q9Êò¥«1›- ô#ÇÞ¬(ŠäçqÙ†ÍØíVš›[â+V› ojO<õ‹.!Á颧· ›ÕF0Œ;"vvuÐÖÖ¬Æô—tØlvzz»Pb™3Aõyéè#ô#Ge’“’9ÚÛÃØ˜”/^o )É)$%¦æÍÀfSW?‡0šLȲ¬†¶Ù'#=ƒææ¦†bMó2X3§“A?+×:A(¢$-qfy–b»Á`à+·¯ÇçÎj‚+PÛ`a82ÝÆ\¯×“æU;ùšEËÈÌÈâÙ-O’šš†ÉdÆh2a6›ÕìåÕvr2R4ÅãI$99•‘ÑÊJ+ñzÓìgAõ"Ž‚¼B<ž$z{»ñûýo¼õ¿Ë…u%.>|cñ,m7t:=ùÞ¤7Ô›™t›«²¡*{v'ˆ"øñÓ§×BQH’½þõÛO*ØÛÚ:Ô¶KV³¥•e9.„ªƒƒ€Åj‰Gšñ©( `Pµ(“&ó2¼¾¬Ðííj¨´´Œ×uÞ$¯wB‰DhimÂíòàr¹gâyÈð¦pÕ¼LJ3gá»;é¼ÁH±é¹}YéìÏÑI„úê Ÿ£”UnAÀh4ÆÍ)f¢¡±žžž.*+æÆÃcOålA!‰«ù0^ï;=cò'³ó¥ØlvæÎ9®<  §ä ¤ ¿j¾š:IÏçq¡€"o5²¢—lç#«J^_þ€I{‘iûf9.)`1¸yI)« ûãûD€±q…g_§]VEÖ¯ßÄΗ¶óø“ÅawbµZñ¸Õ .YLŒ‘œ”¢:¤¥e°wßËtuuššÆéÓ'GÂäç¡ PQ>‹Å‚ÙlA§×c2™hooáÄÉ£q%iJr ]Ýø~¬V›š,95þ˜E…N¯Çb6ãMM§­­9VW‰%‹—ÓÙÕÎÎÛ¨ž·ü¼L&3ƒ¡Í`0" "©©^r²sÉÏ+$/·€®žNºº:iïhÅj³!ICCôôvÇœÚ;Ú±Ûìø|£8NFF†q¹ÜŒSßpšÂÂdEfph‹ÙBiI9y¹ño.‰022ŒÃá )1™¼ÜüsüiRËuÌ[m&:›¾Cc9)‰o@-tƒ(°º, ʼ³;A©k¶òЮs´g~€p$Œ$Jèt:Nž:F(bîœù3~Š¢PWšÁÁ**æÄSMÌ¿?Ïv©}4ÞjÞPo&Š)É©‚À>ÿÊ˪(+­`dd„ôô µ¡æðwŸþ"­mÍH’DVfûÈgìG’tdffÇ—õ$IŠ¥‘bå‹ÜrÓ±$c~ºº;°Yí”—Wb6Y±d`àö$²dñr £ºíö°iã•Lø'Hp&¨!cΦ‚ æM'5ÕKÍ¢¥ÈŠLII9ã\sÕˆ¢D^^>²,ÓÔÔ€Ñh$!Au4™ÌxSӃ̛;Ÿ²ÒJd9J4*ãñ$²rÅZ¢QX0±©$ˆ'+r8è$=))^–,^^¯'‰`³Úðz30Mq $=%‰ÅÅ™˜ ¯ãÉÊ,&çG*³’_‡RZ "+ìk?gÿüê…üó?þ;U•óüÌ™3Ÿä¤äØ{5â÷O`µÚðùFqÅ’;ÖÖÄ`00gN5‹.¡««ƒœì2ªÊΗ¶3oÍúL¯i¶‚‚‹$4Ûwü&¨ã^W[:÷’¢íííÜûû_¢Ó©}Še«¦½·Ég /íÚÁŽžç_ÿåë8vd¦¶+…ºúz\.7·A€×ŽfÛŽ­|ü#ŸÁápÄ˺ػ¤»»‹Ì¬l~ø“ïŸWÀ¼¹ÕLv¦'NåÅÛini¤zÞB6¬ßDš7휲¦n×7œæÙ-O’žžAwwW]y¹9¹3>γµÙo™öTaÆwóV¢r]rÝ鳇úò¿‘“Ǽy ñû'ðzÓIJL¦µ­™Ô/ýð§ÉËÍÇðÓÔÔˆ7ÕK Àçóáp8÷Å…»õë.')1Y Çœ“GRb ÿúÕo 7HJJæÑÇ 11‰Ë6^Á¢…KÕÈ~iÌŸ¿ˆÂ‚b zåeUdgå`6YX½r=I‰Iñ¶)£15·ŽL~^!:ž‚‚",f éiêœ.Ñ“„ÅbAb‚ àõ¦STTB¢'9–|ï¬æ¢(d%:Y\’õ:ìVysðߨ߀ÚWß÷‡_ÓÙÕNB‚‹ê¹ 8uúTVÌÁ`ÐÍ0fÉìxá9ØË¿|åë8ìÖißäÔ¾dê÷ªæöæùí[X±lu<ŸÚ¹¥woÐK¢fÑ’iûRgxPåe”—±á--.½¨"mR‹9Õëìß“““ã/Ín³SR\ß¶ZmÔ,Z‚ ÀØØ8Ûvlaíš$'¥ Š$§ (°|ÙÊxyV‹•uk7N»NnN^üwEQµúE…ÅÅ"œq,Z5­nNgË—­š²íœVVBBÂŒ÷tî>Eu¼{K²^€ø$rªÍæLd¤g’™qƉ² ¿Y†eKWœ·¸¢‚¢ø¥³³r`Þ‚øo%Å%( ”•–Ç«¹)æü^û(/„¢ ¶‰w‘b$óü¶-˜LfÖ¬Zƒß?A]ý)º{ºÈÌPsOž<†’“S8]wŠá¡Aôÿõ~òò ÈÏ+¤¯¯—-Ï=Cÿà ªk0™LóÓŸ}üü"®¾êv¿ü y¹Øl6Ž?ÊàÐ éi,XPC8b×îhh¬£zÞB®¼âZÁ ¾ÊððÞ´túû(+­ «»P3”ƒAV,_$é…B¨Éàš[ÑéôäåÐÕÕAww'v»ƒâ¢R¬3h¿v¿¼“mÛ·°jå:–,^®Æ—F˜;g>~¿Ÿã'^Ã`0RU9£Ñ{ïê*Òàà Fš›$£ôôLŒ#G¡¤¸lZbÂ÷ ‚ƒ¼òÊ. ###C8솆(,,Æj±qüäQ ¯¯—á‘!:€Ýî$sìøk˜ÌfÊJ*øþÿŒôL>ùñ¿ÇårÐÒÚij[žàw~8¶ ÞÍÉ“Ç$¹9y´´6ÓÓÓ…Åb¡´´’`0À©Ó'@ À}ø5ÿÙ/1>>Ʊã¯ñèc3wÎ|rrrIófžžÁÏù×,ãäÉã>|‡ÃAaa ½½ÝÔ7Ô° z™™™twwòø“«™¯—­Æf³ÓÜÒÂÉSǰX¬XÌÂá0ùE<ô*99yj¾“êEdef½·úÅ×5)UÎ;Ž™Lf–,^6m_f,)ñl(ˆù&%%Çç6Š9ÙÙj@„ü|ªçÍÿgÆ­©T”WÅÿ=Õyxò§ÃÁÊk¦sÛ­w"üÿöÞ;<Žë¼Û¾gf{EYôÞ+ @€½‰ª´d5ËjV±¥ØŽ8þ^'o’×qŠœØVlÇŽ»z§%Q¬b¯b'$@½.°ÀbëÌ÷Ç.–€Ä*QËÜ×E.vgæœ9SÏsÎóüZ[[ÉÍÉgÆô¹deæPRlwx2Ò3#ç忇÷=7ö^/=-´NTTt¸>;6›ŒŒÌȾ”EUœ>²cê0è ãÚuÆÓ3Ú°/£/ó ÍhùpÃj¢£cP…gžû#³gÍÇf³ÓÚÖÂÉ“hµZ,+'Ðjud¤gâr¹p ¹8ÖPÏ‘úÃèt:L¦B\A~ûì!--“£Gë(,(&--Q$’÷Jꎎ«C’4dgç’Ÿø™Ûu9ñ©çs/h”íL2x žÇ¥ø¼ßGg-æÍY„.<•õiüηÎù~û4õ\ œ)àö|íWÎSÞ…ü¦r™"ŒúÐáÃøÍÿ>Ekë) ŠÈHÏfåï`4…´Ë+Ê'±îÃÕa7É ÍÍ!÷ȼœB™¾ß_ù6¿ýõÓdffPR\ŠÕf#11‘‚"þòÌX¿a5ùyEddd²nýjÈÉΣ¤xBx?Ž5Ô3±¢’¢‚b¶mÛÈS¿úOÜîarsò ÔÖΠ±±‰“9ÕÒÌ€³ŸÚšH’&bÿíþh+W­Àh4²ôú[¨¯¯£ßÙ‡$ŠX,V ò >ágí÷ûéèlG†Ý¡ø±ýöçHàDSÛwlAD²³r#£ŠB8)Õž½»p8âik;Åšu "ÉÉ©á©~ kÖ­$7'ÿ’ëø_.@ $5>‘¢ÂF<#ìúh;vn¡jr ŽØxöîÛÍâE×#Š"§NdûέL©žÊ‹¯<˦MëÊ2ß|ô;?~4”Ü12µº.DQ`xxˆåo¼Ä{ᅢ ,˜·„}ûvÓÕÓ… Ì™5ŸžÞnêëëp:û™>}6‡êö‡ SAÀåä¿~þo|eÙ<ñ­ï“œœÀ„Ò  222éííeÕê÷hm=ÅÒ¥!“S-ÍôõõðýïþÒÒÒ÷p(÷ÇÍ7݆A¯çßþãŸ8tx?@€ªÉµôôt1wÎBV¼÷&Ýÿo½ó:ññ‰d¦§Ÿ38ÿZæó\«ªùiê8côË9Þyޏî½ç!t:}ÄäRµûbú,Wã3æLäæäQ^6‰ïÿà 4’I#ÑÕÕÁ¾ý{˜1}Ng?/¾ü4©©éÄ;ˆŠŠFD]ƒìßÿÛwn¥rb^ŸÓg±vý*î½ûAV¯}‹ÅJFz:ÐÑÙNfF6F£‘ŽŽvŽeÃÆuDEEádáüë¾ìCqI¹0ì+QÃZÖ_jÂ÷kžˆhÅǾýT¹ÊQ††\ôõÒÙÕÁÉSMè L&3##n´:-ŽØ8NµœäTK3ƒƒ !LQ”p8â0™C¾Ö99y4ŸjÂNæ&ËJÄàu»ÝÔ=LssuGÒÜÜ„×ãÁd4á ' íŽB||‡¶Ž6ZZ[hll &&–¤¤*Ê+Ù¸q@€êªZ’“IJLAKÊŽ&.ìéí¦'Ü)…¡PQ6 ›ÕÎðð0^¯¿ßÛ=N\èaBi999y”•Mäøñcœln¢­­…Áúûû0™Ìˆ¢ø‰ M·{˜ÞÞô:½}½ô÷÷!J"YY9|´g'k×}@Ey%6›ýªíÈŠB|\÷Þó ×-¾ §³Ÿ#õ¡lÃuGq¢ñÁ`€‚üPÞ–’ahf¼±±瀓˜˜Ø§FCZjƸ٢@ @_Ng?M'p ýt¸IJLF’$Nµ4ÓÚÚ‚V§#(0è—‰¬ÌDIŒÄ j€€€×ãåø‰cœhlàXC=Ç¥½£ “ш¢(øý¾È5¦Óë lß±瀓ººƒŒŒ¸IN ¹Åè´:V­~I«ÈÌÈ&=-‹ÙòEzH©| „bU-Ÿ*¦Nåâéw:9~¢‡#ÀÏðð0zƒ‘~gõG344H0D«Õrªµ™ÏŠ"ÓÓÓEk[ Ç‰ŽŽÁl2󯛝™‘MZZÉI©¡YrBF¨Ål¡ßÙOWwF“ Y–ÉHÏ$7·—kðË> —œ«¾g~µ¾ˆ/wÆœ<ÙHaa1:Ž––Sôöõ’•™Mk[ 6›”äïgQ½Q¹<‘$‰‚‚bN67ñÎ;Ë)È/ä†ën¡£³ì¬ô:=ƒ®2±qXÌjª§áõzÙýÑ, óç-& Å[UN¬"';ŠòJŒ#(¡@òâ¢R23²¤!3#›Üœ|j¦LÇår±s×¶ˆ«$iÈÉÉ#=-#´ÙÖJå¤*n½ù«Œ&ú+*(æƒU+˜9ci©¼Ýû:=½=—ÃØX C__/¢(`³ÚILH">>Ÿ/”…þø‰£X­6:;;ÈË-àXC=9ÙyXÌVÞYñ)ɩج6Ê&T`6›),(æàÁ}ÈŠŒ ˆcr‰”––£Ñhp PTX‚ÓÙG $';—úúÃ!©ïêiH’xUÞ+£î²+*)))Ål²€¢ ÓjÉÉÊ¥° ˜É•5lÙº›×¡ÕjY¼p)V‹•ŽÎv–^w Æp†`‡#ŽÙ³ÐÑÙNWWÉɉį:HJLáoPQQÉÜ9 Ñh´˜MfRRRÉÏ+Âf³—@ff6¢$±òƒ ¹ÈË+`JõT›NŸWHBBf³eœ+‹Ñh¢¬l"F£Y–±Ûì–RTXJRb kÖ­ I‡Gkl6U•5¤¦¦sðÐ>&”Vðµ{dç®mÄÇ%P_ˆÓÙÏêµïsãÒ[S-'¾†”¯e®Æ{ür"4c-’—WHww'Á`û¿þ0ÝÝ] :‰sÄ‘œ”ŠÝÀÐÐ’¤aþ¼Å˜Œ&¬V:½^OqQ)ùy…tvu°qóz}øÛh4ÚÛ[#"*² ……%¼÷þÛ‚À¼9 p¹\RÒˆŠŠF§Õ}†Ö\ž\š–>C=•KŽN |%Ï ƒŽÔ×q¬á6«­V˯ós~ýß¿'..ޛ׳yˇ,\p+Þ}“ûï{›Õ†V«‰d†P§“ÍM]zÈÌÌŠ¸Ó dVÆ—'Šz½o=ú]]ƒèu:’“ÓÈÌÌ¡»§ FƒÕbeÖ¬yh4Zü~Fƒ‘Ï]Ýäæäóõ{BÅHGÝfµ3{æ|’•bÞ·ÿôŽXO<þ}FÜn¬Ö´fWW­m§"°^oàë_{AÍú¼^¢¢bxìÑïÐ×׋^¯çà¡}$%¥„:ô"Ü|ãmøȈãÄŠP|’Á`Àã`Ø=L|\ÉÉ)èuz’“SÑëôx<t::ƒ!”3Àb±róM·1VÜÉÏ+â ƒ8qaµ•ÃlÞÒ¬($&&1gÖ| †Ð(¹^o >>·{§³EQ˜;g!ÑÑÑWí½ Ë!ý;nÿf“I’˜9c.……%ásMtt,…ùEøü>L&SÈeA»-ЬÌl ò‹ñ¸IJL!++‡Þžn,VÁ T”MâïÿÏCç ÖÝEA~1n÷0Qö(ª'×"I`“ÑDo_/G!&:–š)Ó˜R=VGåÄ*´Z>ŸƒÑÙ÷¤Äþþ‡?«e³hÁõ‚@BB"ÍÍM=V‡N«#!1)$•œWÈ«ÅÊÀ GlY™ÙTNªÆçó!Ií­Ìž9Ÿô´ ‚A™¿ýþß“˜˜|Õ^Ãè û˜œ†*_ ¢’·½‚»2hµZºÿ1Â3ò‰ I á»ZM :*†÷V¾MzZ÷Þó •«‘å £ÉDmÍtf“™C/?ÃÂùKÈÏ+Àl¶òð7'66.Ò‡ILHbñ¢¥„òy½^ÒÓ3‘$ ÁàgH–u™r^D::ÛéÛ¼½:Ý÷¹#ˆ"îÇÌÈi„ ò—g~Çðð0K-E’4:¼ŸÍ[7SR\†ÃOrR*ï¬xƒ»¶ñ‡çþ÷)¬+×/¹‰ÏYh$ }}=ìÝ·QÉÏ+ŠÈR¦¦¦áv»im=EZZvûÕëvr¥#Šb$8„´‹™¸8GäûØ Ç ÞÍÈ"--ƒô´t$I = ß ‘´6¢(’••yˆçdŸÎWáõú˜\YC^nYY¹‰Õ´”´O$mJJL"9) YVðz½<öH6yy…eHII§‚e·Û#Û.{ý™L¦qŸ£ª\ñq!Ô1ÛÄÄDGÊ Ì™½«Õ†ÇãÁN$i5[‰uDÜIÒÓÒhllbþ¼Å–ŒËýp5J¾–r:P×n'*êô¹"×ÚXµ™ˆFnî¸ïñq§_þ6›{ɸåÙYYãÊ[¦(I,½þfâñ¤¥¦£Õj>±ÞØÁ½^O^^^øú·˜˜)Ûï÷³ì–;0›-äEÖ±ZC×Ã)'?/ããtrÝâ›ÈÍÉG£Ñ¢Ñœë¸ÖŸ…‚ ÐÛ×Ëæ-›C÷àµ~@¾DQäð‘Chü¾+J4e,‚ ž~Z¤`ô¾üø=>{ÖöÜKzZƒ®ÁH¶ÚçU£^錊 Œí¨‹K9Š;¶¬Q·½Qã"”ÐTøD^•OS¿,Ë…­ÑºFÝ?.¦cx¶ÐÇs§ŒÝÏkéú¿Øk >ynÆ2*( žÇÇxt½ÑrBâçßîBÊ:Ó5z!çU58ÎŒ^«áë j¨ý–/Ði¥+N‚÷b¹Ðg°z¿Žç‚†Øu æ"2Ÿª\³‚ZZOátö“››O\\å•”O`dÄMzzeœäæäã÷û±˜-Ì™½€Æ¦ã4lÄãñ +§3Ý'&& ÊÄÇ'p¬¡ža÷:­Žáá!œ_v“UÎC0¤þèQœÎ~bbbÉÉÎE£9¼o”ÇõŒòñdMŸH`–üÅO}ü!?¶¬ÁZ[[ðxF0™Ì¼³b9ÕÕµÌ5‡@0ì)p ?¾?===<óÜIIIã–›nGEzz{hkkA@ ?¿³ÙIþ<¶M’ª3÷Gú}¤§eÃŽ[1CÔuZ}ý½(Š‚ÝRéëë! bµÚÐëõôõ÷!Qöh´Z-Î~DQdÈåbÏž]¸GÜ(ŠB_/?ûÅ¿áp’•‘MGg;»÷ì`Ù-weÂ=âÆ`0b³Úxöù?aµÚ¸å¦ÛŒŒŒ`±XñxFƒDGǠш?qŒçžÿK¯¿…ÖÖS$'§2µvƒNÌ&ó8‡«‘P&ôfžú哤¦¦“ž–‰¤‘ˆKÄëõ [ÃîaBÏ­NGwwkׯbÆôÙäåa2šbxÈELŒƒÎ®Ö­_Å£|›žž^<G/€Ç3B_Ó§ÍÆd4ñ?¿}Š9³çsøðA4 §ÓɆMkE“ÑŒÅjeÆ´Ùˆ¢Èo÷KŽÔæž»à•מçÐáÌž9Ø¢$ÑÔtœç_ø3±1¸ÿQ’Ù±k¯½öö¨h’“Rðûýlݾ‰A× 6«C‡÷óÁêwq:CYÙ~èqÞy÷ ŽÔ&**šo?þ7øý~^xùi$Qâá‡ç­w^gÝúUèõz¶nÛÈkË_â±G¾Í„Ò²PA|ÙÙ¹ŸÈ£¢¢ò9¡(˜ŒºOæ©ÿÛkοßGzZ*fCùV«j€¨|.\løO“¥U5<® NÏm_¹‹¶¶VÜ#ÃÜÿõ‡ùhï®PB=QdÝúUtuuÃà€“÷R˜_ŒÇãáÍ·_#**š›ÖQ^6‰­Û7a0±Ûì®;È3Ïÿ‘)ÕS±Ù£ðù|¼¶ü¥pâ¿æÌ^@jJJØÏE£Ñ Šbäߤ‰UlØ´ŽY3çGýÑ:^xéit:=ÃîaÌ_¦MëÉÊÌ¡«»½ÁÀ¶í›Ðë ìÙ»‹¨¨h×$ö¯R…èèX{øÛ¬[¿Š?üé7äb±Ú˜5síÔ­cíº$&&#ËAª«jâ/Oÿ«Õ†#&Ž‚‚bDQD£ÕF‚ãÓÓ2ÐhµÙ¿›¬¬êŽÂáˆgã¦uÌŸ»˜¨¨¨«ö¾PHMMgñ‚ëyó­WIHHÂf³³fíJü~sf- ±q ‹5’­¾§§›¶öV´-¥%å¬ZýÉI)¼³b9“+kxþÅ¿pÓ Ë$)´n[ ™™Ùè´:ÚÛZ9ÙÜÄ”Äd,+==]ìØ¹•E ®ÇçóÑØt‚S§N’••ÃЋµëWq²¹‘ØX¬Y»’Çi8^Ålaç®m´´6“—[@ww'ññ‰$&¦`·ÙǵutGEEå @QHŒá¿¾û`ä9~­!Z“Aÿ…u®TDåsa¬öºÀ§‹Aûøû÷\ê2ÂØàãK±žÊÅ P3e*×-^ÂsÏ?‹Ao ==“îž.öíû­VClŒƒîîNzz»±ÙìH’†M[>¤»§‹‘7z½›ÍNGg;¢ rüøQ^[þ"‹•@ ”›A«Ñ  œœŠÝf§¶vñq!ÉÞüü"²³rø`Õ»tt´£×ëñù|d¤Ç! ]ݼ³âu”°×ëA¯Ó“”˜LP¢È2³ÉÊߟHzZ&UUµädçQwäP$ÓºÛ=L[{+£¡á¡PB*žS§N²~Ã6où@0ÈȈ›˜èXzz»…PVóâ¢Rj§LgÇ®m qÓ Ë±. &£‰¼œ|>Xµ‚@0ˆÅbåø‰cDÙ£‘4WÿãÜçó J:ŽªÊžyîL˜PAQa 6®Åj±¡ÕjQ…@À,ËÈŠL[{ QQÑÄÇ%ã »§“¤ÄdLáŒÃI‰É$'§²cçVnZºŒØØ²²²IHHdÇέh´ZL&11±´¶žÂd2‡âHèëí! ‰q "=Ý]ø|^qñÈŠÂа‹E ®§¨¨”»·ÑÑÙŽ ÒÙÙN{{Sª§†îúû4?FTT4•“ª1™Ì_öaWQ¹êE»ÕòeïÆ—Ï8‚uõ¿±T¾p]]H :Ïȉ‰ÉgT 9>Ÿ¶ö–P‡ƒÐ¨õ±cõ<¼Ÿ¯Ýõ uŸH|¸áCÖ¬[Éãßük±Ž³n?88ÈÀ€‡#ƒÁðeÎ+šH"ÂǾKzz&Lž\Ctt éé™$%¥’’†V£%>>º#‡ˆOäÞ{¤¬´‚Þ¾ª'ׂµ5ÓIHHâÏOÿ/‹•Úšdeå0<<ŒÙl¡¸°„I“ª)È+¢¸¨”Ʀh$M¸3 ™Ù|ç‰p´á‡”äTzð[ØmvÊË&QXXLEÙ$º{ºP…â¢Rª&וKJr*YY¹8qØl6¬V;©©éLšTÍk䤸c‘$ £ÑHJJ*†ys“””LrR G<÷Þó ÕUµx½rs Ðjµ477‘—WÀÿûÇ'i8~{T4sg/D–ƒèõdÒÓ31$'¥ðÝoÿ]¤ól³ÙINJÁdºúݵ:qqñܶì.rsò8y² ›=Š)ÕÓHNNå+ËîbÄ3‚(„$ã½^/11±”OÀçó‘•™Ciiéé™´´6S_„Ùd!Α@ff(Lrr*ññ‰È2˜ÍVæÍ]LRbñq‰”M 6Ö$IôžøÖ÷ùÙSÿ†ßççñoœW cÝj?ÞQBŸv[4=òpŽ…1³ecÖŸ5s>Ójg£ÓéÐh4øýãË:[BÂsý6nùYÖÿøç™Úu®6mç¹öã\†ÄØŽïØ²¯%—åQã ˜MV–ÝzG8o’vœáð ÎsÞÎv~Ç&;ÓrøÎ_ý Q„þí?"ŠÁàékx칿Ð6ª¨¨¨\ͨˆÊ¥'œÍ:55žžn¼>/;vn%::†~bcâèèlC–e::ÛÉHÏâÔ©“$'¥0¡tBd&Ãh0¢ÓjÃ.-!em¼øò3dgåqààJŠ'ð³_ü:ž7®åÿþè_ILHbÅ{o²rÕ nºa¯¼úMM'ø`Õ» 3>œœj9IGg Úk¸ÜP;r×.£‰Â>+ͧNq¬áòy,ŽÎŽ;‰Ekkk£¡¡þþ~èîî>§âŸ,ËÔ××ÓÖÖú‰vHÒéמ짊ŠÊµŽ:¢rIQ”ÿûôi³ÈÏ+Äh4‘˜˜LIñÞ^±œ‘(7啤§eë 1!‰¤¤d¢¢bHKËÀÙßÇ較N«cò¤jQD’$òò ˜?w1i©é¤¦¤’˜Lo_ee“øÞwÿ?6oÙ€Ïï#..Ù³æÓ×׋Ùlaæô9x=N67±hÁõX-6&VL¦fÊtœƒqò½}½x½^úz{ðú¼ µÓ{‘(ê»LùŠNœh ´¤ ÃEÜ—²,‡ã½D~÷û_r¢ñ8¿ýõ_0›Í‘˜±±(ŠÂ«¯½ÀÆMëøé¿ÿ’ÔÔ4ž{áO8¸—iSg±uÛ&î¹ûæÌš‰7ûxæs¯×Ãßüð j§Lçïþö"ËÛÚÛØ½{{(H>ÖAEÙ$¢£cÎÞv¾ÈüÄ****Ÿ?ª¢rIQ°Û£xü› „†*gLŸ ˆÌœ1PEiì_†Ñ@rQ‘e0™ÌÜ}×ý@(€xÞœEÌ™µ ¼žùÔh$’“’™?wŠr¡ª©ž†¢„:’¤¡¢¼2œØKˆ¼Í%I wÄ$IéL(-çÇÿü$‚ ¢ÑhTãã"Ðëõ¸†ymù‹¥z¦òÅ àr1ìºâ’Š"47Ÿäþ-‹^OWWôÁaçéIDAT¢(’ŸW„ßïãXC=F£‰ ¥åôööðz= F^ã%¦O›ÍWo¿½N‹Ã‡Ç㡱éGê!ŠsfÍÇjµrôX=‡ë`³Úéêê áøQ^zåY&MªÂl6#‰o¯XÎÀ€§³ýÃ÷™3{…Åìܵ@0ÀÔÚ™ 8Ù²u# G),(á¹çÿLVV.Sk§£Õjéííaß=L©žÊšu+ILHÂd2ë à Óë0Lì;ð‰ É–¨¹ATTT®TDå’3Úé?Mè¥ùi^ž’tÚXMw¶:µcüÁ?¾žæ"r$„êùt¾å×4ŠBJBw.ž‰B¿:d{9¢€Í¨P6©„hûèϦàñŒ°~ý*öîÿ³ÉLvN’(±wßnl6;'èííÆï÷ÓßßGqÑÖ¸šÒ’2$QD ¥õ'X¹jÛ¶ofæŒ9ȲŒÛífõš÷9pp/3¦‡~ ÊAV¯}Ÿƒ‡÷c·ÚijnD«Õ¢Ñhðy}lß¹…š)ÓXþæË¬xïMFFF¢áx=‡ ( lØ´ŸßÏÔÚé$ÄÇ1¹²×CrR «V¿‡¹ÖBk[ NÜ#n¬+Š¢ðΊåÄD;ø›ïýH•WQQ¹jP •Kƒ¢e6psUŠj}\ÖÂ*°–ÝöûýÄ9â‰ŠŠ¦·§›Í†Á`D«Ñ2àìGDz{{èëïEE ±±q‘ ŸÏˈgG¬¯×ÃÞ}±ìæ¯b0‰Ž‰¡»§‹C‡÷#ƒ8bãHLH¢³³Q a8bã&55-\¶ƒÍ[70èdBI9z½ž¶¶ôzFƒAHMI'&ìf¥(ÊÈÁ @€¸¸ª'ײë£í´´6344DA~Ãîa|>?f³YQQQ¹ªP •KŠ ÀÚ½U¹ŒQ°Ùí”—UbÐët bµÚpÒÒÚŒË5@aA1óç-&ð³qÓ:ìö(ÊË'Àãñb4ê)).#&ÚÝM^n©)é&A ÊMA~ùy…ˆ¢ˆÑd&ÎOo_1Ñ18ýØlv<ÉÉ©ÔL™NgW'Ën¹«Å†F£!>.¯,»‹õ®Æ`0RXPLcÓqa=ÞPN;™™Ù8bãÈËÍÇd2‘‘žEss€GlYY9´µµ`6™U÷+•« ÕQ¹$áÐ µßùù ¨ÇVåšF–!5%{î¾?œ+FF%††\<÷ŸÐë <úð_‘’œŠ,+TM®% Í´Ú™~´Z-² _¹õNøDåÄ*l6;V« Y‘©­™NåÄ*,V²,ãóyÑHÁ`Q’ƒ2¢(¢( 6›Çþ6‚(`·E‘•qŸ2MTN¬"(±˜­aA cÄë-%%‡#­VKVVƒœì\±qá²mh4Zn½ùv‚²ŒFseÅ쨨¨¨œ ÕQùL(ÀñÆÞ[¹½^êøÿù Š{öí¥ÕVQ¹FÑjuÄÆÄŽûÍf³qç_G–e2Ò3""‹ Í6X,–ÈßÑÑÑ‘íGóy( H‚„#Ö1.»ý¹Pˆ‹‹÷÷ØmM¦”qõŽý[«Õ¡ ç´UôÒju‘òPBOÓøø„O”¡¢¢¢r¥£ *ŸE!3)Žª‚4W3¾!Õù¼ÈŠÕ‘[T£ªK©\Ó|¼#.Š™™@h–dtù¹:ìg2Æ~¿˜ÎþÇË:WÙgÛö|û£¢¢¢rµqy cÓË^ê§íçYöåz|@òçÛæ4»{fL¸"ó \‰Hª¸ŠÊ'8_Fs•Ë‹ 7@FSÐŽ¾†ÕH?[Ç^úijí !6†”Ç%5œƒ.šÚ:‰±YION8ÓðˆÂ˜6qº£tªE¡×9ÈÉöNRâbIŒ‹=ï~¹†GhjëÀ Ó‘—‘ú©Ú¡(¡,äçëð €FTTTT>ÔÇÊeã§¢¢r©¹0Dhëê᣺cÃeµ QV3…™éDÛ­Ÿº³îõùxiåz~öìküð;¹Ùu^’Æùü~^[½‘Ÿ=÷:/»ž¿ºûÖqû)+ {¥¹½3”ûA0ôÄÇD“‘”€Õjþr‡Ö—gÞYÅÿ¼ò6ÿüÍû¸ãúyç<>Š¢°zûGüËïžcNUO~ïÑ‹?7¢À«+7°eß!þñÑ{±[-—…1¦¢¢rmá÷ûñx‚øýþ/{W®iAÀãñ"Î3ê***×<”e¶8Âo_}›oÜz=© v>F{oÿøÈ½T—~*wƒNÇ‹fóìŠÕxý~.å‹N«eÙü¼ºz#^ŸïŒë¸G<üë_D#IÜwãB<^ïlÜNkW÷ß´ˆ…µ“¿,Ÿ{EÁdÐs×usyáýP«ó!KgÔðúšŒx¼T¬(x¼>Œ}äèeÿ%2UTTT. EÁë`ÝÑ#<÷Âï‘U«/Á!Z¤Ê«¨¨\.ÌQÒR’¸~V Ͻ»†›æNgÊÄœ}Nîûûÿà§O¿Ìs?ù!Z­@¸£¬ÑjOÏ Œºé(òiW'QEA§Ó" âxÓ#÷ðû‘4šPàíhYáeÁ@Y–Cõ†÷óãËA8«‘(L¯,#?3 …n½Iq{xvÅjþú§¿ágó‹¦U‡êþø>Ö)†ã-9DgÜEÁP⯱ò(cÊ¥ðC}ìKvl]¢ˆ8ê&FÈNAQBÛ…%!å@IÑj5H’4>\Qd¿?€F#!JbÈ`”$ÖgÍöÝÜJ[W/CÃLÈÍâÎ%s8ÒtŠ××lbÄëeæ¤ ,™V͇»÷³fûGd&'rìšñ‚À‰–vÞþp CnZÄÂÚÉTæ®a7ïnÜΉ–v†‡IKˆãÞb5‡d»ûœ¼¹~ ½}x}~ŽjeNUù™Û–MQP ñ7ô|í†|°u¿~é-fW–£7èhnëdņíô  Óh¹}á,²RÙuðïlØF^z ²¬°yß! 2R¹qöTv¨c㞃ÄÇDñͯÞH|LHþ±»ßÉò5›èî@¦–3£² )ÜÑoéìæ­õ[ètáöxiëeô%à½Í;ywãvî\2—©“&ðÑÁ#¼¼êCвÒùú‹Âçk|3÷ÔeÝŽ½¸Ü#Œx½Ü¶`•%46·ò“ß?Gs{£‘ä¸Xò2RY±q;£‡nY‚ Š ¸†xcÝfZ:{˜T˜ËüÚJ4¢ÈÖ=ø`ën ³Òñx½lÙw˜´„8¹mi¨½ª¢¢¢r1(m1m5©Âz— ¡s¡>ÏUTT.Ÿj.UD”`S]$ÆDc6ø¯g^åÅ÷×qËÜiL«(á?þò»Õ“•œˆV#ñúšM$ÇÅ‚(Å¡ã')ÌJàÓ-œ“­|ë_ŸbÄëãŽÅ³IŒá;Oþšmûë@ynÅ~úô+,¨­déŒ~ûê VmÝ ’DO¿“ïýçohjëàÖy3¸uÞ â¢ìç¦( ªK ©o:Es€ö®^~øÔ0èuܽd.·›¿{ê÷8]C¸=^^_»‰W®G£‘(ÍÉä©–óç~ÏÀ°›Š‚^\¹ŽgW¬pgþ{ÿù?ÉWæÏ`baÿôÛgX¾f#H"Íí|û?~…kx„¯.œÍM³§b3›#~­FâÝM;8ÙÞ hµv:ÊŽƒõŸô`Z»zùÖOþ_ À×oXˆ{ÄË÷##„pœ‰$‰DYÍXLF›öà½M;"Ëô«?³~×>nš=•éKùùó¯ó§7W"+ ƒCn^Yµçß[‹¢@eq>ϬXÍs+Ö„3詨¨¨\$Ê‘õß—ÿï3 Ψ¨¨¨Œå¢exƒA™“íDY̬ߵ=GŽó÷ß^¯caídæ×TR˜•ŽN«AEN¶wQ3¹œ;Ïå•Uhî覼´æŽ.*‹ó©­(edÄsz”K€çß_Çà›o,[Jl´Œä$>ض›ß¼ò6U%T—žOEA.ÎAQ6 ­í À««7ÒÖÓÇÏð-b¢ì¸Ý#DÙ,\ô0š±QvœCÃ8‡†ùp×>Úº{)ÏÏ& R’“ÉË|ȉÖ¦Oš@r¼ƒéK¹ó†…ø¼^ÖíÚKFr"~õ&Pv>ÊÁc ¬Þþ;ÖóÆÏÿ™‚œ r2Ùyè(O½ð‹j'ó—·>þêî[1 º°šŒÈŠZ ÕeÅØ­–°ô­@i^6Y)‰gn‡“ïÞ³ŒªÒB2ã)ÍÍdÛ:\Ãn23R(ÌN§¥£›[ÌB’D%Jó²Ùw¤D‘íêxóžù—RZ˜ @]c3ÿóò[Ü0³†“ËHrݰ¦’ûo[вûðQŽ4žB Õ){•e€xý~ÞÛ´ƒ}õÇÑët<õƒo1¹8€ê ElÞs€'ÿò2#/Cî‘P§Y–ÉHЧ¶¬˜åk7± ¦’M{²dz5B8~!B Ⱦúãd$'`7› D£ÕP™Æ;¶104LYA.Þuüâ¹×ðøüô ¸Ê e¶î;L~F 1VËi÷ªO3j£@ÿ  Vƒ^«aÏ‘|þîÞøý¾2&Q3J0T ËHŠ‚Ùh¯‡cGŒz=}^( ±[̤Äņܾ$‰’œ þüæJN´v°»î…¹ zeY¹ˆ…÷kÔ.‚,Ÿ½Š‚ÝjaZE «·DKgÇš[G·Q9tŒ”° ‚0NP ®±­FCFR|hE‘¢¬tzƒ4·w1Á’ÙŒ Œ Ëõú°[ž¢ *********.ÊQ©2=p󦕗 j¤ð×Ë?üúÏô:y⎛‰²ñþ–‘ޱ¨‘¸iÎTþî¿ç½MÛñTäç|RæVÐ뵌x¼ã:Õþ@Vƒ(üüÙWÙ~ Žoßu+™ilÙw(Ò™öø|h4²¢DÔ«.º,x½^v¬§4'“”x •’ÈwßÔ&X/+ŸˆT"ÿÿuTG]¯Õ”e‚A9ôƒ>Q‘D‘¯Ÿol™ÂYvS8ï:ˆ"ëøÁÏÇâiUÜwãB6î9À¡ã'/lNHƒN‹¬(‚§U±üáÀzöl—P¸½ªp¼ŠŠŠŠŠŠŠŠÊ.<D ¬vDHµJV¸ ð·uõò·ÛX8µŠ‰%H’„ß@ÅȈú”ÒB⢣øÉ^`Ê„"Lfc¨h)”àPEÐj˜5©Œã-í´õô‚VËа›=u L-/A^þàCªJ ™^S‰Á Çëó#ˆh5L,Ìeû#=Ù’ˆ? É× cŽ;¡ K¡¸ $Ÿ?À‹ï­å£#Çøæí7b4›™ZVÌGuÇ8t¬1œQ ¯o€a÷Hä» „?GÛ,áòCË”p2Çš²"Ü#êššA£AÙºï0åùÙä¤&Q’“Áº]{iéèQÄð+K!ˆ‚€A§¥³·€ ¬à øÃu†T±1¬º¥‘X¿sí=}ܾd.É)‰ø|~•Gh³¡aüA9ܖб 8“Šòш"ûMÈàØºÿ0¹iÉd§&… ™Ñº# +Ç´_EEEEEEEEE%Œ†ι{‰‚@Ÿ“»ö1<âaíöHqÄš P‹¶YÉJIâOËßc0˜=âõ±¿þ8 k&eÇn³²hêd^Z¹ž©å% +v8B߀‹CÇNÐÞÒβù3Ø]wŒŸþåenœ5•­ûc6xì¶°”æfòúš˜ \n7GN4ÓÖÚÁ]Kæ²fû¾ñOÿÅüšIH¢H[w/õÍtuõ{Z•IQv8JSkIâå÷×Ñ?8ÄáM´töð“Ç`Éôj¹eît6í=Èwžü5×M¯FE:zûyðæÅ¸=^º{û9ÒÔLWWýƒ.NutáñÐÒÖ‰¬(œhmgÈ=‘£'˜Z^ÂÝ×ÍãW/¾Iÿ€‹ÆÖvšÚ;ùÑCwc4›xàæÅlÝw˜ûÿáIfU–”eú]<ÖÈ@¿›ÙÄô‰øÃò÷pº†ˆ¶YC*V&#M§ÚBõvt¡×éh8v‚‚ÌT\Ãnžüà e§³ÿh#ƒCÃì>TÏ’iU¤%ÄóÒÊõüò…å”åg“›–LÃÉ:zúØWwŒÒœL»ýFþüæJ ½ƒì8PǼ»ÅÌÆÐÝç¤îD}}ý¸†Ý4¶v0âñräÄIг3¾ìë\EEEEEEEEåÓrÚ+é’$f’žÈä{ú¤L½¥¸æìk ®!œ®aæM™H´ÕB|l±QöÈ*Fƒžš²"ÌFñ1Q,¬­¤ª¤³É@’#»Í ¢@{W/)ñ±,¨­„°[Oé6&ä–˜@¬ÝJJb<³*Ë0éuœlï$;%‘Go»äx’$R]ZH¬Ý†ÝbfnuÓ*J±[Í8ì6r2R™[UÝbÆdÐ3§ª‚™“ÊpÄØIrÄe³Ž;–md§&QY”‚@ŒÍJuiݲ„É¥…‘)"c¸¬dG ƒÃ#¤Ä;¸yÎ42“8ÑÒNAV¹iÉ$ÄF34â!%ÎAQV:qÑv|þ16 …¹ØÌ&Òã©)+"ÉCc[QV |åzŠs2A–‰fNU9F½»ÅÌÂÚJ¦–—m³’ïÀjµP‘ŸCL”“AϬÊ2¦U”’‹#ʆkx„´p°¹Ù`¤¶¬˜òülDQ¤47‹ÅÓªÈIM דžOaf9éÉÄØ¬ä¥¥àóû±™ML..Àl4–Ïäâ|²S“hjïD¯ÕòÀ-K¨*)$ r¢µÒÜL2’H‰w0äöc³PžŸŠu‰w|Ù·ŠŠŠŠŠŠŠŠÊ§Añ÷´âÚµ %àÝÿÝø‹¬ŸÅS~YiòÿÑh>»Ì^Ä&¶giÿØöª¨¨¨¨¨¨¨¨\YˆƒÛߣó¥ÿô¢È·ïæ¯ýlEj‘uÞ¶¥ÞÖŒyA žyMEày:’Êéd~‘ï‚@ÿ€‹G~üs¼>?_]4›‚Ì´ñÁç²|æ²Î¡ìô‰zεü\È1“t¶cp¦2>^ÿ™öç\u¢ ÑFåöql;ÎÔ®‹Ùß i¿ŠŠŠŠŠŠŠŠÊ†€âaøðv” Ü$ˆº¥jxNvÝèÜôF†>%÷ܳ ŸEÁj6qÿ‹ðú¡˜ •ËQ`øÐ6ÜGw!,N]Šb¥'²hŒþž¶™Š …:Ã%ÝwI)ÈΠ87F£fSUQQQQQQQQQ¹\Bn÷#ÇöÐýÖoôîBà‡@ßgu¿‚ –ŒÀ¯”` ͹áõý}Ú¨i7¡OÉAÔ›BÒ´— …ññ ***********—Š‚â÷ìehÿFœß ÐßU‡À÷—ªàè\ì(| xD4YÓôI™‚Ö‘2BTƒAEEEEEEEEEåªF ø ºúñ¶ŸÀßÛéF®EàŸânaW÷r¸³0&MuØ‘€JîRæ XÆ®§¢¢¢¢¢¢¢¢¢¢rUâºØ+¼†À[@?\:ãàÿZÅG¡Nyµ%tEXtdate:create2013-05-12T17:32:10+02:00fE%tEXtdate:modify2013-05-12T16:32:13+02:00ûfs¶tEXtSoftwarewww.inkscape.org›î<IEND®B`‚gnuradio-3.7.11/docs/doxygen/images/gnuradio-logo.svg0000664000175000017500000010763313055131744022423 0ustar jcorganjcorgan image/svg+xml gnuradio-3.7.11/docs/doxygen/images/ofdm_rx_core.png0000664000175000017500000005433713055131744022312 0ustar jcorganjcorgan‰PNG  IHDRÊóÑx›sRGB®ÎébKGDÿÿÿ ½§“ pHYs  šœtIMEÝ#»K× IDATxÚìy\MéÇ¿÷¶‹nû*­*‰BBÈc_ÂûÖ/B²& ƒ(Kb,1–I%ŠÁ˜Pû2„,CÊ• eK©îï3sœ¹[·TZ>ïW¯^ç>÷9Ïóœç|ï÷ùžç<çsx¢|Ê>º€òB]¾.<5:¡û]À1xW€ðTur³áSª} ùÀ1xWPXÂk^€ð€ð€JÊ!€Ú äÏj$8 ¼€¯äÏj8e³™Ül»>_‡ðEN™û§H Æ~@åP\\¾u½›»£±¹¦›»ãÖmE"‘7¥g¬bÙP¯GoC‡£¸..*fó1*fŸ¤«|ÿ ^PóÉÍ1RS¸_‰e€Š#|ëú9óüÚ·ë”rûYûvfÍòóöMrW–0ÿÄÑs"7x÷žílúÒÀ>}úTPP°4ðÅÝ`å;Þò*–^@ Ûwn&¢é~síé~s‰hë¶ò>ß®¡Cðª0" ^Ħäoß¹yûÎÍŸ J¬TÖí;3K­î½Ú]½vI,±¹¦{g§f–¦jNfû~ÝEDÂçÏFbmo`n­=ld¡0]~¥·nßpïà¬mÀ—¬šÛ*Yík¼äQHmfÐxx|eTãUßÙ1¯Ê.Ýã¦psV÷y~MóÕÚü@ ¶Òr±Lãúuò>æe?/PQQ)((00UÓШ“‘ö^–ãbjÌû˜g\¿ŽŠŠJöó&=lÃ΀E³‰hÙ’Õ'seRƒËˆm‘ýúâñþùª¨¨èÖíº¸6rh|áìmf—ˆm‘ŽŽMZ¶iDD;þÕÙ¹y³– uttŸŸÿ:³ˆÍÃçó™™ülQ¦õÞ¿ÇV¡¦ª–)ü(Ç2YÂ|‰ MÕÅÂ뢢"]#e&QN{¸áõÇüý½<³²2Oý~IKK µ=bG »\°8¨ ÿn ­ ]™››³6t%;INþâââûîÍœ;™ˆføÏû(ðùI§®%&\U|Ž–8Ïyð0åhÜ™#‡O3Upó°ŠE¨-][Ñ/1/3>åf‹¸±µT5r"¢sçÏœ={úsÀ*Ð.**zð0%.>†M”Ó.þ7ìÖí›{wÇji ä·§\bkPóÀÕ¨ “4_ Ì^Ãü*Á¨ªrEåÛÚòjf¯ ×…®Ü»?B(L77·7f¢÷T>Ÿ/Ëq)))Õ­[¯‘Cc_ÿ~})èâ¤Î^³C6¬Z²âõëWl~±5R·_df,\<çÔéß3³^0j'r–£äf‹nݾáã;êÎÝÛLf&1b÷ÏK–ÍÏ~™ÅÍ)¿=bl©í)wãG<†ð„×µ‘Ú^oݶqÛŽ°§i© Ì-¼ÇOž0ΗÇãÉZ´ª¬¬\¯žV#ûÆÿçÇK¶mÙ;hàwD³oüÿ†IÆqñ1kCW¦Ü¿«¬¬ÜÄÉ%>6á+†×²ž³×¶¶|KCx ªï\Â뇀8•£h¶#"|įzõ´.K¾z1ÅÁÞ±*{©ôÎÊWÈ ²h„×P3©E³õ«ˆhåò33s}=ƒÕ+7°_1j_6ö†»&ÔÍ$srK+sÆòóöMMš[髈 IjŸ•(µ&yrJKO:|Ô [] [Ýa#û§§?•uhà" TAp3|mÄ=ÐêCíYR9ŠfzÆ*………/žå©«©s;™ˆ"¶EÚÛ;¶n礭­“úðŸu¢²Ô͸9¥&Ê‘“¿8¤¾•àSAAâ©köv¸y$—s”(µ&ç$KëÕ¯ÓÙs§Yµvm;9tJNÏÔ<+…c„w¯À(‚ F™_å(š¹¸Ú>~òèâ¹dî²®Ú[¸|u3nN©‰rdÅä?µæ7Ý{÷ží-š»ihÔéÒ¹»ÿÔ9òÃk9RkòÑÄJ3iP÷Ç÷¬Îš¦f]aê[©‡†ðÀ»‚*‡€8•£h6uòL"š÷Ãt¡0](LŸ3ÏýJLíK¾º™dÉ_(sƺvëý;ÏGôNLJض–ˆ˜‰ö—/³¥æ—#µ&õd•ÖÜÅ•8:kÍœ[È?^@x UšiSçÌ_vêôïöM“V®ó?YN~}ծߴ‰D»¶9|œ‚µŒ;)b[dNÎë–îŽnm''ÿ%+ç¬ ttt;wkÕ«oÇ2Ζ°ÝC‡Œœ9ÛWßDµÄw8‹½VÚÖÁȦOC[ûàÕaD4Ío޶¶Žµ½Ai_-õd•¶ycDî}F2Ö{è7Ýz‡mØ ›T#p3|m¬¬{ 5CyúëÝk+­Ö–YŽnv ä€ÙkPu} ÷O2Eò»{bR‚»GSS53K­¶\¾¼=ïß¿›à3ÜÔ¢žXEÃÖ–v¾Šc¬|à9AíD]ª2’S#b)²fP|ýÆ¥¥¥ž=}ÝÄÄlùŠEôų,A+g¿ÌJ¾‘ª££Ë&¾|™} z/N Z8Æ/îK[,<'¨`öÔL„ÜÜ}=ƒàU›H†@/ݽ—Ü­g[csÍŽ][Þ¹{››“Ë¡øè¹³rG"Z I.TAdù=>ÏÐT}YPÅ5·Ö–œÛfóÃs€ðT¤zvEîx†¬ 751ëÕ¯SÓÖqñ1ܯr³E/3>õé=°OïD4eÚø‹—ÎïÛ{ýÆ¿éÞ² ÌȆÿ¼ÞÜZ{ç®-LÊ»·“Ξúvðœ&@µpŒ,²ü^|lB~Aþ¦ÍëˆèÇ¥óÞ¼ÉÚTl_îì57?<',XJ¾¶ Êx‚GQ^*éfe\|̈1^Ì[-ØœEEEã}†e¾Èˆ‰:®®¦nl®™—÷ÉϼDjQ6ö†Ñ‘¿‰D¢C¾y|?›ˆúyy4|øwcúµåñ8<Ú`¥ÕÚ1²é’~Uj×1Tbòšªçäg ?šª“ÄK”$óÃsÂn f¯AÍdÊ´ñÏ3„––ÖDT§Ž&÷«ÿM™’rgß/‡ÍÝ&NÎDtäðéÜl[Kjåæ.‰ˆH‰ÿìîé3'}§Žeœ ÏÕI¿÷OLÀÿXXXQRÒ)6…ñ™ÜWqóÃsÀ¢Ì\%£#ª¸ÀU„´ô§îMß¾}ckc¸t ÷«¨˜}DÔÀF‡ˆr³E›Öï˜1ÛwðÐ^>¼'Ùs0 X>bôÀW¯_þʤp_5‡9 IE+—)R~ÍPOÃO¬ÜQÄï- š4eŒ×·=ØßIÓÞ¾ÉÔ¢žâ§žÔNx¢|nV¯awç̯¢Í/1)áûþ¦¨ªªYZXŸ;s£Æ„×ÜùÂêòÓãÆa%5t¯Ë—»÷’[·s262II»ÁâÇ×o\ò[ '.Þ¼ú¨•›{M:´ÜlQµ¾ ÅÕx%Ç|m;87´µ]·½Âk(;bÂŽž=Ü›4·"¢wïÞê«tïÕŽ¤ ™ÝK¹Ó½W;CSuYÊe’DÜïàdÆ”#¿=c•ÖíœìMLÔ]²‚[¾¹µöoÇãˆèvòÍNžnÆæš<Ýn'ßT<„’\»:8yWù«W/][;Qaaas7»3‰ôy3çLæ¶äÎÝÛ]¿ic`ª&u5­£IÆ‹ç‰I }ÞÑc‡³²3í›Ñé3'5©ß¨IýÓgN²™3ÏOßD•ˆââc,lu'MƒüŠ3¯^^¹p¯»g/ô¯ ìˆ ;Nõùôé“K—ÿ<÷gbaaáôiß³9¹Âd“ýÆ]¸xn×Î(Å•ËügNttl’“Uœ›-’SËѸ3………wï%Gl?ðáÃû5ë‚Ø¯b"½y“»xÉ÷D4eÚ„k×/ïÝuðÚõËSý½¿¤Ö†® \²æuf‘®®ž[Ë6'N%¢½û#í]ˆÈ³kãG’B7®fòOöç5`hú“7Rg—›6üøQøÖõÓ§}´0--Õ¹is"š;ÚºàðuÁáß/ðg37sq}‘žGD‹—ÎÛ¶»¿Á0H@õk¯«X{ `~•f~¬°ãß)YÍÝìºyöTQQI8uâ|â_<OR˜Œ;Ë櫪ª’bÊe]¿isùÊ…ºuëùxOýaÞÒkÉÉ*Ö1T‰D¬JZ–0ßÀTMMU-SøÑ¸~¼yLІFŒ´÷% ´É:öÑ{7o %¢ûޤ>}¼â§wïŒnæÖpEàº>½ôy9YÅLó˜BŒë×yü [C£ŽÔÒW,TVRŽŒÚsùÏ»ÍZ6lÑÜÍÖÖnþÜ MÕÓŸ¼‘¨•ö‹gyLÃ^f|RVV&"SµgOÞŠHdhª.¶|k¯¼+¨Ê`öÄväóù¾ýÆFž:sÒßo.÷yýW˜Ì±‘N<ù'+W¹ìÈáÓ[7ÿòîÝÛm;©…Çã12g,çΟ!"++"rph̦8Ø;*>®K®èì5ìÄÑsJJJ‰I Í\\_½~¹dÙ|Í:š½{ög[ÂÍïèØdç®­ùùR«pnÚÃM-êÁÂëòdÜ":½—ùµ‡ˆ|¼§*++W‚ëØ C“öï9,L}wðÀñæ8ëÕÆB*s¾äd±®¿ù|yvõï´´Ôù3jaW»†/3>ýº7Žyf±Z×R^½(bŒW½zZ—Î%_½˜Â]aóÊ£G?ðó/Ïk³²]‰ñ •‹³_f%ßH…%„×åÉ ßÕ­[/:fQQQQQQtÌþ:u4ÇŒôæþt¥Nuˆ}+5Q Ï3³ÔêÞ«ÝÕk—¤Öž“óšˆ<¸÷îÝ[ç¿DÄQzúÓá£XØêZØêÙ?=ýi‰µ0_dføøŽ²s4Ñ6à3)ÂçÏFbmo`n­=ld¡0VUAHjúŠ™Í›WÛvpiÛÁåÆÍ«}žs 6ž±Škk‡?Ž‹í4ÖÜZ›;~üv,î›oúˆUm^ÿŸ«²»÷’»õlkl®Ù±kËø£±ºFÊ~ÓÿÌü¦{ë)ÿýø!7Ï»·Åjäê‹ÈÍ\boÈ –¥1Ìä1µ¨·#"\l‚Æ0Õõ«ˆhåò33s}=ƒÕ+7(¸£¿Äê²³þPÌ ÉÒqWÐYŠž;k¡ŽŽ.N@x]žhjÖývðˆ™‰I gÿÈÌz1lèhmmÉœÛ"ýWîü³­¤¤$uväÕ‹Â#‡N]¸xn²ß8©µ‡mÜicÝpÚ +;ýÖíœõVŸÉ£ãÆnß²ïçÍ{ŽüvÈgòhYµpFD>¾£öGîž9}~æ³LÛ||GÅ:°iýŽÃ1'üvhÒԱݟ<5^™ÿª]“¸Ž^–¦oĶHæfztÌþ§iOž¦=‰ŠÞGD:z²vráìíSfΙ,vN\:ï͛܃Ž3‰………W®^líÖ–ÍÖØÅÂÔÄì—ˆhæã”iã/^:¿owìõWÖ…®ô04*fÿ»woß½{³ÐÀשּׂl¹yØà›­‘«s,V 7³ü® ¹‚Á²4†™Þø-î̪à@±]HaáZe~ šREL¢"š‘–žJD\¡–¦-¬m¬Êz½¢,WÃÕegüaÔþ£’£­Ôü ’‘! ÿy½¹µöÎ][`œpeµålVΣ·“o¶íà2lèh‘H´?r÷• ÷lmìˆó¨³ñêE!àŠ=B!Ðç)))½zQXTT¤k¤Ì|µs×– ›‚ÓÒR?æ$">Ÿÿ:³HÖ³ii©‘Q{–.ÐÓÓÿ;%ˤAÝÞg óEUMͺÂÔ·Rkk˜©E½÷ïße¤½gå]™¶"F}¶âzR Ï#¯ãeÜ9º{=9ÁSû¢VI5?ÉS)KÓ÷Õ‹Âø#G¬¡Q§­»Ç;{ötÞǼÝ;¢úöñ Ù°*lóº™ÅÅÅ\#aΩ¡©z~A>S&9|:b×Ö­›a¸dÍ‚…3;vèz(úw"b„™ö¨¨¨œOü«UÛÆŒ²ÄŒÙ¾Ï%Û5tË“ý¼€[#Wçxá‚@É̲λX/É –¥1¼:8pCXðëׯ˜~ Å4†k§ùêKÕ±ÒŠ°LWÛÇO]<—Ì]"ç¡Cö+Y~‰«ËÎøÃLáGCSuîÈ”¬ˆŽ»T—ecoù›H$8ä›Ç÷³a¢ÕÈ»‚*={MDN[º¶>wä`·®=™ØZvòX]Mˆ^¾üçw(h=x˜ÃfX<çÁÔ£qgŽ>MDÌ;{%:¼ï…‹ç Œy)­z"jîâJDçΟ9{ö45sn!«±†µtmMD¿ìÝñéÓ§ÿ¤DÄ¼Ìø”›-ªÐغ2¯ž«`Ûdiú*))y´ïÌçóóò>´mãѾ]§¼y|>ߣ}g"Z¹jÉó alÔ 1#aΩ……[&;×£ûV†Œ;QOOÿô™“§NÿNDMœœ™(<7[”ý¼À®¡C¿¾ƒvDlÙ±¥¿Áv $óˆÕÈÕ9–šYÁû­rƒei ¯Y¹7þÈáÓÜ~¨R؉pŒò™:y&ÍûaºP˜.¦Ï™ç§à޲üW—ñ‡II§Øf,æN!É×q—J+7wF¬]‰¯[¯Ë™±£}˜{è¾ýKÌ<Ío޶¶Žµ½óÓ]ºx•¾žkk‡ÑㇰyfÍX ££Û¹[«^};Ê)ª°¨pì„oÍ-ý¼<[¹¹o ÛMD›7FôèÞgôø!c½‡~Ó­w؆²jcóƈÁ^ÃV®Zb`ªÆ´mKØî¡CFΜí«o¢Z“ž‘¯‚QŽM_]çDäÞÆÃ£]'"rqnÁ,@=r‚ŠŠJß]¥–¹( HKKÐP7æãÉ„c]»|ÃÍ ¡QgòÄéD´jÍ2"Ú´~‡Gû΃‡öbÏõœ™ݺþ×­ë³güÀì"™‡‹˜Î±üÌr#,KcøÛÁ# î~èp”Ô¥j Ãü¾p:ªB‚"å× §Tuá«[æø±“"¶Eæä¼néîèÖ¶qrò_ «aü¡×·=ØßIÓµ´¦õÊp¾ØZþ°Ü{â¯o{¬X¾Ž¨%×äx)zõf*òþ‘¬‘CþŽRîFwW´¸;ó«zæ—˜”ðýÿSTUÕ,-¬Ï¹Qæ °âÌ[‘ò%ó0)ªªªövŽ+×¶kÛ±Zs;"—.ÿA]]cŲµ}ûxUš•Ö*Çx÷^rëvNÆF&)ÉB8½ã]A%ƒ·6Öh¢»—ÛuXiçlÊì&̯ ˜Ÿ¯ß¸ä;·N\¼yõQ+7÷štZ˜‡}Åœ¼uûÆÿ|GU¯Æß½—|íâý5?môŸ5±*XiÍsŒ}^ÛÎ míe=" j˜w¯ÁɼNG‡ÓÑá”y]ü÷Æl°ÿË;ÊQh8á6æÆ:ÔR~ÅIƒùUóc›æææèë¯ÚäÙýIs+"z÷î­ž±J÷^íHš®Ù½”;Ý{µ34U—%d&¥¥¡Fùµè«´nçdçhbÒ îÚÜòÍ­µ;GÒÄ+e¡¦ªFDÅEE$cÉêà@fyÞ«W/][;0ëõ ›»ÙIüC Ï›9g2·%wîÞîúMvÕœ²Ä"åèK’4±ÈŸ‚Bµµu\œ[™T+­IŽ‘Ñãºrá^wÏ^ðsµÇ»„×à_nn¢æÓ¨ù4º&ošÄëxEÌ—”nÎÆ¨%uXC÷£pÒ`~ÕÅüBÖ„›š˜õêשi ë¸ø˜©¾3Ÿ>}réòŸçþL,,,œ>í{6'W§l²ß¸ ÏíÚ¥¸W¨QN-GãÎÞ½—±ýÀ‡ï׬ b¿Š‰<öæMîâ%ß“lñJ1²²3GÌãñ—®‘•gmèÊÀ%k^géêê¹µlÃHšîÝ!h3‰{víqüHRèÆÕLþÉ~ã¼ MòFê’Yb‘rô%I†X¤H$š;Zà’5UÐJáAu÷® ¼PFTWÞ='ÃæD"zÿü¿_”´°\£…ò™¸ñ¨à N̯º˜_ß>^}ûxÅÅÇŒã5uº÷ß)YV–6Q1ûTTT9q'öÚºw g»“ïÜ"¢Î»q‹âfÄÞ®Ñ Çë[ |¼§þ0o©¬ZÚ´jÇl´nÕ–Çã½}ûùpÚ·ëDD?"¢{÷’‰ˆYN}÷^²Ô?}ú4jÌ ôô§+—‡x J2Vo¯[³yó–П·o:°ïˆ÷øÉ+~ú±sÇn+W/YøÏuBwÏ^<ïÕ«—ÌÇ»woåÍLŠKââÒ"1)á^ÊÝ;£ÆFnØìâÒ‚iv§ž"1ígì5Œ‘Ùyšö„ù–[Ô¬¹SºtêÆ¨ÚWM+…cUÓ»b}ve‚ÙëjK]ʼN™×Ióß7«jQÎCz~ás%5úøJì×%ÿ¯TMPx/è¬Áüª™ùM™6þy†=¬SG“ÏçûNô?yêÌI¿¹<Þç2¹:eŽœˆètâÉÿ8Y¹Bf\¡FEjáñxŒÆ #+ieeC²Å+¹Ìþ~êù IKÖLüŸŸ¬V11甔”“𹏾zýrɲùšu4{÷ì϶„›ßѱÉÎ][ó ò¥V*K,R޾$I‹\¸ ‰“3ó©Ê´R8FP«¼+@x]‹i:‘®­£k!ÔôßG|ìÑ™™ôâÚç<ֽ鸏r_ž…Ÿ+¨ñæ—–þÔÝ£i'O7[;æµAƒ~—™õâÍ›\fÆW*B¶¹µl3bÔ@Å…äÄ„©EŒþƒºii ‘\ñJ–áD´`áLùš}}ž®‘2ŸÏg–‚Œ1aý¦5Ӧ΋ªYÖ¯ûù@ô^Óu¥–)K,R޾$I‹\³vù´>LË™ŠU+…cÕÝ»‚rÂ|RÞ‡WÅ[ûU”ÑHî}¥Êm^Ù$É̯læW\\2?`Æê•¼ÇO® î­œZÊ@QQц°à}û#’N]WQQ©…VZ]c\(üdíñ®¸ö«LäÍ^'&%¸{450U3³ÔjÛÁ¥rÌ‹•£èóôMT»Xü¸l~aa¡|!¹]q$&%xtnad¦Ñ¢•ýè½5ÞD¾Ö”Œ­ƒ‘@Ÿ'|þ,,&ÐçÙ:áw[{¨"3‚Ý_øãœoºõVtYB®¥ ˜ªÅÅÇŠ9©xlÍ žÔ¤—mUˬñûå¼ÿn‚ÏpS‹zlÿH¦(؇bîܽݬeÃf-Þ¹{ý ä#ïÑF_¿qii©gO_711[¾bUút`ÚãÜù?Ì^$ÐøûÍ­"]æ=qÄâ…+ô"¦/_±h°×0ªnSà _·ŽŽMÎ$þ‘žþôÈo‡TTTŽüvȵE+"jܸ)æZjCT]¥Úc×ÐáeƧšQKxõ¢°´»ÔÔ_h±ÌrìÞšw¦‚V.Î~™•|#UGGWVŠ‚ÎÎî3,Y6ŸÑóY¸`ß/‡à¨øò/‰£üʽž»ø»{/¹[Ï¶Ææš»¶d®êX¡V×Ö$'Ô[%ÑPטé?ˆvý²Jóvß?/œuqµµu0b´`Ùf›ZÔcÖ’4EUɽ¸ ¬,uëÖ{ñâùÍ›×LŒMß#Ö!b{)Ò>oÆl_ãúu6o õ:ÖÔ¢«uU{¦d$qjÜ”ˆn'ßüóBÒ¤ÿMûóB£ãÛØ± IÜèàJ Ç5·Ö暊˜p­<‡ IDATÓÖ}Þ›WÛvpiÛÁåÆÍ«}žs ª)o®Ö± V¯Xf©`=×+ê*IúIîˆÌ$Çt"’5¬+2þt]èJw¦ÌÇØCØèøøŽâN‹é¦s¿’:þŠ›r8=wÖBn$-™¢`Ø Æå+úôЧ׀K—ÿdRÜ=š® ]™žþTÖ.%fµ1¼S~•zͱ-2'«xÊ´ñ/ß·;öú+~Ó½é߃]8{ûÁÔ™s>/"”£Þ*CCc" Óåä‘ü©Ïš;å§¡Ñ‘¿-˜ÉmöoqgV2%U¥îÅ*°²Dýz4ýYÚ÷ üíÌ¢îg;„9d±½i uóìùû±óófôíãuüHRHèO0ÍÆŽM‰hÛŽÍššuçÎ^¨¢¬òóö0"rlÔDÊÑþqé¼7orø<„ˆ‰wêàIDÑ1ûŸ¦=yšö$*z)¤óUxÉ÷b$t]dÈby^f|êÓ{`ŸÞ‰HrXçúRKxýúÕŽˆð½=<º´x’úxõO™ô% ¶…ï4ð;nf1Ýt©pÇ_ÉqSÂðŸ×›[kïܵEV ™Yj9·°9þû9€x½ÉÑÒÔ«§•û&‡IYýÓÆ'©=º´èÑÛcGDøëׯÄv)1¨©”üh#£üª££ûäÁKîâfûÕ‹B%%%csͼ¼L~•ìç!V…m^÷"3£¸¸˜Ïç¿Î,bò¿Î,b®ªs²Šu •D"·jɇ-ÒÒRšYÚX7¼vé¾,/ÖÀn™i|*üT\\Ìãñ^gÑêàÀ aÁ¯_¿bCD¦jÏž¼‘ÈÐT]Ö^}ÞËŒO¬J”wîÞîïåyÿÎsÉf°{)Ò>/'«˜Çãq7d‘/œ[­ Ù—/TŠ•z°7n^íÐÅ•ˆ¼ ݾußࡽ˜[œ>y¹™‹«˜©°v•›-24UÏ/ÈÏæ˜ª1)Æõëä}ÌcR44ê„oŒ5n°†F¶î<ïìÙÓyóvïˆêÛÇ ¡ÄA½–˜€•VMË”\¢)éñú<%%¥—Ÿ´ øLЬ™;Ú÷–ù"#&긺šºä°Îô¥6ؤAÝÞ3qùÒ5uØtÉÑVr°c6D"‘¶ŸMaGRÉqS6ö†Ñ‘¿‰D¢C¾y|?[j ;?s¶oJ²Pê`-cXÛ\½BD®­¥d²yòò>̘¹}çæ:u4Ÿ?•¢p_b†J°[<ÚXÉÈ›½S~%"u5uúïû˜ŸY'g":røtn¶(ûy­\µäy†06ê1oÓý§>Ùê­R,òc^pÈ "5b<•æÆ}Æ{wÇ¾ÌøÄþHÖ¬ ŠÜäði¶1’Šª’{G•Å{âˆG?È/È¿{ï6[š†ºFÆ‹ç’{)ÒîLƒ,Ñ+±_Q™ÿ*ÈŒ*¢IëêÙ£/uóìÉØT5_®´°……ý+ýËE1`öù|~^Þ‡¶m<Ú·ë”÷1Ïç{´ïLXò•ÎuÍk€•VZ3$=ž¦fÝ¢¢¢?/žeSdÈ\þ7idJÊ}¿bzÉa;èKu•É7R×®»{ï¶“‹åôY“Î_HbÒÍë[ˆ¶’ƒ®®Þ_·®‹-Ì`GR©ã¦,Z¹¹3Ñ…_IV ÓR1Ü\ÛÄ9wä`K×ÖLÊù IÓgMrr±¼{ïöÚÕaÉ7RÅv)1\Ym ¯%•_}'M×Ò˜ZÔ˹iýöíÅþäFœ ¢¢Òw`×/iœ¹•àØ‰x¿¹S|g–jÇàð—ÎÓ7Qeÿß1`p÷C‡?¿~VRQUr/©tïÖkÈw½Í-«Ö,[ò3“8aœos7;Éi ŠºšºuCeeeÏ.=ˆ¨[מDdeiÑʢ€ --AÿAŸßœ'&¬££ëâÜ‚ˆÜÛxx´ëDD.Î-´µuÐç |çPËëRí`ld£¦æ²Jûº×„ŠÔŽ«Ö êv¦W%=žïDUUÕ½=ØEF䨘}wîÞn`£Ã+9¬—ˆ®®Þ¸1Å'ùãJs‹™³}™ô… Çû Û÷ë. u YûúMžÕ½Wû„S'¤~+9nJ]«ýOu?,÷ž8ÂëÛ+–¯“•ÂH“Í7m]p¸œ€]•Î| ˜¿,x]P𺠀ù˘”™³}˜[œùãʱø¤qc&êêꉵ¼Ä  ¦ÝëêçUkØu*ÌæWÍP×®7fbÙ“ÊQg©Q“úÂçÏ¥dêëThEe3 *oú/<¢ša¥epŒU\Á:þhl`PÀŸI·àH¿ŠÝbqH%ƒ·6€tNÿ^š!|þŒˆ¤ÆÖ%ØÕqÚ×Û52vœì7nÞœÅè €ðj5¶6v)÷ïrC©zgrôFú¸ßÁÉŒÉàÙýIs+"z÷î­ž±J÷^íJ{˜bí—UaÑH\–TÙ+“ÜlQêÃWx| ¼€Úΰ¡£÷ìÝÁM‘úð±½Ñ˜ÈcoÞä.^ò=)¬t&¦#ÉLb‘“¤¥,ñ5®r¨Ti6ÿ™›ädçf‹¦úÎ|úôɥ˞û3±°°y‰F)ó?í—U¬ €ðjv ýý@,QRò¨M«vÌFëVmy<ÞÛ·oدڷëDD?"¢ä;·ˆˆyíÆÍ«lž>½r£ö{÷’‰¨]ÛŽDt÷^²¬¶¥¦>f³1„lXåàdææîHD©O‹å—ó­½]£?Ž×·, \л×+K›¨˜}‰I Žœº{ö*íaÊi?·"ªÚ³­€ð*„.»³Û’zgÿ¸QÙz£Œ\š•• •¤tÆ"¦#)«a’rl’âk\)U9ÒlGŸÞºù—wïÞnÛÆçó}'úŒIÙ)6å`läü…3…ÂtX2̯‚̯–P\\2?`Æê•¼ÇO†•ÖˬâŠ~l#köOÂ|5 Ì^ƒ*JbR‚»GSS53K­¶\ägž0C(Lç¾¥VýuÛ³o'ý²wwæ@DÝ_øãœoºõ=Ò½Q5ƒ°J›×ç*Û”¡^v—ó’ MÕ¿_àÓjÊèP5ñõ—––zöôu³å+IÍÃNfp…åÏÄ,Y´r‚ÏðoݰjÛ–½èg¸Ø5tx™ñ ýPÂt*iÆšùö ç¶oÆl_ãúu6o õ:ÖÔ¢^èÆÕ² jX‹¾¶ ÊXbx8.zîüiÂçÏ,,¬\ݧ÷@Æ÷ÅÇ&ôîßYS³®0õ-;­Â_‘µÍ’––êÔÌòöõ'ææm;¸, Xndh%¢ænvÿ<Ô;´§¬>—Z>·&™iý]\÷îŽ53­ßß«³^Q²Á_Ån±öá5@xý™¸ø˜c¼tttŸ0Û***ÙÏ $]¥¡©z~A~¦ð£¡©º,ŸÉÍ/«Æ «Â6¯{‘™Q\\Ìçó_gI–,¶£[Ë6ÝOü㪹¹…dk3Ÿ}lîf×ͳ§ŠŠJ©çÿ’úæ&ùN[ ÏËÉ*æñxŠ<þ¸:8pCXðëׯ˜ö‘©Ú³'oE$24U—ÕçbåKÂÍ#–Y²Á¯k˜ŸU”)ÓÆ?ÏZZZQ:šŸM¶¤Ie®Öo‰+j6tØ»;öeÆ'Öë övâè9%%¥Ä¤œ@G–ž:×U2*éII§¤úI]+ISO—,YŒÝ;£UUTGŽ”_/ÙZ©:ëòý¶¤Ó&¯S•ÊšuA‘{ã>ͪ¿›×·8“øGb¢<‡/V¾d!ÜΆMÁÛ¶ìݰ©t‚bUðrñË›$¦Os·Ë7bf×ƒŠˆÞ”””ÚÚ.]SuJ®":ë}ž¶¶Îúµ[Iâu¡˜ýe‹C@æØñÒùG?àÃ\a2ÿ™ú¼ã¿9v"^ Ï›>kqVb°wðõŒUZ·s²s4aµ½ú<æ12E2³ÜK¹Ó½W;CSuî.\•´e=券q£ŠÛÉ7;yº›kvòt»|S ÏcÖ˜2ÙØm"Š>¸ßÁÉLNùÜ »¶©‹VµK¬W/ ¯\¸×ݳWÕ)™ÑYÿuoœªªê×íœÔ‡¯úöñb¶¹°€ðÊ“Á^þÞgÈ áÜa87[táìíSfΙ¼jÅz÷Öí§N›àçïݶÇOA¡’…;SXXx÷^rÄö>¼_³.ˆI—ú0–¬Ì “ýÆ]¸xn×Î(fÔk ›-b[dNV±ä6M™6þâ¥óûvÇ^¿qÅoº·Ô]ˆhÊ´ ×®_Þ»ëàµë—§ú{³A7à`6ügNttl’“UÌ|”U>Â@­kqÀ×6A¬½®>Ô¶µ×îf4q±¼uãIÃFÆLŒ()LvåêÅ.Ý[ÑÇ/¸¶hEœåbzg9YÅ:†J"‘ˆùJIIéeÆ'm~‰™ÙV1¢fYÂ|fªO²1L!¯^*))Inçf‹d‰¸1Ù>WT¿NÞǼ,a¾©š†FŒ´÷²´/»~Óæò• uëÖóñžºpA ¬òåüÆÅ2(¢­V¬ŽÞµÜ- ñ^e‚ÙkŽ¡Ñ‹gy†FlŠ˜0ÙÇüÓgMjÐÀ²A˳}?æ”âdÿÕ;ãñx"Ñ?Û¦fÝ¢¢¢?/žU$3‹c#'":xRjcØlÜ@™»M²EÜIJ984&¢sçÏ‘ƒ½£œ.:røôÖÍ¿¼{÷vÛŽ0©å—(”‰[ð„×P{&›5gò­Û7ÂÖï[¿ã¯[×gÏ¢`9¾ýUUU{ôö(UíB¶¹µl3bÔ?o0•TI+ED܈(tí–f.®ßèçâÜbýº­ò®@LÕ½'Ž024fÞ{'Y~©àØ%Ú°4@µ7 À×6Á¯z´5Ôª [EtÞÚ`¥°Ì*âk’×Åâf¯AÕõ5}Þö›©œ¤ )|õĉ”Öoè)7w³;þû‘*ØÂ¸ø˜ÎÝZ™YjYØêöîß¹’kOLJp÷hj`ªff©Õ¶ƒK¹—ßP·=ûvÑ/{wôÔ  ^ƒjIÂéßË«(1у¯>áIS@Ù¸yåÑ£¿øùWžV´‚Ó;"ÂGŒñªWOëÒ¹ä«Sä/ܯ|ýÆ%ß¹•pââÍ«Z¹¹—ØòÒNs,Y´2dýO………¡V-]üL ¼Õ[»”ûw¹®° jÁŠŒ†¦êË‚迓ܲD‚¹JÃñGcÍ­µ¹ZL ³Ô€Š|™?1Árî·æÖÚ¿“ïÄļ7[ÉV7'¢õ«ˆhåò33s}=ƒÕ+7Èq³R%Û%]1›"§^æ!ÚÜÜ}=ƒàU›ÄZ^Úã’ôÞM›4snÚÜÇw”‹s‹&N.^8ëâjkë`Äô-­´¶7€Ï¯A•fØÐÑ{öîঔA-¸Dâcò ò7m^Ǧ02À’"¾’JÃ?.÷æMîÁŸ=µ˜0”/M[XÛX7 å, üA²–±†&&%ìßsX˜úîàã Ì-lžXí_˜ Âk¨X¶ïÜLDÓýæ ÚÓýæÑÖmåùJ>ß®¡Cðª0" ^Ħäoß¹yûÎÍŸ $÷ÊÉyMDÜ{÷î­‹s‹_"bˆHøüÙèñC¬í Ì­µ‡ì/¦ÓgÍIbù‡@Ÿgf©Õ½W»«×.qË—ÌÆ|T¤ ¯ ÜHKK%"##"244&¢§i©ba«djeeCDiéŸs,üiõÒUk–-\(YKØÆ6Ö §Íð±²ÓoÝÎéÄÉ£Däã;*öÐMëwŽ9yä·C“¦ŽeóGl‹ÌÉ*æ–ÀÌO¿zQxäЩ ÏMö'õpr³E©_9Ø;zvíQÚ*”/n,ˆˆxjUÎ!ðÔx´ø¡¹›Ý£¿$ßH­_¿AzúÓÆ.öv.¿Ã„ÔÜJ¹)Éɹwp¶¶²½~ù“þ:³¨CWwæ+Ú|±}ÙP>2jÏ’Àzzú§d™ZÔ{ÿþû­šªZ¦ð#SÚ«…JJJÜJwîÚ²aSpZZêÇüDÄçó_g±ß²ó?ö÷òÌÊÊ<õû%--"UT} +€Úf¯µ‘áß!¢µ¡+sssÖ†®$¢ñc'ÉÉ_\\|ÿÁ½™s'Ñ ÿyŸ}(ŸŸtêZbÂUOÊŠ‹¡Ãû^¸xÎÐȸƒG"Òª' ¢–®­‰è—ˆ˜—Ÿr³E™Âl~ÉÀ7`ñœSŽÆ9rø4Ó ©Í›ð¿a·nßÜ»;VK«ÔU(_0Íø×Ô¦ÙëÂÂÂu¡+÷î ÓÍÍ-Æ™èã=•ÏçËš½VRRª[·^#‡Æ¾>þýú¢ÿÎjssrS 활ü×Ë—Ù*ªª›,ûqµ[Ë6/23.žsêôï™Y/¹î<´XQ!V­ Yñúõ+¶Lnf± 6ƒ"UT˜½øA@m ¯Âk¨ °8„× ¼á5á5¯¨Ž(£ µrT€®1iP½à©ñÐ 5‰Ú£5 Ó-/ó@x ¨®ñ1‹Ø{U¤òu#à÷ïßM›ásôØá÷ïßq[²1líü€ˆÎk8§5ÕÛÀt"æðPs†±” šZ.C±A+g¿ÌJ¾‘ª££Ë&¾|™} z/Î#Ô0°öP{¹{/¹[Ï¶Ææš»¶¼s÷6:3†¦êË‚ˆ(þh¬¹µ6›.d³Ûl~±l ‡â£çÎZÈ­‰hYP€÷øÉ8 €ðªRC^©Ñ­,¦LñÒù}»c¯ß¸â7Ý›MMÈ/Èß´yý¸tÞ›7¹QûŠíË½ææ—JF†0üçõæÖÚ;wmaRîܽtöÔ·ƒGà<@ ƒW{ìJpjUÎ!ðÔxR×`H.Ϻ`CÖ*6ÝØ\3/¢¢’ý¼€ùêuf‘Ž¡“ÇÐT=¿ ?SøÑÐT8ë¼™b%óK={ÃèÈßD"ÑÀ!ß<¾ŸMDý¼<‡ >ü»1}^MZì(Ðǰ"ÓnL¦[K̳׀ÚK'g":røtn¶(ûyÁgÏÈÿì-,¬ˆ()離®¦NDïß¿“š_êôy+7w‘HDDJ|%&åô™“¾SÇ29kÛ³SP³Ax ¨½lZ¿Ã£}çÁC{ÉYR²( HKKàõm6ÅwÒt--©E=Å+ZøÃrï‰#¼¾í±bù? Hr³EÌáQ}¨Yà.à_wP}‡T>wï%·nçdld’’,„©È‹C¨šÜag×8•J §* ½WœR‡T©ó¢`ò³•W«°8Êî@Ûvpnhkºn+zTqñ1»µ2³Ô²°ÕíÝ¿ó—[ly­8*÷¢ôŒU,êõèíqèpÎ{¡CW>ïÚõËÌÇk×/ ôyššV‚iýuëzŸ]Ì­µõMT­ìô=:·øê‚ðJ 7[ôêEá• ÷º{öBo€rgGDøˆ1^õêi]:—|õbŠƒ½cUþ-|á„_–0ÿÄÑs"7x÷ží8û5ƒqc|ˆˆòŒÚCD>ÞS•••¿ÜfJdì„¡‰I û÷¦¾;xàxs‹r±U„×@u%dý*"Z¹<ÄÌÌ\_Ï`õÊ D”žþtø¨¶º¶ºÃFöOOíè[GIDATJéI>ÏÆÞ0b÷ÏDôóöMMš[髈 S²ÛÂçÏFbmo`n­=ld¡0]j3ØÝÍ,µº÷jwõÚ%É¢Ø Å›'vðùv ‚W…Qðº YÍ{‘™áã;ÊÎÑDÛ€/§Æ[·o¸wpfó0H-Û6˜\¹3hàwuëÖ‹ŽÙ_TTTTT³¿NÍ1#½%G–•ÊIäÚ¤ÔÚsr^у÷Þ½{ëâÜâ—ˆYõJšå¡ÃQ¦jßë“__Ž‚Er€ÝAŬ½æ©}Ñ`†Çþª_»T!©2íVÏX¥°°ðų|UßJð©  ñÔ5{»FܳÀ¶¡Ï€.‰I ¿î324îØµeÇ]Eÿ.kíuQQÑ­Û7:tqmäÐøÂÙÛbß²ož˜m0Eå}Ì3®_‡QÔڼþƒº:ýûOA¡cGû¨ªªÊêNžn×®_f™òåoĶÈ~}ñx¼lÒ_ËåΘí»mGXlÔ ‘H4`p÷ ã|×ü´‘$Vù³§@Ò´”””^½(”4`ù6ID'Ný~¾ÿ£¿Q#‡ÆKÿÔ­kOÉz¹fÉ$†®Ýê?Ó§w¯Û·ìSQQ)›Ç“zŠ^*>¼ö:^Æ£»#¼®váu‹ð2ž²«>¼*^É”Ên]\m?ytñ\2wYˆIƒº>¼Ïæ‹Hdhª®©YW˜ú–‰ ^½(TRRb£¿éÞ»÷loÑÜMC£N—ÎÝý§Î‹?L-êqu$ÕTÕ2…%Ãë»¶lØœ––ú1ÿ#ñùü×™E²ÂkÅ›'5¼NNþ˽ƒ³µ•íõˤ6IÌH{¯¡QGN‡ׯ“÷1MdÊ—s¼LÛJ?ý¯Œ–ÀÛÂû*áõ—4¸Ì.÷vòͶ\† -‰öGî¾ráž­dxÍžYáuQQ‘®‘²â6É’––µgIà==ý¿S²¤Ö+–Èãñ¬­l/¿£¬¬\f‡G_êµ™?t€Ý–#S'Ï$¢y?L Ó…Âô9óüˆ¨¹‹+;æìÙÓDÔÌùóÓZbbèÚ­÷ï<=Ò;1)aSØZúWšýåËl&CK×ÖDôKDÌËŒO¹Ù¢LáG©ÍX<çÁÔ£qgŽ>MDÅÅÅ’E±(Þ<1Š‹‹ï?¸7sîd"šá?OVóþIÜ»ãÓ§OrjlÔȉ›Xâñ–6¶†é*ŽScç–®­ÇÇÄ9Ø­kO&¶–„=b¦%h=x˜#ß&%:¼ï…‹ç Œ;xt!"­z9õrYöãêG?˜6ãEEEåÛ¯etú5ï¸Y—Yîk7±v;~줈m‘99¯[º;ºµmœœümÞÑ£{ŸÑ㇌õúM·ÞavÊ1![#ÿ™> míƒW‡Ñ4¿9ÚÚ:ÖöŒim Û=tÈÈ™³}õMTåØÛ¬ ttt;wkÕ«oG6Q¬(Å›'†¾‰j×oÚˆD¢]ÛŒ>NVó6oŒì5låª%¦jlŠd¡k·4vl2`p÷C¾a«PðxaºåÎØÑ>ïÞ½}÷î­ïDÿ3‹™ÖÒÅ«ôõ \[;Œ?D¾MJRXT8v·斂~^ž­ÜÜ·„íV°ÁS|gÌ_öËÞ£Ç ÆÚk@EypùA–/y/±Å!ÑÝ]."cqH~Aþ¢çFÇì'"¯C\´RMU­\"]*ié¡Ô6¡|+­´¢vD„/]þƒººÆŠekûöñ"¢÷ïßM›ásôØá÷ïßqß/GM¶ª-)³ÝŠÈUE­´‹C@¿êþZ‹CÊlºb æmQô¾dqHí5,T‰™•2/Åþ—ÕÁaá!sg/œ;{aXxÈšµËËå@Ê&äô…ªjå«õ…Eݽ—|íâý5?môŸ5‘I Z¹8ûeVòT¶ärlíU^5²Û2_6€Zä ·ðª é–ùò”„×€òôø 9ýèîŸ7nl Cý(å×RÕy` è7¤¿ÁìÇ{)wº÷jghªÎL¯Š}èót ÿyžFL­ÉÜZû·ãqܯîÞKîÖ³­±¹fÇ®-ïܽMDñGcÍ­µ¥Þe–ªªÆ¾AõµÃ ÇIB”JR£J²Rn†èƒûœÌ¤ŠX•#?…jkë¸8·062aRÅGϵPGG·´E½¹{ò¯¹õÿš[ÿÍÝ“bÁ4³Áþ¯ A¶"vËmÿÓ}“¯ûÕÍ8¶?üÚÃÉg'ëï©_Oý“ÏNŠÓÌû¿2ƒlEL—ÛÎÉg'×Ý^wÅ ˜.Âk@5Œ³ÍmÔ’:¬¡û¥{[F†ˆmm=þŒˆ&û»pñÜ®QÌôªØG"’ªÆyìÍ›ÜÅK¾ç&N™6þâ¥óûvÇ^¿qÅoº7ý¸tÞ›7¹H™wOKO%"KKkn"3'}áìíSfΙ̦Gl‹ÌÉ*–Ü–Z)7›ÿÌ‰ŽŽMr²Š+úÖ­H$š;Zà’5lW‡ÿ¼ÞÜZ{ç®-¥*'í×i#Â-F„§GJ_…ÉL·U‘YáRÙ­ qûÙI/N¬Æï½ö0íü´ðöááíÃýÏK7if’Xô?Q%Ï—Êt{4è‘Ô7iõ_0ÝŠE]àºéÊ.ÊĈGoJU¸±±é“Ô¿sssD$""3"J¾s‹ˆ:wìÆäûÈÆŽbEµo׉ˆ?~ÄMdöí?¨ݸy•ˆRSQ»¶%c^ßâñ“GOžüÍ]²aUØæu/23ˆ(õéc6½Oïl”ÏÝ–Z)7›½]£?Ž×·øxO]¸ °Ä »Ìë°gÍÒ¥S·N=™ZõþSçL›2{àoÆŒúŸâåäg=ÒjäI$ú;ë‘Xü^9X¡v+hÒ‹x¼Â÷/á4jÞ<ò¬ï)‰½ùI3^è«›´‚õjЋG¼—aº f¯ÿù"ùe+­ÄA¡ Mäõ<{èûѱ‘Nüç¾­ØGMͺEEE^<+VÔ¹ógˆÈÊʆ›ØÄÉ™ˆŽ>›-Ê~^@DVlf1¤ªª­\µäy†06êýWLŠ+%&%Y)7ۑç·nþåÝ»·Ûv„‘‹Cʶ¤{Ià‚&NΣG~ž;oåæÎ\“(ñK§h¦f`óæÞoîžTÕÿg^_YSïCÚõœ¿â>@*ŸrŸ—ÊËðW!v˃ØK­ÃFËægœ|vÒZë“ÖS×»ž}=.õ³Ik(k<ÿPn&]¦Ë#˜.Âk@µÑ+´–Ù3ðñžºrÕ’•«–øxO5cmÙæÖ²ÍˆQ™¸Sì£ïDUUÕ½=ÄŠê?¨›––`Q@7qÓúí;Ú‹bii ˜©e1¤ªª9AEE¥ïÀ®Š”d¥\ MÕ½'Ž024^¹<¤T}Å}ϰ¬ –5k—O›áÃ4€yÖ{OáõmËוª^ó!kSw{§þâc>d-“bÔmVʪöoîœ`ótô½`÷u×^W¦Ý‚jÍÚ6k½½}’|Ö¶ùǤg5ÕþpûéŸMÚ×Ñ×îW»ÊY{ Ó­Ê@˜ °¿}óQŽ'©²om,GE¼*BiH _®#ÌW¢ÝVÚ[+È ´‡ •†¬¿²*(ÌW¢é~•·6ÖN Ì(0qR¥(킲£å«$XÛì6.>¦s·Vf–Z¶º½ûw®¾}˜_ÿýÿ†Œ62þ~ù¾’£´Ü¹{»YˆÍZ6d$wàrËĤw¦¦jf–Zm;¸TNØÊUIÒ7Qmìbñã²ù………òw±±7,ñ9l&§Ž¡’s f…!I»›÷% ¼ÔÒ¨º„‰ zÙíJ¤KF_»”ù‡  ö¼â…ÉA-Y6ú´ï§Oû~ià˜nEàë7.ùέ„o^}ÔÊÍ*ýu³is»uí¼.hæ5ò½zÔ¯GýW JVΗŸB‚ÃYÖPËå¸^jWT `·_ ©é·“ovòt36×ìäév;ù&qôÎ MÕ—‘˜ê97”K—¹rUع%°Å*Ò©Úól±ŠhÉ‹)ÓKm’‚\¾r¡O¯}z ¸tùO&ÅÝ£éºÐ•ééOeíRb˜.—÷ïßQnn޾žAðªMRÏó'K¿_êKôŒUZ·s²s41iPwmˆ<)n u™þóˆh×/Ûä[ˆH$ªSG“ˆ¦Ïštä·CDtä·CÓgM’U²®ŽžØ±pË_Ⱦ¶á5På*‘>eÚ„k×/ïÝuðÚõËSý?k¶ÄÇ&ääoÚ¼Žˆ¤ªž3Û²äÒ¹ÈRa›WV¤%,RµçÔ’—T¦§2/Xz“£¥%¨WO+÷M“²ú§OR{tiÑ£·ÇŽˆðׯ_‰íRbðŸ+Ã5á¦&f½úujÚÂ:.>Fêùbú%O´,ó;w¦°°ðî½äˆí>|x¿f]ü6‘P˜.'@Ÿ7Îû»¨ýG‰è§ Ð[âÆîŒØòSP¨dNC¥AC{.]#öc!Î]—µ¡+—¬yYTÚ《å e_±~£zñ…÷U«ÎTvëâjûøÉ£‹ç’¹ËBŒë×Éû˜—%Ì70UÓШ“‘öžéÃ×™EÌ{Fs³E]¿isùÊ…ºuë1ªçÜçÍ5óò>0E©¨¨d?/|´‘Ua/..æóù¯3‹¸%°ÛŠ´„m¶s ›'©ÿ’%"‘½¡•¥Í+™üL jªj™ÂŸ —h'“’%ÌWUU¥/{ÒÚÞàê…"rmíð(%“MÏËû0?`æö›ëÔÑ|þôäŽ%f¨Ž&]q.7.>fÄ/Ý'^JšÐ«…JJJ’'Z–ù±v•“U¬c¨$‰¤>Ën¤¥¥:5³´±nxíÒ}Yg*ûyAÀâÙn®mø–ˆÎ$þÑw`×GÏ1 Z¸9s³E"‘èÜŸ‰SüÆß¸ò8zsŸù>½wó–P":°ïˆ®®žÔJñh#à+Pi²¯g¼Š…T‰t‡Æô¯¤:7ìæó?ÐbªçêjêôïýzYré\$Uع%°(Ò©Úó jÉ‹)Ós›TÚÅ!n®m⎌;r°¥kk&åü…¤é³&9¹XÞ½w{íê°ä©b»”˜¡úštE´vÊ´ñÏ3„Ìfé…¤ 1 ý’'ZÖKX»âñx"Q •÷1/8d1^Ž…¨¨¨,  Y‘››óáÃûUÁ±Q'–.`dF¥’“ûZ,EC]#ãÅ?â僽†8zNII)1)¡Tgá5Uú“:e#tãjãúu*´U¿ª/R%ÒC×niæâú݈~.Î-Ö¯Û*uG1ÕsßIÓµ´¦õ¨$¹tIvn Ÿ­K–°HÕžgPPK^\™^Z“¤Z¦äFÀüeÁë‚‚×Ì_Ƥ̜íÛÀÜâÌWŽÅ'3QrÞ±Ä €KZúSw¦<Ýlm옵ײΗä‰.ÃK$1·;ïï7wŠïLù95Ô5¼Çû. øaÑ쥋êÔÑsÚÔÙs¾Ÿ*iN:†J>¾£Öü´Qì« ã|›»Ù±‹°u”ù|~.¥j0‡ª.<5é"¬!¦+«LÉ¥Tõ²Åž¿Ô ç¸±W®+s#íMNý~ÉÌ̼BÃë/éXY·Ja·µ¡0½QSs#CãûwžWë ïÚcÒ0Ýò2et  6{ÆÃe±õ©e«èÁÔa#û{ví±|ið—48+;³BckÊGçffæA_fóTG°8P¥ÅÕ‹?kn­Í¦‹Ù춤™dP.¦3%«d–Aßö´²´ù9|³ÜP¬µž=ÜÿßÞÝEQÇqÿ'jr¦OÊ0(:Zè SùX)æC¦ £•Nã8Ì ("ŠÎeH„š2BæCM£ 5I*!– ¢ –ãSàÃ@¨£ˆ()ˆ£€žý±ÍÎv»p€X¼_Ãw¿ýÝo÷nvv?·÷ã»C†y !jkïövsœ8e”К¬b0êÌf³ü“el\„Ñ]//òðê±íë­òÓ¨ÂÜúvÛòEjØ¢y^=R?_'-*ÉcjÖ ³X£ºÎ”zd‹ŽþrIéÅCûOxzz©·¶òÚƒa#úN˜ìè蘛·¯àÐNûÔ”¥£ª*„ë’7nN¾}û/ic¤¥wnšu:òôB×>]6˜ÍfN§Y̵‰žêÑ4_Îi… ¬ s¯ÑŠÝƒ«×:‚ÆÊ“)kŠyyy !òóóäum)ÍdÔu¦Ô#[HÛž¡wÔÏTW_§ÞZ;;»°ÐÈ™éyŒX*ek«•L¤l-„X¿!)}Çž¬]”E¯ä€n‘Ô}}ýv¤eVU4X½Q‚fÏÆr?€x  #\63hsÊ“­4%9;fΚ$·X­¦I]gJ=²7W÷´íEÅgbbÃ5·6èíw*oÞ¨©©ž9cvK?‡YÁsfOüi×Í霒¼5>!Îè®·Z€¯ù=JüŠÀ†POá—Êsç‹^5ØÍÕýBQ¹Œl6›7oMYnŠZ·fcÈüðöþ‡Ó ¿°w°¯ñLAKw óè\‡B{{{_Ÿ‰ ëmgä’Ò‹ÆÇ¾8õý¹!ÿý¢|Ê™žñ@'òôâ㓌Üßׯª¢¡ƒ} @¼mƒ ë`×%^€¶Áìs°ëvrTˆ×ñl“ÕÛ¸Xí/·ìÌLø‚çŽh§˜{  ]FaaÃU/–›¢Ê¯_+½PÙ†oVF­ ^@;HçO[åʯ_B{?×&ߤ׌ÜîÚ&‡hßAYúsñpú8ɤlñì×3;g·Ôò¬‹½PMÀhljGÆÎïü÷QÏÖÐl×\µz|éñ¹óE“Gºyv7~xñ¹?„{~Îôì×Ó¢gÓ³D F]l\„Ñ]¯\…ü ðèaÿ?W齈×Ðb{2sëêë6mÙ ·ü˜¾·¦¦ú£Uˤ§:F`mìbpdtè ACîÜ4[tÐlW¯Z^ªì&=^¸xþ±ãߦež<õ{Ä’!D|B\MMõÎïsZô~‡úܸz_sQÌÒ…kW§f¤g¯0E³cñZcä+c…÷îÕÊ-£G½*„(++•[?nîÌŠýîÏÍéëmX•¸Âj»zÕM(*>+„˜(„8uú„âòå2!Ĩ‘ã”AÜê$à™ïÚÛÛk¾µ’’ ³ß›6öõ€²K¥ì@¼€VÈì,eG  !¼½ŸBtïþÌ£G –—:uqj"gí:ðå–ojkï~µm³Õvõª-(×5dð‹Ò8Õ·ߺ^/„ðòò–·VÒœ"ÿüÛL¯^½Ïœ=©œâëë·#-³ª¢ávå#v ^@Û˜èìlXiJB„…FêõúISÇÈKÃ,qv6xxõÐ|­‹‡SHèW·5Ÿ¤4§½iÊumúlۘѯÏž"g蕦$ggƒt=»"Âc&N›·OnIIÞŸgt×Sæþ/:n€ ÀvP]Z\.ÃÆköux#§W¯€6CÝk ×­ÿ/®^Äk€x ¯¯â5@¼:5n¯À†P]¸³wûÃiñšã Ð6˜¯â5@¼@¼ˆ×ñ ^ ^Äk€x  I„ê¯ãl'IEND®B`‚gnuradio-3.7.11/docs/doxygen/images/ofdm_tx_core.png0000664000175000017500000003621013055131744022302 0ustar jcorganjcorgan‰PNG  IHDRâËð—usRGB®ÎébKGDÿÿÿ ½§“ pHYs  šœtIMEÝ%R(¼â IDATxÚíwXWÆÏ.]PéŠi"*‰]Qc{ÅÞAQ±E;ìØ±¢b"‚5ö‚€%ŠàJU@}÷ûcò“mtXðý=<<³wÏ-;{æÞ³wî¼—'Ê@‘àã€0€0„é„é L La: ’QÆ)%†§ÆÃI¨º`k3a:¨¶¤%#Ô«’hëâ' Ð`Ñ ÓÓ@˜@˜Ât@yAFþ…Ñ(,C‰I¶À2/ Dý«ð„é ¢ …{÷ïØpׇؘ&¦®“¦MžèÎãñÄD»Ù@VYY¹V-­F6§üìÑ¿ß`6ÒÝ¿Çoð Däx|ÒÏ#%CÞsÁ›·zG¿ŠTVVnbïRÁŸôØñCî3&Ñ®í‡FW%~ET{p®ªÐÏc’`Ñ (G|÷n›¿Ð£ƒcçè;8vþeÁô}vr£(æMIä\¹pKD¢±‡9v€M_åµ$///77w•×ÉZö=Þ¥V-­¿nE<¼mkcW⨮ÄÝÁþbÓ‚ràÐn"ší±@[[g¶Ç"Ú»‡ÛÖ‘÷ŸzõLtëêmðÞNDÚº<毞™V÷ÞŽýÅMd&ð¤¾$"Á§ã& µ°Ñ3±Ð9f€@'iÌ%"âÙýwí7³µ±ûëþˆˆg²>`\܇QcšZÖ1µ¬3rÌ€¸¸D”ïæ>ÖÚÎHG/Ö0¶ñl¥l¤%§‘¨Z`Ñ (GbccˆÈÀÀˆˆôõ ‰èCl û.JŠÍa››7$¢Ø¸o–ž‹½<—Í#¢Õ+7L™&¾¤„±43³à&2e<ñ¤S×Ó<&Þ½ù‚yëðþ“ÌŠ©/‰ÈÍ}lXxÈ~ç ô êÖ2óŸÌ3Ê2&¢ý‡vëÖÕûãØÙŒÌŒŸºµBjÔ æ?ÿd& rD$Ò7V×Ô¬)ˆùÊT›©¡Q£ÐƳ\jQ²)‰¶n5¿ö uN  T{W€ƒE/ 5b<mÞê––ºy«7Mš0U޽P(|õ:jî‚iD4gÖÂonÊç‡_òÇ“²–cÆ´¹D´pÉl N ˆ›¿Ðƒˆ<—Ïý&ú¹çφ2%³öb!¬dDÛ²E":z80%>/-Y”(È–cìxüë×ôöm;2KÛÛ·íøõkú©€ãÒ·8´ ¢[·oܼJD?4kþ­:¿ƒyyyŒ™ÔÆ««©QJJ²œ¢d5ULc€RxOa–ùùù[¶zû8,Ä™˜˜N?ÅÍuŸÏ—5›®¤¤T³f­F¶ÝÝfq•^dÍ»³9å³}ý«×Q<¯Y“Ο õÙ¾~³Ïo_¾|fm$×Èz™¿tùüë¡&&%ˆD"’+ªØ©k‹'OîÝ}tèàQDtÒÿ˜ë”Ñ͚߸ö@r6=66fÞ¯3nß '¢¶­×ÿ¶­A³OñÏeóBo\MNI‰DiÉ"©_ã½Ìwï¶ÔÔ/rŠ*º fÓ‚€Ùt@˜ „é®Ucc‰ç‡€0€oìÜv°c‡.C†÷–³Tf™çZ--m—a=Ù÷©³µ´´Mk½¢¥KÖ¸Ní2¬çokþ]“–,bþ* ¨ p+”Â{æfndTDG{C£è¾—¢€•ex&ñ[®X%úÉòsþr½ .] ž;Z\܇ò®è»uQ È`6T‡¡¢}§fV–6[·ìÅÙ…z ÷O2Eò›=,<¤]ǦzÆjõÌ´Úwr(}{233&»26­%VÑŽ]›±Úê;G(úîÝÖª¡‰f«vv{÷ï`ÖæÉòẆ*fVu{öéxæ¬?×Ûý3/ýK½3y.8°‹sëzfZ¦–uú èRÞ—ž±i­ƒßþýºˆ.ž÷ámt"\ L ê‘–,úœÿànTw§Þ8 ˆ>Ã.jKᦋÙ‘»ÇĈ—ÏC®Ü{úðmëVí¤Ú V³Ÿ[4ûùîÝ6¡GÇÎÑ/>vpìüË‚éûì”ãÃI‚œ+n‰H4vâ#ǰ髼–äåååææ®òZ"YËÁþ£Ç»Ôª¥õ×­ˆ‡÷¢mmìJ|AÑrÿ¿ë¡N>¾ˆ…Ç|xGDºuõJ¹€0ª-Ì£Éii©ºuõ6­ßIœ‡’Å&8e©þ‹Í~ ‹‡vÑlÚÚ:³=ÑÞý;ä ç|¾µ•í¦õ»ˆhÓ–µlznnÎC»Ú›—+™ËgÛz"ò^ãS¯ž‰n]½ Þۉȩg;=~Bb|øÍëÚº¼î½‰(!1ÞÍ}¬µ‘Ž_Ì“Yß–cÃÒ¥³3=ñTòª|ú8nÒP = ‘cqÚº¼‚‚IËYs§hëò.ÿyþÒ•`m]Þì_¦JÍ.™„é Ð”XÔßg£¯±Q½Þý;7mnq.8ûVZ²(%>¯oŸA}û "Ùªÿb@³È"66†ˆ ŒˆH_߈>ÄÆê±ææ ‰(6çb¯uV­ß¸zéb/)µÄÅ‘™™7q†û\‘HtõÚ¥'ÏÑ왿‘›ûØ'̽(ñc¶¬)í¢Ø„\¿Bÿòb8¼ÿdj’ÉtæÔÎmÏ^=ñÌÔdÝÚZÿÛ¶vm:̘9Ùc–kû¶×­Ý*5»dT-ð`(…÷@¸*Ç©ßçs{¥õg88z¼KíÚuÞ¿Na- &¹LLˆô¿¬®¦.©ú/µ¨ïP³®XD~leýöï×Obê×o÷¡±ƒ©u£¿n¿”ïÃÏÚujfanùøþkvãˆN][ðx¼×èèñÅò:´°|÷þí½[Üå.B¡ðÇVÖÍU”U^D<½öŒÇã›ÖÊÌ̈ÍÔШ!V/{ i#ÖH"ÒÔ¬Ù¢yëëvXYÚ0‰Ÿò•””ˆˆÉÎfQSUKdKn…Á?xx¯k÷6DtíòÝÍ[ËÏÎVU ̦@Q™>sÒ§x3õX£†&÷­Ÿ§Ž‰Ž~yüèF¹_Rõšý XŒ1žˆ6oõNKKݼ՛ˆ&M˜*Ç^(¾z5wÁ4"š3ká·ažÏ¿þ(,ä!'ÅfL›KD —Ì₸ù =˜,îSf]ýóÑãû³<0[¶hCDGýæååÉjC¡6iÉ"AÌ׳W­,mØD6€þ7ûáÀ”ø¼´dQ¢ [VEÙ9Ù³™Ú Yƒfsæ¹gçdËÏ^â€JþSP®`–¨ )ŠW™ËuUW¹=̦ËÿŠe}ïý]œž=üõkºis¯U{8÷›Pdc‘×o¢çÌsððÞ?ÿd’lѺ¨è—£Ç úü%eÝÚ­ƒkfÓ¿ç~2??ËVo¿‡‚8Ӊ㧸¹Îàóù²|XII©fÍZl»»Íêßopѽ=èÌ)Ÿíë_½ŽâñxÍšüpþl(}þœbn­kbbúäþeee"ú/ð\6/ôÆÕä”$‘HÄuiö@Ò¦XZBbüÒåó¯‡þ™˜”Àü|•º±tZ²húÌIGý…QŸ]ÆŒš¸m˾B³ÃE¥ú'B5E¡ø‹á§ì‡ŸœÜœe+ž "—AÃW,óVSU«Ä0ý\pàæ­Þѯ"•••›Ø;0={Ňé¥/êàaßUk–¨«kü¶zs¿¾.D”™™1sŽÛ…Kg333$o Ã9Ñ ¡Ÿ„+–¡P¸Ë×g‘çœ ÞÛñ4sµÓÑU*²§aÑ ({6lòÚåë³`ÞÒó–îòõÙ¸yM™[2)®RÊ•­þW)‹ŠŒŠxtïÕÆu;fý2…I‘”óC‡ (%oÞ¾Zä9Ç©[Ïqc\q6¨D¦ƒ²çä©cD4°ÿÐý‡°/£¢_vïí¨o¬ÎL÷нÔÖåÕÖW"iòv&:/Ÿã¾%)u|!ÈÄBGêB^©rcìn -ÚØ^ ¹L…íqC²õõ˜¿€Ó'líë‰5¾ÌO캵[utj;4knh`ĤH•ó€Ò`me›–,ò?qAUUg„é Z/ "mmíÚDôéÓG"šæ1ñî½[¿òg¦{Å^‘ÔÇ›O^JOO[¾òWn¢¤ÔÝŠU ÓÓÓNŸº,Y‚T¹1fŽüîͯßDÏÿí–.W´KLÀK–¾c6kî;»&©IÂòžÌ‰D ÍôZ¹‘=Õbr~@˜€t ‰(--55í Õ#¢ˆ—ω¨ËOÎŒØK6+ªƒcg"z÷î-7‘É;`°3=yúˆbbÞ‘cûŸ$cRß”ˆÞ¿ÿ››è³}½­}½Víìèÿ[Ü1ôí3ˆýµÀ=–Z)×ÌÆºÑµËõ͵Wz-¦",•)ñtû/ ¦wíìÜù''æ¥V-íY3æŸ ¼ºbõ"8€0y vAD§Ïœ :sŠ}i×ÈžˆBî26b/55kܹwS¬¨[·oÐÿ7ì`‘”º355gÅ*7æ½~å§xAÿ" ¿M™sE»Ä¼$+åš?ºw÷ÑŒŒ¯ûî*J^²%ï+½7±oÆ]-*)ç€ê”^Ê‘ïVÁ ;'{éòù§ƒNÑÀCW._§®¦þ2òÅÌ9??}ú('7'-Y$örõZOŸmërssÙ(– sµ´´}wþÞ«G?VÃDRê.øBÐÔéãÓÓÓØìÜöHÊ-\2{ïþ¬²¯,Í/î±|}=æØ@ßpåòuÃ‡Ž‘%=&yºØD9\cö8ác–ºšºT9¿¢ùA^ Ÿ„+¸(üSÁ=­ìÃtWcøùο÷²úD%“͆ £B=ÕUwýdµ ƒà®Ó«×}”cV)×BY 2vêÚB[—÷èñ}æå£Ç÷µuyššäççË©¾¬´/ž=Üw`W ]#UskÝŽ]š£ŠOqº”¬ƒ([Éj9âŠiøTзŸ–Ú¶C¶u ”í0;êwPÎFC}<‚¬®(_oJÌ]+عdffLvelZK¬;vmƾ¹AcÙRÂ0}âx7":àǼ<錈Ü\g(++W@”0aòð°ðÇÎ b2NŸºÜÀÄׂZŠë]é`WC.uëÒãÛ°ñðïØØ˜EžsáTøÿqaÙÅ”@%º"›ÂM/?w-A0$¹]¥¤$³!Š4V•£„aúàA#jÖ¬x¢      ðDšãǸ’4Ýkn/ UXZ2K=3­î½>úKjí©©_ˆèõ먌Œ¯Íš=HDqqFhjYÇÔ²ÎÈ1ââ>Z ó2!1ÞÍ}¬µ‘ŽÞ¿›0 >}7i¨…ž‰…ÎÈ1‚8\cTW^D<íìÔÊÐD³³S«O%û®'O¶ïäо“Ó§µuyÍš7¤Â¤÷%…ü/^:×£G_±ª"ú¯*ð… :ʬè§Çl×:Ê¿{S,å~YÆRÏ€H$ªQC“9¾s÷¦C KK[ƒ‹—Ï}ùòÙ̪nrJ%§$™YÕýòå3×€íZç/ôÐ5R%¢ ›¼,lôØŠ$Aù!ÇCôÕW¯õ$Îbþ vÌÚKu©Û5¬^ë‰ýJA ¥ÖÛÐFÿð‘}ÿñö³þzÆjÃFöÍÉÍ©Jaº¦fÍaCF'$Ƈ…‡Ü»–˜”0rø8Ú’–Œª´Ô)1% öÝÏ ùçÏ\¿{ïÖ4‰RkßµãPC «™sÜÌ­uÛ8Ú_¹zˆÜ¦ ¾t`Ïñ}»¿xÆmÚ8YµpFDnîcOœ<2wö¢ÄÙLÛÜÜÇ9µsÛÁ³WÏ_<3uÆ„Ÿ_ž¯ÄãŠßBðÝ~õå×BîH0}æäGïûý~úÑãû3fýGŸÕ <ñ!öý‡Ø÷þljˆQÔ/½/&䟟Ÿÿàá½6­Ú³fLê=À¼äªòoÙêí2p¸à‰ŒŒ¯_ýO 4ÂÂܲXÊý²Œ¥žŠ‰®#üO\`^þ²`úºß¶œ¼¸ØsníÚuú÷¼oÿN"ڻǀ~Cj×®Ã5` ùÁ¡EB\mÞêíµrã—ÄÉÒàŠ…º¢¬”""ëK ÉÉÍÙ¹{ ý‹ öëæ¾Rí¥"¹]ÃËÈá7¯2½e¥¸¨â_A 4JÖ{÷æ‹ä”¤¥+æK<²oüäa=º÷=z8PMU­r|JºöEÄÓöF'‰Nœ<òàn”eCk⬻g>'ä3gVl=¾¶.OIIésB~AAAeæ­C¿ïÙ¾sSllLvN6ñùü/‰²òÇÆÆœô?¶ÒkqݺºG'5¨ùÏ?™I‚‰ôÕ55k b¾J­E¬aƦµ233âc354j0%3)lEjªj‰‚ìœ"m]^sßÞRyèVAϬðÔJÕH¬K©¢hëòÈår 3t¯0ç,M#¥:§dbX¿FVvV’ GÏXMC£F|l&ÛEŸ?=vâ íÛuäñx7o†feg9è߯¯‹Ïöõ»voIHŒ …ÜžŠéXôÕsrs˜2‰èüÙÐÿïÝ»û(Û¯•/ûS§ngþ$"Cͬ¬˜ö¨¨¨Ü{Öº}ãMëwÑœyî÷nEX[ÙŠÙ$ÊåÖØ­GÛûîÖ¬YËÍuÆÒÅ^’Æ²Ü ùS®çòy­Z´4pÔÓÈËÏ …<ïKbAdTDß]Þ‹nÞÚ&øÌu[;1¦”øÿõ›è çnœ?Jÿ´æ2|T¿»÷névêØ•ˆ´jiÑ-ˆèÖí7o†Ñ͚˪E¬a-[´!¢£~Yy¾S¦Äç¥%‹J£WâÏ}Ä ÎYtlmÓÿE÷mmì¸]DÇ]ø|~VÖ?íÛvìàØ9+;‹ÏçwìÐ… “Þò¿té\ÏîÿYñ2i”ºuuCo\½ú'I¨ò[[Ùöï7øàá=ïЈµ•-S¹_ÒXÖ­ŠŠÊ2ϵ›|~KKK%"++[¿#A)ñyLTÝȶqãÆMGŒîooߌ99b ì6Äeä• ·”””ÂÂCdÃË YÂçèÏ ¿Î¦0C3wfŠk/Õm$·k½qÕ}Æv z<ø§â²êå²zņ·¿ž9çç‚‚JëÁJµ½Ñ„qnÌmY÷)³ 5žé1_G§6»lqÕòõºuõZ´±7i(kó˜ŵk×éâܺw¿Ÿä•_?aò03íþ.N­[µÛ³ëíÞq¸g÷¾ã& à:¼‡sŸ]ÛɪEŒÝ;qé½~¥ž±Ó¶=»Ž :fî3Ê7†+–Uǜޢ|éŒgº ëɦ¸O­¥¥mlZ«è•.]²ÆuÊh—a=[óïÂŠÿ¬AcQ˜î>ÇsÑê£~ÇMRYkÓ!’Z¾hEÞ)“uIË/GòfÙC·¢6[ÖÍ2æ¢RRR23µXëµ¹»So±IÅr¹sÁ›·zG¿ŠTVVnbïR¬¯ ¬<Üwï6•‰ã§pö]µf‰ººÆo«7÷ëëR¬V‘––vìß©Rm¤–,öqÚ——çæ:£dÎY‘+ Jìœâ è^ÔfËXi°Ÿ„+V0‘Qmí Œ¢#ð@…Êg•âie¹è”-ÝÊëwsq”—¸?ã郷oÿ~í1Ë•Š¦|$uèàaßÑã]jÕÒúëVÄÃ{ÑÜ5 E¡ —Nøupì,9Ú=º÷j㺳~™RÜVíÞq¸W~rÆQÉ’Å>KÇÎþÇ+Â;º+ÊŒQ‰ã9P=€+–E(оS3+K›­ÿ½wy(¯¬qT:Ó+‚ôÈ«ÏÔ¶ ~zäU±+™9`ÿ—w°^”ëœÛ¶ǧ=ö¨é·Ò b!¸¤ kÉ5óÙ¶žˆ¼×øÔ«g¢[Woƒ÷v*L Oêž Å³“úƒ!âåó ÌÄ׭ݪ£SÛ¡YsC£âž“KW‚ô"ëÝ¢”lbbú"âYi=#ñ1]EFQâcñHˆ9`ÿ—s„T¤AˆÛ¶'ÛéLŠþ=L5®X!0ÊîFuwê §«ZCyåŽãazµ%ö™¦£}MGûÆœ%ç‡os_Qü.ÖríÆ=mæ…'\ÙP‚Šš6·hha%kÂF– žØ„ql\ ™™Yˆ 3r´ð$I¶T™T1»b!‰,šéµrc±råååÝp·Kgç2/¹Ø<ÝI?ΤgÒÓ]Ò ˜YC—Ë0}X¼#ƒ–Ôi#½òGSM€+ å 6ŽƒJG§ ÈIz«ÕȉHôwÒ[±@LþuX®y‘.ï&½‰ÇËÏL)Aòµ¢¢"ˆÈ±ýOD!Ë̤¾é»÷oß¿ÿ›»Ü…ÕÂ#¢˜ïØô¾}ñx<Éc"Šxùœˆ˜Gúž<}(–ÅÆºÑµËõ͵1;©Áº]#ûÞ[YÚÐ׈ÿ²`z×ÎÎŒ–vѹs7ܱ]'ù:¬…–ÓØ®Ii]!ãéÿH$¢ÌOb?Ü9ɨrÓÑÃTàŠC¹‚ã ÒÁlzE ¦×0=êZzäUUÝg…•5ëþû8õÙ·ùø*yiÿœD9¢bý«IEÍÅ+¯þERORŒˆfL›KD —Ì₸ù =¨0-<Éc*¦˜ÔE/C\F²úzì’÷•^‹›Ø7c6Á)òW¼±ä›·B*µøLM#J|L‰IÓðßU-J}CŸî~³QR£ìÏ çœÝ·ê\|÷CyÕÇÂôj‚ÉÐÍ1G\cŽº™ Ý̤8ÿ½¾CúË+¬ÞOî/<­Ëomz1GrGROª.ؤ Sï?™šú¥e;»VíGD<£Â´ð¤R,1;©ŒëÆfظyÍÌ9nL™Ìö Ü݌Ÿֵܺ˷õµ’6’%³f¬qøÍÐqc]KûM4B¶Ð#júÿgU­Ó ×8JüIDAT¹”ðè›Eº<±ü+šs‚Ê®0”Ã?ä´xÊ d$¹ZNØ…TA\¥‚Ϥ‚¨àêœe¾õcá§¥°.± U>\±òO>œY‘†rŒãß¹§C1,<¤]ǦzÆjõÌ´Úwr¨˜öqu6tT;˜®X½(??_~«F†Çÿø½Xu¥¥¥ŽÝ¿¾¹öÈ1ÒÓÓ¸¥qg[µuy:züFMêÏœãöõk:›¸a“s¼~ãjEÞü¿¹« ßa/YYÎiik ­Ë|ú¸Ë×G[—·Ë×Gð飶.ÏÒÖ~ø}R‰ýä¹àÀ.έë™i™ZÖé3  ; Õ1Pþ±•õå?ÏK"++€àÖž™™1Ùm”±i-ì9Z]ýSñƒ@II·Rz£Ô¯L~ —™aº»ÇĈ—ÏC®Ü{úðmëVí*¾ˆ}—æÜ­×¦-k·ïÜ(?¾9~ôÌâ¥s‹Uøª5Kôô ^<~¯««¿Æ{·41¥íÔ$áµ+÷’’V­YÂ&þ~l^^^^^Þ§Žâª  9§]"Š‹ûpþâ•óÏ|üKD7¥2ÚpEùÈÙ‚»éDyÜ%›JXë½<9%)âI ®—êꟊr7¾-«p¥†|¥¡ôM’¦3Oò¥¥¥êÖÕÛ´~§Ø/î/YŠÔRe­ëª´q´·¶32jPs³<O u¹³ÑïG÷Ë÷>ŸÏmÞü…ºFªDtçîM‡––¶/ŸËráÒÙ_f/ÒÑ©=wÖÂà AòÏ‘±Q½Õ+7\¸t–Mù©c· ³§NŸ9éìÔ W5UÈ9í7%¢OïÜ ŸúóÌ;wÃÙ~F3Gl:G[—§o¬¾z­'_2±ÐáöBbÚÿM›[hëòž<}ؾ“CûNOž>ÔÖå5kÞ*{(¦+JÝ¢XÈÙBÒoÅœP옵/¢¯ž XðËÒÚµëÀ£ª«V¡ PÒ«µuysæ¹Ö¯±{ÏV÷ŒMkmÝñ¯¥œÈPjÈzãj£&õ5©zãj¡…3ï›Ö:xØW²IsçO+ôS#L÷ÙèklT¯wÿÎM›[œ ”úˀќ–T¤–%k}áÜüüüȨˆÃNýóOæÆ-kå7N_߈‚8ùßÊá½W-_ϦüàÐ"!.‹ˆ~Y0}Ýo[N^\ì)>מ””`hhLDFFõâŦ$]¡^=“¤Äöå,ù{ömßw`§»Û,t+T!Û5%¢ýwkjÖ\0o©Š²Ê¾»ˆÈ®‘iËࠜܜ»·ÑŠU ÓÓÓNŸú¶@YLû¿s''" <ñ!öý‡Ø÷þlj¨¸JàûAê¦ ò7àx ôí $ýÖÿÄ9“|\û"/ðÝ·ÍÄBçÐï{ðUVKªJ( g§^^º½ÈsN¿¾.—χûl]Ǥˉ ¥†| ÍܲÉwË&ß_Ï*´pæ³_ìÔµ¹ ~`ïñ!Ã{_¹zˆB¯ÞÿÁ¡…X/ÄvYiÉ"}cõœÜœ$AŽž±“bX¿FVv“¢¡QÃwÇ᱇hhÔhß®#Ç»y34+;ëÈAÿ~}]àopEÉD‡–ïÞ¿½w+‚»ÜEÎ3’oI¾²ü6Q­o¬.6²eríåS¬ACý€“E"Ñ ¡=Þ½J†‹V®‹–ß8®àA ˜[²ÇÚº¼Ô$!Çã0oIF†òC>}cõ¸÷é"50×Iø˜%¿ð ›¼¶ïÚôåËgæSËj’œ ±NŸ9éS¼€ù¡_£†&I“µf4§%©eÉZ³«Sx<žHTˆãfegmòùˆÆŽžDŹkÌÄèDdeeëw$(%>ý&ØL=»÷ݰyMjê—[Ööé5@~ŸâK—Ï3;¸÷Äþ=~E¹>KüW1â·|·_}y´ÐÖ¶1ÓqõêÙ™aº&n¨$Ùe‘©©9ý_éŸ-Š8Úÿ;táóùYYÿ´oÛ±ƒcç¬ì,>Ÿß±C¢¸¢4¤n Q,dm!é·á1YÉ¡\láhQ|µu«vÌ ®ÄW‚‹Vº‹–GóªnÈV!v +2”ò™›7¼v-ôÆUî/Y…oܲö¤_ðù³¡ÜO-™«XÈ Ócã>´ëØ´³S+ˆÖ̲$©²Ö$M‘º²Ö’˜˜k_º<ËcÁt÷¹%+Ág“ïŠU uT%¿ZÏE«>Ùÿ`–””°hÁ ù?£;wk©§g°ø×•MK3Á]ÐVñõ–Ò†ÛqLt¡Pçv¢ëˆ¬ì,øXQWSoha¥¬¬ìÔµ'9wëEDæf 54jÈϸÌs­––6³‘-ƒ˜öíÚuš5'¢vm;vtìLDÍšëèÔÆ9R‘º)Dû4¦Ë’¿×o]†õdSd åE™QfkYºdë”Ñ.Ãzþ¶f ¾ÊjI5‹J ùÖ®Þì1ÛuÖ·µ«7Zø°!£é~æ¬6š©å#Vï)gžOÎÍY%%%3S‹µ^›»;õ–¼™UÄ*ÂÂC~]<ëõ›hUU53S‹[7ž”`h)Clß½ÛTTT&ŽŸR¶å« bÆíÎËËssç,Šsô“ß¡+FFE´q´740ŠŽÀåà¢è*«§aRP^p5ÅŠ¢s'uBHRªr9à×Á±3û²(½[YÙÈ2îàØÙ?ð8ü «kmß©™•¥M¡Ï¤ „é ‚Æ ±\LÌŽkÉ5Ó„rêÙ®ÉæD”‘ñµ®¡J÷ÞŽT¥'m]ž‰…£¾$«^" 8}ÂÖ¾žüõ9/Ÿ7h`¦PçÖÄÄôEÑn—¾CÒ’EŸòÜêîÔg„é¦)&&fÇQ¸fbšP3Üç~øðþ¯ûwnÝ ËÏÏŸ=óWÖRŽÒSàÉKééiËWþ*§^"š5wŠ]“Ô$!î ÒQÆ)儬Ǩ¢¢"ˆÈ±ýOD!ˬ__—~}]M¨³]ÿŽN27kèx\EEÅ®‘=wr¨mkGæ Mëö<»Ó/³LåÝ»·òëµ±nt-är}sm7×K{I ÖíÙøðÞÊÒ¦‚O¦œÅë±±1ÌÖ<¨N`6Tbbv$Mì‰$4¡ø|¾û”Y§ƒN^¿qu–Ç®¼‘¥'¦só†Rëe96tïî£_÷ÜE2½ qÉ•ä«0ä,î¿y+tð ð(a:e€˜˜É{’Ô„‹<çlðÞî:iš~ãE´)8gY9§ä‚"6åtÐÉEKç qè$áŠU¢Ÿ,®âmÕò“®Rö¨d•Øb6T%Þ¼}µtÅüÎ}ÆQÄùãJÑgÅ",<¤]ǦzÆjõÌ´Úwro¼ÈsŽ@÷6:±Ðb v>vüõ;ÈÝ 9Cr…íõÆÊaqwG*ASoß ×7Vÿuñ,|}T x„T%¬­lSâóp@‰q÷˜s3ô±‘Q½5¿-“ÿ3Iðé#éÖÕ£Âæ)W.óžì6jØÑ[·¯ß¿ÇçTd¸_èo{æÝRε¿~=ŗn=׬ڤ˜ç úÁÃ)(Wp3(ìÐþ}:§¹µîçÏ)çÏ\gÔ~ˆ³Ê_MUÍcƼ% WIÎ5²è’ìÍt]§Œ …JJJ{v¹s÷æÔéã32¾nóÙ׳{_"Ú°Ék§ï–””d\2pEYáudTÄÌ9??{þÄÖÆn綃vì%3øBÐÔéãÓÓÓäx&×^V̱²²²¹YCï5>]»t—,Y,£™©E:u/œ ÕШ!ÙÚ™s~ŽOøôüÑ»ŒŒ¯¦–uZ4o}ùüM©Wж.oݱ/ŸÛ¾e_ß>ƒØDMÍš^+7LçFD/#_xÌv}úìQnn.Ûà´dÑ‘c>ľ_üëJ±KŒ{ÍJžm6‚—¼0µuy“'ºû8<î®Âï÷ã¢<5Ä 4Vóþ Lˆ¸œ=°`ÑLÁ§¦¦æ^+6ôí3ˆàƒƒBú 袩YSó•-$Ã9³’±±1ö?˜½xüÞÄÄ´}'‡ežk ô 'Lþè¯WDTÏLkƒ÷öaCF³’Daº˜uíÞæÁÃ{AþW vnÙ¢ÍÕKw$³eÛF¯^GùŸ¸0xx/Y^ʵ—_ãë7Ñ-ÚØš›5|òàdÉb‰hÿ?VWJ¬µÓ~3aðŸoIýý@DZ ÉÿÔ’¹ˆHÖÏ ¦PAKÜ +;k¢kÞ0h¢ëˆ¬ì,|éR‘Tâ/"Ruýeá³ÉwŪ…ºFª\-ü:Ê|>¿SÇ®ø€X×ÄøÉÎm;vè2dxo9ýÕ2ϵZZÚ.Ãz–Ì3YÆ™¬¢¢ÒoP79%‹ah`täP@ÄËg¿ÌŸ&µµEßÔ"àô‰ÉSF-[²†y9lÈèCºŸ9ëÏlÛ²ïT€ŸqƒšÜóÐ¥³swç> —Ì–z‰Mžèþc+kùý¼d.ÜÊ¥ð7sÃÂC~]<ëõ›hUU53S‹[7ž”¦K[ƒ¤äÄÈçqgÎúÿºxÖo^[ú÷ܨI}=]ý7Q E ©È¾{·©¨¨L?…ˆ^F¾5v ûý´]#{©öE±)Y®’Ù8´;//ÏÍu†ü‚盂ĩpÅâÑÆÑÞÐÀ(:B  %}S‹*'É‚E/a:¨VÃýf\Í»bÍYJÒoP·a×þ¼x{¥×â»÷n¶ií¸lÉšn=ÚþÔ©Û™€?Ë#LïÖ£í®í‡¬,mˆhø¨~½zö'¢‹—Î?zFª}QlJ–«d6¯ßD»Ï˜ðçÅÛˆp‘"ª~®¨­ËSRR²0·ôZµ±»So)ùÕ먶štëÒãÈ¡UUÕJ ÓÅfÊK_ÂtP‰`Ñ ({˜U’ii©ºuõ6­ßéÔ³]“͉(#ãk]C•s«WßX}õZO"ŠŠ~Ù½·£¾±ºX'k߸)½ˆxzçnøÔŸgÞ¹þ"â)5¶k¤wvjeh¢ÙÙ©“ÎÝÂ#øB‰…·À€Ó'líë±wi¥Þ\Žxùœ]4yÿÁݾ½öí=ð¯ûwd}ޢؔ,WÉlLLL_D<ƒP-IK}NÈp7ªlcôR–Ìljñ‡ß9ù1:•ÿömiÉ"î Là?ølô56ª×»ç¦Í-ÎÎpŸûáÃû¿îß¹u',??Ÿ«M’“›³s÷"šæ1ñî½[¿òëXÛ5%¢ýwkjÖ\0o©Š²Ê¾»ˆÈ®Q"š>sò£Ç÷ý~?ýèñý³¾mMzxÿÉÔ$áŠU ÓÓÓNŸºÌ¦Ïš;ÅήIj’°ˆÝwZzª––v­ZZié©¥±)¿’KV;¦ƒïŽ~}]"ŸÇ=ónÆl×>½š›5ô<b×Èž;OÓ¾]'úÿì{ÄËçDÔå'ñÖÙYón]zÔ¬Y«ƒcgîlzTT1[ÕDFE°¹úöÄãñbbÞ±ï2ØX7ºr¹¾¹öJ¯Åôÿy±íÙøðž9ÖÒÒNOOûú5][KGÖç-ŠMÉr•Ì&66†99@˜À7Ä4ï¤ uýëá0æñÇа«b¥ÙÚ6VRR"¢^=û‘³S/&£­ó.ݺ}ƒˆ˜& #1ƼËpþlèÞÝG32¾î?¸‹d,zâ2’ÍÒªEÛsçOŸ;ºe‹6²>oQlJ–«d67o…²[ Š‚#@)¼GÆ£Qý]œž=üõkºis¯U{8÷ùü9ÅÜZ×ÄÄôÉý7ÊÊÊÄy¦“=xùb期Ÿ>}”“›#Vl˶þ~÷æïè$mm˜˜wM›[4´°bö{öü±Ç쟣¢"llì¶ûìkbïÀ}ZTÖÆÚú†+—¯>tŒÔGK³²³¦Í˜x`ïq"Šˆx6jÜ ":v8°qã¦$íù'96’EÉUJ›‰®#vl; ¡®!ç»Ãs{@A€+¸(ÓA¥ ?Eêª*]v9 ºE)¹¬jGlTÞNBeô¨\…a:€‹‚ª½€rçÍÛWKWÌïáÜgÜ×jðqÊoÄ-JÉïK?âjëòÚMÅÜôJ~Ü?Eø€ø¢a:…St¡.*†Ð?˪(îSÈŠ ‡rPmPÆ)|oX6´Ž~ɾÔÖåñùü/‰bL‘²²²•¥ÍçÏ)_3¾ÎŸ»„+'Z(Úº<5U5ó–,\Åá¾{óÅÌ9??{þÄÖÆn綃vì™w•••ÍÍz¯ñéÚ¥»ØcDpúÄbϹŸâô߇:ðm*>¸¿(XqJá=XsY•ã†ïsA00Ý¿yôØŸíëÙWIIésB¾X˜~áÜ^};Ñ¥àð}:Ôª¥÷.MNÆÖȼ  é3 ‹¦fMAÌW&åðþ“ýû î֣탇÷‚ü¯ ìܲE›«—þÝ—êõ›èmlÍÍ>yð¦eÛF¯^G>uyàîLÉ&:-[´ øã"£•$'L¯Z›±cá/È‹^ßÖV¶oÿ~-–(‰‹m[;2mZ·çñx_¿¦«î¶ Œœ?³EÀ€ÁÎDôäéC"òÙ¾ÞÖ¾^«vvDóá•LòÂt¨ÚtíÒ=ÖÔ¬YPPpçÞMñþñÿºþ< â‹þŒ&w[Fο‰}3":64-Y”ü)—ˆ¼×¯ü/ò¿BDB¡J*ùa:My%•蔦v„h¥Äeàpu5uæØ}Ê,UUÕž}:VLÕ;·ìØ¡Ëá½Y7f²ŠŠJ¿AÝX›ežkµ´´™w}cu×)£ ô ½×øêp¨`Q (…÷È]þ[¶wä«J™Åm@‰k/åúcˆUÅùŽa¤‚Ùt ÐãwQ&«ñÝ̉Ó(G"£"œ{µ74Ñü©[Ë—‘/ˆ³)Œ¾±ú굞D|!ÈÄBGr±cÖ^jDËä­k¨Ò¢íµËrŠeIKKmÞÚfÁ¢™’ítêÙ®ÉæD”‘ñµ®¡J÷ÞŽ²~hëò¦LgjYç\p 7ÑØ´ÖÁþÌË—‘/ºõh«g¬&–ýȱ^¿-%¢;wo:´°´´5¸xùœØ'’snÅr1YæÎŸfÔ æfŸßà{@wA)¼§È‹^ºvo#¦@'©XÇ(ÐùŸ¸0xx/’P†–´—S¤°·X±Œ]»tWSU;öûi>Ÿ/ÖNi¿Œ™0øÏ‹·¿¤~:¢Ï~çz8÷‘ºTF[—wòx0-öœûàn›þôÙ£c¼|úˆ:;µ:xÔÄ SÔTÕØ\»wŽŒ|±rù:"jßÉa™ç}à “‡?úëÉ]Ù¾%5×~çŒêõwqz÷*YVv,zнÂtP™aº¡‰fVÖ?Ì±ŠŠJò§\ÆæKbAm}%ÆXßX='7'Q­o¬.+LçÚK­Îgûú]»·$$Æ …BfÃÉbÅ2Ñ¥àð¶m%Û™ø1ûÇVÖÎN½TTTB®_¹öŒ‘¬–ú‘“9"™˜i' ²‰hÃ&¯í»6}ùò™iÖ¯ñîu²†F n®†Va!kÖ¬EDõ4òòó„B!Çc²%L—š+5IÈãñägG˜¦€"ƒE/ "T û×ÿ8ŠuŒ]xøu6…âàÊNK*܉™É¶ã+Æä‰îÓgNb²‹µ“Ïç»O™u:èäõWgy,`·•‘º åFص°° ̘—·¬=é|þl(Ó "²³krè÷½9¹9Ü\¼·ÿapt-get system in Debian and Ubuntu, yum in RedHat and Fedora, etc.). GNU Radio tries to keep an up-to-date build guide for the majority of the supported operating systems on gnuradio.org (http://gnuradio.org/redmine/projects/gnuradio/wiki/BuildGuide). Not all dependencies are required for all components, and not all components are required for a given installation. The list of required components is determined by what the user requires from GNU Radio. If, for example, you do not use any Comedi-based hardware, do not worry about building gr-comedi. Before trying to build these from source, please try your system's installation tool (apt-get, pkg_install, YaST, yum, urpmi, etc.) first. Most recent systems have these packages available. \subsection dep_global Global Dependencies \li git http://git-scm.com/downloads \li cmake (>= 2.6.3) http://www.cmake.org/cmake/resources/software.html \li boost (>= 1.35) http://www.boost.org/users/download/ \li cppunit (>= 1.9.14) http://freedesktop.org/wiki/Software/cppunit/ \li fftw3f (>= 3.0.1) http://www.fftw.org/download.html \subsection dep_python Python Wrappers \li python (>= 2.5) http://www.python.org/download/ \li swig (>= 1.3.31) http://www.swig.org/download.html \li numpy (>= 1.1.0) http://sourceforge.net/projects/numpy/files/NumPy/ \subsection dep_docs docs: Building the documentation \li doxygen (>= 1.5) http://www.stack.nl/~dimitri/doxygen/download.html \li latex* (>= 2.0) http://www.latex-project.org/ \subsection dep_grc grc: The GNU Radio Companion \li Cheetah (>= 2.0) http://www.cheetahtemplate.org/ \li pygtk (>= 2.10) http://www.pygtk.org/downloads.html \subsection dep_wavelet gr-wavelet: Collection of wavelet blocks \li gsl (>= 1.10) http://gnuwin32.sourceforge.net/packages/gsl.htm \subsection dep_gr_qtgui gr-qtgui: The QT-based Graphical User Interface \li qt4 (>= 4.4.0) http://qt.nokia.com/downloads/ \li qwt (>= 5.2.0) http://sourceforge.net/projects/qwt/ \li pyqt (>= 4.10.0) http://www.riverbankcomputing.co.uk/software/pyqt/download \subsection dep_gr_wxgui gr-wxgui: The WX-based Graphical User Interface \li wxpython (>= 2.8) http://www.wxpython.org/ \li python-lxml (>= 1.3.6) http://lxml.de/ \subsection dep_gr_audio gr-audio: Audio Subsystems (system/OS dependent) \li audio-alsa (>= 0.9) http://www.alsa-project.org \li audio-jack (>= 0.8) http://jackaudio.org/ \li portaudio (>= 19) http://www.portaudio.com/ \li audio-oss (>= 1.0) http://www.opensound.com/oss.html \li audio-osx \li audio-windows Optional but recommended dependencies. It is not necessary to satisfy all of these dependencies; just the one(s) that are right for your system. On Linux, don't expect audio-osx and audio-windows to be either satisfied or built. \subsection dep_uhd uhd: The Ettus USRP Hardware Driver Interface \li uhd (>= 3.0.0) http://code.ettus.com/redmine/ettus/projects/uhd/wiki \subsection dep_gr_video_sdl gr-video-sdl: PAL and NTSC display \li SDL (>= 1.2.0) http://www.libsdl.org/download-1.2.php \subsection dep_gr_comedi gr-comedi: Comedi hardware interface \li comedilib (>= 0.8.1) http://www.comedi.org/ \subsection dep_gr_log gr-log: Logging Tools (Optional) \li log4cpp (>= 1.0) http://log4cpp.sourceforge.net/ Optional \ref page_ctrlport may use various backends to perform the RPC process, and each is its own dependency. Currently, ControlPort only supports the Apache Thrift backend. \li thrift (>= 0.9.2) https://thrift.apache.org/ \section build_gr_cmake Building GNU Radio GNU Radio is built using the CMake build system (http://www.cmake.org/). The standard build method is as follows: \code $ mkdir $(builddir) $ cd $(builddir) $ cmake [OPTIONS] $(srcdir) $ make $ make test $ sudo make install \endcode The \$(builddir) is the directory in which the code is built. This cannot be the same path as where the source code resides. Often, \$(builddir) is \$(srcdir)/build. \section cmake_options CMake Options Options can be used to specify where to find various library or include file dependencies that are not automatically being found (-DCMAKE_PREFIX_PATH) or set the install prefix (-DCMAKE_INSTALL_PREFIX=(dir)). Components can also be enabled and disabled through the options. For a component named *gr-comp*, the option to disable would look like: -DENABLE_GR_COMP=off. The "off" could also be "false" or "no", and cmake is not case sensitive about these options. Similarly, "true", "on", or "yes" will turn this component on. All components are enabled by default so long as their dependencies are met. An example is -DENABLE_PYTHON=False turns off building any Python or Swigging components. The result will be the GNU Radio libraries and C++ programs/applications/examples. No Python or GRC files will be built or installed. The -DENABLE_DEFAULT=False can be used to disable all components. Individual components can then be selectively turned back on. For example, just buidling the VOLK library can be done with this: \code cmake -DENABLE_DEFAULT=Off -DENABLE_VOLK=True \endcode The build type allows you to specify the build as a debug or release version. Each type sets different flags for different purposes. To set the build type, use: \code -DCMAKE_BUILD_TYPE= \endcode The available build types and the C/C++ flags they set are: \li None: No flags; define them yourself \li Release: -O3 \li Debug: -O2 -g \li RelWithDebInfo: -O3 -g \li MinSizeRel: -Os \li NoOptWithASM: -O0 -g -save-temps \li O2WithASM: -O2 -g -save-temps \li O3WithASM: -O3 -g -save-temps If not specified, the "Release" mode is the default. \subsection cmake_other Collection of CMake Flags \li CMAKE_BUILD_TYPE: Build profile type defined above. Default is "release". \li CMAKE_INSTALL_PREFIX: Installation prefix path. Default is "/usr/local". \li ENABLE_PYTHON: Turn Python bindings on/off. Default is True. \li ENABLE_GR_: Turn any top-level component on/off. Default is True for all. \li ENABLE_GR_CTRLPORT: Turn Building ControlPort. Default is True \li ENABLE_PERFORMANCE_COUNTERS: Turn performance counters on/off in runtime. Default is True. \li ENABLE_ORC: tells VOLK enable/disable use of Orc. Default is True. \li ENABLE_STATIC_LIBS: build static library files. Default is False. \li CMAKE_TOOLCHAIN_FILE: A toolchain file to setup the CMake environment for cross-compiling. Here are som other potentially helpful CMake flags. These are to help you specifically locate certain dependencies. While the CMake scripts themselves should generally find these for us, we can use these to help direct CMake to specific locations if we have installed a different version elsewhere on the system that CMake doesn't know about. \li QWT_LIBRARIES: shared library to use for Qwt (in the form \/libqwt.so). \li QWT_INCLUDE_DIRS: path to Qwt include files (e.g., /usr/include/qwt). \li PYTHON_EXECUTABLE: Location of the 'python' binary you want to use (e.g., /usr/bin/python2.7). \li PYTHON_INCLUDE_PATH: path to Python include files (e.g., /usr/include/python2.7). \li PYTHON_LIBRARY: Python's shared library location (e.g., /usr/lib/python2.7.so.1). \li Boost_INCLUDE_DIR: location of the 'boost' header file directory (e.g., /usr/include). \li Boost_LIBRARY_DIRS: location of the libboost-xxx.so files (e.g., /usr/lib) Other dependencies will have similar settings like these to properly locate them. \subsection build_gr_cmake_e100 Building for the E100 To build GNU Radio on the Ettus Research E100 embedded platforms, CMake has to know that the processors uses the NEON extensions. Use the \code cmake -DCMAKE_CXX_FLAGS:STRING="-mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -g" \ -DCMAKE_C_FLAGS:STRING="-mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -g" \ \endcode */ gnuradio-3.7.11/docs/doxygen/other/components.dox0000664000175000017500000000207413055131744021702 0ustar jcorganjcorgan/*! \page page_components Components \section components_blocks GNU Radio Blocks GNU Radio uses discrete signal processing blocks that are connected together to perform your signal processing application. This manual contain a list of all GNU Radio C++ Blocks, sorted by category. Please note that at this time, we haven't found an acceptable way to provide unified documentation for the C++ parts of the system and the parts written in Python (mostly hierarchical blocks). Until this gets worked out, please bear with us, or better yet, solve it for us! \section components_list In-tree components All our in-tree components have their own top-level documentation: \li \subpage page_analog \li \subpage page_audio \li \subpage page_blocks \li \subpage page_channels \li \subpage page_ctrlport \li \subpage page_digital \li \subpage page_packet_comms \li \subpage page_fcd \li \subpage page_fec \li \subpage page_fft \li \subpage page_filter \li \subpage page_qtgui \li \subpage page_uhd \li \subpage page_vocoder \li \subpage page_zeromq */ gnuradio-3.7.11/docs/doxygen/other/ctrlport.dox0000664000175000017500000004041013055131744021362 0ustar jcorganjcorgan/*! \page page_ctrlport ControlPort \section ctrlport_introduction Introduction This is the ControlPort package. It is a tool to create distributed control applications for GNU Radio. It provides blocks that can be connected to an output stream to plot the signal remotely. It also provides an API that allows blocks to export variables that can be set, monitored, and plotted remotely. ControlPort-specific functions and utilities are found in the 'ctrlport' namespace. From Python, access is done using the gnuradio.ctrlport module, imported as: \code from gnuradio import ctrlport \endcode \section ctrlport_conf Configuration ControlPort is configured using two files. The first is the GNU Radio preferences file while the second file is specific to the type of middleware used. The GNU Radio preferences file has three options. The 'on' option is used to enable or disable the use of ControlPort, and is disabled by default. The 'config' option allows a user to specify the middleware-specific configuration file. The 'edges_list' is a special option that exports the list of nodes and edges of the flowgraph across ControlPort. This latter option is mainly used for redrawing the flowgraph for the Performance Counter applications. \code [ControlPort] on = True edges_list = True config = path-to/ctrlport.conf \endcode The ControlPort preferences are installed by default into 'gnuradio-runtime.conf'. These can always be overridden in the local ~/.gnuradio/config.conf file. \section ctrlport_deps Dependencies ControlPort is an abstracted remote procedure call tool that. It is built on top of other middleware libraries. The following subsections explain some details about the use of the particular middleware project. Currently, the only implemented middleware library is the Apache Thrift project. \subsection ctrlport_thrift Apache Thrift Current version support: >= 0.9.2 Apache Thrift is a middleware layer that defines interfaces of a program using its own Thrift language. GNU Radio's interface file is: gnuradio-runtime/lib/controlport/thrift/gnuradio.thrift This file defines the interfaces set, get, trigger, and properties. It also defines a set of data structure Knobs to allow us to pass any type of data over the interfaces. To use Thrift in ControlPort requires a minimum Thrift version of 0.9.0. If a Thrift version greater than or equal to this version is not found, the Thrift backend to ControlPort will not be installed, through ControlPort itself still will be. During cmake configuration time, it prints out information about finding Thrift and requires: \li Thrift header files by looking for thrift/Thrift.h \li Thrift C++ libraries: libthrift.so \li Thrift Python bindings: "import thrift" If all of these are not satisfied, the Thrift backend will not be installed. Upon completion, cmake outputs a notification of what components will be built. You will see this if Thrift was found and can be used: \code * gr-ctrlport * * thrift \endcode Cmake also uses the Thrift compiler ("thrift") to build the C++ and Python files necessary for compiling ControlPort. It runs "thrift --gen cpp" the C++ bindings in the build directory, and then it runs "thrift --gen py" to build the Python bindings, also in the build directory. These are used to compile the Thrift ControlPort features and are necessary files to run the Python clients. If cmake fails to produce these bindings, it should error out. \subsubsection ctrlport_thrift_prefs Configuration Thrift does not support its own concept of a configuration file, so we have built one for our purposes in GNU Radio. The 'config' option in the ControlPort section of the preference files tells ControlPort where to find the backend-specific file format. GNU Radio's Thrift format follows the same "[Section] key = value" scheme used in all of its other preference files. Currently supported configuration options are: \code [thrift] port = 9090 nthreads = 2 buffersize = 1434 init_attempts = 100 \endcode \subsubsection ctrlport_thrift_issues Thrift: Current Issues Thrift uses a thread pool system to handle each connection, but it will only allow up to a specified number of threads in the server. The default value is 10 threads, but the Thrift configuration file allows the user to change this value. Thrift also does not find and use a free ephemeral port when launching the server. It must be told explicitly which port to launch on, which we set in the configuration file. This makes it difficult to launch multiple flowgraphs on the same machine because that will cause a port collision. Until this is fixed, a way around this is to use the environmental variable GR_CONF_THRIFT_PORT=xxx to set the port number for that specific application. Efficiency issues of Thrift come from the over-the-wire formatting done by the transport protocol. It defaults to using 512 byte packets, which can lead to a lot of fragmentation of the data over the connection. The buffersize configuration allows the user to set this value to whatever number fits their network needs. The default 1434 is designed around the standard 1500 byte Ethernet frame size limit minus the TCP/IP and Ethernet header size. \subsection ctrlport_client_translation Translation Layer for Clients Different backends will produce different ways to interface with the system. ControlPort in the running flowgraph acts as the server by exposing interfaces to blocks. The interfaces and API in GNU Radio to communicate with ControlPort are all abstracted completely away from the backend methods and data types. That is, the code in GNU Radio's scheduler and in the blocks that expose their ControlPort interfaces will work regardless of the backend used. We are building better abstractions on the clients sides now, as well. Although certain backends will support other features of discovery and services that work well with their products, GNU Radio wants to make sure that clients can access the data from the interfaces in the same way for any backend used. This abstraction is done through the GNURadioControlPortClient. This class is told which type of backend is used, and defaults to Thrift, and can be passed information about the server's endpoint such as the host name and port number to attach to. The GNURadioControlPortClient returns a 'radio' object that represents the connection to the running flowgraph. \section ctrlport_using Using ControlPort to Export Variables The ability to export variables from a block is inherited from gr::block. Then, when the flowgraph is started, the function setup_rpc() is called in turn for each block. By default, this is an empty function. A block overloads this function and defines and exports variables in it. Say we have a class gr::blocks::foo that has variables a and b that we want to export. Specifically, we want to be able to read the values of both a and b and also set the value of b. The class gr::blocks::foo has setters and getters all set up. So our class implementation header file looks something like: \code namespace gr { namespace blocks { class foo_impl : public foo { private: float d_a, d_b; public: foo_impl(float a, float b); ~foo_impl(); float a() const { return d_a; } float b() const { return d_a; } void set_a(float a) { d_a = a; } void set_b(float b) { d_b = b; } void setup_rpc(); int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); }; } /* namespace blocks */ } /* namespace gr */ \endcode The source code then sets up the class and fills in setup_rpc(). \code namespace gr { namespace blocks { foo_impl::foo_impl(float a, float b): sync_bloc(....), d_a(a), d_b(b) { } foo_impl::~foo_impl() { } void foo_impl::setup_rpc() { #ifdef GR_CTRLPORT add_rpc_variable( rpcbasic_sptr(new rpcbasic_register_get( alias(), "a", &foo::a, pmt::mp(-2.0f), pmt::mp(2.0f), pmt::mp(0.0f), "", "Get value of a", RPC_PRIVLVL_MIN, DISPTIME | DISPOPTSTRIP))); add_rpc_variable( rpcbasic_sptr(new rpcbasic_register_get( alias(), "b", &foo::b, pmt::mp(0.0f), pmt::mp(20.0f), pmt::mp(10.0f), "", "Get value of b", RPC_PRIVLVL_MIN, DISPTIME | DISPOPTSTRIP))); add_rpc_variable( rpcbasic_sptr(new rpcbasic_register_set( alias(), "b", &foo::set_b, pmt::mp(0.0f), pmt::mp(20.0f), pmt::mp(10.0f), "", "Set value of b", RPC_PRIVLVL_MIN, DISPNULL))); #endif /* GR_CTRLPORT */ } int foo_impl::work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) { .... } } /* namespace blocks */ } /* namespace gr */ \endcode In the above example, we're ignoring some of the basic semantics of the class as a GNU Radio block and focus just on the call to set up the get and set functions over ControlPort. Each block has a function that allows us to add a new ControlPort interface object to a list, the add_rpc_variable. We don't care about that list anymore; that's for ControlPort to worry about. We just add new variables, either setters or getters. Without dissecting every piece of the above calls, notice that we use the public class, gr::blocks::foo as the class, not the implementation class. We also use the block's alias, which GNU Radio uses as a database entry to connect a block by name to the pointer in memory. This allows ControlPort to know where the object in memory is at any given time to access the setters and getters. The three PMTs specified are simply an expected minimum, maximum, and default value. None of these are strictly enforced and only serve as guides. The RPC_PRIVLVL_MIN is currently a placeholder for a privilege level setting. In many cases, reading b might be fine for everyone, but we want strong restrictions on who has the ability to set b. And finally, we can specify display options to hint at the right way to display this variable when remotely plotting it. More on that in the following section. Finally, note that we put \#ifdefs around the code. We always want setup_rpc to be there and callable, but if ControlPort was not built for GNU Radio, we cannot register any variables with it. This is just a nicety to allow us to set up our code for use with ControlPort without requiring it. \subsection ctrlport_alt_reg Alternative Registers If using the concept above, setup_rpc automatically gets called when the flowgraph is started. In most instances, this is all we ever need since there's nothing interesting going on until then. However, if not using a gr::block or needing access before we run the flowgraph, the above method won't work (it comes down to when the block's alias has meaning). There are alternate variable registration functions for the sets and gets. These take the form: \code rpcbasic_register_get(const std::string& name, const char* functionbase, T* obj, Tfrom (T::*function)(), const pmt::pmt_t &min, const pmt::pmt_t &max, const pmt::pmt_t &def, const char* units_ = "", const char* desc_ = "", priv_lvl_t minpriv_ = RPC_PRIVLVL_MIN, DisplayType display_ = DISPNULL) rpcbasic_register_set(const std::string& name, const char* functionbase, T* obj, void (T::*function)(Tto), const pmt::pmt_t &min, const pmt::pmt_t &max, const pmt::pmt_t &def, const char* units_ = "", const char* desc_ = "", priv_lvl_t minpriv_ = RPC_PRIVLVL_MIN, DisplayType display_ = DISPNULL) \endcode The only thing different about the above code is that instead of taking a single 'alias()' name, which provides us access to the objects pointer, we instead provide a unique name (fucntionbase) and a pointer to the object itself (obj). These are templated functions, so the class T is known from that. If using this method, the recommended way is to create a new function (not setup_rpc), register the variable using add_rpc_variable but with the different register_get/set shown here, and then call this function either in the object's constructor or make it a public member function to be called when you need it. \section ctrlport_disp Display Options When exporting a new RPC variable over ControlPort, one argument is a display options mask. These options are useful to a remote client to tell identify activities like default plotters and initial conditions. The gr-ctrlport-monitor application uses this heavily in determining how to plot ControlPort variables. The options mask is just a 32-bit value with options OR'd together. Certain options are only appropriate for certain types of plots. Options on plots where that option is not available will simply be ignored. The main caveat to be aware of is that the DISPXY plot type is specific to complex values. Therefore, DISPOPTCPLX is assumed. These options are specified in rpccallbackregister_base.h and are exposed through SWIG to live in the \b gr namespace. Plot Types \li DISPNULL: Nothing specified. \li DISPTIME: Time-domain plot. \li DISPXY: XY or constellation plot (complex only). \li DISPPSD: PSD plot. \li DISPSPEC: Spectrogram plot. \li DISPRAST: Time raster plot (non-complex only) Plot Options \li DISPOPTCPLX: Signal is complex. \li DISPOPTLOG: Start plot in semilog-y mode (time domain only). \li DISPOPTSTEM: Start plot in stem mode (time domain only). \li DISPOPTSTRIP: Run plot as a stripchart (time domain only). \li DISPOPTSCATTER: Do scatter plot instead of lines (XY plot only). \section ctrlport_probes ControlPort Probes ControlPort provides a set of probes that can be used as sinks that pass vectors of data across ControlPort. These probes are used to sample or visualize data remotely. We can place a ControlPort probe anywhere in the flowgraph to grab the latest sample of data from the block it's connected to. The main ControlPort probe to use is blocks.ctrlport_probe2_x. From GRC, this is simply "CtrlPort Probe", which can handle complex, floats, ints, shorts, and bytes. The blocks are named and given a description to identify them over ControlPort. The blocks also take a vector length for how many samples to pass back at a time. Finally, these blocks take a display hint, as described in the above section. This allows us to specify the default behavior for how to display the samples. Another block that can be used is the fft.ctrlport_probe_psd to calculate the PSD and pass that over the ControlPort interface. \section ctrlport_monitors ControlPort Monitors There are two main ControlPort monitor applications provided with GNU Radio. Both act similarly. The first is a standard ControlPort monitor application. This connects to a running flowgraph and displays all exported interfaces in a table format. The name, unit, latest sample, and description of all interfaces are display in a row. Double-clicking will open up the default display. Right clicking any item will allow the user to select the type of plot to use to display the data. When a display is active, using the buttons at the top, the subwindows can all be tiled or windowed as needed to manage the full interface. We can then drag-and-drop any other item on top of a currently running display plot. To launch the ControlPort monitor application, know the IP address and port of the ControlPort endpoint established by the flowgraph and run:
gr-ctrlport-monitor \ \
\subsection perfmonitor Performance Monitor A second application is used to locally redraw the flowgraph and display some of the Performance Counters. In this application, the nodes are blue boxes where the size of the box is proportional to the work time and the color depth and line width are proportional to the output buffer fullness. The controls at the top of the Performance Monitor application allow us to select the instantaneous, average, and variance values of the Performance Counters. And the work time and buffer fullness can be displayed as a table or bar graph. To launch the Performance Monitor, run:
gr-perf-monitorx \ \
*/ gnuradio-3.7.11/docs/doxygen/other/doxypy.py0000775000175000017500000003307213055131744020714 0ustar jcorganjcorgan#!/usr/bin/env python __applicationName__ = "doxypy" __blurb__ = """ doxypy is an input filter for Doxygen. It preprocesses python files so that docstrings of classes and functions are reformatted into Doxygen-conform documentation blocks. """ __doc__ = __blurb__ + \ """ In order to make Doxygen preprocess files through doxypy, simply add the following lines to your Doxyfile: FILTER_SOURCE_FILES = YES INPUT_FILTER = "python /path/to/doxypy.py" """ __version__ = "0.4.1" __date__ = "5th December 2008" __website__ = "http://code.foosel.org/doxypy" __author__ = ( "Philippe 'demod' Neumann (doxypy at demod dot org)", "Gina 'foosel' Haeussge (gina at foosel dot net)" ) __licenseName__ = "GPL v2" __license__ = """This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . """ import sys import re from optparse import OptionParser, OptionGroup class FSM(object): """Implements a finite state machine. Transitions are given as 4-tuples, consisting of an origin state, a target state, a condition for the transition (given as a reference to a function which gets called with a given piece of input) and a pointer to a function to be called upon the execution of the given transition. """ """ @var transitions holds the transitions @var current_state holds the current state @var current_input holds the current input @var current_transition hold the currently active transition """ def __init__(self, start_state=None, transitions=[]): self.transitions = transitions self.current_state = start_state self.current_input = None self.current_transition = None def setStartState(self, state): self.current_state = state def addTransition(self, from_state, to_state, condition, callback): self.transitions.append([from_state, to_state, condition, callback]) def makeTransition(self, input): """ Makes a transition based on the given input. @param input input to parse by the FSM """ for transition in self.transitions: [from_state, to_state, condition, callback] = transition if from_state == self.current_state: match = condition(input) if match: self.current_state = to_state self.current_input = input self.current_transition = transition if options.debug: print >>sys.stderr, "# FSM: executing (%s -> %s) for line '%s'" % (from_state, to_state, input) callback(match) return class Doxypy(object): def __init__(self): string_prefixes = "[uU]?[rR]?" self.start_single_comment_re = re.compile("^\s*%s(''')" % string_prefixes) self.end_single_comment_re = re.compile("(''')\s*$") self.start_double_comment_re = re.compile("^\s*%s(\"\"\")" % string_prefixes) self.end_double_comment_re = re.compile("(\"\"\")\s*$") self.single_comment_re = re.compile("^\s*%s(''').*(''')\s*$" % string_prefixes) self.double_comment_re = re.compile("^\s*%s(\"\"\").*(\"\"\")\s*$" % string_prefixes) self.defclass_re = re.compile("^(\s*)(def .+:|class .+:)") self.empty_re = re.compile("^\s*$") self.hashline_re = re.compile("^\s*#.*$") self.importline_re = re.compile("^\s*(import |from .+ import)") self.multiline_defclass_start_re = re.compile("^(\s*)(def|class)(\s.*)?$") self.multiline_defclass_end_re = re.compile(":\s*$") ## Transition list format # ["FROM", "TO", condition, action] transitions = [ ### FILEHEAD # single line comments ["FILEHEAD", "FILEHEAD", self.single_comment_re.search, self.appendCommentLine], ["FILEHEAD", "FILEHEAD", self.double_comment_re.search, self.appendCommentLine], # multiline comments ["FILEHEAD", "FILEHEAD_COMMENT_SINGLE", self.start_single_comment_re.search, self.appendCommentLine], ["FILEHEAD_COMMENT_SINGLE", "FILEHEAD", self.end_single_comment_re.search, self.appendCommentLine], ["FILEHEAD_COMMENT_SINGLE", "FILEHEAD_COMMENT_SINGLE", self.catchall, self.appendCommentLine], ["FILEHEAD", "FILEHEAD_COMMENT_DOUBLE", self.start_double_comment_re.search, self.appendCommentLine], ["FILEHEAD_COMMENT_DOUBLE", "FILEHEAD", self.end_double_comment_re.search, self.appendCommentLine], ["FILEHEAD_COMMENT_DOUBLE", "FILEHEAD_COMMENT_DOUBLE", self.catchall, self.appendCommentLine], # other lines ["FILEHEAD", "FILEHEAD", self.empty_re.search, self.appendFileheadLine], ["FILEHEAD", "FILEHEAD", self.hashline_re.search, self.appendFileheadLine], ["FILEHEAD", "FILEHEAD", self.importline_re.search, self.appendFileheadLine], ["FILEHEAD", "DEFCLASS", self.defclass_re.search, self.resetCommentSearch], ["FILEHEAD", "DEFCLASS_MULTI", self.multiline_defclass_start_re.search, self.resetCommentSearch], ["FILEHEAD", "DEFCLASS_BODY", self.catchall, self.appendFileheadLine], ### DEFCLASS # single line comments ["DEFCLASS", "DEFCLASS_BODY", self.single_comment_re.search, self.appendCommentLine], ["DEFCLASS", "DEFCLASS_BODY", self.double_comment_re.search, self.appendCommentLine], # multiline comments ["DEFCLASS", "COMMENT_SINGLE", self.start_single_comment_re.search, self.appendCommentLine], ["COMMENT_SINGLE", "DEFCLASS_BODY", self.end_single_comment_re.search, self.appendCommentLine], ["COMMENT_SINGLE", "COMMENT_SINGLE", self.catchall, self.appendCommentLine], ["DEFCLASS", "COMMENT_DOUBLE", self.start_double_comment_re.search, self.appendCommentLine], ["COMMENT_DOUBLE", "DEFCLASS_BODY", self.end_double_comment_re.search, self.appendCommentLine], ["COMMENT_DOUBLE", "COMMENT_DOUBLE", self.catchall, self.appendCommentLine], # other lines ["DEFCLASS", "DEFCLASS", self.empty_re.search, self.appendDefclassLine], ["DEFCLASS", "DEFCLASS", self.defclass_re.search, self.resetCommentSearch], ["DEFCLASS", "DEFCLASS_MULTI", self.multiline_defclass_start_re.search, self.resetCommentSearch], ["DEFCLASS", "DEFCLASS_BODY", self.catchall, self.stopCommentSearch], ### DEFCLASS_BODY ["DEFCLASS_BODY", "DEFCLASS", self.defclass_re.search, self.startCommentSearch], ["DEFCLASS_BODY", "DEFCLASS_MULTI", self.multiline_defclass_start_re.search, self.startCommentSearch], ["DEFCLASS_BODY", "DEFCLASS_BODY", self.catchall, self.appendNormalLine], ### DEFCLASS_MULTI ["DEFCLASS_MULTI", "DEFCLASS", self.multiline_defclass_end_re.search, self.appendDefclassLine], ["DEFCLASS_MULTI", "DEFCLASS_MULTI", self.catchall, self.appendDefclassLine], ] self.fsm = FSM("FILEHEAD", transitions) self.outstream = sys.stdout self.output = [] self.comment = [] self.filehead = [] self.defclass = [] self.indent = "" def __closeComment(self): """Appends any open comment block and triggering block to the output.""" if options.autobrief: if len(self.comment) == 1 \ or (len(self.comment) > 2 and self.comment[1].strip() == ''): self.comment[0] = self.__docstringSummaryToBrief(self.comment[0]) if self.comment: block = self.makeCommentBlock() self.output.extend(block) if self.defclass: self.output.extend(self.defclass) def __docstringSummaryToBrief(self, line): """Adds \\brief to the docstrings summary line. A \\brief is prepended, provided no other doxygen command is at the start of the line. """ stripped = line.strip() if stripped and not stripped[0] in ('@', '\\'): return "\\brief " + line else: return line def __flushBuffer(self): """Flushes the current outputbuffer to the outstream.""" if self.output: try: if options.debug: print >>sys.stderr, "# OUTPUT: ", self.output print >>self.outstream, "\n".join(self.output) self.outstream.flush() except IOError: # Fix for FS#33. Catches "broken pipe" when doxygen closes # stdout prematurely upon usage of INPUT_FILTER, INLINE_SOURCES # and FILTER_SOURCE_FILES. pass self.output = [] def catchall(self, input): """The catchall-condition, always returns true.""" return True def resetCommentSearch(self, match): """Restarts a new comment search for a different triggering line. Closes the current commentblock and starts a new comment search. """ if options.debug: print >>sys.stderr, "# CALLBACK: resetCommentSearch" self.__closeComment() self.startCommentSearch(match) def startCommentSearch(self, match): """Starts a new comment search. Saves the triggering line, resets the current comment and saves the current indentation. """ if options.debug: print >>sys.stderr, "# CALLBACK: startCommentSearch" self.defclass = [self.fsm.current_input] self.comment = [] self.indent = match.group(1) def stopCommentSearch(self, match): """Stops a comment search. Closes the current commentblock, resets the triggering line and appends the current line to the output. """ if options.debug: print >>sys.stderr, "# CALLBACK: stopCommentSearch" self.__closeComment() self.defclass = [] self.output.append(self.fsm.current_input) def appendFileheadLine(self, match): """Appends a line in the FILEHEAD state. Closes the open comment block, resets it and appends the current line. """ if options.debug: print >>sys.stderr, "# CALLBACK: appendFileheadLine" self.__closeComment() self.comment = [] self.output.append(self.fsm.current_input) def appendCommentLine(self, match): """Appends a comment line. The comment delimiter is removed from multiline start and ends as well as singleline comments. """ if options.debug: print >>sys.stderr, "# CALLBACK: appendCommentLine" (from_state, to_state, condition, callback) = self.fsm.current_transition # single line comment if (from_state == "DEFCLASS" and to_state == "DEFCLASS_BODY") \ or (from_state == "FILEHEAD" and to_state == "FILEHEAD"): # remove comment delimiter from begin and end of the line activeCommentDelim = match.group(1) line = self.fsm.current_input self.comment.append(line[line.find(activeCommentDelim)+len(activeCommentDelim):line.rfind(activeCommentDelim)]) if (to_state == "DEFCLASS_BODY"): self.__closeComment() self.defclass = [] # multiline start elif from_state == "DEFCLASS" or from_state == "FILEHEAD": # remove comment delimiter from begin of the line activeCommentDelim = match.group(1) line = self.fsm.current_input self.comment.append(line[line.find(activeCommentDelim)+len(activeCommentDelim):]) # multiline end elif to_state == "DEFCLASS_BODY" or to_state == "FILEHEAD": # remove comment delimiter from end of the line activeCommentDelim = match.group(1) line = self.fsm.current_input self.comment.append(line[0:line.rfind(activeCommentDelim)]) if (to_state == "DEFCLASS_BODY"): self.__closeComment() self.defclass = [] # in multiline comment else: # just append the comment line self.comment.append(self.fsm.current_input) def appendNormalLine(self, match): """Appends a line to the output.""" if options.debug: print >>sys.stderr, "# CALLBACK: appendNormalLine" self.output.append(self.fsm.current_input) def appendDefclassLine(self, match): """Appends a line to the triggering block.""" if options.debug: print >>sys.stderr, "# CALLBACK: appendDefclassLine" self.defclass.append(self.fsm.current_input) def makeCommentBlock(self): """Indents the current comment block with respect to the current indentation level. @returns a list of indented comment lines """ doxyStart = "##" commentLines = self.comment commentLines = map(lambda x: "%s# %s" % (self.indent, x), commentLines) l = [self.indent + doxyStart] l.extend(commentLines) return l def parse(self, input): """Parses a python file given as input string and returns the doxygen- compatible representation. @param input the python code to parse @returns the modified python code """ lines = input.split("\n") for line in lines: self.fsm.makeTransition(line) if self.fsm.current_state == "DEFCLASS": self.__closeComment() return "\n".join(self.output) def parseFile(self, filename): """Parses a python file given as input string and returns the doxygen- compatible representation. @param input the python code to parse @returns the modified python code """ f = open(filename, 'r') for line in f: self.parseLine(line.rstrip('\r\n')) if self.fsm.current_state == "DEFCLASS": self.__closeComment() self.__flushBuffer() f.close() def parseLine(self, line): """Parse one line of python and flush the resulting output to the outstream. @param line the python code line to parse """ self.fsm.makeTransition(line) self.__flushBuffer() def optParse(): """Parses commandline options.""" parser = OptionParser(prog=__applicationName__, version="%prog " + __version__) parser.set_usage("%prog [options] filename") parser.add_option("--autobrief", action="store_true", dest="autobrief", help="use the docstring summary line as \\brief description" ) parser.add_option("--debug", action="store_true", dest="debug", help="enable debug output on stderr" ) ## parse options global options (options, filename) = parser.parse_args() if not filename: print >>sys.stderr, "No filename given." sys.exit(-1) return filename[0] def main(): """Starts the parser on the file given by the filename as the first argument on the commandline. """ filename = optParse() fsm = Doxypy() fsm.parseFile(filename) if __name__ == "__main__": main() gnuradio-3.7.11/docs/doxygen/other/group_defs.dox0000664000175000017500000000551713055131744021657 0ustar jcorganjcorgan/*! * \defgroup block GNU Radio C++ Signal Processing Blocks * \brief All C++ blocks that can be used in GR graphs are listed here or in * the subcategories below. * * Sorry, at this time the Python hierarchical blocks are not included * in this index. * @{ */ /*! \defgroup container_blk Top Block and Hierarchical Block Base Classes */ /*! \defgroup audio_blk Audio Signals */ /*! \defgroup boolean_operators_blk Boolean Operators */ /*! \defgroup byte_operators_blk Byte Operators */ /*! \defgroup channel_models_blk Channel Models */ /*! \defgroup channelizers_blk Channelizers */ /*! \defgroup coding_blk Information Coding and Decoding */ /*! \defgroup controlport_blk ControlPort */ /*! \defgroup debug_tools_blk Debug Tools */ /*! \defgroup deprecated_blk Deprecated */ /*! \defgroup equalizers_blk Equalizers */ /*! \defgroup error_coding_blk Error Coding and Decoding */ /*! \defgroup fcd_blk FCD Interface */ /*! \defgroup file_operators_blk File Operators */ /*! \defgroup filter_blk Filters */ /*! \defgroup fourier_analysis_blk Fourier Analysis */ /*! \defgroup instrumentation_blk Instrumentation Tools */ /*! \defgroup level_controllers_blk Level Controllers */ /*! \defgroup math_operators_blk Math Operators */ /*! \defgroup measurement_tools_blk Measurement Tools */ /*! \defgroup message_tools_blk Message Tools */ /*! \defgroup misc_blk Miscellaneous */ /*! \defgroup modulators_blk Modulators and Demodulators */ /*! \defgroup networking_tools_blk Networking Tools */ /*! \defgroup noaa_blk NOAA Blocks */ /*! \defgroup ofdm_blk OFDM Blocks */ /*! \defgroup packet_operators_blk Packet/Frame Operators */ /*! \defgroup peak_detectors_blk Peak Detectors */ /*! \defgroup pager_blk Pager Blocks */ /*! \defgroup qtgui_blk QT Graphical Interfaces */ /*! \defgroup resamplers_blk Resamplers */ /*! \defgroup stream_operators_blk Streams Operators */ /*! \defgroup stream_tag_tools_blk Stream Tag Tools */ /*! \defgroup symbol_coding_blk Symbol Coding */ /*! \defgroup synchronizers_blk Synchronizers */ /*! \defgroup trellis_coding_blk Trellis Coding */ /*! \defgroup type_converters_blk Data Type Converters */ /*! \defgroup uhd_blk UHD Interface */ /*! \defgroup waveform_generators_blk Waveform Generators */ /*! \defgroup wavelet_blk Wavelet Transforms */ /*! \defgroup wxgui_blk WX Graphical Interfaces */ /*! * \defgroup base_blk Base classes for GR Blocks * \brief All C++ blocks are derived from these base classes */ /*! @} */ /*! \defgroup filter_design Digital Filter Design */ /*! \defgroup misc Miscellaneous */ /*! \defgroup internal Implementation Details */ /*! * \defgroup applications Applications * These are some applications build using gnuradio... * @{ */ /*! * \defgroup atsc ATSC * ATSC Applications... */ /*! * \defgroup pager Pager * Pager Applications */ /*! @} */ /*! \defgroup hardware Misc Hardware Control */ gnuradio-3.7.11/docs/doxygen/other/logger.dox0000664000175000017500000002111313055131744020767 0ustar jcorganjcorgan/*! \page page_logger Logging \section logging Logging GNU Radio has a logging interface to enable various levels of logging information to be printed to the console or a file. The logger derives from log4cpp (http://log4cpp.sourceforge.net/) which is readily available in most Linux distributions. This is an optional dependency and GNU Radio will work without it. When configuring GNU Radio, the -DENABLE_GR_LOG=On|Off option to cmake will allow the user to toggle use of the logger on and off. The logger defaults to "on" and will use log4cpp if it is available. If log4cpp is not found, the default logging will output to standard output or standard error, depending on the level of the log message. Logging is useful for blocks to print out certain amounts of data at different levels. These levels are:
    DEBUG < INFO < WARN < TRACE < ERROR < ALERT < CRIT < FATAL < EMERG
The order here determines the level of output. These levels are hierarchical in that specifying any level also includes any level above it. For example, when using the INFO level, all INFO and higher messages are logged and DEBUG is ignored. A level NOTSET is provided to disable a logger. \subsection configfile Logging Configuration The logging configuration can be found in the gnuradio-runtime.conf file under the [LOG] section. This allows us fairly complete control over the logging facilities. The main configuration functions are to set up the level of the loggers and set the default output behavior of the loggers. There are two default loggers that all gr_block's have access to: d_logger and d_debug_logger. The first is a standard logger meant to output simple information about the block while it is running. The debug logger is meant for debugging purposes and is added to make it convenient to use a secondary logger that outputs to a different stream or file. The four main configure options are:
  log_level = debug
  debug_level = debug
  log_file = stdout
  debug_file = stderr
This establishes the two loggers as having access to all levels of logging events (DEBUG through EMERG). They are also configured not to use files but instead output to the console. The standard logger will output to standard out while the debug logger outputs to standard error. Changing these last two lines to another value will create files that are used to store the log messages. All messages are appended to the file. When using either standard error or standard out, the messages for the two different loggers will look like:
  gr::log :\: \ - \
  gr::debug :\: \ - \
When using a file, the only difference in the format is that the message prefix of "gr::log" or "gr::debug" is not used. Instead, the time in milliseconds from the start of the program is inserted. Remember that a local "~/.gnuradio/config.conf" file can be used to override any parameter in the global file (see \ref prefs for more details). To use these loggers inside of a GNU Radio block, we use the protected data members of d_logger and d_debug_logger of gr_block and pass them to our pre-defined macros: \code GR_LOG_(, ""); \endcode Where \ is one of the levels as mentioned above, \ is either d_logger or d_debug_logger, and \ is the message we want to output. If we wanted to output an INFO level message to the standard logger and a WARN level message to the debug logger, it would look like this: \code GR_LOG_INFO(d_logger, "Some info about the block"); GR_LOG_WARN(d_debug_logger, "Some warning about the block"); \endcode When this is printed to wherever you are directing the output of the logger, it will look like:
    gr::log :INFO:  - Some info about the block
    gr::debug :WARN:  - Some warning about the block
This provides us information about where the message came from, the level of the message, and the block that generated the message. We use the concept of the block's alias which by default (i.e., unless otherwise set by the user) includes the name of the block and a unique ID to distinguish it from other blocks of the same type. The various logging macros are defined in gr_logger.h. Here are some simple examples of using them: \code GR_LOG_DEBUG(LOG, "DEBUG message"); GR_LOG_INFO(LOG, "INFO message"); GR_LOG_NOTICE(LOG, "NOTICE message"); GR_LOG_WARN(LOG, "WARNING message"); GR_LOG_ERROR(LOG, "ERROR message"); GR_LOG_CRIT(LOG, "CRIT message"); GR_LOG_ALERT(LOG, "ALERT message"); GR_LOG_FATAL(LOG, "FATAL message"); GR_LOG_EMERG(LOG, "EMERG message"); \endcode If the logger is not enabled, then these macros become nops and do nothing (and d_logger and d_debug_logger are NULL pointers). If logging is enabled but the log4cpp library is not found, then TRACE, INFO, and NOTICE levels go to stdout and the rest to stderr. \subsection adv_config Advanced Configuration Options If not using the simplified settings discussed above, where we can direct the logger messages to either a file or one of the standard outputs, we must use a more complicated configuration file. We do this by specifying the "log_config" option in the [LOG] section. The log4cpp documentation will provide more information on how configuration works and looks. Mostly, a default configuration script provided with GNU Radio can be used. After installation, the default configuration script is located at:
    $prefix/etc/gnuradio/gr_log_default.conf
For the following examples, we will assume that our local "~/.gnuradio/config.conf" looks like this: \code [LOG] log_config = /opt/gr/etc/gnuadio/gr_log_default.conf log_level = debug debug_level = Off \endcode Inside of the default configuration file, we define the parameters for the two logger's, the standard logger the separate debug logger. If the levels of the two loggers are specified in our configuration file, as in the above example, these levels override any levels specified in the XML file. Here, we have turned on the standard logger (d_logger) to all levels and turned off the debug logger (d_debug_logger). So even if the debug logger is used in the code, it will not actually output any information. Conversely, any level of output passed to the standard logger will output because we have turned this value to the lowest level "debug." If both an XML configuration file is set and the "log_file" or "debug_file" options are set at the same time, both systems are actually used. So you can configure file access and the pattern through the XML file while also still outputting to stdout or stderr. \section advlog Advanced Usage The description above for using the logging facilities is specific to GNU Radio blocks. We have put the code necessary to access the debugger into the gr_block parent class to simplify access and make sure all blocks have the ability to quickly and easily use the logger. For non gr_block-based code, we have to get some information about the logger in order to properly access it. Each logger only exists once as a singleton in the system, but we need to get a pointer to the right logger and then set it up for our local use. The following code snippet shows how to do this to get access to the standard logger, which has a root of "gr_log." (access to the debug logger is similar except we would use "gr_log_debug." in the GR_LOG_GETLOGGER call): \code prefs *p = prefs::singleton(); std::string log_file = p->get_string("LOG", "log_config", ""); std::string log_level = p->get_string("LOG", "log_level", "off"); GR_CONFIG_LOGGER(log_file); GR_LOG_GETLOGGER(LOG, "gr_log." + "my_logger_name"); GR_LOG_SET_LEVEL(LOG, log_level); \endcode This creates a pointer called LOG (which is instantiated as a log4cpp:LoggerPtr in the macro) that we can now use locally as the input to our logging macros like 'GR_LOG_INFO(LOG, "message")'. \section logPy Logging from Python The logging capability has been brought out python via swig. The configuration of the logger can be manipulated via the following calls: \code from gnuradio import gr gr.logger_config(filename,watch_period) # Configures the logger with conf file filename names = gr.logger_get_names() # Returns the names of all loggers gr.logger_reset_config() # Resets logger config by removing all appenders \endcode Once the logger is configured you can manipulate a logger via a wrapper class gr.logger(). You can isntantiate this by the following. (Reference logger.h for list of methods) \code from gnuradio import gr log=gr.logger("nameOfLogger") log.debug("Log a debug message") log.set_level("INFO"); \endcode */ gnuradio-3.7.11/docs/doxygen/other/main_page.dox0000664000175000017500000000170213055131744021432 0ustar jcorganjcorgan/*! \mainpage \image html gnuradio-logo.svg Welcome to GNU Radio! For details about GNU Radio and using it, please see the main project page. Other information about the project and discussion about GNU Radio, software radio, and communication theory in general can be found at the GNU Radio blog. This manual is split into two parts: A usage manual and a reference. The usage manual deals with concepts of GNU Radio, introductions, how to build GNU Radio etc. The reference contains a list of all GNU Radio components, sorted by in-tree components, modules, files, namespaces and classes. To access these parts, follow these links or use the tree browser in the left sidebar. A search function is also available at the top right. \li \subpage page_usage "Part I - GNU Radio Usage" \li \subpage page_components "Part II - Reference" */ gnuradio-3.7.11/docs/doxygen/other/metadata.dox0000664000175000017500000003440313055131744021276 0ustar jcorganjcorgan/*! \page page_metadata Metadata Information \section metadata_introduction Introduction Metadata files have extra information in the form of headers that carry metadata about the samples in the file. Raw, binary files carry no extra information and must be handled delicately. Any changes in the system state such as sample rate or if a receiver's frequency are not conveyed with the data in the file itself. Header of metadata solve this problem. We write metadata files using gr::blocks::file_meta_sink and read metadata files using gr::blocks::file_meta_source. Metadata files have headers that carry information about a segment of data within the file. The header structure is described in detail in the next section. A metadata file always starts with a header that describes the basic structure of the data. It contains information about the item size, data type, if it's complex, the sample rate of the segment, the time stamp of the first sample of the segment, and information regarding the header size and segment size. The first static portion of the header file contains the following information. - version: (char) version number (usually set to METADATA_VERSION) - rx_rate: (double) Stream's sample rate - rx_time: (pmt::pmt_t pair - (uint64_t, double)) Time stamp (format from UHD) - size: (int) item size in bytes - reflects vector length if any. - type: (int) data type (enum below) - cplx: (bool) true if data is complex - strt: (uint64_t) start of data relative to current header - bytes: (uint64_t) size of following data segment in bytes An optional extra section of the header stores information in any received tags. The two main tags associated with tags are: - rx_rate: the sample rate of the stream. - rx_time: the time stamp of the first item in the segment. These tags were inspired by the UHD tag format. The header gives enough information to process and handle the data. One cautionary note, though, is that the data type should never change within a file. There should be very little need for this, but more importantly. GNU Radio blocks can only set the data type of their IO signatures in the constructor, so changes in the data type afterward will not be recognized. We also have an extra header segment that is option. This can be loaded up at the beginning by the user specifying some extra metadata that should be transmitted along with the data. It also grows whenever it sees a stream tag, so the dictionary will contain and key:value pairs out of tags from the flowgraph. \subsection metadata_types Types of Metadata Files GNU Radio currently supports two types of metadata files: - inline: headers are inline with the data in the same file. - detached: headers are in a separate header file from the data. The inline method is the standard version. When a detached header is used, the headers are simply inserted back-to-back in the detached header file. The dat file, then, is the standard raw binary format with no interruptions in the data. \subsection metadata_updating Updating Headers While there is always a header that starts a metadata file, they are updated throughout as well. There are two events that trigger a new header. We define a segment as the unit of data associated with the last header. The first event that will trigger a new header is when enough samples have been written for the given segment. This number is defined as the maximum segment size and is a parameter we pass to the file_meta_sink. It defaults to 1 million items (items, not bytes). When that number of items is reached, a new header is generated and a new segment is started. This makes it easier for us to manipulate the data later and helps protect against catastrophic data loss. The second event to trigger a new segment is if a new tag is observed. If the tag is a standard tag in the header, the header value is updated, the header and current extras are written to file, and the segment begins again. If a tag from the extras is seen, the value associated with that tag is updated; and if a new tag is seen, a new key:value pair are added to the extras dictionary. When new tags are seen, we generate a new segment so that we make sure that all samples in that segment are defined by the header. If the sample rate changes, we create a new segment where all of the new samples are at that new rate. Also, in the case of UHD devices, if a segment loss is observed, it will generate a new timestamp as a tag of 'rx_time'. We create a new file segment that reflects this change to keep the sample times exact. \subsection metadata_implementation Implementation Metadata files are created using gr::blocks::file_meta_sink. The default behavior is to create a single file with inline headers as metadata. An option can be set to switch to detached header mode. Metadata file are read into a flowgraph using gr::blocks::file_meta_source. This source reads a metadata file, inline by default with a settable option to use detached headers. The data from the segments is converted into a standard streaming output. The 'rx_rate' and 'rx_time' and all key:value pairs in the extra header are converted into tags and added to the stream tags interface. \section metadata_structure Structure The file metadata consists of a static mandatory header and a dynamic optional extras header. Each header is a separate PMT dictionary. Headers are created by building a PMT dictionary (pmt::make_dict) of key:value pairs, then the dictionary is serialized into a string to be written to file. The header is always the same length that is predetermined by the version of the header (this must be known already). The header will then indicate if there is an extra data to be extracted as a separate serialized dictionary. To work with the PMTs for creating and extracting header information, we use PMT operators. For example, we create a simplified version of the header in C++ like this: \code const char METADATA_VERSION = 0x0; pmt::pmt_t header; header = pmt::make_dict(); header = pmt::dict_add(header, pmt::mp("version"), pmt::mp(METADATA_VERSION)); header = pmt::dict_add(header, pmt::mp("rx_rate"), pmt::mp(samp_rate)); std::string hdr_str = pmt::serialize_str(header); \endcode The call to pmt::dict_add adds a new key:value pair to the dictionary. Notice that it both takes and returns the 'header' variable. This is because we are actually creating a new dictionary with this function, so we just assign it to the same variable. The 'mp' functions are convenience functions provided by the PMT library. They interpret the data type of the value being inserted and call the correct 'pmt::from_xxx' function. For more direct control over the data type, see PMT functions in pmt.h, such as pmt::from_uint64 or pmt::from_double. We finish this off by using pmt::serialize_str to convert the PMT dictionary into a specialized string format that makes it easy to write to a file. The header is always METADATA_HEADER_SIZE bytes long and a metadata file always starts with a header. So to extract the header from a file, we need to read in this many bytes from the beginning of the file and deserialize it. An important note about this is that the deserialize function must operate on a std::string. The serialized format of a dictionary contains null characters, so normal C character arrays (e.g., 'char *s') get confused. Assuming that 'std::string str' contains the full string as read from a file, we can access the dictionary in C++ like this: \code pmt::pmt_t hdr = pmt::deserialize_str(str); if(pmt::dict_has_key(hdr, pmt::string_to_symbol("strt"))) { pmt::pmt_t r = pmt::dict_ref(hdr, pmt::string_to_symbol("strt"), pmt::PMT_NIL); uint64_t seg_start = pmt::to_uint64(r); uint64_t extra_len = seg_start - METADATA_HEADER_SIZE; } \endcode This example first deserializes the string into a PMT dictionary again. This will throw an error if the string is malformed and cannot be deserialized correctly. We then want to get access to the item with key 'strt'. As the next subsection will show, this value indicates at which byte the data segment starts. We first check to make sure that this key exists in the dictionary. If not, our header does not contain the correct information and we might want to handle this as an error. Assuming the header is properly formatted, we then get the particular item referenced by the key 'strt'. This is a uint64_t, so we use the PMT function to extract and convert this value properly. We now know if we have an extra header in the file by looking at the difference between 'seg_start' and the static header size, METADATA_HEADER_SIZE. If the 'extra_len' is greater than 0, we know we have an extra header that we can process. Moreover, this also tells us the size of the serialized PMT dictionary in bytes, so we can easily read this many bytes from the file. We can then deserialize and parse this header just like the first. \subsection metadata_header Header Information The header is a PMT dictionary with a known structure. This structure may change, but we version the headers, so all headers of version X must be the same length and structure. As of now, we only have version 0 headers, which look like the following: - version: (char) version number (usually set to METADATA_VERSION) - rx_rate: (double) Stream's sample rate - rx_time: (pmt::pmt_t pair - (uint64_t, double)) Time stamp (format from UHD) - size: (int) item size in bytes - reflects vector length if any. - type: (int) data type (enum below) - cplx: (bool) true if data is complex - strt: (uint64_t) start of data relative to current header - bytes: (uint64_t) size of following data segment in bytes The data types are indicated by an integer value from the following enumeration type: \code enum gr_file_types { GR_FILE_BYTE=0, GR_FILE_CHAR=0, GR_FILE_SHORT=1, GR_FILE_INT, GR_FILE_LONG, GR_FILE_LONG_LONG, GR_FILE_FLOAT, GR_FILE_DOUBLE, }; \endcode \subsection metadata_extras Extras Information The extras section is an optional segment of the header. If 'strt' == METADATA_HEADER_SIZE, then there is no extras. Otherwise, it is simply a PMT dictionary of key:value pairs. The extras header can contain anything and can grow while a program is running. We can insert extra data into the header at the beginning if we wish. All we need to do is use the pmt::dict_add function to insert our hand-made metadata. This can be useful to add our own markers and information. The main role of the extras header, though, is as a container to hold any stream tags. When a stream tag is observed coming in, the tag's key and value are added to the dictionary. Like a standard dictionary, any time a key already exists, the value will be updated. If the key does not exist, a new entry is created and the new key:value pair are added together. So any new tags that the file metadata sink sees will add to the dictionary. It is therefore important to always check the 'strt' value of the header to see if the length of the extras dictionary has changed at all. When reading out data from the extras, we do not necessarily know the data type of the PMT value. The key is always a PMT symbol, but the value can be any other PMT type. There are PMT functions that allow us to query the PMT to test if it is a particular type. We also have the ability to do pmt::print on any PMT object to print it to screen. Before converting from a PMT to it's natural data type, it is necessary to know the data type. \section metadata_utilities Utilities GNU Radio comes with a couple of utilities to help in debugging and manipulating metadata files. There is a general parser in Python that will convert the PMT header and extra header into Python dictionaries. This utility is: - gr-blocks/python/parse_file_metadata.py This program is installed into the Python directory under the 'gnuradio' module, so it can be accessed with: \code from gnuradio.blocks import parse_file_metadata \endcode It defines HEADER_LENGTH as the static length of the metadata header size. It also has dictionaries that can be used to convert from the file type to a string (ftype_to_string) and one to convert from the file type to the size of the data type in bytes (ftype_to_size). The 'parse_header' takes in a PMT dictionary, parses it, and returns a Python dictionary. An optional 'VERBOSE' bool can be set to print the information to standard out. The 'parse_extra_dict' is similar in that it converts from a PMT dictionary to a Python dictionary. The values are kept in their PMT format since we do not necessarily know the native data type. A program called 'gr_read_file_metadata' is installed into the path and can be used to read out all header information from a metadata file. This program is just called with the file name as the first command-line argument. An option '-D' will handle detached header files where the file of headers is expected to be the file name of the data with '.hdr' appended to it. \section metadata_examples Examples Examples are located in: - gr-blocks/examples/metadata Currently, there are a few GRC example programs. - file_metadata_sink: create a metadata file from UHD samples. - file_metadata_source: read the metadata file as input to a simple graph. - file_metadata_vector_sink: create a metadata file from UHD samples. - file_metadata_vector_source: read the metadata file as input to a simple graph. The file sink example can be switched to use a signal source instead of a UHD source, but no extra tagged data is used in this mode. The file source example pushes the data stream to a new raw file while a tag debugger block prints out any tags observed in the metadata file. A QT GUI time sink is used to look at the signal as well. The versions with 'vector' in the name are similar except they use vectors of data. The following shows a simple way of creating extra metadata for a metadata file. This example is just showing how we can insert a date into the metadata to keep track of later. The date in this case is encoded as a vector of uint16 with [day, month, year]. \code import pmt from gnuradio import blocks key = pmt.intern("date") val = pmt.init_u16vector(3, [13,12,2012]) extras = pmt.make_dict() extras = pmt.dict_add(extras, key, val) extras_str = pmt.serialize_str(extras) self.sink = blocks.file_meta_sink(gr.sizeof_gr_complex, "/tmp/metadat_file.out", samp_rate, 1, blocks.GR_FILE_FLOAT, True, 1000000, extra_str, False) \endcode */ gnuradio-3.7.11/docs/doxygen/other/msg_passing.dox0000664000175000017500000003537513055131744022041 0ustar jcorganjcorgan/*! \page page_msg_passing Message Passing \section msg_passing_introduction Introduction GNU Radio was originally a streaming system with no other mechanism to pass data between blocks. Streams of data are a model that work well for samples, bits, etc., but are not really the right mechanism for control data, metadata, and, often, packet structures (at least at some point in the processing chain). We solved part of this problem by introducing the tag stream (see \ref page_stream_tags). This is a parallel stream to the data streaming. The difference is that tags are designed to hold metadata and control information. Tags are specifically associated with a particular sample in the data stream and flow downstream alongside the data. This model allows other blocks to identify that an event or action has occurred or should occur on a particular item. The major limitation is that the tag stream is really only accessible inside a work function and only flows in one direction. Its benefit is that it is isosynchronous with the data. We want a more general message passing system for a couple of reasons. The first is to allow blocks downstream to communicate back to blocks upstream. The second is to allow an easier way for us to communicate back and forth between external applications and GNU Radio. The new message passing interface handles these cases, although it does so on an asynchronous basis. The message passing interface heavily relies on Polymorphic Types (PMTs) in GNU Radio. For further information about these data structures, see the page \ref page_pmt. \section msg_passing_api Message Passing API The message passing interface is designed into the gr::basic_block, which is the parent class for all blocks in GNU Radio. Each block has a set of message queues to hold incoming messages and can post messages to the message queues of other blocks. The blocks also distinguish between input and output ports. A block has to declare its input and output message ports in its constructor. The message ports are described by a name, which is in practice a PMT symbol (i.e., an interned string). The API calls to register a new port are: \code void message_port_register_in(pmt::pmt_t port_id) void message_port_register_out(pmt::pmt_t port_id) \endcode The ports are now identifiable by that port name. Other blocks who may want to post or receive messages on a port must subscribe to it. When a block has a message to send, they are published on a particular port. The subscribe and publish API looks like: \code void message_port_pub(pmt::pmt_t port_id, pmt::pmt_t msg); void message_port_sub(pmt::pmt_t port_id, pmt::pmt_t target); void message_port_unsub(pmt::pmt_t port_id, pmt::pmt_t target); \endcode Any block that has a subscription to another block's output message port will receive the message when it is published. Internally, when a block publishes a message, it simply iterates through all blocks that have subscribed and uses the gr::basic_block::_post method to send the message to that block's message queue. \subsection msg_passing_msg_handler Message Handler Functions A subscriber block must declare a message handler function to process the messages that are posted to it. After using the gr::basic_block::message_port_register_in to declare a subscriber port, we must then bind this port to the message handler. For this, we use Boost's 'bind' function: \code set_msg_handler(pmt::pmt_t port_id, boost::bind(&block_class::message_handler_function, this, _1)); \endcode The 'port_id' is the same PMT as used when registering the input port. The 'block_class::message_handler_function' is the member function of the class designated to handle messages to this port. The 'this' and '_1' are standard ways of using the Boost bind function to pass the 'this' pointer as the first argument to the class (standard OOP practice) and the _1 is an indicator that the function expects 1 additional argument. The prototype for all message handling functions is: \code void block_class::message_handler_function(pmt::pmt_t msg); \endcode We give an example of using this below. \subsection msg_passing_fg_connect Connecting Messages through the Flowgraph From the flowgraph level, we have instrumented a gr::hier_block2::msg_connect method to make it easy to subscribe blocks to other blocks' messages. The message connection method looks like the following code. Assume that the block \b src has an output message port named \a pdus and the block \b dbg has an input port named \a print. \code self.tb.msg_connect(src, "pdus", dbg, "print") \endcode All messages published by the \b src block on port \a pdus will be received by \b dbg on port \a print. Note here how we are just using strings to define the ports, not PMT symbols. This is a convenience to the user to be able to more easily type in the port names (for reference, you can create a PMT symbol in Python using the pmt::intern function as pmt.intern("string")). Users can also query blocks for the names of their input and output ports using the following API calls: \code pmt::pmt_t message_ports_in(); pmt::pmt_t message_ports_out(); \endcode The return value for these are a PMT vector filled with PMT symbols, so PMT operators must be used to manipulate them. Each block has internal methods to handle posting and receiving of messages. The gr::basic_block::_post method takes in a message and places it into its queue. The publishing model uses the gr::basic_block::_post method of the blocks as the way to access the message queue. So the message queue of the right name will have a new message. Posting messages also has the benefit of waking up the block's thread if it is in a wait state. So if idle, as soon as a message is posted, it will wake up and and call the message handler. The other side of the action in a block is in the message handler. When a block has an input message port, it needs a callback function to handle messages received on that port. We use a Boost bind operator to bind the message port to the message handling function. When a new message is pushed onto a port's message queue, it is this function that is used to process the message. \section msg_passing_python Message Passing in Python Blocks ADD STUFF HERE \section msg_passing_examples Code Examples The following is snippets of code from blocks current in GNU Radio that take advantage of message passing. We will be using gr::blocks::message_debug and gr::blocks::tagged_stream_to_pdu below to show setting up both input and output message passing capabilities. The gr::blocks::message_debug block is used for debugging the message passing system. It describes three input message ports: \a print, \a store, and \a pdu_print. The \a print port simply prints out all messages to standard out while the \a store port keeps a list of all messages posted to it. The \a pdu_print port specially formats PDU messages for printing to standard out. The \a store port works in conjunction with a gr::blocks::message_debug::get_message(int i) call that allows us to retrieve message \p i afterward. The constructor of this block looks like this: \code { message_port_register_in(pmt::mp("print")); set_msg_handler(pmt::mp("print"), boost::bind(&message_debug_impl::print, this, _1)); message_port_register_in(pmt::mp("store")); set_msg_handler(pmt::mp("store"), boost::bind(&message_debug_impl::store, this, _1)); message_port_register_in(pmt::mp("print_pdu")); set_msg_handler(pmt::mp("print_pdu"), boost::bind(&message_debug_impl::print_pdu, this, _1)); } \endcode So the three ports are registered by their respective names. We then use the gr::basic_block::set_msg_handler function to identify this particular port name with a callback function. The Boost \a bind function (Boost::bind) here binds the callback to a function of this block's class. So now the functions in the block's private implementation class, gr::blocks::message_debug_impl::print, gr::blocks::message_debug_impl::store, and gr::blocks::message_debug_impl::print_pdu, are assigned to handle messages passed to them. Below is the \a print function for reference. \code void message_debug_impl::print(pmt::pmt_t msg) { std::cout << "***** MESSAGE DEBUG PRINT ********\n"; pmt::print(msg); std::cout << "**********************************\n"; } \endcode The function simply takes in the PMT message and prints it. The method pmt::print is a function in the PMT library to print the PMT in a friendly, (mostly) pretty manner. The gr::blocks::tagged_stream_to_pdu block only defines a single output message port. In this case, its constructor contains the line: \code { message_port_register_out(pdu_port_id); } \endcode So we are only creating a single output port where \a pdu_port_id is defined in the file pdu.h as \a pdus. This blocks purpose is to take in a stream of samples along with stream tags and construct a predefined PDU message from this. In GNU Radio, we define a PDU as a PMT pair of (metadata, data). The metadata describes the samples found in the data portion of the pair. Specifically, the metadata can contain the length of the data segment and any other information (sample rate, etc.). The PMT vectors know their own length, so the length value is not actually necessary unless useful for purposes down the line. The metadata is a PMT dictionary while the data segment is a PMT uniform vector of either bytes, floats, or complex values. In the end, when a PDU message is ready, the block calls its gr::blocks::tagged_stream_to_pdu_impl::send_message function that is shown below. \code void tagged_stream_to_pdu_impl::send_message() { if(pmt::length(d_pdu_vector) != d_pdu_length) { throw std::runtime_error("msg length not correct"); } pmt::pmt_t msg = pmt::cons(d_pdu_meta, d_pdu_vector); message_port_pub(pdu_port_id, msg); d_pdu_meta = pmt::PMT_NIL; d_pdu_vector = pmt::PMT_NIL; d_pdu_length = 0; d_pdu_remain = 0; d_inpdu = false; } \endcode This function does a bit of checking to make sure the PDU is ok as well as some cleanup in the end. But it is the line where the message is published that is important to this discussion. Here, the block posts the PDU message to any subscribers by calling gr::basic_block::message_port_pub publishing method. There is similarly a gr::blocks::pdu_to_tagged_stream block that essentially does the opposite. It acts as a source to a flowgraph and waits for PDU messages to be posted to it on its input port \a pdus. It extracts the metadata and data and processes them. The metadata dictionary is split up into key:value pairs and stream tags are created out of them. The data is then converted into an output stream of items and passed along. The next section describes how PDUs can be passed into a flowgraph using the gr::blocks::pdu_to_tagged_stream block. \section msg_passing_posting Posting from External Sources The last feature of the message passing architecture to discuss here is how it can be used to take in messages from an external source. We can call a block's gr::basic_block::_post method directly and pass it a message. So any block with an input message port can receive messages from the outside in this way. The following example uses a gr::blocks::pdu_to_tagged_stream block as the source block to a flowgraph. Its purpose is to wait for messages as PDUs posted to it and convert them to a normal stream. The payload will be sent on as a normal stream while the meta data will be decoded into tags and sent on the tagged stream. So if we have created a \b src block as a PDU to stream, it has a \a pdus input port, which is how we will inject PDU messages to the flowgraph. These PDUs could come from another block or flowgraph, but here, we will create and insert them by hand. \code port = pmt.intern("pdus") msg = pmt.cons(pmt.PMT_NIL, pmt.make_u8vector(16, 0xFF)) src.to_basic_block()._post(port, msg) \endcode The PDU's metadata section is empty, hence the pmt::PMT_NIL object. The payload is now just a simple vector of 16 bytes of all 1's. To post the message, we have to access the block's gr::basic_block class, which we do using the gr::basic_block::to_basic_block method and then call the gr::basic_block::_post method to pass the PDU to the right port. All of these mechanisms are explored and tested in the QA code of the file qa_pdu.py. There are some examples of using the message passing infrastructure through GRC in gr-blocks/examples/msg_passing. \section msg_passing_commands Using messages as commands Messages can be used to send commands to blocks. Examples for this include: - gr::qtgui::freq_sink_c: The scaling of the frequency axis can be changed by messages - gr::uhd::usrp_source and gr::uhd::usrp_sink: Many transceiver-related settings can be manipulated through command messages, such as frequency, gain and LO offset - gr::digital::header_payload_demux, which receives an acknowledgement from a header parser block on how many payload items there are to process There is no special PMT type to encode commands, however, it is strongly recommended to use one of the following formats: - pmt::cons(KEY, VALUE): This format is useful for commands that take a single value. Think of KEY and VALUE as the argument name and value, respectively. For the case of the QT GUI Frequency Sink, KEY would be "freq" and VALUE would be the new center frequency in Hz. - pmt::dict((KEY1: VALUE1), (KEY2: VALUE2), ...): This is basically the same as the previous format, but you can provide multiple key/value pairs. This is particularly useful when a single command takes multiple arguments which can't be broken into multiple command messages (e.g., the USRP blocks might have both a timestamp and a center frequency in a command message, which are closely associated). In both cases, all KEYs should be pmt::symbols (i.e. strings). VALUEs can be whatever the block requires. It might be tempting to deviate from this format, e.g. the QT Frequency sink could simply take a float value as a command message, and it would still work fine. However, there are some very good reasons to stick to this format: - Interoperability: The more people use the standard format, the more likely it is that blocks from different sources can work together - Inspectability: A message debug block will display more useful information about a message if its containing both a value and a key - Intuition: This format is pretty versatile and unlikely to create situations where it is not sufficient (especially considering that values are PMTs themselves). As a counterexample, using positional arguments (something like "the first argument is the frequency, the second the gain") is easily forgotten, or changed in one place and not another, etc. */ gnuradio-3.7.11/docs/doxygen/other/ofdm.dox0000664000175000017500000001553013055131744020443 0ustar jcorganjcorgan/*! \page page_ofdm OFDM \section ofdm_introduction Introduction GNU Radio provides some blocks to transmit and receive OFDM-modulated signals. In the following, we assume the reader is familiar with OFDM and how it works, for an introduction to OFDM refer to standard textbooks on digital communication. The blocks are designed in a very generic fashion. As a developer, this means that often, a desired functionality can be achieved by correct parametrization of the available blocks, but in some cases, custom blocks have to be included. The design of the OFDM components is such that adding own functionality is possible with very little friction. \ref page_packet_data has an example of how to use OFDM in a packet-based receiver. \section ofdm_conventions Conventions and Notations \subsection ofdm_fftshift FFT Shifting In all cases where OFDM symbols are passed between blocks, the default behaviour is to FFT-Shift these symbols, i.e. that the DC carrier is in the middle (to be precise, it is on carrier \f$\lfloor N/2 \rfloor\f$ where N is the FFT length and carrier indexing starts at 0). The reason for this convention is that some blocks require FFT-shifted ordering of the symbols to function (such as gr::digital::ofdm_chanest_vcvc), and for consistency's sake, this was chosen as a default for all blocks that pass OFDM symbols. Also, when viewing OFDM symbols, FFT-shifted symbols are in their natural order, i.e. as they appear in the pass band. \subsection ofdm_indexing Carrier Indexing Carriers are always index starting at the DC carrier, which has the index 0 (you usually don't want to occupy this carrier). The carriers right of the DC carrier (the ones at higher frequencies) are indexed with 1 through N/2-1 (N being the FFT length again). The carriers left of the DC carrier (with lower frequencies) can be indexed -N/2 through -1 or N/2 through N-1. Carrier indices N-1 and -1 are thus equivalent. The advantage of using negative carrier indices is that the FFT length can be changed without changing the carrier indexing. \subsection ofdm_carrieralloc Carrier and Symbol Allocation Many blocks require knowledge of which carriers are allocated, and whether they carry data or pilot symbols. GNU Radio blocks uses three objects for this, typically called \p occupied_carriers (for the data symbols), \p pilot_carriers and \p pilot_symbols (for the pilot symbols). Every one of these objects is a vector of vectors. \p occupied_carriers and \p pilot_carriers identify the position within a frame where data and pilot symbols are stored, respectively. \p occupied_carriers[0] identifies which carriers are occupied on the first OFDM symbol, \p occupied_carriers[1] does the same on the second OFDM symbol etc. Here's an example: \code occupied_carriers = ((-2, -1, 1, 3), (-3, -1, 1, 2)) pilot_carriers = ((-3, 2), (-2, 3)) \endcode Every OFDM symbol carries 4 data symbols. On the first OFDM symbol, they are on carriers -2, -1, 1 and 3. Carriers -3 and 2 are not used, so they are where the pilot symbols can be placed. On the second OFDM symbol, the occupied carriers are -3, -1, 1 and 2. The pilot symbols must thus be placed elsewhere, and are put on carriers -2 and 3. If there are more symbols in the OFDM frame than the length of \p occupied_carriers or \p pilot_carriers, they wrap around (in this example, the third OFDM symbol uses the allocation in \p occupied_carriers[0]). But how are the pilot symbols set? This is a valid parametrization: \code pilot_symbols = ((-1, 1j), (1, -1j), (-1, 1j), (-1j, 1)) \endcode The position of these symbols are thos in \p pilot_carriers. So on the first OFDM symbol, carrier -3 will transmit a -1, and carrier 2 will transmit a 1j. Note that \p pilot_symbols is longer than \p pilot_carriers in this example-- this is valid, the symbols in \p pilot_symbols[2] will be mapped according to \p pilot_carriers[0]. \section ofdm_detectsync Detection and Synchronisation Before anything happens, an OFDM frame must be detected, the beginning of OFDM symbols must be identified, and frequency offset must be estimated. \section ofdm_tx Transmitting \image html ofdm_tx_core.png "Core elements of an OFDM transmitter" This image shows a very simple example of a transmitter. It is assumed that the input is a stream of complex scalars with a length tag, i.e. the transmitter will work on one frame at a time. The first block is the carrier allocator (gr::digital::ofdm_carrier_allocator_cvc). This sorts the incoming complex scalars onto OFDM carriers, and also places the pilot symbols onto the correct positions. There is also the option to pass OFDM symbols which are prepended in front of every frame (i.e. preamble symbols). These can be used for detection, synchronisation and channel estimation. The carrier allocator outputs OFDM symbols (i.e. complex vectors of FFT length). These must be converted to time domain signals before continuing, which is why they are piped into an (I)FFT block. Note that because all the OFDM symbols are treated in the shifted form, the IFFT block must be shifting as well. Finally, the cyclic prefix is added to the OFDM symbols. The gr::digital::ofdm_cyclic_prefixer can also perform pulse shaping on the OFDM symbols (raised cosine flanks in the time domain). \section ofdm_rx Receiving On the receiver side, some more effort is necessary. The following flow graph assumes that the input starts at the beginning of an OFDM frame and is prepended with a Schmidl & Cox preamble for coarse frequency correction and channel estimation. Also assumed is that the fine frequency offset is already corrected and that the cyclic prefix has been removed. The latter can be achieved by a gr::digital::header_payload_demux, the former can be done using a gr::digital::ofdm_sync_sc_cc. \image html ofdm_rx_core.png "Core elements of an OFDM receiver" First, an FFT shifts the OFDM symbols into the frequency domain, where the signal processing is performed (the OFDM frame is thus in the memory in matrix form). It is passed to a block that uses the preambles to perform channel estimation and coarse frequency offset. Both of these values are added to the output stream as tags; the preambles are then removed from the stream and not propagated. Note that this block does not correct the OFDM frame. Both the coarse frequency offset correction and the equalizing (using the initial channel state estimate) are done in the following block, gr::digital::ofdm_frame_equalizer_vcvc. The interesting property about this block is that it uses a gr::digital::ofdm_equalizer_base derived object to perform the actual equalization. The last block in the frequency domain is the gr::digital::ofdm_serializer_vcc, which is the inverse block to the carrier allocator. It plucks the data symbols from the \p occupied_carriers and outputs them as a stream of complex scalars. These can then be directly converted to bits, or passed to a forward error correction decoder. */ gnuradio-3.7.11/docs/doxygen/other/oot_config.dox0000664000175000017500000000617713055131744021653 0ustar jcorganjcorgan/*! \page page_oot_config Out-of-Tree Configuration New as of 3.6.5. Using gr_modtool, each package comes with the ability to easily locate the gnuradio-runtime library using the 'find_package(GnuradioRuntime)' cmake command. This only locates the gnuradio-runtime library and include directory, which is enough for most simple projects. As projects become more complicated and start needing to rely on other GNU Radio components like gnuradio-blocks or gnuradio-filter, for example, and when they become dependent on certain API compatibility versions of GNU Radio, we need something more. And so we have introduced the GnuradioConfig.cmake file. When GNU Radio is installed, it also installs a GNU Radio-specific cmake config file that we can use for more advanced compatibility issues of our projects. This tool allows us to specific the API compatible version and a set of components that are required. Taking the above example, say we have built against version 3.6.5 with features that were introduced in this version and we need the blocks and filter components as well as the main core library. We fist set a cmake variable GR_REQUIRED_COMPONENTS to the components we need. We then use the 'find_package' command and also set a minimum required API compatible version. Since we are on the 3.6 API version, the minimum required version is "3.6.5". The code in the CMakeLists.txt file would look like this: \code set(GR_REQUIRED_COMPONENTS RUNTIME BLOCKS FILTER) find_package(Gnuradio 3.6.5) \endcode Note that the capitalization is important on both lines. If the installed version of GNU Radio is 3.6.4 or some other API version like 3.5 or 3.7, the Cmake configuration will fail with the version error. Likewise, if libgnuradio-filter was not installed as part of GNU Radio, the configuration will also fail. \section oot_config_path_page Install Path Cmake has to know where to find either the package config files or the GnuradioConfig.cmake script. The package config files are located in $prefix/lib/pkgconfig while all of the Cmake scripts from GNU Radio are installed into $prefix/lib/cmake/gnuradio. If the installed GNU Radio $prefix is '/usr' or '/usr/local', then everything should work fine. If the GNU Radio install $prefix is something else, then Cmake must be told where to find it. This can be done in a few ways: 1. If you are installing the out-of-tree module into the same $prefix, then you would be setting '-DCMAKE_INSTALL_PREFIX' on the configuration command line. This is enough to tell Cmake where to look for the configuration files. 2. Cmake will try to find the package config (*.pc) files. If it can, these files will instruct Cmake where to look for the rest of the configuration options. If this is not set, it can be set as: \code export PKG_CONFIG_PATH=$prefix/lib/pkgconfg:$PKG_CONFIG_PATH \endcode 3. Set the CMAKE_PREFIX_PATH environmental variable to $prefix. \code export CMAKE_PREFIX_PATH=$prefix:$CMAKE_PREFIX_PATH \endcode With method 1, you will be installing your OOT project into the same $prefix as GNU Radio. With methods 2 and 3, you can install your component anywhere you like (using -DCMAKE_INSTALL_PREFIX). */ gnuradio-3.7.11/docs/doxygen/other/operating_fg.dox0000664000175000017500000002337613055131744022171 0ustar jcorganjcorgan/*! \page page_operating_fg Handling flow graphs \section flowgraph Operating a Flowgraph The basic data structure in GNU Radio is the flowgraph, which represents the connections of the blocks through which a continuous stream of samples flows. The concept of a flowgraph is an acyclic directional graph with one or more source blocks (to insert samples into the flowgraph), one or more sink blocks (to terminate or export samples from the flowgraph), and any signal processing blocks in between. A program must at least create a GNU Radio 'top_block', which represents the top-most structure of the flowgraph. The top blocks provide the overall control and hold methods such as 'start,' 'stop,' and 'wait.' The general construction of a GNU Radio application is to create a gr_top_block, instantiate the blocks, connect the blocks together, and then start the gr_top_block. The following program shows how this is done. A single source and sink are used with a FIR filter between them. \code from gnuradio import gr, blocks, filter, analog class my_topblock(gr.top_block): def __init__(self): gr.top_block.__init__(self) amp = 1 taps = filter.firdes.low_pass(1, 1, 0.1, 0.01) self.src = analog.noise_source_c(analog.GR_GAUSSIAN, amp) self.flt = filter.fir_filter_ccf(1, taps) self.snk = blocks.null_sink(gr.sizeof_gr_complex) self.connect(self.src, self.flt, self.snk) if __name__ == "__main__": tb = my_topblock() tb.start() tb.wait() \endcode The 'tb.start()' starts the data flowing through the flowgraph while the 'tb.wait()' is the equivalent of a thread's 'join' operation and blocks until the gr_top_block is done. An alternative to using the 'start' and 'wait' methods, a 'run' method is also provided for convenience that is a blocking start call; equivalent to the above 'start' followed by a 'wait.' \subsection latency Latency and Throughput By default, GNU Radio runs a scheduler that attempts to optimize throughput. Using a dynamic scheduler, blocks in a flowgraph pass chunks of items from sources to sinks. The sizes of these chunks will vary depending on the speed of processing. For each block, the number of items is can process is dependent on how much space it has in its output buffer(s) and how many items are available on the input buffer(s). The consequence of this is that often a block may be called with a very large number of items to process (several thousand). In terms of speed, this is efficient since now the majority of the processing time is taken up with processing samples. Smaller chunks mean more calls into the scheduler to retrieve more data. The downside to this is that it can lead to large latency while a block is processing a large chunk of data. To combat this problem, the gr_top_block can be passed a limit on the number of output items a block will ever receive. A block may get less than this number, but never more, and so it serves as an upper limit to the latency any block will exhibit. By limiting the number of items per call to a block, though, we increase the overhead of the scheduler, and so reduce the overall efficiency of the application. To set the maximum number of output items, we pass a value into the 'start' or 'run' method of the gr_top_block: \code tb.start(1000) tb.wait() or tb.run(1000) \endcode Using this method, we place a global restriction on the size of items to all blocks. Each block, though, has the ability to overwrite this with its own limit. Using the 'set_max_noutput_items(m)' method for an individual block will overwrite the global setting. For example, in the following code, the global setting is 1000 items max, except for the FIR filter, which can receive up to 2000 items. \code tb.flt.set_max_noutput_items(2000) tb.run(1000) \endcode In some situations, you might actually want to restrict the size of the buffer itself. This can help to prevent a buffer who is blocked for data from just increasing the amount of items in its buffer, which will then cause an increased latency for new samples. You can set the size of an output buffer for each output port for every block. WARNING: This is an advanced feature in GNU Radio and should not be used without a full understanding of this concept as explained below. To set the output buffer size of a block, you simply call: \code tb.blk0.set_max_output_buffer(2000) tb.blk1.set_max_output_buffer(1, 2000) tb.start() print tb.blk1.max_output_buffer(0) print tb.blk1.max_output_buffer(1) \endcode In the above example, all ports of blk0 are set to a buffer size of 2000 in _items_ (not bytes), and blk1 only sets the size for output port 1, any and all other ports use the default. The third and fourth lines just print out the buffer sizes for ports 0 and 1 of blk1. This is done after start() is called because the values are updated based on what is actually allocated to the block's buffers. NOTES: 1. Buffer length assignment is done once at runtime (i.e., when run() or start() is called). So to set the max buffer lengths, the set_max_output_buffer calls must be done before this. 2. Once the flowgraph is started, the buffer lengths for a block are set and cannot be dynamically changed, even during a lock()/unlock(). If you need to change the buffer size, you will have to delete the block and rebuild it, and therefore must disconnect and reconnect the blocks. 3. This can affect throughput. Large buffers are designed to improve the efficiency and speed of the program at the expense of latency. Limiting the size of the buffer may decrease performance. 4. The real buffer size is actually based on a minimum granularity of the system. Typically, this is a page size, which is typically 4096 bytes. This means that any buffer size that is specified with this command will get rounded up to the nearest granularity (e.g., page) size. When calling max_output_buffer(port) after the flowgraph is started, you will get how many items were actually allocated in the buffer, which may be different than what was initially specified. \section reconfigure Reconfiguring Flowgraphs It is possible to reconfigure the flowgraph at runtime. The reconfiguration is meant for changes in the flowgraph structure, not individual parameter settings of the blocks. For example, changing the constant in a gr::blocks::add_const_cc block can be done while the flowgraph is running using the 'set_k(k)' method. Reconfiguration is done by locking the flowgraph, which stops it from running and processing data, performing the reconfiguration, and then restarting the graph by unlocking it. The following example code shows a graph that first adds two gr::analog::noise_source_c blocks and then replaces the gr::blocks::add_cc block with a gr::blocks::sub_cc block to then subtract the sources. \code from gnuradio import gr, analog, blocks import time class mytb(gr.top_block): def __init__(self): gr.top_block.__init__(self) self.src0 = analog.noise_source_c(analog.GR_GAUSSIAN, 1) self.src1 = analog.noise_source_c(analog.GR_GAUSSIAN, 1) self.add = blocks.add_cc() self.sub = blocks.sub_cc() self.head = blocks.head(gr.sizeof_gr_complex, 1000000) self.snk = blocks.file_sink(gr.sizeof_gr_complex, "output.32fc") self.connect(self.src0, (self.add,0)) self.connect(self.src1, (self.add,1)) self.connect(self.add, self.head) self.connect(self.head, self.snk) def main(): tb = mytb() tb.start() time.sleep(0.01) # Stop flowgraph and disconnect the add block tb.lock() tb.disconnect(tb.add, tb.head) tb.disconnect(tb.src0, (tb.add,0)) tb.disconnect(tb.src1, (tb.add,1)) # Connect the sub block and restart tb.connect(tb.sub, tb.head) tb.connect(tb.src0, (tb.sub,0)) tb.connect(tb.src1, (tb.sub,1)) tb.unlock() tb.wait() if __name__ == "__main__": main() \endcode During reconfiguration, the maximum noutput_items value can be changed either globally using the 'set_max_noutput_items(m)' on the gr_top_block object or locally using the 'set_max_noutput_items(m)' on any given block object. A block also has a 'unset_max_noutput_items()' method that unsets the local max noutput_items value so that block reverts back to using the global value. The following example expands the previous example but sets and resets the max noutput_items both locally and globally. \code from gnuradio import gr, analog, blocks import time class mytb(gr.top_block): def __init__(self): gr.top_block.__init__(self) self.src0 = analog.noise_source_c(analog.GR_GAUSSIAN, 1) self.src1 = analog.noise_source_c(analog.GR_GAUSSIAN, 1) self.add = blocks.add_cc() self.sub = blocks.sub_cc() self.head = blocks.head(gr.sizeof_gr_complex, 1000000) self.snk = blocks.file_sink(gr.sizeof_gr_complex, "output.32fc") self.connect(self.src0, (self.add,0)) self.connect(self.src1, (self.add,1)) self.connect(self.add, self.head) self.connect(self.head, self.snk) def main(): # Start the gr_top_block after setting some max noutput_items. tb = mytb() tb.src1.set_max_noutput_items(2000) tb.start(100) time.sleep(0.01) # Stop flowgraph and disconnect the add block tb.lock() tb.disconnect(tb.add, tb.head) tb.disconnect(tb.src0, (tb.add,0)) tb.disconnect(tb.src1, (tb.add,1)) # Connect the sub block tb.connect(tb.sub, tb.head) tb.connect(tb.src0, (tb.sub,0)) tb.connect(tb.src1, (tb.sub,1)) # Set new max_noutput_items for the gr_top_block # and unset the local value for src1 tb.set_max_noutput_items(1000) tb.src1.unset_max_noutput_items() tb.unlock() tb.wait() if __name__ == "__main__": main() \endcode */ gnuradio-3.7.11/docs/doxygen/other/packet_txrx.dox0000664000175000017500000001112513055131744022046 0ustar jcorganjcorgan/*! \page page_packet_data Packet Data Transmission \section packet_data_introduction Introduction In many cases, the PHY layer of a digital transceiver uses packetsto break down the transmission (as opposed to continuously broadcasting data), and GNU Radio natively supports this kind of transmission. The basic mechanisms which allow this are the \ref page_msg_passing and the \ref page_tagged_stream_blocks. With the tools provided in GNU Radio, simple digital packet transmission schemes are easily implemented, allowing the creation of packet-based communication links and even -networks. \section packet_data_structure Structure of a packet Typically, a packet consists of the following elements: - A preamble. This is used for detection, synchronization (in time and frequency) and possibly initial channel state estimation. - A header. This is of fixed length and stores information about the packet, such as (most importantly) its length, but potentially other information, such as the packet number, its intended recipient etc. - The payload. - A checksum, typically a CRC value, to validate the packet contents. At the transmitter stage, these are modulated and prepared for transmission (a forward error correction code may also be applied). Because the transmitter knows te packet length, is a trivial matter to create the transmit frames using the tagged stream blocks. The receiver has to perform a multitude of things to obtain the packet again. Most importantly, it has to convert an infinite stream (coming from the receiver device, e.g. a UHD source block) into a packetized, tagged stream. \section packet_data_hpdemuxer The Header/Payload Demuxer and header parser The key element to return back to packetized state is the gr::digital::header_payload_demux. At its first input, it receives a continuous stream of sample data, coming from the receiver device. It discards all the incoming samples, until the beginning of a packet is signalled, either by a stream tag, or a trigger signal on its second input. Once such a beginning is detected, the demultiplexer copies the preamble and header to the first output (it must know the exact length of these elements). The header can then be demodulated with any suitable set of GNU Radio blocks. To turn the information stored in the demodulated header bits into metadata which can be understood by GNU Radio, a gr::digital::packet_headerparser_b block is used to turn the header data into a message, which is passed back to the header/payload demuxer. The latter then knows the length of the payload, and passes that out on the second output, along with all the metadata obtained in the header demodulation chain. The knowledge of the header structure (i.e. how to turn a sequence of bits into a payload length etc.) is stored in an object of type gr::digital::packet_header_default. This must be passed to the header parser block. \section packet_data_ofdm Packet receiver example: OFDM \image html example_ofdm_packet_rx.png "Example: OFDM Packet Receiver" The image above shows an example of a simple OFDM receiver. It has no forward error correction, and uses the simplest possible frame structure. The four elements of the packet receiver are highlighted. The first part is the packet detector and synchronizer. The samples piped into the header/payload demuxer are fine frequency corrected, and a trigger signal is sent to mark the beginning of the burst. Next, the header demodulation receiver chain is activated. The FFT shifts OFDM symbols to the frequency domain. The coarse frequency offset and initial channel state are estimated from the preamble and are added to the stream as tags. The OFDM symbol containing the header is passed to an equalizer, which also corrects the coarse frequency offset. A serializer picks the data symbols from the OFDM symbol and outputs them as a sequence of scalar complex values, which are then demodulated into bits (in this case BPSK is used). The bits are interpreted by the header parser, which uses a gr::digital::packet_header_ofdm object to interpret the bits (the latter is derived form gr::digital::packet_header_default). The result from the header parser is then fed back to the demuxer, which now knows the length of payload and outputs that as a tagged stream. The payload demodulation chain is the same as the header demodulation chain, only the channel estimator block is unnecessary as the channel state information is still available as metadata on the payload tagged stream. This flow graph, as well as the corresponding transmitter, can be found in gr-digital/examples/ofdm/rx_ofdm.grc and gr-digital/examples/ofdm/tx_ofdm.grc */ gnuradio-3.7.11/docs/doxygen/other/perf_counters.dox0000664000175000017500000000735413055131744022401 0ustar jcorganjcorgan/*! \page page_perf_counters Performance Counters \section pc_introduction Introduction Each block can have a set of Performance Counters that the schedule keeps track of. These counters measure and store information about different performance metrics of their operation. The concept is fairly extensible, but currently, GNU Radio defines the following Performance Counters: \li noutput_items: number of items the block can produce. \li nproduced: the number of items the block produced. \li input_buffers_full: % of how full each input buffer is. \li output_buffers_full: % of how full each output buffer is. \li work_time: number of CPU ticks during the call to general_work(). \li work_time_total: Accumulated sum of work_time. For each Performance Counter except the work_time_total, we can retrieve the instantaneous, average, and variance from the block. Access to these counters is done through a simple set of functions added to every block in the flowgraph: \code float pc_[_](); \endcode In the above, the \ field is one of the counters in the above list of counters. The optional \ suffix is either 'avg' to get the average value or 'var' to get the variance. Without a suffix, the function returns the most recent instantaneous value. We can also reset the Performance Counters back to zero to remove any history of the current average and variance calculations for a particular block. \code void reset_perf_counters(); \endcode \section pc_config Compile-time and Run-time Configuration Because the Performance Counters are calculated during each call to work for every block, they increase the computational cost and memory overhead. The more blocks used, the more impact this may have. So while it turns out after some experimentation that the Performance Counters add very little overhead (less than 1% speed degradation for a 24-block flowgraph), we err on the side of minimizing overhead in the scheduler. To do so, we have added compile-time and run-time configuration of the use of Performance Counters. \subsection pc_config_compile Compile-time Config By default, GNU Radio will build without Performance Counters enabled. To enable Performance Counters, we pass the following flag to cmake: \code -DENABLE_PERFORMANCE_COUNTERS=True \endcode Note that this affects the GNU Radio block class and the scheduler itself. Out-of-tree projects will inherit directly from GNU Radio because of the inheritance with gr::block. Turning on Performance Counters for GNU Radio will require a recompilation of the OOT project but no extra configuration. \subsection pc_config_runtime Run-time Config Given the Performance Counters are enabled in GNU Radio at compile-time, we can still control if they are used or not at run-time. For this, we use the GNU Radio preferences file in the section [PerfCounters]. This section is installed into the gnuradio-runtime.conf file. As usual with the preferences, this section or any of the individual options can be overridden in the user's config.conf file or using a GR_CONF_ environmental variable (see \ref prefs for more details). The options for the [PerfCounters] section are: \li on: Turn counters on/off at run-time. \li export: Allow counters to be exported over ControlPort. \li clock: sets the type of clock used when calculating work_time ('thread' or 'monotonic'). \section pc_perfmonitor Performance Monitor See \ref perfmonitor for some details of using a ControlPort-based monitor application, gr-perf-monitorx, for visualizing the counters. This application is particularly useful in learning which blocks are the computationally complex blocks that could use extra optimization or work to improve their performance. It can also be used to understand the current 'health' of the application. */ gnuradio-3.7.11/docs/doxygen/other/pfb_intro.dox0000664000175000017500000001576013055131744021505 0ustar jcorganjcorgan/*! \page page_pfb Polyphase Filterbanks \section pfb_introduction Introduction Polyphase filterbanks (PFB) are a very powerful set of filtering tools that can efficiently perform many multi-rate signal processing tasks. GNU Radio has a set of polyphase filterbank blocks to be used in all sorts of applications. \section pfb_Usage See the documentation for the individual blocks for details about what they can do and how they should be used. Furthermore, there are examples for these blocks in gr-filter/examples. The main issue when using the PFB blocks is defining the prototype filter, which is passed to all of the blocks as a vector of \p taps. The taps from the prototype filter which get partitioned among the \p N channels of the channelizer. An example of creating a set of filter taps for a PFB channelizer is found on line 49 of gr-filter/examples/channelizer.py and reproduced below. Notice that the sample rate is the sample rate at the input to the channelizer while the bandwidth and transition width are defined for the channel bandwidths. This makes a fairly long filter that is then split up between the \p N channels of the PFB. \code self._fs = 9000 # input sample rate self._M = 9 # Number of channels to channelize self._taps = filter.firdes.low_pass_2(1, self._fs, 475.50, 50, attenuation_dB=100, window=filter.firdes.WIN_BLACKMAN_hARRIS) \endcode In this example, the signal into the channelizer is sampled at 9 ksps (complex, so 9 kHz of bandwidth). The filter uses 9 channels, so each output channel will have a bandwidth and sample rate of 1 kHz. We want to pass most of the channel, so we define the channel bandwidth to be a low pass filter with a bandwidth of 475.5 Hz and a transition bandwidth of 50 Hz, but we have defined this using a sample rate of the original 9 kHz. The prototype filter has 819 taps to be divided up between the 9 channels, so each channel uses 91 taps. This is probably over-kill for a channelizer, and we could reduce the amount of taps per channel to a couple of dozen with no ill effects. The basic rule when defining a set of taps for a PFB block is to think about the filter running at the highest rate it will see while the bandwidth is defined for the size of the channels. In the channelizer case, the highest rate is defined as the rate of the incoming signal, but in other PFB blocks, this is not so obvious. Two very useful blocks to use are the arbitrary resampler and the clock synchronizer (for PAM signals). These PFBs are defined with a set number of filters based on the fidelity required from them, not the rate changes. By default, the \p filter_size is set to 32 for these blocks, which is a reasonable default for most tasks. Because the PFB uses this number of filters in the filterbank, the maximum rate of the bank is defined from this (see the theory of a polyphase interpolator for a justification of this). So the prototype filter is defined to use a sample rate of \p filter_size times the signal's sampling rate. A helpful wrapper for the arbitrary resampler is found in gr-filter/python/pfb.py, which is exposed in Python as filter.pfb.arb_resampler_ccf and filter.pfb.arb_resampler_fff. This block is set up so that the user only needs to pass it the real number \p rate as the resampling rate. With just this information, this hierarchical block automatically creates a filter that fully passes the signal bandwidth being resampled but does not pass any out-of-band noise. See the code for this block for details of how the filter is constructed. Of course, a user can create his or her own taps and use them in the arbitrary resampler for more specific requirements. Some of the UHD examples (gr-uhd/examples) use this ability to create a received matched filter or channel filter that also resamples the signal. \section pfb_examples Examples The following is an example of the using the channelizer. It creates the appropriate filter to channelizer 9 channels out of an original signal that is 9000 Hz wide, so each output channel is now 1000 Hz. The code then plots the PSD of the original signal to see the signals in the origina spectrum and then makes 9 plots for each of the channels. NOTE: you need the Scipy and Matplotlib Python modules installed to run this example. \include gr-filter/examples/channelize.py \section pfb_arb_resampler The PFB Arbitrary Resampler Kernel GNU Radio has a PFB arbitrary resampler block that can be used to resample a signal to any arbitrary and real resampling rate. The resampling feature is one that could easily be useful to other blocks, and so we have extracted the kernel of the resampler into its own class that can be used as such. The PFB arbitrary resampler is defined in pfb_arb_resampler.h and has the following constructor: \code namespace gr { namespace filter { namespace kernel { pfb_arb_resampler_XXX(float rate, const std::vector &taps, unsigned int filter_size); } /* namespace kernel */ } /* namespace filter */ } /* namespace gr */ \endcode Currently, only a 'ccf' and 'fff' version are defined. This kernel, like the block itself, takes in the resampling \p rate as a floating point number. The \p taps are passed as the baseband prototype filter, and the quantization error of the filter is determined by the \p filter_size parameter. The prototype taps are generated like all other PFB filter taps. Specifically, we construct them generally as a lowpass filter at the maximum rate of the filter. In the case of these resamplers, the maximum rate is actually the number of filters. A simple example follows. We construct a filter that will pass the entire passband of the original signal to be resampled. To make it easy, we work in normalized sample rates for this. The gain of the filter is set to filter_size to compensate for the upsampling, the sampling rate itself is also set to filter_size, which is assuming that the incoming signal is at a sampling rate of 1.0. We defined the passband to be 0.5 to pass the entire width of the original signal and set a transition band to 0.1. Note that this causes a bit of roll-off outside of the original passband and could lead to introducing some aliasing. More care should be taken to construct the passband and transition width of the filter for the given signal while keeping the total number of taps small. A stopband attenuation of 60 dB was used here, and again, this is a parameter we can adjust to alter the performance and size of the filter. \code firdes.low_pass_2(filter_size, filter_size, 0.5, 0.1, 60) \endcode As is typical with the PFB filters, a filter size of 32 is generally an appropriate trade-off of accuracy, performance, and memory. This should provide an error roughly equivalent to the quanization error of using 16-bit fixed point representation. Generally, increasing over 32 provides some accuracy benefits without a huge increase in computational demands. */ gnuradio-3.7.11/docs/doxygen/other/pmt.dox0000664000175000017500000003731313055131744020321 0ustar jcorganjcorgan/*! \page page_pmt Polymorphic Types \section pmt_introduction Introduction Polymorphic Types are opaque data types that are designed as generic containers of data that can be safely passed around between blocks and threads in GNU Radio. They are heavily used in the stream tags and message passing interfaces. The most complete list of PMT function is, of course, the source code, specifically the header file pmt.h. This manual page summarizes the most important features and points of PMTs. Let's dive straight into some Python code and see how we can use PMTs: \code >>> import pmt >>> P = pmt.from_long(23) >>> type(P) >>> print P 23 >>> P2 = pmt.from_complex(1j) >>> type(P2) >>> print P2 0+1i >>> pmt.is_complex(P2) True \endcode First, the pmt module is imported. We assign two values (P and P2) with PMTs using the from_long() and from_complex() calls, respectively. As we can see, they are both of the same type! This means we can pass these variables to C++ through SWIG, and C++ can handle this type accordingly. The same code as above in C++ would look like this: \code #include // [...] pmt::pmt_t P = pmt::from_long(23); std::cout << P << std::endl; pmt::pmt_t P2 = pmt::from_complex(gr_complex(0, 1)); // Alternatively: pmt::from_complex(0, 1) std::cout << P2 << std::endl; std::cout << pmt::is_complex(P2) << std::endl; \endcode Two things stand out in both Python and C++: First we can simply print the contents of a PMT. How is this possible? Well, the PMTs have in-built capability to cast their value to a string (this is not possible with all types, though). Second, PMTs must obviously know their type, so we can query that, e.g. by calling the is_complex() method. When assigning a non-PMT value to a PMT, we can use the from_* methods, and use the to_* methods to convert back: \code pmt::pmt_t P_int = pmt::from_long(42); int i = pmt::to_long(P_int); pmt::pmt_t P_double = pmt::from_double(0.2); double d = pmt::to_double(P_double); \endcode String types play a bit of a special role in PMTs, as we will see later, and have their own converter: \code pmt::pmt_t P_str = pmt::string_to_symbol("spam"); pmt::pmt_t P_str2 = pmt::intern("spam"); std::string str = pmt::symbol_to_string(P_str); \endcode The pmt::intern is another way of saying pmt::string_to_symbol. In Python, we can make use of the weak typing, and there's actually a helper function to do these conversions (C++ also has a helper function for converting to PMTs called pmt::mp(), but its less powerful, and not quite as useful, because types are always strictly known in C++): \code P_int = pmt.to_pmt(42) i = pmt.to_python(P_int) P_double = pmt.to_pmt(0.2) d = pmt.to_double(P_double) \endcode On a side note, there are three useful PMT constants, which can be used in both Python and C++ domains. In C++, these can be used as such: \code pmt::pmt_t P_true = pmt::PMT_T; pmt::pmt_t P_false = pmt::PMT_F; pmt::pmt_t P_nil = pmt::PMT_NIL; \endcode In Python: \code P_true = pmt.PMT_T P_false = pmt.PMT_F P_nil = pmt.PMT_NIL \endcode pmt.PMT_T and pmt.PMT_F are boolean PMT types. To be able to go back to C++ data types, we need to be able to find out the type from a PMT. The family of is_* methods helps us do that: \code double d; if (pmt::is_integer(P)) { d = (double) pmt::to_long(P); } else if (pmt::is_real(P)) { d = pmt::to_double(P); } else { // We really expected an integer or a double here, so we don't know what to do throw std::runtime_error("expected an integer!"); } \endcode It is important to do type checking since we cannot unpack a PMT of the wrong data type. We can compare PMTs without knowing their type by using the pmt::equal() function: \code if (pmt::eq(P_int, P_double)) { std::cout << "Equal!" << std::endl; // This line will never be reached \endcode The rest of this page provides more depth into how to handle different data types with the PMT library. \section pmt_datatype PMT Data Type All PMTs are of the type pmt::pmt_t. This is an opaque container and PMT functions must be used to manipulate and even do things like compare PMTs. PMTs are also \a immutable (except PMT vectors). We never change the data in a PMT; instead, we create a new PMT with the new data. The main reason for this is thread safety. We can pass PMTs as tags and messages between blocks and each receives its own copy that we can read from. However, we can never write to this object, and so if multiple blocks have a reference to the same PMT, there is no possibility of thread-safety issues of one reading the PMT data while another is writing the data. If a block is trying to write new data to a PMT, it actually creates a new PMT to put the data into. Thus we allow easy access to data in the PMT format without worrying about mutex locking and unlocking while manipulating them. PMTs can represent the following: - Boolean values of true/false - Strings (as symbols) - Integers (long and uint64) - Floats (as doubles) - Complex (as two doubles) - Pairs - Tuples - Vectors (of PMTs) - Uniform vectors (of any standard data type) - Dictionaries (list of key:value pairs) - Any (contains a boost::any pointer to hold anything) The PMT library also defines a set of functions that operate directly on PMTs such as: - Equal/equivalence between PMTs - Length (of a tuple or vector) - Map (apply a function to all elements in the PMT) - Reverse - Get a PMT at a position in a list - Serialize and deserialize - Printing The constants in the PMT library are: - pmt::PMT_T - a PMT True - pmt::PMT_F - a PMT False - pmt::PMT_NIL - an empty PMT (think Python's 'None') \section pmt_insert Inserting and Extracting Data Use pmt.h for a complete guide to the list of functions used to create PMTs and get the data from a PMT. When using these functions, remember that while PMTs are opaque and designed to hold any data, the data underneath is still a C++ typed object, and so the right type of set/get function must be used for the data type. Typically, a PMT object can be made from a scalar item using a call like "pmt::from_". Similarly, when getting data out of a PMT, we use a call like "pmt::to_". For example: \code double a = 1.2345; pmt::pmt_t pmt_a = pmt::from_double(a); double b = pmt::to_double(pmt_a); int c = 12345; pmt::pmt_t pmt_c = pmt::from_long(c); int d = pmt::to_long(pmt_c); \endcode As a side-note, making a PMT from a complex number is not obvious: \code std::complex a(1.2, 3.4); pmt::pmt_t pmt_a = pmt::make_rectangular(a.real(), b.imag()); std::complex b = pmt::to_complex(pmt_a); \endcode Pairs, dictionaries, and vectors have different constructors and ways to manipulate them, and these are explained in their own sections. \section pmt_strings Strings PMTs have a way of representing short strings. These strings are actually stored as interned symbols in a hash table, so in other words, only one PMT object for a given string exists. If creating a new symbol from a string, if that string already exists in the hash table, the constructor will return a reference to the existing PMT. We create strings with the following functions, where the second function, pmt::intern, is simply an alias of the first. \code pmt::pmt_t str0 = pmt::string_to_symbol(std::string("some string")); pmt::pmt_t str1 = pmt::intern(std::string("some string")); \endcode The string can be retrieved using the inverse function: \code std::string s = pmt::symbol_to_string(str0); \endcode \section pmt_tests Tests and Comparisons The PMT library comes with a number of functions to test and compare PMT objects. In general, for any PMT data type, there is an equivalent "pmt::is_". We can use these to test the PMT before trying to access the data inside. Expanding our examples above, we have: \code pmt::pmt_t str0 = pmt::string_to_symbol(std::string("some string")); if(pmt::is_symbol(str0)) std::string s = pmt::symbol_to_string(str0); double a = 1.2345; pmt::pmt_t pmt_a = pmt::from_double(a); if(pmt::is_double(pmt_a)) double b = pmt::to_double(pmt_a); int c = 12345; pmt::pmt_t pmt_c = pmt::from_long(c); if(pmt::is_long(pmt_a)) int d = pmt::to_long(pmt_c); \\ This will fail the test. Otherwise, trying to coerce \b pmt_c as a \\ double when internally it is a long will result in an exception. if(pmt::is_double(pmt_a)) double d = pmt::to_double(pmt_c); \endcode \section pmt_dict Dictionaries PMT dictionaries and lists of key:value pairs. They have a well-defined interface for creating, adding, removing, and accessing items in the dictionary. Note that every operation that changes the dictionary both takes a PMT dictionary as an argument and returns a PMT dictionary. The dictionary used as an input is not changed and the returned dictionary is a new PMT with the changes made there. The following is a list of PMT dictionary functions. Click through to get more information on what each does. - bool pmt::is_dict(const pmt_t &obj) - pmt_t pmt::make_dict() - pmt_t pmt::dict_add(const pmt_t &dict, const pmt_t &key, const pmt_t &value) - pmt_t pmt::dict_delete(const pmt_t &dict, const pmt_t &key) - bool pmt::dict_has_key(const pmt_t &dict, const pmt_t &key) - pmt_t pmt::dict_ref(const pmt_t &dict, const pmt_t &key, const pmt_t ¬_found) - pmt_t pmt::dict_items(pmt_t dict) - pmt_t pmt::dict_keys(pmt_t dict) - pmt_t pmt::dict_values(pmt_t dict) This example does some basic manipulations of PMT dictionaries in Python. Notice that we pass the dictionary \a a and return the results to \a a. This still creates a new dictionary and removes the local reference to the old dictionary. This just keeps our number of variables small. \code import pmt key0 = pmt.intern("int") val0 = pmt.from_long(123) val1 = pmt.from_long(234) key1 = pmt.intern("double") val2 = pmt.from_double(5.4321) # Make an empty dictionary a = pmt.make_dict() # Add a key:value pair to the dictionary a = pmt.dict_add(a, key0, val0) print a # Add a new value to the same key; # new dict will still have one item with new value a = pmt.dict_add(a, key0, val1) print a # Add a new key:value pair a = pmt.dict_add(a, key1, val2) print a # Test if we have a key, then delete it print pmt.dict_has_key(a, key1) a = pmt.dict_delete(a, key1) print pmt.dict_has_key(a, key1) ref = pmt.dict_ref(a, key0, pmt.PMT_NIL) print ref # The following should never print if(pmt.dict_has_key(a, key0) and pmt.eq(ref, pmt.PMT_NIL)): print "Trouble! We have key0, but it returned PMT_NIL" \endcode \section pmt_vectors Vectors PMT vectors come in two forms: vectors of PMTs and vectors of uniform data. The standard PMT vector is a vector of PMTs, and each PMT can be of any internal type. On the other hand, uniform PMTs are of a specific data type which come in the form: - (u)int8 - (u)int16 - (u)int32 - (u)int64 - float32 - float64 - complex 32 (std::complex) - complex 64 (std::complex) That is, the standard sizes of integers, floats, and complex types of both signed and unsigned. Vectors have a well-defined interface that allows us to make, set, get, and fill them. We can also get the length of a vector with pmt::length. For standard vectors, these functions look like: - bool pmt::is_vector(pmt_t x) - pmt_t pmt::make_vector(size_t k, pmt_t fill) - pmt_t pmt::vector_ref(pmt_t vector, size_t k) - void pmt::vector_set(pmt_t vector, size_t k, pmt_t obj) - void pmt::vector_fill(pmt_t vector, pmt_t fill) Uniform vectors have the same types of functions, but they are data type-dependent. The following list tries to explain them where you substitute the specific data type prefix for \a dtype (prefixes being: u8, u16, u32, u64, s8, s16, s32, s64, f32, f64, c32, c64). - bool pmt::is_(dtype)vector(pmt_t x) - pmt_t pmt::make_(dtype)vector(size_t k, (dtype) fill) - pmt_t pmt::init_(dtype)vector(size_t k, const (dtype*) data) - pmt_t pmt::init_(dtype)vector(size_t k, const std::vector data) - pmt_t pmt::(dtype)vector_ref(pmt_t vector, size_t k) - void pmt::(dtype)vector_set(pmt_t vector, size_t k, (dtype) x) - const dtype* pmt::(dtype)vector_elements(pmt_t vector, size_t &len) - dtype* pmt::(dtype)vector_writable_elements(pmt_t vector, size_t &len) \b Note: We break the contract with vectors. The 'set' functions actually change the data underneath. It is important to keep track of the implications of setting a new value as well as accessing the 'vector_writable_elements' data. Since these are mostly standard data types, sets and gets are atomic, so it is unlikely to cause a great deal of harm. But it's only unlikely, not impossible. Best to use mutexes whenever manipulating data in a vector. \subsection pmt_blob BLOB A BLOB is a 'binary large object' type. In PMT's, this is actually just a thin wrapper around a u8vector. \section pmt_pairs Pairs Pairs are inspired by LISP 'cons' data types, so you will find the language here comes from LISP. A pair is just a pair of PMT objects. They are manipulated using the following functions: - bool pmt::is_pair(const pmt_t &obj): Return true if obj is a pair, else false - pmt_t pmt::cons(const pmt_t &x, const pmt_t &y): construct new pair - pmt_t pmt::car(const pmt_t &pair): get the car of the pair (first object) - pmt_t pmt::cdr(const pmt_t &pair): get the cdr of the pair (second object) - void pmt::set_car(pmt_t pair, pmt_t value): Stores value in the car field - void pmt::set_cdr(pmt_t pair, pmt_t value): Stores value in the cdr field \section pmt_serdes Serializing and Deserializing It is often important to hide the fact that we are working with PMTs to make them easier to transmit, store, write to file, etc. The PMT library has methods to serialize data into a string buffer or a string and then methods to deserialize the string buffer or string back into a PMT. We use this extensively in the metadata files (see \ref page_metadata). - bool pmt::serialize(pmt_t obj, std::streambuf &sink) - std::string pmt::serialize_str(pmt_t obj) - pmt_t pmt::deserialize(std::streambuf &source) - pmt_t pmt::deserialize_str(std::string str) For example, we will serialize the data above to make it into a string ready to be written to a file and then deserialize it back to its original PMT. \code import pmt key0 = pmt.intern("int") val0 = pmt.from_long(123) key1 = pmt.intern("double") val1 = pmt.from_double(5.4321) # Make an empty dictionary a = pmt.make_dict() # Add a key:value pair to the dictionary a = pmt.dict_add(a, key0, val0) a = pmt.dict_add(a, key1, val1) print a ser_str = pmt.serialize_str(a) print ser_str b = pmt.deserialize_str(ser_str) print b \endcode The line where we 'print ser_str' will print and parts will be readable, but the point of serializing is not to make a human-readable string. This is only done here as a test. \section pmt_printing Printing In Python, the __repr__ function of a PMT object is overloaded to call 'pmt::write_string'. This means that any time we call a formatted printing operation on a PMT object, the PMT library will properly format the object for display. In C++, we can use the 'pmt::print(object)' function or print the contents is using the overloaded "<<" operator with a stream buffer object. In C++, we can inline print the contents of a PMT like: \code pmt::pmt_t a pmt::from_double(1.0); std::cout << "The PMT a contains " << a << std::endl; \endcode \section pmt_python Conversion between Python Objects and PMTs Although PMTs can be manipulated in Python using the Python versions of the C++ interfaces, there are some additional goodies that make it easier to work with PMTs in python. There are functions to automate the conversion between PMTs and Python types for booleans, strings, integers, longs, floats, complex numbers, dictionaries, lists, tuples and combinations thereof. Two functions capture most of this functionality: \code pmt.to_pmt # Converts a python object to a PMT. pmt.to_python # Converts a PMT into a python object. \endcode */ gnuradio-3.7.11/docs/doxygen/other/prefs.dox0000664000175000017500000000544013055131744020634 0ustar jcorganjcorgan/*! \page page_prefs Configuration files \section prefs Configuration / Preference Files GNU Radio defines some of its basic behavior through a set of configuration files located in ${prefix}/etc/gnuradio/conf.d. Different components have different files listed in here for the various properties. These will be read once when starting a GNU Radio application, so updates during runtime will not affect them. The configuration files use the following format: \code # Stuff from section 1 [section1] var1 = value1 var2 = value2 # value of 2 # Stuff from section 2 [section2] var3 = value3 \endcode In this file, the hash mark ('#') indicates a comment and blank lines are ignored. Section labels are defined inside square brackets as a group distinguisher. All options must be associated with a section name. The options are listed one per line with the option name is given followed by an equals ('=') sign and then the value. All section and option names must not have white spaces. If a value must have white space, the it MUST be put inside quotes. Any quoted value will have its white space preserved and the quotes internally will be stripped. As an example, on Apple desktops, an output device of "Display Audio" is a possible output device and can be set as: \code [audio_osx] default_output_device = "Display Audio" \endcode The result will pass Display Audio to the audio setup. The value of an option can be a string or number and retrieved through a few different interfaces. There is a single preference object created when GNU Radio is launched. In Python, you can get this by making a new variable: \code p = gr.prefs() \endcode Similarly, in C++, we get a reference to the object by explicitly calling for the singleton of the object: \code prefs *p = prefs::singleton(); \endcode The methods associated with this preferences object are (from class gr::prefs): \code bool has_section(string section) bool has_option(string section, string option) string get_string(string section, string option, string default_val) bool get_bool(string section, string option, bool default_val) long get_long(string section, string option, long default_val) double get_double(string section, string option, double default_val) \endcode When setting a Boolean value, we can use 0, 1, "True", "true", "False", "false", "On", "on", "Off", and "off". All configuration preferences in these files can also be overloaded by an environmental variable. The environmental variable is named based on the section and option name from the configuration file as: \code GR_CONF_
_