Write waf build scripts for catalog and unit tests
refs #2596
Change-Id: I384b618ebd2b3126cef5ec524d43525a7df5b780
diff --git a/.waf-tools/boost.py b/.waf-tools/boost.py
new file mode 100644
index 0000000..305945a
--- /dev/null
+++ b/.waf-tools/boost.py
@@ -0,0 +1,378 @@
+#!/usr/bin/env python
+# encoding: utf-8
+#
+# partially based on boost.py written by Gernot Vormayr
+# written by Ruediger Sonderfeld <ruediger@c-plusplus.de>, 2008
+# modified by Bjoern Michaelsen, 2008
+# modified by Luca Fossati, 2008
+# rewritten for waf 1.5.1, Thomas Nagy, 2008
+# rewritten for waf 1.6.2, Sylvain Rouquette, 2011
+
+'''
+
+This is an extra tool, not bundled with the default waf binary.
+To add the boost tool to the waf file:
+$ ./waf-light --tools=compat15,boost
+ or, if you have waf >= 1.6.2
+$ ./waf update --files=boost
+
+When using this tool, the wscript will look like:
+
+ def options(opt):
+ opt.load('compiler_cxx boost')
+
+ def configure(conf):
+ conf.load('compiler_cxx boost')
+ conf.check_boost(lib='system filesystem')
+
+ def build(bld):
+ bld(source='main.cpp', target='app', use='BOOST')
+
+Options are generated, in order to specify the location of boost includes/libraries.
+The `check_boost` configuration function allows to specify the used boost libraries.
+It can also provide default arguments to the --boost-static and --boost-mt command-line arguments.
+Everything will be packaged together in a BOOST component that you can use.
+
+When using MSVC, a lot of compilation flags need to match your BOOST build configuration:
+ - you may have to add /EHsc to your CXXFLAGS or define boost::throw_exception if BOOST_NO_EXCEPTIONS is defined.
+ Errors: C4530
+ - boost libraries will try to be smart and use the (pretty but often not useful) auto-linking feature of MSVC
+ So before calling `conf.check_boost` you might want to disabling by adding:
+ conf.env.DEFINES_BOOST += ['BOOST_ALL_NO_LIB']
+ Errors:
+ - boost might also be compiled with /MT, which links the runtime statically.
+ If you have problems with redefined symbols,
+ self.env['DEFINES_%s' % var] += ['BOOST_ALL_NO_LIB']
+ self.env['CXXFLAGS_%s' % var] += ['/MD', '/EHsc']
+Passing `--boost-linkage_autodetect` might help ensuring having a correct linkage in some basic cases.
+
+'''
+
+import sys
+import re
+from waflib import Utils, Logs, Errors
+from waflib.Configure import conf
+
+BOOST_LIBS = ['/usr/lib', '/usr/local/lib', '/opt/local/lib', '/sw/lib', '/lib', '/usr/lib/x86_64-linux-gnu', '/usr/lib/i386-linux-gnu', '/usr/local/ndn/lib']
+BOOST_INCLUDES = ['/usr/include', '/usr/local/include', '/opt/local/include', '/sw/include', '/usr/local/ndn/include']
+BOOST_VERSION_FILE = 'boost/version.hpp'
+BOOST_VERSION_CODE = '''
+#include <iostream>
+#include <boost/version.hpp>
+int main() { std::cout << BOOST_LIB_VERSION << ":" << BOOST_VERSION << std::endl; }
+'''
+BOOST_SYSTEM_CODE = '''
+#include <boost/system/error_code.hpp>
+int main() { boost::system::error_code c; }
+'''
+BOOST_THREAD_CODE = '''
+#include <boost/thread.hpp>
+int main() { boost::thread t; }
+'''
+
+# toolsets from {boost_dir}/tools/build/v2/tools/common.jam
+PLATFORM = Utils.unversioned_sys_platform()
+detect_intel = lambda env: (PLATFORM == 'win32') and 'iw' or 'il'
+detect_clang = lambda env: (PLATFORM == 'darwin') and 'clang-darwin' or 'clang'
+detect_mingw = lambda env: (re.search('MinGW', env.CXX[0])) and 'mgw' or 'gcc'
+BOOST_TOOLSETS = {
+ 'borland': 'bcb',
+ 'clang': detect_clang,
+ 'como': 'como',
+ 'cw': 'cw',
+ 'darwin': 'xgcc',
+ 'edg': 'edg',
+ 'g++': detect_mingw,
+ 'gcc': detect_mingw,
+ 'icpc': detect_intel,
+ 'intel': detect_intel,
+ 'kcc': 'kcc',
+ 'kylix': 'bck',
+ 'mipspro': 'mp',
+ 'mingw': 'mgw',
+ 'msvc': 'vc',
+ 'qcc': 'qcc',
+ 'sun': 'sw',
+ 'sunc++': 'sw',
+ 'tru64cxx': 'tru',
+ 'vacpp': 'xlc'
+}
+
+
+def options(opt):
+ opt = opt.add_option_group('Boost Options')
+
+ opt.add_option('--boost-includes', type='string',
+ default='', dest='boost_includes',
+ help='''path to the directory where the boost includes are, e.g., /path/to/boost_1_55_0/stage/include''')
+ opt.add_option('--boost-libs', type='string',
+ default='', dest='boost_libs',
+ help='''path to the directory where the boost libs are, e.g., /path/to/boost_1_55_0/stage/lib''')
+ opt.add_option('--boost-static', action='store_true',
+ default=False, dest='boost_static',
+ help='link with static boost libraries (.lib/.a)')
+ opt.add_option('--boost-mt', action='store_true',
+ default=False, dest='boost_mt',
+ help='select multi-threaded libraries')
+ opt.add_option('--boost-abi', type='string', default='', dest='boost_abi',
+ help='''select libraries with tags (dgsyp, d for debug), see doc Boost, Getting Started, chapter 6.1''')
+ opt.add_option('--boost-linkage_autodetect', action="store_true", dest='boost_linkage_autodetect',
+ help="auto-detect boost linkage options (don't get used to it / might break other stuff)")
+ opt.add_option('--boost-toolset', type='string',
+ default='', dest='boost_toolset',
+ help='force a toolset e.g. msvc, vc90, gcc, mingw, mgw45 (default: auto)')
+ py_version = '%d%d' % (sys.version_info[0], sys.version_info[1])
+ opt.add_option('--boost-python', type='string',
+ default=py_version, dest='boost_python',
+ help='select the lib python with this version (default: %s)' % py_version)
+
+
+@conf
+def __boost_get_version_file(self, d):
+ dnode = self.root.find_dir(d)
+ if dnode:
+ return dnode.find_node(BOOST_VERSION_FILE)
+ return None
+
+@conf
+def boost_get_version(self, d):
+ """silently retrieve the boost version number"""
+ node = self.__boost_get_version_file(d)
+ if node:
+ try:
+ txt = node.read()
+ except (OSError, IOError):
+ Logs.error("Could not read the file %r" % node.abspath())
+ else:
+ re_but1 = re.compile('^#define\\s+BOOST_LIB_VERSION\\s+"(.+)"', re.M)
+ m1 = re_but1.search(txt)
+
+ re_but2 = re.compile('^#define\\s+BOOST_VERSION\\s+(\\d+)', re.M)
+ m2 = re_but2.search(txt)
+
+ if m1 and m2:
+ return (m1.group(1), m2.group(1))
+
+ return self.check_cxx(fragment=BOOST_VERSION_CODE, includes=[d], execute=True, define_ret=True).split(":")
+
+@conf
+def boost_get_includes(self, *k, **kw):
+ includes = k and k[0] or kw.get('includes', None)
+ if includes and self.__boost_get_version_file(includes):
+ return includes
+ for d in Utils.to_list(self.environ.get('INCLUDE', '')) + BOOST_INCLUDES:
+ if self.__boost_get_version_file(d):
+ return d
+ if includes:
+ self.end_msg('headers not found in %s' % includes)
+ self.fatal('The configuration failed')
+ else:
+ self.end_msg('headers not found, please provide a --boost-includes argument (see help)')
+ self.fatal('The configuration failed')
+
+
+@conf
+def boost_get_toolset(self, cc):
+ toolset = cc
+ if not cc:
+ build_platform = Utils.unversioned_sys_platform()
+ if build_platform in BOOST_TOOLSETS:
+ cc = build_platform
+ else:
+ cc = self.env.CXX_NAME
+ if cc in BOOST_TOOLSETS:
+ toolset = BOOST_TOOLSETS[cc]
+ return isinstance(toolset, str) and toolset or toolset(self.env)
+
+
+@conf
+def __boost_get_libs_path(self, *k, **kw):
+ ''' return the lib path and all the files in it '''
+ if 'files' in kw:
+ return self.root.find_dir('.'), Utils.to_list(kw['files'])
+ libs = k and k[0] or kw.get('libs', None)
+ if libs:
+ path = self.root.find_dir(libs)
+ files = path.ant_glob('*boost_*')
+ if not libs or not files:
+ for d in Utils.to_list(self.environ.get('LIB', [])) + BOOST_LIBS:
+ path = self.root.find_dir(d)
+ if path:
+ files = path.ant_glob('*boost_*')
+ if files:
+ break
+ path = self.root.find_dir(d + '64')
+ if path:
+ files = path.ant_glob('*boost_*')
+ if files:
+ break
+ if not path:
+ if libs:
+ self.end_msg('libs not found in %s' % libs)
+ self.fatal('The configuration failed')
+ else:
+ self.end_msg('libs not found, please provide a --boost-libs argument (see help)')
+ self.fatal('The configuration failed')
+
+ self.to_log('Found the boost path in %r with the libraries:' % path)
+ for x in files:
+ self.to_log(' %r' % x)
+ return path, files
+
+@conf
+def boost_get_libs(self, *k, **kw):
+ '''
+ return the lib path and the required libs
+ according to the parameters
+ '''
+ path, files = self.__boost_get_libs_path(**kw)
+ t = []
+ if kw.get('mt', False):
+ t.append('mt')
+ if kw.get('abi', None):
+ t.append(kw['abi'])
+ tags = t and '(-%s)+' % '-'.join(t) or ''
+ toolset = self.boost_get_toolset(kw.get('toolset', ''))
+ toolset_pat = '(-%s[0-9]{0,3})+' % toolset
+ version = '(-%s)+' % self.env.BOOST_VERSION
+
+ def find_lib(re_lib, files):
+ for file in files:
+ if re_lib.search(file.name):
+ self.to_log('Found boost lib %s' % file)
+ return file
+ return None
+
+ def format_lib_name(name):
+ if name.startswith('lib') and self.env.CC_NAME != 'msvc':
+ name = name[3:]
+ return name[:name.rfind('.')]
+
+ libs = []
+ for lib in Utils.to_list(k and k[0] or kw.get('lib', None)):
+ py = (lib == 'python') and '(-py%s)+' % kw['python'] or ''
+ # Trying libraries, from most strict match to least one
+ for pattern in ['boost_%s%s%s%s%s' % (lib, toolset_pat, tags, py, version),
+ 'boost_%s%s%s%s' % (lib, tags, py, version),
+ 'boost_%s%s%s' % (lib, tags, version),
+ # Give up trying to find the right version
+ 'boost_%s%s%s%s' % (lib, toolset_pat, tags, py),
+ 'boost_%s%s%s' % (lib, tags, py),
+ 'boost_%s%s' % (lib, tags)]:
+ self.to_log('Trying pattern %s' % pattern)
+ file = find_lib(re.compile(pattern), files)
+ if file:
+ libs.append(format_lib_name(file.name))
+ break
+ else:
+ self.end_msg('lib %s not found in %s' % (lib, path.abspath()))
+ self.fatal('The configuration failed')
+
+ return path.abspath(), libs
+
+
+@conf
+def check_boost(self, *k, **kw):
+ """
+ Initialize boost libraries to be used.
+
+ Keywords: you can pass the same parameters as with the command line (without "--boost-").
+ Note that the command line has the priority, and should preferably be used.
+ """
+ if not self.env['CXX']:
+ self.fatal('load a c++ compiler first, conf.load("compiler_cxx")')
+
+ params = {'lib': k and k[0] or kw.get('lib', None)}
+ for key, value in self.options.__dict__.items():
+ if not key.startswith('boost_'):
+ continue
+ key = key[len('boost_'):]
+ params[key] = value and value or kw.get(key, '')
+
+ var = kw.get('uselib_store', 'BOOST')
+
+ self.start_msg('Checking boost includes')
+ self.env['INCLUDES_%s' % var] = inc = self.boost_get_includes(**params)
+ versions = self.boost_get_version(inc)
+ self.env.BOOST_VERSION = versions[0]
+ self.env.BOOST_VERSION_NUMBER = int(versions[1])
+ self.end_msg("%d.%d.%d" % (int(versions[1]) / 100000,
+ int(versions[1]) / 100 % 1000,
+ int(versions[1]) % 100))
+ if Logs.verbose:
+ Logs.pprint('CYAN', ' path : %s' % self.env['INCLUDES_%s' % var])
+
+ if not params['lib']:
+ return
+ self.start_msg('Checking boost libs')
+ suffix = params.get('static', None) and 'ST' or ''
+ path, libs = self.boost_get_libs(**params)
+ self.env['%sLIBPATH_%s' % (suffix, var)] = [path]
+ self.env['%sLIB_%s' % (suffix, var)] = libs
+ self.end_msg('ok')
+ if Logs.verbose:
+ Logs.pprint('CYAN', ' path : %s' % path)
+ Logs.pprint('CYAN', ' libs : %s' % libs)
+
+
+ def try_link():
+ if 'system' in params['lib']:
+ self.check_cxx(
+ fragment=BOOST_SYSTEM_CODE,
+ use=var,
+ execute=False,
+ )
+ if 'thread' in params['lib']:
+ self.check_cxx(
+ fragment=BOOST_THREAD_CODE,
+ use=var,
+ execute=False,
+ )
+
+ if params.get('linkage_autodetect', False):
+ self.start_msg("Attempting to detect boost linkage flags")
+ toolset = self.boost_get_toolset(kw.get('toolset', ''))
+ if toolset in ['vc']:
+ # disable auto-linking feature, causing error LNK1181
+ # because the code wants to be linked against
+ self.env['DEFINES_%s' % var] += ['BOOST_ALL_NO_LIB']
+
+ # if no dlls are present, we guess the .lib files are not stubs
+ has_dlls = False
+ for x in Utils.listdir(path):
+ if x.endswith(self.env.cxxshlib_PATTERN % ''):
+ has_dlls = True
+ break
+ if not has_dlls:
+ self.env['STLIBPATH_%s' % var] = [path]
+ self.env['STLIB_%s' % var] = libs
+ del self.env['LIB_%s' % var]
+ del self.env['LIBPATH_%s' % var]
+
+ # we attempt to play with some known-to-work CXXFLAGS combinations
+ for cxxflags in (['/MD', '/EHsc'], []):
+ self.env.stash()
+ self.env["CXXFLAGS_%s" % var] += cxxflags
+ try:
+ try_link()
+ self.end_msg("ok: winning cxxflags combination: %s" % (self.env["CXXFLAGS_%s" % var]))
+ e = None
+ break
+ except Errors.ConfigurationError as exc:
+ self.env.revert()
+ e = exc
+
+ if e is not None:
+ self.end_msg("Could not auto-detect boost linking flags combination, you may report it to boost.py author", ex=e)
+ self.fatal('The configuration failed')
+ else:
+ self.end_msg("Boost linkage flags auto-detection not implemented (needed ?) for this toolchain")
+ self.fatal('The configuration failed')
+ else:
+ self.start_msg('Checking for boost linkage')
+ try:
+ try_link()
+ except Errors.ConfigurationError as e:
+ self.end_msg("Could not link against boost libraries using supplied options")
+ self.fatal('The configuration failed')
+ self.end_msg('ok')
diff --git a/.waf-tools/compiler-features.py b/.waf-tools/compiler-features.py
new file mode 100644
index 0000000..5344939
--- /dev/null
+++ b/.waf-tools/compiler-features.py
@@ -0,0 +1,27 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+from waflib.Configure import conf
+
+OVERRIDE = '''
+class Base
+{
+ virtual void
+ f(int a);
+};
+
+class Derived : public Base
+{
+ virtual void
+ f(int a) override;
+};
+'''
+
+@conf
+def check_override(self):
+ if self.check_cxx(msg='Checking for override specifier',
+ fragment=OVERRIDE,
+ features='cxx', mandatory=False):
+ self.define('HAVE_CXX_OVERRIDE', 1)
+
+def configure(conf):
+ conf.check_override()
diff --git a/.waf-tools/default-compiler-flags.py b/.waf-tools/default-compiler-flags.py
new file mode 100644
index 0000000..95d0d8a
--- /dev/null
+++ b/.waf-tools/default-compiler-flags.py
@@ -0,0 +1,151 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+from waflib import Logs, Configure, Utils
+
+def options(opt):
+ opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
+ help='''Compile in debugging mode without optimizations (-O0 or -Og)''')
+
+def configure(conf):
+ cxx = conf.env['CXX_NAME'] # CXX_NAME represents generic name of the compiler
+ if cxx == 'gcc':
+ flags = GccFlags()
+ elif cxx == 'clang':
+ flags = ClangFlags()
+ else:
+ flags = CompilerFlags()
+ Logs.warn('The code has not been yet tested with %s compiler' % cxx)
+
+ areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
+
+ # General flags will alway be applied (e.g., selecting C++11 mode)
+ generalFlags = flags.getGeneralFlags(conf)
+ conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
+ conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
+ conf.env.DEFINES += generalFlags['DEFINES']
+
+ # Debug or optimization CXXFLAGS and LINKFLAGS will be applied only if the
+ # corresponding environment variables are not set.
+ # DEFINES will be always applied
+ if conf.options.debug:
+ extraFlags = flags.getDebugFlags(conf)
+
+ if areCustomCxxflagsPresent:
+ missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
+ if len(missingFlags) > 0:
+ Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'"
+ % " ".join(conf.env.CXXFLAGS))
+ Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags))
+ else:
+ extraFlags = flags.getOptimizedFlags(conf)
+
+ if not areCustomCxxflagsPresent:
+ conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
+ conf.add_supported_cxxflags(extraFlags['LINKFLAGS'])
+
+ conf.env.DEFINES += extraFlags['DEFINES']
+
+@Configure.conf
+def add_supported_cxxflags(self, cxxflags):
+ """
+ Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
+ """
+ if len(cxxflags) == 0:
+ return
+
+ self.start_msg('Checking supported CXXFLAGS')
+
+ supportedFlags = []
+ for flag in cxxflags:
+ if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False):
+ supportedFlags += [flag]
+
+ self.end_msg(' '.join(supportedFlags))
+ self.env.CXXFLAGS = supportedFlags + self.env.CXXFLAGS
+
+@Configure.conf
+def add_supported_linkflags(self, linkflags):
+ """
+ Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
+ """
+ if len(linkflags) == 0:
+ return
+
+ self.start_msg('Checking supported LINKFLAGS')
+
+ supportedFlags = []
+ for flag in linkflags:
+ if self.check_cxx(linkflags=['-Werror', flag], mandatory=False):
+ supportedFlags += [flag]
+
+ self.end_msg(' '.join(supportedFlags))
+ self.env.LINKFLAGS = supportedFlags + self.env.LINKFLAGS
+
+
+class CompilerFlags(object):
+ def getGeneralFlags(self, conf):
+ """Get dict {'CXXFLAGS':[...], LINKFLAGS:[...], DEFINES:[...]} that are always needed"""
+ return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
+
+ def getDebugFlags(self, conf):
+ """Get tuple {CXXFLAGS, LINKFLAGS, DEFINES} that are needed in debug mode"""
+ return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
+
+ def getOptimizedFlags(self, conf):
+ """Get tuple {CXXFLAGS, LINKFLAGS, DEFINES} that are needed in optimized mode"""
+ return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
+
+class GccBasicFlags(CompilerFlags):
+ """This class defines base flags that work for gcc and clang compiler"""
+ def getDebugFlags(self, conf):
+ flags = super(GccBasicFlags, self).getDebugFlags(conf)
+ flags['CXXFLAGS'] += ['-pedantic', '-Wall',
+ '-O0',
+ '-g3',
+ '-Werror',
+ '-Wno-error=maybe-uninitialized', # Bug #1615
+ ]
+ return flags
+
+ def getOptimizedFlags(self, conf):
+ flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
+ flags['CXXFLAGS'] += ['-pedantic', '-Wall', '-O2', '-g']
+ return flags
+
+class GccFlags(GccBasicFlags):
+ def getGeneralFlags(self, conf):
+ flags = super(GccFlags, self).getGeneralFlags(conf)
+ version = tuple(int(i) for i in conf.env['CC_VERSION'])
+ if version < (4, 6, 0):
+ conf.fatal('The version of gcc you are using (%s) is too old.\n' %
+ '.'.join(conf.env['CC_VERSION']) +
+ 'The minimum supported gcc version is 4.6.0.')
+ elif version < (4, 7, 0):
+ flags['CXXFLAGS'] += ['-std=c++0x']
+ else:
+ flags['CXXFLAGS'] += ['-std=c++11']
+ return flags
+
+ def getDebugFlags(self, conf):
+ flags = super(GccFlags, self).getDebugFlags(conf)
+ flags['CXXFLAGS'] += ['-Og', # gcc >= 4.8
+ '-fdiagnostics-color', # gcc >= 4.9
+ ]
+ return flags
+
+class ClangFlags(GccBasicFlags):
+ def getGeneralFlags(self, conf):
+ flags = super(ClangFlags, self).getGeneralFlags(conf)
+ flags['CXXFLAGS'] += ['-std=c++11',
+ '-Wno-error=unneeded-internal-declaration', # Bug #1588
+ '-Wno-error=deprecated-register',
+ ]
+ if Utils.unversioned_sys_platform() == "darwin":
+ flags['CXXFLAGS'] += ['-stdlib=libc++']
+ flags['LINKFLAGS'] += ['-stdlib=libc++']
+ return flags
+
+ def getDebugFlags(self, conf):
+ flags = super(ClangFlags, self).getDebugFlags(conf)
+ flags['CXXFLAGS'] += ['-fcolor-diagnostics']
+ return flags
diff --git a/.waf-tools/dependency-checker.py b/.waf-tools/dependency-checker.py
new file mode 100644
index 0000000..629fbfd
--- /dev/null
+++ b/.waf-tools/dependency-checker.py
@@ -0,0 +1,28 @@
+# encoding: utf-8
+
+from waflib import Options, Logs
+from waflib.Configure import conf
+
+def addDependencyOptions(self, opt, name, extraHelp=''):
+ opt.add_option('--with-%s' % name, type='string', default=None,
+ dest='with_%s' % name,
+ help='Path to %s, e.g., /usr/local %s' % (name, extraHelp))
+setattr(Options.OptionsContext, "addDependencyOptions", addDependencyOptions)
+
+@conf
+def checkDependency(self, name, **kw):
+ root = kw.get('path', getattr(Options.options, 'with_%s' % name))
+ kw['msg'] = kw.get('msg', 'Checking for %s library' % name)
+ kw['uselib_store'] = kw.get('uselib_store', name.upper())
+ kw['define_name'] = kw.get('define_name', 'HAVE_%s' % kw['uselib_store'])
+ kw['mandatory'] = kw.get('mandatory', True)
+
+ if root:
+ isOk = self.check_cxx(includes="%s/include" % root,
+ libpath="%s/lib" % root,
+ **kw)
+ else:
+ isOk = self.check_cxx(**kw)
+
+ if isOk:
+ self.env[kw['define_name']] = True
diff --git a/AUTHORS.md b/AUTHORS.md
new file mode 100644
index 0000000..a6a5abd
--- /dev/null
+++ b/AUTHORS.md
@@ -0,0 +1,18 @@
+ndn-atmos Authors
+=================
+
+ndn-atmos is an open source project started in 2013.
+
+
+## Technical advisors:
+
+ * Christos Papadopoulos
+
+
+## Main project authors:
+
+ * Alison Craig
+ * Steve DiBenedetto
+ * Chengyu Fan
+ * Susmit Shannigrahi
+
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..94a9ed0
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ 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.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+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:
+
+ <program> Copyright (C) <year> <name of author>
+ 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
+<http://www.gnu.org/licenses/>.
+
+ 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
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/README-dev.md b/README-dev.md
new file mode 100644
index 0000000..94f8fa3
--- /dev/null
+++ b/README-dev.md
@@ -0,0 +1,67 @@
+Notes for ndn-atmos developers
+==============================
+
+Requirements
+------------
+
+Contributions to ndn-atmos must be licensed under GPL 3.0 or compatible license. If you are
+choosing GPL 3.0, please use the following license boilerplate in all `.hpp` and `.cpp`
+files:
+
+Include the following license boilerplate into all `.hpp` and `.cpp` files:
+
+ /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+ /**
+ * Copyright (c) [Year(s)], [Copyright Holder(s)].
+ *
+ * This file is part of ndn-atmos.
+ *
+ * ndn-atmos is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * ndn-atmos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * ndn-atmos, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * See AUTHORS.md for complete list of ndn-atmos authors and contributors.
+ */
+
+
+Recommendations
+---------------
+
+ndn-atmos code is subject to NFD [code style]
+(http://redmine.named-data.net/projects/nfd/wiki/CodeStyle).
+
+
+Running unit-tests
+------------------
+
+To run unit tests, ndn-atmos needs to be configured and build with unit test support:
+
+ ./waf configure --with-tests
+ ./waf
+
+The simplest way to run tests, is just to run the compiled binary without any parameters:
+
+ # Run ndn-atmos catalog unit tests
+ ./build/catalog/unit-tests
+
+However, [Boost.Test framework](http://www.boost.org/doc/libs/1_48_0/libs/test/doc/html/)
+is very flexible and allows a number of run-time customization of what tests should be run.
+For example, it is possible to choose to run only a specific test suite, only a specific
+test case within a suite, or specific test cases within specific test suites.
+
+By default, Boost.Test framework will produce verbose output only when a test case fails.
+If it is desired to see verbose output (result of each test assertion), add `-l all`
+option to `./build/catalog/unit-tests` command. To see test progress, you can use `-l test_suite`
+or `-p` to show progress bar.
+
+There are many more command line options available, information about
+which can be obtained either from the command line using `--help`
+switch, or online on [Boost.Test library](http://www.boost.org/doc/libs/1_48_0/libs/test/doc/html/)
+website.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e6c2de5
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+
+ This software is designed to support ongoing climate model research at Colorado State University,
+ Berkeley and other institutes.
+
+ This software provides API interface to publish, query and retrieve Climate datasets using NDN.
diff --git a/catalog/src/main.cpp b/catalog/src/main.cpp
new file mode 100644
index 0000000..78e3ccf
--- /dev/null
+++ b/catalog/src/main.cpp
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
+/*
+ * Copyright (c) 2015, Colorado State University.
+ *
+ * This file is part of ndn-atmos.
+ *
+ * ndn-atmos is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * ndn-atmos is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received copies of the GNU General Public License and GNU Lesser
+ * General Public License along with ndn-atmos, e.g., in COPYING.md file. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * See AUTHORS.md for complete list of ndn-atmos authors and contributors.
+ */
+
+#include <ChronoSync/socket.hpp>
+#include <ndn-cxx/face.hpp>
+
+using namespace std;
+using namespace ndn;
+
+int main()
+{
+ Face face;
+ shared_ptr<chronosync::Socket> socket;
+ return 0;
+}
diff --git a/catalog/tests/boost-test.hpp b/catalog/tests/boost-test.hpp
new file mode 100644
index 0000000..ea01e8f
--- /dev/null
+++ b/catalog/tests/boost-test.hpp
@@ -0,0 +1,37 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014-2015, Regents of the University of California,
+ * Arizona Board of Regents,
+ * Colorado State University,
+ * University Pierre & Marie Curie, Sorbonne University,
+ * Washington University in St. Louis,
+ * Beijing Institute of Technology,
+ * The University of Memphis
+ *
+ * This file is part of NFD (Named Data Networking Forwarding Daemon).
+ * See AUTHORS.md for complete list of NFD authors and contributors.
+ *
+ * NFD is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NDN_ATMOS_TESTS_BOOST_TEST_HPP
+#define NDN_ATMOS_TESTS_BOOST_TEST_HPP
+
+// suppress warnings from Boost.Test
+#pragma GCC system_header
+#pragma clang system_header
+
+#include <boost/test/unit_test.hpp>
+#include <boost/concept_check.hpp>
+#include <boost/test/output_test_stream.hpp>
+
+#endif // NDN_ATMOS_TESTS_BOOST_TEST_HPP
diff --git a/catalog/tests/main.cpp b/catalog/tests/main.cpp
new file mode 100644
index 0000000..61c4e0f
--- /dev/null
+++ b/catalog/tests/main.cpp
@@ -0,0 +1,28 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014-2015, Regents of the University of California,
+ * Arizona Board of Regents,
+ * Colorado State University,
+ * University Pierre & Marie Curie, Sorbonne University,
+ * Washington University in St. Louis,
+ * Beijing Institute of Technology
+ *
+ * This file is part of NFD (Named Data Networking Forwarding Daemon).
+ * See AUTHORS.md for complete list of NFD authors and contributors.
+ *
+ * NFD is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
+ **/
+
+#define BOOST_TEST_MAIN 1
+#define BOOST_TEST_DYN_LINK 1
+
+#include "boost-test.hpp"
diff --git a/catalog/tests/unit-tests/simple.cpp b/catalog/tests/unit-tests/simple.cpp
new file mode 100644
index 0000000..c6b4fbb
--- /dev/null
+++ b/catalog/tests/unit-tests/simple.cpp
@@ -0,0 +1,37 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2015, Colorado State University.
+ *
+ * This file is part of ndn-atmos.
+ *
+ * ndn-atmos is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * ndn-atmos is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received copies of the GNU General Public License and GNU Lesser
+ * General Public License along with ndn-atmos, e.g., in COPYING.md file. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * See AUTHORS.md for complete list of ndn-atmos authors and contributors.
+ */
+
+#include <boost/test/unit_test.hpp>
+
+namespace NdnAtmos {
+namespace test {
+
+BOOST_AUTO_TEST_SUITE(MasterSuite)
+
+BOOST_AUTO_TEST_CASE(SimpleTest)
+{
+ BOOST_CHECK(0==0);
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+} //namespace test
+} //namespace ndn-atmos
diff --git a/catalog/tests/wscript b/catalog/tests/wscript
new file mode 100644
index 0000000..21e0b09
--- /dev/null
+++ b/catalog/tests/wscript
@@ -0,0 +1,44 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+"""
+ Copyright (c) 2013-2015, Regents of the University of California,
+ 2015, Colorado State University.
+
+ This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
+
+ ndn-cxx library is free software: you can redistribute it and/or modify it under the
+ terms of the GNU Lesser General Public License as published by the Free Software
+ Foundation, either version 3 of the License, or (at your option) any later version.
+
+ ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+
+ You should have received copies of the GNU General Public License and GNU Lesser
+ General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
+ <http://www.gnu.org/licenses/>.
+
+ See AUTHORS.md for complete list of ndn-cxx authors and contributors.
+"""
+
+top = '..'
+
+def build(bld):
+ # unit test objects
+ unit_tests_objects = bld(
+ target="unit-test-objects",
+ name="unit-test-objects",
+ features="cxx",
+ source=bld.path.ant_glob(['unit-tests/**/*.cpp']),
+ use='ndn-cxx BOOST',
+ includes='.',
+ install_path=None)
+
+ # unit test app
+ bld(features='cxx cxxprogram',
+ target='../unit-tests',
+ name='unit-tests-main-unit',
+ source="main.cpp",
+ use='ndn-cxx unit-test-objects BOOST',
+ install_path=None)
+
diff --git a/waf b/waf
new file mode 100755
index 0000000..2ca8c7b
--- /dev/null
+++ b/waf
@@ -0,0 +1,168 @@
+#!/usr/bin/env python
+# encoding: ISO8859-1
+# Thomas Nagy, 2005-2015
+
+"""
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+"""
+
+import os, sys, inspect
+
+VERSION="1.8.5"
+REVISION="d178df7a9bb732db109001d6b461550f"
+INSTALL=''
+C1='#8'
+C2='#.'
+C3='#)'
+cwd = os.getcwd()
+join = os.path.join
+
+
+WAF='waf'
+def b(x):
+ return x
+if sys.hexversion>0x300000f:
+ WAF='waf3'
+ def b(x):
+ return x.encode()
+
+def err(m):
+ print(('\033[91mError: %s\033[0m' % m))
+ sys.exit(1)
+
+def unpack_wafdir(dir, src):
+ f = open(src,'rb')
+ c = 'corrupt archive (%d)'
+ while 1:
+ line = f.readline()
+ if not line: err('run waf-light from a folder containing waflib')
+ if line == b('#==>\n'):
+ txt = f.readline()
+ if not txt: err(c % 1)
+ if f.readline() != b('#<==\n'): err(c % 2)
+ break
+ if not txt: err(c % 3)
+ txt = txt[1:-1].replace(b(C1), b('\n')).replace(b(C2), b('\r')).replace(b(C3), b('\x00'))
+
+ import shutil, tarfile
+ try: shutil.rmtree(dir)
+ except OSError: pass
+ try:
+ for x in ('Tools', 'extras'):
+ os.makedirs(join(dir, 'waflib', x))
+ except OSError:
+ err("Cannot unpack waf lib into %s\nMove waf in a writable directory" % dir)
+
+ os.chdir(dir)
+ tmp = 't.bz2'
+ t = open(tmp,'wb')
+ try: t.write(txt)
+ finally: t.close()
+
+ try:
+ t = tarfile.open(tmp)
+ except:
+ try:
+ os.system('bunzip2 t.bz2')
+ t = tarfile.open('t')
+ tmp = 't'
+ except:
+ os.chdir(cwd)
+ try: shutil.rmtree(dir)
+ except OSError: pass
+ err("Waf cannot be unpacked, check that bzip2 support is present")
+
+ try:
+ for x in t: t.extract(x)
+ finally:
+ t.close()
+
+ for x in ('Tools', 'extras'):
+ os.chmod(join('waflib',x), 493)
+
+ if sys.hexversion<0x300000f:
+ sys.path = [join(dir, 'waflib')] + sys.path
+ import fixpy2
+ fixpy2.fixdir(dir)
+
+ os.remove(tmp)
+ os.chdir(cwd)
+
+ try: dir = unicode(dir, 'mbcs')
+ except: pass
+ try:
+ from ctypes import windll
+ windll.kernel32.SetFileAttributesW(dir, 2)
+ except:
+ pass
+
+def test(dir):
+ try:
+ os.stat(join(dir, 'waflib'))
+ return os.path.abspath(dir)
+ except OSError:
+ pass
+
+def find_lib():
+ src = os.path.abspath(inspect.getfile(inspect.getmodule(err)))
+ base, name = os.path.split(src)
+
+ #devs use $WAFDIR
+ w=test(os.environ.get('WAFDIR', ''))
+ if w: return w
+
+ #waf-light
+ if name.endswith('waf-light'):
+ w = test(base)
+ if w: return w
+ err('waf-light requires waflib -> export WAFDIR=/folder')
+
+ dirname = '%s-%s-%s' % (WAF, VERSION, REVISION)
+ for i in (INSTALL,'/usr','/usr/local','/opt'):
+ w = test(i + '/lib/' + dirname)
+ if w: return w
+
+ #waf-local
+ dir = join(base, (sys.platform != 'win32' and '.' or '') + dirname)
+ w = test(dir)
+ if w: return w
+
+ #unpack
+ unpack_wafdir(dir, src)
+ return dir
+
+wafdir = find_lib()
+sys.path.insert(0, wafdir)
+
+if __name__ == '__main__':
+
+ from waflib import Scripting
+ Scripting.waf_entry_point(cwd, VERSION, wafdir)
+
+#==>
+#BZh91AY&SYê¹Ü&ëÿÿÿ¼@ÿÿÿÿÿÿÿÿÿÿÿ"¦T#)a2Xaì÷^k¸@#)#)#)#)#)#)#)#)#)#)#)#)#)#)#)#)#)#)#)úæDÚ±ÜÅÓe_Z»l2Øim[7×Üî]ÜZ+Ù©.µOî£Ý©ÖZµÛ¯u§Ëï«î\&}½tÅ+¸Ê#)u{»ÞnG¶=ö:k¯[]WNóÇÖmÜÏç.ç[ê½é )æß_;wà ßmíÙ^½Ý°lZúqO¯¾À#)#)(#.#)|ì#)ø[k#)íJh#)=Í ÷·#8=·i`îoG#×¹Nu¨h#)è_wµ»z:#.ÀF
#8ÐôtrÐÛMRQRA@HØ÷u).Å2¢[möõéîG¾Ïª¯¥ó5ß=0×½Üë{Ý.½¸U;{iÓNۦͯ»Ü¥[Ucé]Íñïz×o}콫l·zÏ6ëÝíÍU¾ïZ÷¬ï7ÝÞ÷±îGÓ,×»ëº|k>îæÎå{ëï}·²oOvlôåîáÕèÓ#)³Hè==5Ïq7½{A #.÷½Õë)$S{Üí¯]#8Hª¡(Ðê#.ìª[ZÒ[w½íaîÚYÙïjw½åïy÷½÷YØ;4^޺ȣçgÖù÷Þ÷Ç·j;½*m«í&lk;zï½ïyö÷¾ï> +îø®Ùç×YãÖP(Z/®8fbÞ}·**½¾÷Ýög7Û¶{¾½æ6½ÞóÛÞ÷xÍu×ß{ïTK7}y¹éØ0voc{Éßkصzk½Ö=2)ÉäzR{¡máíݽõ¨C®s;æ^ï¼Û}»Ìo5íÙÎûºtú=Ǻ-÷4¯[ÞÛÙ^Ówïg®Þ_Ö#)/yo}óß^Ýä>>ñzõæH#)*#8],ûv#8õ«·LvJY´z7Óצ¹Muôgi2íp²öìòöØiPyÏ»ëÑï#)Ïw-º#):÷·>Û½»æúûÇðN{»îæÞ÷¾º÷±öÎ÷!ö©ç:!m®»rFÓßo}ÝßZZëÃzï{ÞUÏmû>-ëîîÝo¤CÚûîÓîÞ§Û7@ïUãÒZÑåÛ×;uÑ>Ûî½ßKÙç[¾Û·Ó»/wݾËËqîÌo¡äï-ôWÛ,ë/\è,Ù#)wÛ¦ëg4Vï^Ã:n_Avð¾{è[{Së}æç½|D¯«'Ýí¯¯}×'¯p½Áëîõ÷çzÃ×omÛï¹}ÛÓ_fï½w¾öï·Ý{o=ì7{gÝÜos¸è)ôök¡Ð®÷:wd>¨=ápiAáÇ]N»³à#)6Ç£F#8.»#8ëL#)³¶Ùïîîhk@f(VÎû+ï°ïPi÷7]aõêûÎô½¾÷Þûtû^¹»¶ç§½½ØÑkgX:áÜßovkOuÝ·S=wF²¥s³§Û½ïª÷{ãÞ¼A÷ÊouWÌùÓu
ìÃF}îñ³mtÛ¹²·wܾíî½wozî z}zûH¢ù×YÓÅ]ÞZòõ#8úJÞW|%4#)#) #)ÈÉÈÄÓDI© ýHh#.#.#)h4õ¦!44h&I²¨S&¡å h#)#)@#)#)H"b#)@CFBIú&¦Õ6¦i¨4& i #)#)#)#)©I44SÙ1&TòOÓ*~¨ý(1Bi£@h=OP#)Qê #)#)#)#)"HA#)@#)L 1h#8{%?Jm&§é¤¦@SCM4#)@L&$Ê7¢dýIêzM4õ0M#)#)#)#)ÿöùoã¶ÚHÄÿhmÖ\ýͶ§L)oÛWtdF Yb¡ x¬ÕíöT(_~R;Å~hrßó¡MaDÕÆ*j0÷ICâï=ÞíL«2²ÎÆ?±ew Vä¢ ®@ ]»>¾÷
ãpR[d&ªEdã&2MÓUËÌ&7¸fYní1sud©<+x¬JÁ0«#)ø»"ï âÅ<zɲï¹ÔÒIcþw;þvCÅVmb뮪ÓmmªÄÆ+ È"*]T"´" Ì#)!!¢6 #b ¤ ¸!D#)Ê7¡Q¤µ H ¨*ÛlHĤ34ÄLhÆm3DIMH¥S¶¡©K#.hÚ@4M-+2*cBi
(,i#&ÄZ1DRJT¦j e¤¤LI5´¡`̳cKR1AI(¦#LØ´j5J6ªY,L&HÔ[MRµÓÙf©,M¶%M±1³TjadQ$Ô[25#5£R²i#8)(ÐRZH-¥RC610BÁDÍ)¦Ä0MØ&H3
L"Qad¶H)bY,"RI))b$DÆJRmBZÌj"¡#8(¥ `EÉDFQ1&Sh¤i¤ Ť¥S0Ö©¤Q6I©6,h#.R$¢¢¢ ØÒRÍI©1 2#4&YÉYÀФØB@M4´&)L6ÓH£B(
) e Ò$ÍRÍ,¥K$Ù¦Q 5,RY±£+$ÌI"@3c,¨È*#8Y1´YCd£24IMm6#.Be10©2Rfd¥%*6(AE&¢&$ÈJPSFa$dDA `ÃZhf²Ì²,
)#8m&ÉE²E£I2I(J,4`",E#.MÌdÔc JS4¦!!°©DT±56)2#&$¡MHYEI%4Á@ÆÚRdÒf&É£&B¡F²L¬L6ɲRI,FB)¦$e2#¤¥Sf£Q LIZ1¶45CII#*4H bZ6JF(¬L´)0ÈB¥£IÆQCeª[h)*2jhÉA²6d¦Ik%¢Í4ÆS4Ód¥(µ21³lJ4*lÆR3@
#8ZýÖ·F²´BYFJkZ+ QLQ²Z#.S$ÕLE#.K HÖcc!¡¡-EMdÈleE¡bdÌjZY*,32¬Ñ¦B¬Hªm
b(ʦÛE5i6¬ÙZÍJRa¶¡L±jTIih±´V6ÌÑTY£U¶6ÉF¨Í#8¢¨4ZƨØf¤6± ¬¢6ÓD2IE (Ã5(ÚF£dhƤ,j2µ¬i Yµ,5&fjiH¤RÔRÒS54©¥R²UJÛJJM©¥i³C[5$¬±A°jKim,
¦hÔi(Ò!ldB&6£jHX¦Slm)4ÑQMP¢L¨ÒÌiMÉLÖSf4HJ,ÉbÀclË&YÌ!#8RÉf&ÄERQ Ò,Ê-LÆÌB±¦6#.6,L1³-@¦ÅT¦Ñ³666(Ð#Ii¡"aK-D¬ÒR2KbDlÔ¢UU31a±RM´E5cDaDJI&ÊI¡*KFR6f*[,ØÚ#8ÊlÑDlblRi©&S&Z)hÙ)(Í$Á,DÆih¢²É²R&"jHH´V#l&Å¢£Eb+M&&hH´S#)X°k-4T£Y3#.%,Èl
hѰѨFË#8ÐDE¤¶*c()5JQ5cXÊfhB¢¤i
IDÑYkSdÔZ(ÄÊÉhiJ4¤¦*Y%IL¥(Õ±©"%J££d±¶M%EU3Ê6RÙT46H¤Ø°ÒDX±i(fIQ)$Z¥¦)lÄREh¶*¨dÐMQ´m2J*@4¢VZST¦Òj+cXÚÌÅdµ@VdÔX¦)@ÉA$&6J`Ñ6ÄV6-£cJm´2ÑcQQ!Z&mmFÑX±kI¶¥³d4²±*Z)*¦¤Ò²£E(LYR¢ÒVJɶJ6É«JfQdÚ4)J4Z5¶Ùi£5#.ÄIS(Ú*5
Ði5-²c#*ÑD[EhÖÅ¢ÛhÚ¡MkjDÙH6cÊÂÊQdTEÌlII"!jJÓ-Sõñ/±^íÏáEâþÚBÄÑZa¬ÿG#8)«L¶ýoçlá.Ñnl|;²YzÞ¼½×ú¨ÞÅü]|0ÎE¸9þôè2Íôít}ºN2â´4×,ä°RÈÄiÆ7U";W÷¿çvøõjÿýäãÇ÷¶V2ñÆ]QTÁK;kµ"#Èì, Ñ;f﮾ÛÙèÔçn&,gð®éÇX;£#ÇÁÚÓä5ru½c,#8JÛuÊãk´ðb¡Ø£Â&9B«²ZVJ£)9*H×`ʨJQBÙ«Jªp¿åÑ^ö`¹¹¨Ù5f móÝx1ØÒÐMÚ¬"nÈcÿìI§{7)1 7y×{;wÍÛÊ»ò(À¬Æª|¹j1ùÃ)bEWáýû,µ£0#8+k´:Ul¡d¡§t+ûÉq¥j©%¢YRÇ9°þøÍ;(82Ø,;I§¡§vfU¤q\¢:+
{l%mu÷ùyáIdÒLóÛÍæ)®ît]ÆææM!I$)ø ÌHea §Jñ¹ä²&Zd°BP ÇMìó²ñG6h MMWNÁ¤Õ2¢RiTDñWôÛ^óÒ÷jºÞÍÓCÎÜÑAðùÞÞFDP£G¿¤U£Û¯fÞ^+½û©ÝGJåÉ7uØw]4Tà«yçRù]äKDkëJÍ#.@DÙÄdX¯ÓTá Çó¦óÝö_Mû3I;êc¶"U
È0 4ãþø#.z?nÔDSS8ZIGÛU¯mËè3o¾¦ßæzø¨Æ±á_¯W1òPÇYO:Oõáܧ#8ãPïãK²g¿rNØz%"ýUÕÔúÖq1+]ñq Pí ôÍpÞáê)3OeÐ1¶~ʹ0!tZ2ékÑch¬]V&ë¡B6¼ô¼}oÇaè¢tÖ6j#.((Æç±S+áîß·ZÄ#.KHíþ´òöÉ í6Iøúí}7tl8ÙDË×6e/W)QÚi{ʤç'HqI22VÚiýý!F1dQ>ò7î]ÔÚ,h¯Ì²oÍr±ªý)¨ÓéphÛÓwâêü¯ ýß÷û_=ívrÜÖ»«¶#,Äa*ON\¯Ëëð{zÚÛÉBEЧ^uÂEä
ä!BKII¦ÇÙ" ³H#8°;\¶4¹ñqoÓ5È|\i-6ÍACÅd6&ÐÆ£1#8EñhTM(í½=3FAÿHj]0_*Ù±ü(²T0é[Y²x°00Q!|S%6#8Òs»MÆBz º÷WM>Wد"{8̵ÒeBS¦´¦Ì4º¨¶DÓ¶ìþ^\°f¯ÎÞʲ ¤*¼+²áú$cb}¤e|¦x<C%¨öâ#.²µ¶ed!¨£âFÏ'#.µÓXV6εåt+<{jLÀ(ò@Þúñ£'
S}õ/ÅÜÉÈæÛdðÝi¨g±ÃfqíDU꣺eG²ñûañÏ#8Cê|³£ãGÔÅC¼"÷ý¾r*Q"qJR4(w8¹GÜWÔÄ0m6aqxÜþóé}×MÞá½ö2uCaÇêÌ!ýÏJäÍ2Ò&"ô9ßW¨Þ]=ðzÓYNaéIwÒL±ªÆÝÕÊAãÆ%²o^ÈÊÌßPoè÷iho7¯Ù£Y¸øÖÍûøÑsW½QNoø°ùC³F+qô¼#ßáÛϨwÛLoµ·2±ðÚjLù¬Ë´ú÷®#)Ù±}²ZHJÅW¢&È?dB|J^è±J;jA´ÄØ,Zaù=±*øð¥AÅè=b3ï-#ÀÂWÃÎ={¸Ûúv89;sSùÚz>üuå
=dÝDCOR%5§ú3³}MAIó#9-U3wc-¦'uJA~>µoÁ¡ËãmÑBKTW¥¿ú/ûÞ·Bs£ÉǧZѽ»ç¾)Úb;¯µ.϶ÉínZ÷HgJ,#áîÝ°Á@4ë«3ËTÇYóÉo£õDµÃLVi¦÷ù2õ7®ÕcÀmìö²ø%G×ZëÀÌ8Õ`ð¬`Ö©V#ÇÝdÝËÏMX{ÎUÅÕÊ#¶Þ8³4e6«D/êü±?&V#7Çc¸¦«l¹ßWg[æÒE0Æ̦©:bÇK>N7ÞÎ]ù88ð¯]pÝ'Tn¡t1ì£#.¯W U.Ì*»+÷ :Þí7êþN¤Nëì!|»tã¨ðÚ+j®ÇdX047S%»Ìl&Î/ÍZ¨x%6±f7lvî ÇU½/æ$¿[#.5ßtä]~yöd6E@nrë~Pfy&%²ª(a60ТÅÄÝ©{êQAôÒËrì@§¸£Á["L°Ä¯/èÞ?ê:Ö¶Q?ÍÅÔÀ²#.ÄÑñµX7=uÚKºYïg¡u÷¿töVí#8GÚV-½¤²X÷êÆÏ$Â碨Ìã>w½(<ݨJÉÄ<Ókªbð{5öÅ|¡¶:ñ:¾6±c#Ó=ÔSì̦hq~Àý¾,ª`:rq5Á£Ï1.+ìíÖ®4dß¡ÎZW÷G¸84£Y.Ϧ©Lxç(Ä¿|1iõÔÞê"ì]X °Pe8`Áe#.O~¦ËCÑÜsÇÎõÈÛ^mO¯1~mí+ãó|v÷5(Æ#.ø§ß¨p¹lÒåDè÷]L°¤ª¡AFóNB]®r)¡ÙVöÅ2¤3õ-0OD:t®4²Z®Îµjïw αvb`EEÐ/DåUHv&5JGI<w/µw|}RÜc2ßÕ×¹ÛÙÈÞ6,¦"9²MèáyBÔã]ñÒ#ÆtqnùÖð½DYÜÝìûUÇuDbô^9ÄQ.6Jéõo/;oÂ)àòÏí¢Ã}æ|õF)höèÂÔXdB㹦xèW»#¥ÞɺÃý9ǧ](ÊÞ»eïGõ×iÆP&þéÿ0³3ìÿ#)Ò)Òê£Ã'»#.¿ô~Árý¶¿|Êxñ&QVÆ0ÆvÕE#]cÌOÿqËÓúòñ®RânB¡®,t#+éí{Ýñr¯Ûï½wÃ4!7ÀÈé!qÏYku-NñóuêZ¯&¯MO§vøµÍ^ê4
Ùª;¬Þä¨FBSÄgk,7 ¯}£&SÞðÍ-ùbM2K3zX(Øï²ekàηÊNÎ>aýL·>ßs9`ÜuÊ3yuå÷þ©º#8ìkÙáRR-ÿ¯>þfð+8yã ÕÎòþGz¨¾?ug¶nÇ£·\ÜùkP·\{=¹6}Ç s¤ØH·Ç/j
ïwßâì}ÕæEð;:ðwõWRªÏ/ÒªÞ¡Ìòy"zªä¯8.;½|<dù|¬nwi.Ëܳ¢P·\t/>.`µÑd2Öô+wY>´|=É·f ¦Q³sƦͿ5(߯R©¿»úg4Ø°uÏIó`ÂôCHjìñMñx+cÝ¿ü¯ÏN,oÞO ²Móp!Á0²¨¦èxóííë§c',Hqd>u
i!¿ÓROkÑëZÖ£r%0<òµrÖwÖzÎ0L¢*%(twºzg9LSR³ß¶ALÒ#®ævÌá3Ó¹9×*Ï|ÈqnqZb:³ÖR>#Ý4DFÛI»m#¶ÐÄH$?æ9Ì<r#xð_*5ÛãkëÒÊH-B1»\í¼ 7Ø¡.é¿o5R²®G_WxwHVóTÐN6É£(©£½:Öt¢¢(«aÕ.,£Òè) ÕRS]¬úÞý%$3F»à;1´îÞDZÂ6õo¡&.ìóôëdÁ`#f©q7Cõ:&Z¥ëaXçw]mÂ>ÈC²L!}¿+X*täx¹·J!\hìUmýõ÷ãëm×T;àíå[ËÀGèå©Gb [ðLç^ÒÞͱ³ßãÅkcûÙ
]Yüz±®Íç°>ë*}Øefkk+1+z¡Dûie|ö¿:áy:Û5¨ÖOVcµ$%õùTV`1¦hEæbìO¼ÇÖ]£hÄi ñDxÓilçÂ%Øc)ÙÏÇ#8ÊÚQÙÑå{q©ÚÐú·±¦æàS.àTù#õ¦ø&ðL"v©©Çù©]ÝËâãÏZ´fK£¦Ü;]tÐìÁP"Äb"Fv^i¹Æ¸¢jGBsÍÕªÃc£záÌ~{ïy$x@£4GZªt£X7ü[YÙì²h¤Ý§{øfa{v
{8<®69ynª}-k®Gãdæ °©7ñSg½)ÝlO÷ÐéKµôiFn};ß?dz×ùsÖOM6}é(IèÕëgp©AXT[.È(}õb j3C¨Y+J¦¨©DÓLH@tj2'2A¦ìÎöUédÞÝ·EÝnÏ\=uKÕº¤©)J¼xñrv¹sp"ÎÆ¥ü¿OË6ö¾®¿vÖäõ§3Öè$:I-wEL9î-öUN·CòóÚÈQ¶ý»ö*ÅPÙÑãÖ\ºÎÓqíÅç&QqÄͪ_ïï§øÝ\äë[V<hUðáÆÓODzN<NøW²gà§%¢c÷&2°°-íÌTãn¦H<^êa&udi5aÌèè6=XFéÈ5¶pÂØÈÜvȲ8ÈÞ:F¿<<Þßèvæ#)rr7Q+ÁA°½Öõ§ÒºÔL¶OݶM·uûûKB¤Áå{D®y(ÍÇMmî/kØ¿¶ûmÏ8:>ÕDrY/0²ÍTÚ:
ô©UEÁKÑttÐþYãL'()o¶ÍD/:=çU#8¿l¸r÷é®^©À¡ ÆÝV\tê6*jðád<÷¹wívb]Õ*§¾Øz®Ú_.×iý+ýݧihW¯XhMºh§êsMì ÙdöpNlîZÞ.¬O¾f;¤£1RmvÒô¨û~1iõ8'½â÷o¼sÒSÙ¯2õj&¤dQî!Ù#.zL©¤ÚKÛE¹Ê"ïAZ¡Çrâ¥ñf+£¯ð\³Ë:Êήùã<gv0GÉp@ÀsÑÝØ¥Ä*)¬ã;áMr¯<¬ë-#)⤡¥;¡Ð
¼lõÂÒ5ÙøözûQi»$ý¡Ûí½sN6ÓQWùüskOaÈÚÔr%XwñIF¤¼Ö¥¼u#8ßãåû#.bK¡þ>9Ý}Rô!çû£Q
¶fS{¡Ù%ØüYàìó>Û5æöìIK?®âDCc"&÷² µ9z{c
¡E!ñ.7NÛa2Yá´x_¹Û¯F7qÓ/´âWEÌkã¶9½#ä¸õS7ò»9T/ËNlÑÍÍ{ÉW'èRúátJáÑ*LÑÉáKèCA5ÌäøãôvnË\íwå8qϤ¹oÅï1%¢óº/]!ÜÛ*)Ó7¢×ÙìÕ+çÛ¦¤B ¹@zBí2Óòvs̤¦8ê
2o+¼"*µúVáS|vôèüY|1ªÙPG¨%Fg<¿JýÓ:K]ÓbïL,=»#!Æ)#ÝJÿ:¼ë(æù`¥kÒ+@ úgïãÇe|ü46yÂÊç>ÐÆ{û(öÛ´<.·ñáÚéÅwfB6mïxµå¯ÈMñôÆ[íöÕaP_ô¤Êï¦;Ñi;Ý!ó:oÉ*"ä»ötÒbx{!×gøø¼uÎ3\éÛå¦ê¬[3Üæ{n
Ps6¬4=Ç,|ÃR]¥_&¸û*§9G÷P.¶üÆJÕ#.µ¶+Uê#8#8¼:ÝÓÈï¢ñO®ÃëÁZݳ¬YB¦Çöâryc¡Ð~¢§¬¨Âtγ,ú+q¢"¬é4Òj7×U·6
+Xëæc&¢hÕQÃ~#5ha5ÿTÞ»®Ý¯\hahoSà¨TÂ$c
ÎÖXt"tí¢5ø)"¯UJi^©K¥ê®ÙSÇXS´æò³QÓ3W¾üßNÜÞä¬fâÖåèÍå?é#86Åôÿ§ü!áWTb&! bÚ
ò\D>8<QÐØh¶,PMÁØ~Gwè+U¿p×WÜËÃUÜYÏs30YÔÄÅØkûþÙL 091£þfèf%¸uÈ©¿õÕ[O¦Õm)rØ\s¢)£¼Ö§äæ4è®oÊ>¬þOÓYÏÓ¬ÔÌ0ßÅ9=vz"{Sg\#8¸Ô!InQìliz=fGP±hlHÁV_ß!¬ÊÉ°·©fü3Y{EB1UE¸]ÕOùº4þî¶ÒßÓ{nÜ`mÒ
DQ×Ѷæ?äçfߥØØ0Öï½QªA*÷>ÿ¯»O}R31á´åQøüëf§?Ïçº[ZP$*=ÖoßÇá:"gÞ[Á3Mä#D~jtã\û~úóÄC¿0ÛREU¸"ðèÜ~&)··BÐ9Ä\¶`³#8ãh^©oK}\±1تóíÙl}~aÈ2Ûð/ïá³³Ï?<êU,~#)¼Ø;3R!5X6~>g#.¨0®ËÕÔµÛáPSþO¤}=å01þ+XMѦ?FûD͹\á°OI¦ûkþ7õI]6þ©Óö÷H§]wÞÂûü.GÜêçSÓ[Yq]Ñy~Ç"¿oõÎ#8ÍÜ}Û3S>Â?óÛ¥¨ðߧ÷xôD$!d®¬Ä§%±NE»ú(»R@qÆaäÓf¶ØØ#8x#.¤fÿwÏÙÕQ#8*T׺¶¿ÜÞïÓd¦oøAñ¿Ët¶3fj+~çá.¡`¬DÿwÛ¤å¨ZúãmµüÔ¶ÐÄHN& ×zTaLt¸Se¿·íÏ÷ñ=ñ¯î?Ní$AÒ¡¶I$L!ÝÂÍOédêMmüÐìÑÖïý]f·0AçVîÌ88l-§GJÕYʶ^êó@
v÷köÞÊâ4Ä6
§9åÁê^ø¥¼vÒÏçöéaÕ4$t^<¤[#2øÄ»ßú\´(6Q÷×dc§·{@xùÙnÍ00P% Âsþ)^¶÷`ñ0Â:3°nåm¨,ÐS3åLfÓPÌùçÓÂí#×Û׶/£AgqW8'¯6¯Yå£CD¼Áö»@lMm·aóD+Éé§1db{¹ôÁ½¸°²©7õp»VC÷òAMOb;êXjÒqpõ§KNåâßÃV£M3ÐùÆÇ»iöÇ+ý¼ãÂÒj9j{\ÕV,´Ô5jOócþÐ*ӽˬ&l3ç\'9Ý®u±Û¼ÐóMîz¸§q[këBOÄÞ~9#·ö³3³¶è[9Vm2#8£\~Je«#.LÄ3w¿å5¯Ác\T·¢l5&¤Ýki'\#)uü&Ï_ïè¤á´>ÄR
#gX#1Õ=Püzü\»¼ÁÊ 9ÛhLí|Ú¾81ÉñÔ3#8wâÝ_Ý®Ê \rmÆØ7%#8+Ç7»¸MôWN4J%)¤D¤ïiÏ|Ï»nÌÂc}¶k};A3,#ÂhwìÂJ"08Ð2íEET-4MI`úÁ¨!¨d`*ýL¶ERB h®ï®u©½|&k±|3Lôî~>7ûwTÕÉåi¥¾nC,vrDÒÕ°æ¶'ÖóÒHh×ÎÜ\2Ó»%fðÂïÎ7¢¥äX-$KY>sóý¦µíDKC6ÁÍEÊuVÕb5`QÎo¬Å)#8Åf3#8-Ð#*8
í-fZi§{ûÄ
ðçõz\M?@À
Úöm°£"zÌïËr5¾pâKäkõ~µPók]I¦¢ùöâàis?ÈòÉÚMÓ_[Æ°íÛ¾¶!hb:L¯'Ê#)MÄ%µAL0&f@ªä~ü=þX \m>·¯¡JÏÏUí]±®'¾/Gh:Q;MôÔ¾¿ÝÉög¦^ç/Ýüµ©t§µ»DcåùVáAM×Ý°14##8(ÙSÍ5qf¡°¢qÏqêqyïÎmÛ1Äò#8Ù·j|W¼7·©©¶:3TùQõ¼Sw6írNñqïÛ¸ñзn©õÕ>òxCöKÊm<s\WÇ$àÃö4:!ÂSÇ#îE\qmtîkǽ4j 49±-ÝÉ#.Î#8E8K*91ñêIÉÃD8}ΰ¸"ç/P¦#ÍHØV=V]~¯¥Â§òèù÷UCõØô{¤«¬í®XØy¹ F8ptu¶°§VD«#8ô¾1¦Â©âBØ%^å¡j(c¶Þ76#×ÑåÑA$Õj3ÇGu´·Ï¬ÐË#Æ>ïÛìg)"ØɲZ¯ÎæCä|#39ôx9?ÝM|n0ïãEGÛönzbü.ßl+DþÅ8w>mïÓX±ù#.úسjkËz^=0Â't×u^w#LIÛ°å¹Qb¯ÇÇÕç¼½½Õ¯Ã[ÏÑÅ÷çv<PÐÃsIHE5aH¬²°!fBÑ#fzà1!YKmQEÄ¡ {jVæ[Ét3 åÏuÎÛ;Äí wH7áj(Èõ#8)9$ÿgáEl`v<o7¢7Xpø¢#r@XºXf·0ím\¡Æ*÷£Î;1¾7;.¯Û¨üörÑàÐJ¸©´hn¬`]äÈUÕ;¡¬¸DQ¼ÌÃyéÇy£%·ÄCSZ¥\#.lV§Z1.!Ó&uÎ6÷EýÝrÇFȾ<dã vß÷#8xôó4QÄ%§fv×DÿÊÇÇo=hjÞúq}vÀfHÍyø_Ý{øM$rîÌãîgÝC±tµ§ý,Æ°p`·-4f5>7ÇX"Ýf¥ â ]j§é%¨¡Y®6MÈÃQ(@Ä¢aÅ#8dÁT0?jTÓÒI!i*+ «Ýc¦Y,#.#.^jî¹ü]«îÄ^âÎú¦Ä2B vq5zEkð-¼TZ)ÍHd),7bÃVp
ÕC
Õ)£Q-(éA,T#$#.ÞgÇ£z|°qݤÇǾåtøzDé8ë½Wb3Ùz¯¯9óäÇßHÇܶ×"_a-}q#8o§Ûb¾/ ܼÌÆÝûÄïOï¢ôëm,#.Q'CÀÐCaÇ¿füÝmE2¯¥íE¾Ú1ùüþ|Øbqv=¦oÃL"ήnSñ`Ì1¡;/ 9a Å"lblh° µJ/ÞÌ(ÏCÎþìõdÝLVTJtªÜ»FT0=Ygxé©×j¥}ºgfüj Þ°Nòå±_ÈK6wõCf±ïÚ3Ç~RÇÑõ\g-r#t~¢`¡~9=GK Ú42Ç-;x]ÈhwJ@ÜÑwkÑá&aíD¼¸</UM³U.ú#µ(-Q0l§nÆ·ÞpP#.fÝÐR-¸%ÏÝÒlÓ!´pJ &ßP!@Ç9%*íØÇ`R´ïÓó|x`õ~3¬Ýª1²¡#8ªD?S(Ð#.ÞSyøK+Ðæ ûH\
¢¢â+~NפTÖMpRj¦þÚ¸e8ÄÒ´Íàå\4Úµ|29¯§ÈÐá$ÊecÁNÖ[".-y¨bZk¦ªÄl(·%jØÚÒf0ÄÚ4<°p÷ñ¢º©åÛÕ#8ê}Ú#0#8VJÓU&Û7ÆÅzîÞÒô½ÞRöØËÚDàÑFÕË#8Êa Òm&fSf$ÇÂëµ>%KÔÌö_¥¼^' ÍiEª=z,®¼©
ÌUÔLÒäTÌ#.í<¸ÐO|Z1N&ð!ÚÄNªú·ÏWaÈu¡t^p¦` ìxN©øÿ/×#.hMEêÁ6½ ©l³\«¤,JhWcÅKÕMøOË|°h0Þ;&ñ:T·<(ðþfæ#.¥ÈCtNÙëtÂébÞGR¥Za´õCá¡ËÁ|û´ÖQQLÉkõ+9tíaòF%Qm¿lºô²RÃÉãEmÉ/ÓN>¾»wJÇõ4¥eàsצMÐjjÎõ9»;/>Ïê×ÏÃt#.È&#.d2'wÅ9»,ã$#àÿD`DÏ~¦õx_b:¤¿Ak¥lëðYØíqR$EHR1á5y=6}÷m¶éÚ1\1¥õ)"hwkKûñ%á·¹pÌÌgfÂðCoVàC÷U¶åÉi"1ED#uUb¶%Ìý¦Cß,0
®%=X#Ëã¾|2{]ÎÛ>c÷ÊX¥¹ðǸÃ#8üòA´»"[FØ|ú_E¿ÛèA¬@VÊL©ØkÕáq»ïùмõÇ{´HëѸèÁ?o^ß{Ûï×®ãQ±£¹®m$UѶåÓjf»©ë(f(1IYjm¥óÒ Û!>ÝêMÎCí©ËnÃ-ÇG)dbs\æug?@Sé='&~#8¡ú#)6sòm§äÐ;q<¾Â<7ûx»s¼v{k
¿éîç*c¢ZK¶:Fe#IÓEMXÚËêPø¿#.múÿ}'ý¯7UçhR³¦úfìyö»t£¡½å~«Áqåd¤Å>z7ù¹iùuj1f1Ò#òTzµû7Äe<ØÔéýÛ°¯Ê&e~<g¦FÿËÕo=ï]1Ê)¡×ÒK>ÑÛzNôQ:}²¸¬ÜÜ^XDFª¼ ðèÊ/¶ÞQqZËH'ÍG7ùùíxO£[ý"»_(E><o£Ç6èqÇÎh1³§wÍÀÏóÑÖî5u'WÆo¯ëÆʨð¿ùØÒbey
üøôõjÊÛ×ίæÞv^r«ì¦VËËo1`]¨ú¯ol¨#86mÛ÷¿»(¨ò¿aòtïè_çÝøíîø|>ȶlÝy/ÏFÊ&u¯YÏ=§¥Ü
UÐH5F"Q .Ø5-$ê)Ûq׳Àøµ×"Ò´°?XfÀ§äõæPÖ+RGvºûg»Â§¸a(ãÓEm©,+zªÒßù'\ÖNÇê_O×߬áeåè+¼¤|Q=Ddj'ôjÕçµ^K14¡¦àNýe7¡,²Xí°¿¯ù;DI ðõ$eÅý4ÈÒ«áöý:iæff#8+¬a vº5GÖü
ú5}«àßoò¯Tý{qOëÏvnE¨.±í;Z¦ZÉøUÌR¥R}®3IiQµý·;n¶(¬®]ÝvéÌÐI]
©¡[ôû!ÝÔ\Y-Óõ*¦Ô´T0TK)j%¢ÓHX'ï!bgÛ}nhãÝWwUu+Ùoß"ìÉlQAÂbïÝwÑ3лâä¸7Îéx~S__þ¾&w¼&$¢îÐk|V[ö7+Õýýuµú½u¶Ä,<ð²½2ËV6DEd#.£¾xÂñ¼%È
[Â6!áKWJ ÜdËøâ[¹È«UÚd´Þ"e %D´js¤ÊÖL¿ð2SéÇPN¼þÞðÑ>C óÊÙ«Çmºme_[N¥ÿý4ýXµî{ðit5òa-ì/1ìµØÿq=LE3Nw¦t@èFÿ×½<ɯC¨ÅBè !Ýðg~ÛþuÇáAN"¢8A+0¤ìשaþö0¨ðdîVO.ØÀ¨âì½Ã3úÁÄ Bb"ö@lQ#8EB%#.°£]áqe^(íéxþ`¬ÙIó{±/èÃ:H£ÏdERs#8~¦V¡x×Ú«#8"â äÔDþrS a£gù¹hpõ@t¡ìcàÐøOÙú{*èòíõÉò]ùy!ýçÆÂåT9G{ág#?vo|ëûOÆáô]Îvç\WA}¯£,ñhùè©}ãòÒ@·Cæý|þ<«#½lcUæ°ëþs 6ÚY,Ç)aCÃM÷üP²Û¦4P\â\nñÑ£*§û¨pæ&Ý7Ûx^%6Ú½ÅZ,úæ~0ê[Ö¨=7ix÷Ѿt5ÜQë?ds¡U¼´Â<·,7ÇIZW¤ìÃZ©^f¼þqÐSö×([&¨Dðª´ù¦±OÓR*zÔiËpÃp ÂÇH`k¼Á14ÔíýµÕFxBsÇÝÍul¨²/£X.kßTÚî2íV,AÜuÞò+4çADfm!¾N5¨>_C·øXæߤë<Ç̲Rß)1}KÊ~Õ
F"ÅñgØõþ·ùM«ô2kÜgãÏ5:Ô¡ÀhÖ)¯â׳ h#8O¹®YäFìÌ 6Ó°ÿ±rÌÓbäíðZruøߥªÞ#.ÉI cçýúøÆêgîB1½5'@[d^Ò\ãRkêôÓÉèCù.3˽X¨tÃî5f"= I8ÐÁý/òÀ«Þ¾²ÈÔÙûÉB|'´Då!عJq|A £ëþ?4éæ-v ²¥[ÉiùÌúÓ:gwL£ñ㤦¿Äia¢í6Fº_Kë
8Pd,æX¬Õë©â®ôfD¶äíÈwÄJ_M¯-.ß¼øÃGvIB¯ c\úª^fÍÝn¨Ød! $6üìE±2çSFYìcö32»êÆ¢W¬C÷_ÍËzâH9×T°Z-KKE±ÄàÂ_ÁòpÉ%$ÚÖQ"ÚJc!5(jZ» ¨àòvíþ1×ÝÙþ=q§ÕäÁ¾¿Ió úÀêã_FK±½Ö×ïÒØþVût|ÿ²ëZUôÌ×Uy²&-F¬¯ÂOæÍ(ôö·N¼ÙË»µ_M·gèû'+¯Òö)Öà¼lÙ
Úmðþ²àO.N?j××ÆÞîÉçÏögrù£×©Mù¦m¾2ù#.§Ç²Ï«_=åϯî"m×Ço6í_TöÛ¶ñöXâü=´ÑæշɸÐaèíîôú4\Ùõ=¿¬53ôÁ½Ïâóè¶I*õܾ¬þM¯ú4Û©PWT[5ý=Ò¬ÊW7¥ÛÎNZJNÓ£QÝ£~ëµe,¿l°ÏNQn®ïT*£N¸SUù££N.î¯ÂÛøtÜwnÌØÿJ1Ñê!ãTºùhçÕ¯W'.6SºhvÅZ·´òé=%>^ú¬ñSg-|)ÛÐ*´ÇEcGbéý´cé°¯56Ûé/¡Û~øYÙ?ª<Ðr»='6»sÕiò¹azùÎQóTcÇ>ÿt_ÀçµjØõ//EÜûlï¢66zôhJÝ#ðRñök·ÂÝ^®o#8áÂëÌòó9<´D§×w¼yè¨áÊ»µúí¦:Þ¤Ê+ÑÐM¼´Âªîâì¡?õJÚ6ñ÷ÈäÙ)WËÚÖFùäþ¿×#_èAçô¾]Uñû7¡=ÔÇ>ÔóÐaãL©ø{þÊ®òãaT:s|ç
ok#8¼¥(Lqj«¬Yíÿ_u6{ȼ)$QÙôé»+·(éÙ~ß,}g9q³M«ôxy7ÑFÜßÉÌYSs`?Üú¾?nldkù?Å4ãH¦sþÏ×x>Iv4aðôh«\ËCÇùúîr£u2ý:Í>ï¯K4uPÿ²0ô'øâ©åͳü>¾j#·sWé¶0Óp.Izë§?ßÙffMcÖdfíÒG û2Ë2×~ºãw§Ïý+ùóV²Úsgý_ã·äìúþZaû°åªéqèãCéôz¨èí5Ãò'ñôݼ·"#.àùý¿£w?ÝOðËø2LzÇëlÃB,XÕ)pà}ý¸gʦ³ÇÊå;áäIO?(ü8¿lf©?L¦ädZÃ#.j`rÚdj0Í´~¯G¼4ofüèåØsôhùý-Þ¯³ìòüúú¼ÅÇañ·¬í¦zéµyÔGédSWCëËVz5}_hCìåþýÃw&:zëÿÝw¶¿ÝÏÄéø¿ïÖX@àucÉÌ~ó¾ÆÚI¯Ñs·åû¬hTwÿ»{}wãFúñùéÛɵhæ·ßIî)4x·õ»¢ívåÌ=sìù~%ã¯0{¿Y£ËÚ*õ<Gd~BìÞmÃè^F©º{6ÀÜ<|ôÆ öçÙl»-¡þ##8`Bæý9üج½JU.Dmä?³q<.ÿ³¯¬Ø\yáùÒ¸lÙ÷×ÿl7ÇP¼÷õö>#úêßeIRÿ"íªêéeò#»øþì,©©GM^ê0Ï
ÿ6±OO&Óé®íúO$ªcÉ]»=tt¬C»Alpj=° [v¾ôg2eQb¬tcdR»0RgEd²- R/SUJÖIíÒº1á¦uWF7%îÕG/¢hѦîãv4ñ)Úu§j»²É)Ês¯× PÜ!ffå)×üøGñEæzäNBÉ#.˦ZC1/¶þ®|ÕfÙêct}Z~ûý»ûz¨£¹ë#.´jMês;þ4TCe3j«à|[!0:ù·]çIÕt÷ÃC/eYÛ9[1ÔÍmZ¸FݤÌe<íÈ Qú
»Ì[²"sþÅë³ö<SÇX®ì<çæ~¢¤Ì;³´Zg®&DDº)9#.ç`Òd·_¬·5»Ä¾ÏeVv}ímÙq+Ã>6Õ3#.Xãææ>èýõÿi=5ïþ$[4*èv hå²a
2ÌBV=jŦ%PÓ¾k¢¨VÛY>ãáûöØ!<ñÍó_¬Ûꬫ½±:{µQz®ì¶«*±¹ ¿JOW!8ÑyÍ?ñùô=è(0ÅÏ-ÑGðë®ò¬ªÿHÝÓ|Òÿª±ê§N½~?u)W>;ÕO¶÷»¸8ÿ'®S×æûN>;=G&ï-2ä4¯Ùê×#.°=l{±÷EW$ÿ»²_>=6ñ»»Õt>ù|-eå|mßqÛÂûn¤Âñ·òýõãow£×3Y¤Æ=á±K¢F$¥Çúû)+PO%èîô_Âò?9jjÇÉOÏO©²êõTúWAXüõ_ÿ7ÎkÚ3÷jþ%ý|+Js#u·!O*ìD<?±Ñ¨0Í,´°V$Ç@VlpȲAUF(FEU5"m#g/MmµÄé°iGd&,ZÁ¤ØihÄYSI¤ÝR±-5$HÆÝFë§é%*#8Mâ øcø±Å545 }þt-N,N±}]gszÌäkòñË;¬?1LüCMeÒ|¿¯vÍ&.£Äâq¤Üº9¨#50:ÈHDûò~VÀÞKËiP"Ö;ÃÀ£Hhe"$*#.e^Í"eD¡¦%ÂÙuPcTªËwE,qRÊSùØhð÷ÿê_Ïùvþ/#8ûhÃ>ÏGÛ/|ùóhNë»*q>xNÞúkï×^ð®téKóôxÙó-ß³ìófùáVýÚz?IÕC°oÛö¨·ª)«ä±;Î×®Ìëºç¶ºïöNdÿ*£ç¤Rhó·¡¢ÓI#8¾ô(ùËÚÃî<>¿ÙúÞN}~t5¬.IüÇFø°ÙÕöý ×\´ü¼òû'nýÜÝøQ½j¶
ÌÏÎ6Ê-¼bð¨ÂÒÄÿ-òþV÷O¾³ËûóÒ·÷M_ø>G¾½¨çü¼ïºãûjçõt
ÝôýìÝWWûèü4zs#8O1 TçÒZG#.¬ÜO3»ABúЧ9ÆIÈ3ùlñÆÓs×HFXd)4Æ ciZ8op]J0FÈ4Ð1ñ
3´Ä càé2Ûz»^-ÊfÔÙ6F"ª1°Å$mi<Ò¨¨K*wÜÖæÒ·^oï%ºòTÚlH*V&hËÇ
e)×Ï¡'RWµ&÷#8olÀÁ·å¼lxꦼéæYvéÃO+ÉÄèâ:I¼ïN5FQ³ ÁE#8(D0(#.0 rA,È0Hq#RE(gKuÍCm È8#8H¥*ÌifA¬£âc¤\Ô¡¤IÅHÓÂÛX \5q@aD¨ÁT#.A;7[fÛÙLÓÈ""¨.
O#ݵEnÍ(üQ¨ªM9]I¨QC¶u2Ñ@V¥â#93¸Pâvà[!âmjJf½ZݼbÃ!¿¯ûüy{á¢S¯±ª#.¼ YióÁê¦öOci=ØÕW~oíGÍ×GÁ»×y§nÌî¼Þ3úîïÜ{csmËä>wYu5Ut´#.Mßé#.®TKᥡ»#8>YþVú>ãHtð××õÄÛ§n©E¡¶©¼æÆæ&\Ó~ø6¹3§Eo¦ÊcÙ1ç9Î2% ¯ëàx+yë]F·>Ns ¸¯dèS&WwÏwo¢¢«o]\Ù7·MçE}HT<ÕoÊ:mÓ¤úiýöQ@ª,«ºNY3¾ÞpîLzµ:44(@a¡G¹æð¢DNÜ=ÄMrÄ@Grï²ûܪVFÿ#.Ìa~
>dîI$¡w¿¾GªM
òçh3h 4.êãýÅ×ý(òZù,9L¸7nQÉá8-øJ3ßäþÿÓvíý¥v.þâ®MÔö1ª!¿®0ÜûÊPó.á)HS(V#)ÁëQ'YÞ½*h»$\LÎ#;UJ´ñRM;KËe_;ãÇi]6'%,Ñü\©ÙïLͽÀ(=×±H¤Öï2Öð§Æm}K #.N´:¼qÀA<Ý4éþzÙ#.Úloó2{ðz½ôã³l,³UzÜüÁ¥ê3ãOÕ"8=Yè¾Z¯eæÒmÕ6j¨ÌM¸íßÉ$ÓE×2¬4ìÙᣠjz¦°dÕ^µ1ôNVhÙjpÒñáBnD%¢=ýõ]ô}9µ7/~üÏîÃú=ãÄÃy®ºçkÚDX±)þVkÍc#8ÌâÈ" 0÷}ôy½¢:}ëù{O·Ìô;Ý;ûº>|ó&ÚdEÈ&«9%#8ßh&bgPJí4õL1 åXjgLf£×ÇK-îgÓ±(y§+4Ç#×@¬)²®IXÉ+¹h4Ej,¯ÐôH¦éÛ6´5Ëwz8.4¯#¶[¨#8;w¬vÞ4JGYX4ZôÃ4rÑj%ié.¹Ç´FÒÎ-Ïd#8°dÕðÌ0Ãf9ÈæÉptrÝh©Z#@6!5Ñ#.%¢´rQeh)¶P5©ÚÚ4w*êÄpÍE´Æت%u±¦&Èv¦©N.8i¢Z/âgûrMqo¢¦áîâHa²%+(ªTêÖ*V(,#ªPàµmÌ4ûì#.2ì7âéÀÙ2§N* ¢ Ó´XPOM:·yåDg«¬;üïɺÈ~4é£{ iK¾ìÒº÷:ï]|)ÁvAzG àìEÿ.~U1Gì=^ºÝ£¯E6´£ÐJ£ÛìKØܶÝê¸înÑ.Áw;âWÞq´&XÂÁm!Âó[f{ÃM}p\I¤×ȸÂôpÐIKb`X®¤G#"Dj¤øÈôÞNPlëJÿGh¸4!õîó;XÖÚfÓ(@ï×#8w7B5*Qk-TihÑBÙHÒ¥(n^!öOLükÇÚzã%Õ4¤R,`©M[&"#82«ôfòîÿ#øP¿g64ÓïÏÓ?¦ú)æìþ¿óFÞñð¯KÚÐcMÉÛÇ(h&¢Ñ¼q&EËJ#sc£c®Óì3Öë1½[Ìø¨æTSÓ©Íriñ»°4;FF6àÈ1H6QFåÖqÄB2W_±`:¢er¢Ö9pT¼UºöT²ÀÒN6îgH²dÄ
9¨µL<LË/2ïÃ3X j¤ÚK#)PµMôÔªZU`ùoF?ÄÒ2®eoEió8wwº'^Üï#84äd)wÑ¡*h]ÝÐÆ0í2ë{$ÉØ´ËcÇ.E?*»4¾|J,:'1="Å&ìÖ'Ià¼Ï9Gñ
*ð¢ÖÍ9ôQ9Ãd¤CÓýÙµ1>°v8Q±?Ö"SUãWj¶¹¹Y9&ÕN¨ÄÁMI¢rÆÁ0Jj£¿ÎkßC¸Ô*1}ñv,[tGlÊvzGi:NÒ=L±è0®ëÅ8³ ȽHKóþllgèÚ0ÞoÁS10H7Y ØÉÂJCbÓLDuvfa±£4^WL<*Q#.5¦]+T¦*R½Ì3+dhªX¤ªÊ³CC¬a®jßk¾s¿²«µ®ã%aë®øÅaÄqÒÇe´Vaµ`PbTªA2ë¬c:èþOiÖ?àÐiHònRV#.|¾HÓìkxÛ.l!¨L¶ NÂÛ1¶ìv
F)3NKpÓQY¾/Øëa¶[ÛfLÖ*£7Gl¸g0Âo&tÄkÅfD#.¨òs>hd7T:#.¶4BLÐHHÔuéeã¾Å`Ù¯ÎvÞðm¡&µå¿Rèi ^ÆÜ>Q¬³¼$X(AÓ5#.E¾áß
Adìºá·anoåü#^ï´ÀÛÁ[BPóºumg¥sãga«r!B$àDcG]j`åºÞûq£¬'HðÉ]Ånq£5¦èÆvÝÁfÎh¦Í`çÃnÄ|çMPãý¸ÌÖm&à饹XjQ$ÈÔ!¥Ð(Å౤¶Cµ-³nvM9ÇG$Ãk$óUͳáa@i«%VrfODHõÓÏXÆóK·BÅeqÓowîØÝ oÜ:{M1h£ûãä¿ZiL}0ª¨¨À#.*Þ2ÿ5ð¶õlçÁûê7rð>í
Z./,R¦Åû²Ýµ/ü\}¢ ìHä^'+ýDWSUs·h"_CÄ:z'fÅ%?XÄÌ'§NÏ°»(.eäwت¾Öêmæ&ܪ|>g¦0QG]Ug!Û$ÔçfÅ¡:F*)0Ñ?Ux<Æ»ÉQ)¹ÃUÒbË¿° $B9þ3E5õÁáÖÊ¥uå¹FñPã|£{?´õÚ»¡âûLÓøsÚ¯m6ïõ<|<L_CÌËÄ©wZ«e©ã!ÒÅ&þ½,OiJZq[àëªÁ¢YDaâN-¾ÛkÊsÍðãùP±k;²C¥CáÃÂá@ÙYVÃÅ<¼-ÔÑî|¼iæfƱÉ#.p¥+Ü*õ»Rmk¬xÊC£¤øy¢Prþqr}¹7&«8ÚHKSP*>Ó{²âI¹ýÎ\7Ýè4ÉÓ7bîá1Y¥Kc/5-#8tvghéÛL¦FGÉ>f#8Ñr Â6ìöfß´;~±
·0Ö,®Cåå¯vMlrU©ÁãÃ=6ï?ÏüÿÆÓáý¶Ç¾¨e0R?xèÃÂÚPf'^Ï,nòJ'öЪó!à9Æѯóþ¬ÙÉuøE¤Óýh)ÒÞY¬_µYð Ô]åX·;hP!î/ôÑ(?¼HjÆT¿N¾¿IÓDZ§4Æ(7¯îç¢s<ØØÃwjÚ6(Kèöv(Qwg£É:î üýæ
QÛ*ñóÊZ!|èXyäJ2
U¥çY5·ZUq½TsG¦àÍÓ'Mä³a5
×,dRFYñûϬªhÊ`¼
vxøYXB1Ðì>|(4Fq1GÆû,þÙõgk 8ãy6ÄÛ`äÜÒ#.3ô4Ò-S¦ÉîEGJ¦tár±5%ohOZ°:ÜÄußQð·EÔ¢ÜC?2«¬õ̶±2êp¦9yµµf4\ìé*µäñ ï1/ì°ÐuûýD;õààί,qÀBÉ*(yb*J+l|p8Éý!«;i<ÄÇþ§½fý©ç>?º)ïÁA]y&LÅSåëâÈá³û3ÀÙm=¤°ÙÈ@æ¤$Aâ TZ¶Ãk8gcò ²ÒpŸ; ÝYæz¤àøàìy>Ú}ßÉß LðD¢eß6¬ùz;á?«U8ðk¦mT¥ i£$ùOTÆÂûkÃÇs¯É@:Ü!Ëû ä©wð9À}̼Pî®Ï¥_ÂwT$ñÚLÖÑÞ¦ôþú*=%¬Ïàiýë«yé;YæzD>î:Lö-Kø#8dûuÛã#Eë¦Ô¬CZEá;xbS%mçkZv\ù"9F#ßËãzÛÔ¤»êÍÇ£»BÂ߬; ÒLÁã^ñé¾Æ;5FâàdÙÛ~&w[Û³ðké{¬9sÂɦ ä4sá³+Éi¬üóÎJB#¼#.³èÀ»C¾áG#)]Å?ÕÚ)ü1ã¡
#.¯÷§?D½ý³Ô´:Âå΢ªb£çæÉè?IÌ2M8!~Àþ²£¢CÚÉ2¼°;:-Ö=Ê3Ñ;¨ÿjÜ1ïw¶=Ûè×rÉ¢0c°;(×^drL=æ)ºµ©sçd#.M¢ÓNnպ߽û7·¿\q¾6Õ]oͱòܪÓdú4[|eg#ËJìeª)åAíìâSÆmL,êÂýÒ
×åÂ죱XÛKËÈÛ§:)/ Û,:BClW§Ó¸.·ÚÉ÷w§Ó͹ p,§·làj¥Ñ£ìÈ}Î 'æõï5ÉÊ9ÎÉ 1Fݲ#8VÛ$£},JûæYÅ_Ý#åÇÕ».©ÉÏCõuô¶;£Ã]ròÈá[ÄÏY`ØÍ3°þÚòG!#8á0¹Ý\ÄÔW£Ê$ýg×;ÃXØ~?eHÈâñññÎh-¿ÅÇúz>ÕéJ/±äusC#.f^ôμQk¨ÏºGxØ1ìi7¼ü±ylcå×FµÚÊëÈbÝþÊÎx¡ËkR×k®ã}JîݾZ#iÙl9ì|©TÆfxAÞÿ#8÷¹qè¦_£B¼Dgß±ëíAîãXÕaaÄ·j/>\·ÇgKÂåWvLCuö³qnî~Ïë3Úsf2N"^JHãâÊfö¥kCûSuw#8àÛ"bzûQ'#8L(Çn9²ê·ÚcðºpËì{I(K¦Ú#.æ?ï¹ééy>{o>zì¹Ýñd ¤MÞp\áVû¥¶C.Îù2ãÛ¿vA#.«©9DZwyáªûc|ì©vâ|WtkrÛ÷ßLe$jjÎxÄ´BõU+mºÑ¶ïÝÛʶºè|ôg#Ùr®BÚ~ÝD¦Â'²n`Ï:Ú(´r±È8ä²(v¶QíÊé׫Têâ|ÚñSHp<G¿$òmq³õ¿/gq\Û˦¬gõ¯8ãIâÆg¶7Òô{·ÍKV±èWT[lødÛ&¥5äß,Æ<ÝcÑÈ0Ò]¦ïUÃ6ß/IqÄS¬\Ý8#83ÚÚDÌÑôaH=£Ó7¡þÊB?´iéfO9<ï=Iµ[ja&¥7®IÚÓ¡fD¨pZ«NéÝ>§ÝM\ÕSÌéàö©Fú$p>æÀèÉü {ÇõåÄ¿3%àW¾%KMÏøÈëKK-µÙ,±åVï@xÔcÑÎTx)sDSüaçÜ3¿64&Ö3l`´{ÌãofÛo5±fÐ9ß!}±¯f´r±·Çfw"y¦fѸu÷óåFÀWì%V.*Ì3½F¤©ò5#d_@Þsâx×I©¤¬¹)öñ¶èÖÉ÷ð»¦ö(¨~ç³$m2¢î+¬#uLË)mÖm#.öÏü½Å ÷k¡w8"ND^ï5-ÞV%àßdd]Fò×&¿ÖîE3Sûù9AæÖ{ðY¤äfh¾Nê5¦d·Çù9Ïnç^³®ÚS#8ÇÅ·v"#)ý²#g££Ü[ð¨¼9ÄØSKP´WGÃ#.eÎÒ§Hs¶¦¦×àÌzø§´Ü¼üUAÄB/ýS¡7¾NÑLiÔ£³÷üÓ³K±NuäijßéúÿÐj¡½Ñ¨[j6Ïî®ü¤KïGâõïÇ{ã¶ã@C!ºÇÍa¢¥Õ5uP(a Ç)¿3Ê#ö&$Ûu¿ílaÏo|Vù´jº»rQ[<»¨}¹ý]¡]a{ê¾uÛE]ú,dQ ìÔGH)ïqÂOYåþ¿Þ#.¦¼ÚÕuOwÝýÄI*-ÂÊÌÙ©îÞvN¤ü(®Ò-TìPÚ¬>2/ï¶ËÇ·áðÇÚìù¯ÆöżnoewðùÍJ®É+gzì/'§9®|.Z/áÝÌ,4õHù5ѶlJ¼¤F)8¥[ôMÒ'm=5gi]¶Ûë[a[\ª0¿Ueï|ÇÉÓÙ³8¢úJ"÷a
¥zK%ç¨ì°º÷O;ùÞú6ÜÖ#gt(|E"<°¦çùüdaª½!m1-
ñ)ÒF!°!\ÁGû^9úÑVükÓ}MR8ÉüéÖ±¬tâûoSÄHôÞ³¬Ùûkl?§·õ6oÓºiO×K9ïHByoÌ¥`çvQ ]:(ÝÙNZ3)é¦ZÜÚ¼|wàíÎ#.ü5Æà¾ñíöV=|¯UXl;÷\7%/ãÖÂêFTÏ#.Þ#85´yDiz,±ÕV(¼\òB=K¶QeuoëÄMÙUO½Z»Ç¢¾úzIܬ¾hÂ^¸¨ìÖÝ7ü׸Z涮"é
bí¢Úñ«fû*a(ßKú>è6P/º`èóúøðVÈƪ)UwÓó'sC-¢¤´ÁÇËÒõ}.V<úQA]6o1W.»½p«ÂrÛ|¼üqÇ7ÕBÖ\éè¿(:rðæ|'læ0
ØX;_&ÁÚiÌlFܹ£5tpºmÑm¹Åqsà¶ÀËÄ83Q½ëDneØüÍþøÆf_¾°¶G³
¹lZW4U½ê
ÐקM£Êë
VE¬:Æø¸FßÊ ßoñYá·ÕãÇãé:â6Þ»9ÕÉõþºc{bNÞ@nx\κæÖ=ªìÏàkãã·ä°»à}ùõâá&tóús#./à£;QµpþÿÏ¢Lw¬ß¯Lmé¼Ë$®ý¶ß¼_;ûñ¼¾ÏhÞzxø%³u^<wÄÅøÁ¾Ó¶óP¨MÊ°x¨sÃíÞ{±(Ú'ÍÏ.Æ;ê<m§¶ßk¾ZÏ®Ðt#Qì?ÄÞvdÙãKhmÇ-5ÏM®XÉMu×ãF4Ó^k¤sNË#Ai2JÔ28clZ¬/(§Ãs¼*wæÎ}wåE§OÁ"8˾Îg×Æ9ÜÌlz¹ö¿_/¥ghÎv:#.îW¸[v
úßú²Ü,oû¬xñô>Ý£*ѲéäJñO·ÃéÎ:ÏTÈó¼qb6Y|éë1o¶s2þøìNº'Ï;sVügظȦ®ÊóÇÄv}>ðôçäøgíÙéè¹6DO;fi²ÛâÝÑgÕuíëß ¼¿(ïÊùöm_Uy¤}þy«|> øytÄ
Ó¼1#=ÔÒ°pû£ÎÉ/U¬0 x¨<tÊÔt©¬ÔðF«'QGkçß×XÏ»~tárÔ4VçÊ5áé¹5·o²(ôÚ3^¢®róÄMESϪÇÉÒ9/Bñè?âaïÃäwæ¼vÔÆÝÖê»tÞ~ÜmSÛ}õ:^;®¼÷íîß8êöþGåêÁñßõóÛÉì'ã¹'m^µ$òAªë{ëx;Øëý8ë´àLf1ëèÇ2Wì.·OMÓ÷Q®°Ïñø[{|gÈ÷1[̯ïÚ8|ïÆ+¨<kw(_r:+Sêþ8ªÈðtR?;/dãË|g>è£ÿ;èòw¹-°ê¡ðÃWø¸Ð®9ZöÝ#8ü1|S/VÀ¤~»áåÛaE<:©{¨¯(Î.UÝ1cÍ·×kÎÎóQCͶ¾<ºn®k.É×\ܾÞë'k/l¢QÛ(4Õ#.Øñ¿×üºn½-ËHìR]~ßC7~êO¦ïxáC
L8%äO]eÁjïc¦ØýE9_t´úÖÑÕ½B5Ôo-ì²Cdk¯h}Å5¾þ_´YzWg/íºëÕê}Ðtðç-¤,¼¼|óK(W !+vb#âæÜPyëR#æó"±.í'L$(Eàî¬ÉBWQY&¸å»}øO/ú¸ç¹'®~Üù~Î9#8#l?Åýbò¡$|Ïlz7µD°°º&Üø¾Ý½õÂ=Tð©#5GäÊ)§kP7\©{f;Q©îÙA=j%³®¢ªÝ«ý+9e(¶o¼ì6õòö«Îå¾±öu0Eü¾Nêý|æ5©Ú[¢çòǬcZ6×Gò
'©Vêö+S}t<¢-f¡êºH9ìNÝXʪÓíz-Æ÷}RTn])¨.¨ÏLÏ%ë3åËÍÏ®vYwqzæxc[êÜ_gñsÓgòë½ûäZ vkï&y¿¥ùtëö4mÚzûU3mÈøPìwÕÁ]¬pS8Cq:;cÒC\ðªåÊû¡#.êÆ}QåÝ)Ç-wß¿êwíÑ¥KÎó°/}»±µüÄîVX§Ã\t¼þÎVîÓrktCFý*ÒÒ×ÀA³ôô¾ÿxÑú²#8Oû y;$2*J3¡ú#MÆí9ì³?ìóýBºXãdþÏjÓþ8Ò×:n:rúÍz+f/÷áKvTÆÅb(ðzcxöÍ£ïú¯¡J÷Á§]s©û»i>½c'Úcîì^ܼÎÁÕw̳#áËOÞx¢©6ʯÎ5±´_E³|[]rÅTë¼Ù§<ÞhNØâ³K8 ÒÒðG~øvàçô×]òm·.\I>(¿S»£ßÞàoÉ#8Þ¸¤øë\SX£âëñzío=7^^WÑQ¦ð¬Î WôÀ6Ú꿦ÊxÂYr59çìdzýÿnä {¬Ì;»8½µÞ|0¿²ZIm¶y½G§ºttq|^¨é¶Òæîþì9|WIÆٻߢc×^\¯ç¥î¾ùMv7ÖÌQFô¿RÓlÈë¯Ù )LÑ*WI]CvL"»£ÑÍ_$uÓ#)âqô;]àÞqI]MÆ"D í÷k#ÌÛuc¥mYé¾Q=þ+TJLLu·#(®8H_R5Y;ünHðüÌúm6áôIw8AºÓ3WÏfL²Êw5
7Ct-P.X¨Vüc§¶¶©]É@IÝ,G|ÐÑðÆy;h
ÖQÜúç^ú{ð%û.Ü2ñç®ÝÚ#.8%iÙo§¶¾Þ¯~K;¾<ò]i:»{øÙj#xÈsoóÆyÌÅR j9©Ý¦Ú;t⿱¬At¤5j1ßµ4¤Ùïv]sf1sÑÕ¼õÖõ5ÈtnxVîô¿¦Î¸sÞÏËx·ËÃå?ówb´ãÓmj¶Mö=O}ÔªóÁÙPwÚ#8Êú®½¸éÆû>¦ weîñ¨'Áâ~ѧ®Å=÷ÆË`ËßH8ÒÚëitk/) ÑáÀ|ôj¯KgÜ
õÅ_Aû÷ë£öðDa)p)'E#.X®ËkëSMã¦ù×mAããêyݾI×Ó0ÏÅ^Ë2Í}ðf6=NÊ!ó¿*½YòE:Ô·Dëºn4<fóÙ; è¥òÍhí¡ãv/ªW?¡eu°ãaT
,c]ú°ÍKÊ*(KB¶¡Ü/+dcàY©nBør¨ÅÇÞû9K{#94goÎмwÇ9Ü×̳éÀ7%æÃ#8ÞäëE3fÉ6ý3P$]o^_§fxæ<|¸WÝãªå|2ûùáí²¸-?s.èäÇ»oqf3ÅíÏ⤩¯2_×Òl6»G-¬dM®Ôýi½!·æ¼ç+ç]Q{e¦YÜKu´µ*ôóüN3l´|7äæ¢ðç½Çn OÓyÛTyº2'tÖßI·3îTÔÜw¢1¡óx9[xݺpt:6=ÇÏÖ¾Eñ
8¸-Îtq¤á<¤?/ÖÏz/cZÌåÆÛ®%
)Ù#ã{|baYÖVÿû÷i¤7Ôvâ;ï6Nn1ÓR@ÅjcÆ\*.O<Äé-ô¢éôfâ #.ÛÏuÛÅ¥-UgÓ-òÓ
gtÙ*ézFºíðÌí~xy'îþ[#.àïóë;ÉÔÛdz4åDEï~Äkvµ;]ÑOÐÕ»°¦D¹Ì'ñíå¥(9neWma á(¨¢ódÅÝô3vL3õéô¶¶bBgÉЫn#.:²FZUZµªH©RIÛ9êβíáÙÐ.¼·êQÅút(dPé4êÿ-¶iÙÓ8{¿Ös,cYeVWЦË`èÁJ¼2Ùªüô#.^ïXº[û9Îq YC<º²6ÞÕK6º]sÕw¡Ý&àM÷Çw è7m©{ËM'#Ñ
Ø"(Jv®Î?,pcÒ¸;Ö¤¬/ç§èDìí£1ϯ1m ÅC>xû´´á>êò;ÑÖ"¹µ¥§ÕÜäNûÁsÏ»÷Áû¿àùäpñâúS,R]ÍÔwr&÷,#8Êü}¹Á¯ÛWùøÛPÍW°ÿOÔYøUî/Ô£¹#.n:lS¤ÄK¨.ó?¢¨¢¡'+_>®0ÎÖj}MT+²ëÈÓHí1ü¼¡æñHFg§®su ÝÒÆ?_ïO²rº:-OéM AÁ~È~=¶wø´¯¦Z¥%ÇV½I"&Mó!½üä]¼6+In[ËuÐ~ªë¦¸BäC¡1dM?Wn{èÒMµHgL]ÿ-<Å#8/%ÔE·°âÕöI²!U~ö×í50VM¬kX¬8RtRYDÓ@Àâ#.Ô¸NWþÅkF_(Qô³zôeyddAEbE kúDÛfÇ4Âx5e0ö°|{îÛÄÈ®ziv¢¬&Ò>M#.ÊöàmB·8*Tõ ³gç9»Ôôµ¤½!?3KΪöôüåÌ]E`³°©»¸á2_h¥PÕÜ<yÒEpHTT¹\æmÔëaoB¡q¸BÜ>*û*,Þî)²WÀÁGµ¸úשµ]%üþ/Û>Ee&vô¨pèhÜrÔ7¾¿\|b»-Ï÷ï a÷Ýý?X6®²ÞXhm©éÑ-ooKQ±óí¤æê¢)5Èoöÿ®ÞSV ?¶D+ú÷¶8öò*HYÊüLã¤9l3ì[ø½oL¨ÒûK¶µ:æthòkåÄQ²°@nMJk8ëÓO5Çm¡mzÞNÞĬ5q7e¿ç¯g·îIã #8)<'8uÜ×26F"Ûûø×ô{ñ+Ë=> §¦ððQßßØ¿YÞ¢z#mÁ#8P¥¯<' º#)
Júô7[°íBY¢PêÀña²êg°MY?4ù é#.Ĩ'u½¶GúëXÔA=ÄPNR¡áÓK±¡Ê©m"ÇÉIE GªD7SDPð#.TÆ,Ô öêR)ê:#)¥rÝ°°²âG娡×Ê o.Ã#.¶9oÆq>»mÔêrG9¹ñ{ì«sôQê2®ô-.zKE8׫ouØ=¾~tßSmv¸,! ÉEDf|#8÷´±`Tô£|uï®*3v_-îC_Õ§n4sÐC®Ó0-"I¼jbJvP» ?Ìy{)C|¯iâ5úk7%ª-ã×åw3¼îáxa»P<ÁÔSøÛ¥º±í4~×tËTáDhfï´¥Ý!nÁÝCXH´ÙË<.ªò§¦kM¯%iôéOIú~Kãé¤Q7ܵzgQÿñÓ:£Ý×l:èto@ûªz)HP´`5+Ï;FYQ©G¼|ÛÖ¦9K¹©ÙGÉ>N$qõ#.u4{¹Ôwã×~(Í7ÔNéݹEP«·J]jVx\fBPÈÄ`$m8 &Ùä.c¶>ÐQªÄ=ĶhÝá ÀtçâRHÏM:/¿Ì1¾ä¥ËcN¡«"ÐV3ôVXrë§]/×:tݼ§w_l¼¤ö°4öM}z_8ë¨h«°Â(ÃÚ-¨ôíë.këÝ+5ñCÞSþ¢Ò#CSü;/D·T×Iå,iãk±x ©þ´3ÐJHRBÆÈ%m®h+éd<¦"|QܼøóÏ_²áϺ
a¶Yjðã¹uªiÀÏÝ5±F"cRh³a|}üÇo¤gÆ+ì,ñÒËAÀ #cM16vc
í÷4BúÇ=_>ûú4¶rZ9Ýü`\ºG;n6d3± EBÊÞi[jI0líp\-½qÄ ôé×Y-L|hÍNÂMÃ@ÎãÈ°èÝQÌã?R\^Y£d;)ï×E¨uIsÊØ1ÔgÆ4#.\ù°Ñ>iô7Töç¬=µ [¸¥çߣ*^ý¥ªÍ¹ý»|¬,ÐCÓe²h3\t
4Ðe#hóá¿ÄlÚÏÕ±x«Õ\nÞcs,<Ó³R"\öFU¾£¿Ò- ÆR¦¡Ç«9¨ßí/µlÜ4öûq·;e7 ãC)á¡!ñö(Ò
kÂóÊ#S")¦S6âØß,ÜÙ¹öÆ#.GbZ0úì!wóés×ã%uÏ#8ºñ²êª;¢à¶hlkÂñhs\Ð2.½s%ÖÄ9ø@þ=(º+ïéé?r{ÎYÖÌK⾤ììvb3îvrSô±}]¢(Oª¬8ÁÑ¥üK*,P&©î&¤Bºho׶®}oµß#80#,Õf¤±§>í·Ä~ÕÆ&Nùô]@hD#÷G"f$)TÛ-ÉïºWü-ÃlÎí4ºí@ÊÁtâıÚãM4 díIøß"Ìn}
a[o¼eÔ¾ó§Ã¹ÂOĹ.þ$t:¥ûÇÙ#)¼U*xÛÝMq6=²QBiÞEþÄc³ñO¡ýX ÇmÎwú:èæ\hù8Ö&*´óz_ûåéÓѼxÎ]Õ`nCª=î1Z£KY52¼¤Q°Y¬¾µtf{Ý;ÎÇm"¸#¹ëðÉ1dÍ\Âõ:Þïè{;w#)YmlB÷Ã(
d"P`¤É:Q3_=Ô_<dÑ)FuK*í½r¾@:Fݬ%Íö?f=}ɧ¦ £B£Ü7ßò²i»tÔASnO}fÛ¤ñ5á2FÓCÎwv2¯/B[ÞÃEN©ßV|÷SPµç
3Rͳ³í¶þ¾ÑxO§^/Pÿ'óIJÄ»à9n0íS$ÁÊ"×Ý-s»Gëè0,'w0^®¨6ÉË9@úQBhHªuj{ñÎS^Õb98MM®f0ÍóoLÆy®¶ã4ð\@Ë¢1Ñ<ö¸³k?ÝcyC¶U· øyÌíy:,óåååYú+e'fHkÁoám{)ÆóIÌÀµÝig¶^´Mx̸ÝÑïë¨jìÔìãK¶ÀØ #.åêU´{Æ5_FS{¼X².VW¹áóó5lÝð(¯9Rë§"Á´d@b5³G8lïÓÃPDÞã×¼5hÐ::kóÐÌ¿>F{¶ºÂ¡íá~¶ÒºÞ^CQC{ÉíTÕ¥-
6ûõùxå!«:òßĨt4¨RÁ(1}&ËX%|Ské¿×±er®ÆÂQ({_r%ÁàQãî1Åí¼4"R쮶дúPzÑ3¤Ú2è¢Ú& BÓüUxþSÜ"M6íÜ{XÔ ,»Q¤RæÿGù>îÚ©PêåDÓùw9÷xÓºQ5ô$wHÄBaåÓ½ã$¥½Á Ý[30q0µrÄã5cëóA½7Fëhß1I$$bhoôÀåÑ0üÇê G$?Ô?ó¹yy_Óß4ݪziáL¡¶gpbÉM0@´v¡ºBÏ?^°ä«÷{-$üö5ða&¸ÏRv¡cÌvOEÈ-ÊçE* Dè$¶ôܶ[>¦M#.1®êªñ~31þ²ÌãÅTVóÃe]ÜÔÙ#ÐQ)ÄN<¹Å³f:R¡1³SÀ1¼å*^Vñ?U6[ChRa",Ô´Å©uyÏ^Û³`ºÔ³vý~=L]ùÑ5 àH½ÏÃ}%'7 ¥Ù]%íMqåük¥¦õóCyÁ6'Õõ¶Riå ݦNBKäAï<0'ÃÒlÞwh}ÚaæVµ,!rCÞàÙøgöf]-Ó?¾']-#.ÂÚGð#.©Þïl9'°HsÞ|ÁIO B²hº7@ÐÐXs@Ï$,ÃÖÀC.ÍvZß7}`1Nµ"i`tHÅTU±,%ÕO<¥¸fdÄH0 K¥é.PYb±öD#.!bÀA`
Ò¨%B±rWØK¸5ÛA` E.ÃCrnþ¦6>|ÑAkô¡BÛ>~gÝN/òæ×íÃ^·cNÍ¥Êã2Iò`ð±há¡âì¼öÊy*¬âÕ} /í\É
t#8Ò,Yc±°\ÛB>óêý²`Á¹CÃ×cÈon2BSåÒO©jMŧ
xÍTÃêêTwÙRte@ê J?¿Ó;Öu{ÖEu©þªéS²9W·y#ÿÉr¨gChlõ¶=ðïß^O,sî4tG©¹DI´ÚJ«X·PÉo ÞiërjÀY4ÑJ¥»fXæFwçàÎ^îAîÒ:x°Ç<ÁaCÞxU°6Bºg¹Ã¢A´ÒgB¢°\lY54/zU#.Ù;j¦µÑw¿Ï$é^>íHxäÞ#Gf·¹kë0ä?Q5½ØÍXÖ }¸ü½Oí>@>ã½æï ÆMÙÒûéðüÜL{tâì:»æ¯©tàѲÅ
EdÛF #;[Ð:9ÉÖ´ÓTSP!ERXå§fn#)ÞÜëwós]æë4zÝnÙYÊW]Ù]Ë3wÅ ä#.P#8IÅ7J©R¥\+ ¤'°ìÔec´C`=ÇA°ä#8@¢ZNã
F×NÈ d6`:IµC
°0KVS\p¾5ó¢+´ê#8Bé#.ñ´Z{%© ôÚjÍEÁ½0ÌÂØvÆ!7sÚ6s¶G6!ßOÛÎ6´Åýï !yª¶q#.ðî¹Vò5³Âf8¤OHe8ØëfgªSs}·n¾ÂÓîÔhVíTøõ!Å]·#)gõÓy'Iv£úä&§&r#8$îɵn·¶¾+²m´U¢ÛRicA X« ù]1"5µ¯ïÛªËB$øü+ï4xAÓØì)
X.£uA!{ô¼CZ9¼qð®zöä:2rµB4µÉ#8pë7v"`áFSÝÓé§Aß$mTû,Óª-«uöRo/Ðúºì3Á ±¢ª2U¿'ƾ6óë¤aÇÀ¼ï¥:ùs#.!Ç|dRy.^ðk" ±u#.âÑ r¬(C!$e<ñT×¾¤¡óYäÏCvÈç2tÛZa!øså/VU{Ìôº·-·j6JdZÿPÀL5ßoA°*û5_|3yìçFíÈî<v¦w¶Ü=ÐIJ*x2D<ù2®Å3*sW¾ºø_Ñ1P_^,AÊU(!2褺÷ï8Cn;ë¶>¾·²È×a½]VüRcITõa`Èy<½ç»vÃEPÛN§Æ¤PNÒ0í;80ê
Gº¦iP)@HS5í§aÕÇ!¦»ØrÌÝ<{çÖ¬ìë®ß»ÙÁ%¦ÌÍKèçtÎ.&©3®2½ö*¥Ç:àTÊ"§^¼ÉÃ×Æ#8#L(ó.Ñ0T®[²á=ws¤ÛkZRc)R], ^³cÈ xøæ;ñtÊ)º,Úıq,JNýLF³»¹+Há{cLøóÚÎvTz0ÅL5õÐ 'ÊDïϯg:¡åäuqwÓæ·óÆÍÏ&ßL³N¸#)É}¶Í|À"ERï#Û=ÞøHBBL¦Ûh}¼ñ%9eø4MvEÌÍÇ3fMtÝ=)@)|^ÀØgw]ðuѪ·<¶ÀY²¨& ÐôÊÝ+ !I´PÜ;2+ã,Ñ!Çx!ͺÃþP§µ^EÀî[#8Tr«Ï(f×áÄݸ$ȸ@ã|´}üs#.öªÆq#)}0BP!·=Kúóo,qê-SÛ¦«ÉôÛÆìÚ6PÈÚEºoÃçD¼êâ#¾õç<¥!6Âfqpy]ïrpÞ(ÎâÚ1*%ïÑJGñã`i£ÃãÅØÈxBuD<\VÅQÐE^ÞÞ9Çs#)U©A «xñµÚóíVµrÚ{Ó\¾\A¬²#)å*{Ò,LÆÔ±¨Aá ÊíUçóÂõsg¾ìS§pòª=ÞO°® +ºGÙÖ>a±¶ÂáµÈ_i(Ê i! BÅ«¸m}<f»qzû.®Q
RSÁùùQJTRoá©}×e|kcm¢qÊ©Ö
{¼¢ÝO£Õ\]V¨)Öl#"µkÌÑa5uN#)õ>(X5T%¶Îå{/³@OÙÍ«ZMc¸6E¶,ù¸9ªÝ5®-ø±;/ÀùÔcâ'KíôïÃWëÏÍB×Ñ6LcÉÌÊÍ>(ÕH.Ç¥iT¦Ù6¿h»8|#82Å"ê¤X¡A¬Ll²$¡ìàèr£Aëh2á^ïóÙÙ\µváwÛÏ ÏT¿¦`þEâ«Õ:¦1èh|¾ò {¾*BjV'aSâ÷Ñ|zãD%ö8ëëd=Q~QjîõÏ7 ú8Ú®Ýt,#ÉöÙ¶ÂÝË=ö3Pb"ÒÒÎmÛ÷-ã@5öF7àqãĨt8-²¥c#.;;ìOO^³°ßÖ)3ñYÄôð/x7»¢¾ù(MÛlmèãB7gÆ=}Î;&Ãå¤G¡øþW9ôçLuªSª#ÚA6Òåè
CÄ;}ôg©ÒeëR;#.xpgÍK4*âÒSKMuRY4¦hâj+ ubaàØ©ERéõCÂB#.#¡¨&®@£µìÙ{\üÖ¬&Aûf.¡â}F ýýTd/³KLàÚEvr:¡:©á·\Ë|(ÎIç%¹sXW5-DMÙá/è·ikõ¹dCãRÊ#.^BÁô1I& ¡È¹äS°läñOOhj?æ tÑ&ðLYÄÆƱ$1B½8c×U²ÉR3Y_H· 'èå§Ïú×ø'¾äáè=#ó9²#G×b(Â!=",>§ü g·ÄÇèødÜUûrñúùï}þePÏÝKåRãÕE[ËÁT;<Ê¡Ë<»NØAÆ ø,ÜáÃ+ÕX6jýûægóªJ¦nË~ùôñImèyñ#nú«øÓvÚÞÍïöÊv?BI}£gx3|ºÀ.ÂJí꽪°ÊªW£ì¯²~Îû¦KßµWõ~ÑÙ#.¨)"I"½76Qû{¶ÑmtÐ9½Qçº~^ux²ðMwþ#OTXÚÈHã]ÿ=" ÆtÐA¢×¢jdIU£oøðO¯5ÚW3n}#8#)ÀÌÞ£üãþ?»òý½/ñ
n?ý!5eêÈPµªÎã^1+þ³¾wßµ^¿5ö\¹n·/qëø
aGÿ2¨D:òSeí¬*îÇulD4Re©l^1Æ%²²àù¦'ú³¬¿ïü>©#.ú'tߢW´Ùø~7Of.pD£ñý½ÿÙ¸áÀf¼º7?O>ÿ.¾X¼yyÔ]YL¶(½s\é0æË·ð.\®MÏvæþ÷ÚæÔ¡i#8þ'¸°÷y^8gùß½æÂ~ÈÍßéÔ*þ,ýú_©á"Îý41Ðí½dá¦p³,òØSf^պΦªcÖÌU¡¦ßëméw=-c În¬¯ËE¼)û·Þªçz#)ß3¦=üÓUxZUPv¹ÛàÁ¿ó
Í/L0]¬'ºtÙK¯0s«B"¡³o\ÒãyÒ%#Î26Ó.ÆÆßk}D«{fh
ªÐ4©éõ#.w¶×IF÷xãdÊCÉaÎñàåñÈ;ÀÎ+!¶I$$-ÐØöy¶zêæz#8¦ëøñÀtäÄKBãE$X+F É0ãxÐÃ|ö_Ó£s¾ïRM2joÊ}_E-úS°!w¶N6ÔÆôÃGyº~Y v·Û8:öT?Æf¥Q"Å˸éóÒº?ж« VÍ@ånõ*aOª!ÞSDJ½Ý¥Çè5ÝæáãùR¸¶|í6ÌA¥ GÏq[e#«Øû<¾'ÐuÃÛÿMMi$¾SýÍËBÒMD~qùô,XÏêf7ÂØ^`f:.u©ø}ÙÞÀ[ÝWãþñUÌ37*äP¸["ê(Ü##.úzÕ{¼¥û"JQtLznã¸'Ý|àtáÑ;ݺ (õ¢7Võøý?a3w%ßà4"p1|ÛöðÐ3OÚÈm_\(gèuw;ÄéýÉBPÝÝ9sî|+>NtyhÎyîûk·¶ºjO´,²þa¯PÚm³òÊ@laûý´ð]vØüáûµÆ?ÃY?laCóíÝ_Éùþ4.ÂSoÓëf.P> ¿ÈxÏ»îø©æüùtW_ÕåN=¾ôzëÔ]#8ÕçÔÌ}|3=ßÝ^ÈhþWÆ0© ](k÷bÞ½^};N¯AæôKËV=4u}Y¾n6BàþBH>{zG=¾¼·ÏÞ×_²(ø¾bü×dÝ$nþ?#
>Û~gZé9¹çÏÕ¯(gIïèËÂã²^qt<Y׺oÓI@UE,MQ$:æÉö#.êpJDÍ¥ÆpMØ.¥Ð\BL-D[n¿ÙÑü}æ>uÍÙ0k
TDÉ ±mÔû[+µÑCN½d³@ð$¥itÞéµwÁ ÜSwBIáN~VåOÝ4ùs^ìóa^õð¾S8¢_¡a5Õu2UÙ?G©òN;{}»ÚLï_߶"çL°âÔµu#!TÔ9Ì÷>ß_fùd´AE~N:Ý´/ǪúDÕà_gPl7ËظÆïíû·ªf91nÝ ±ëÕÍL¦ø÷7íþÃøoÌ÷D§<ìfksûØõ̬ faL}á
øãæÑm"{ïÑ õuÍ\ J}¶Mç¦ÕY× p£©jªmÉ÷`×ím¿£íÉÓ;þ9ç]¼]xïQ#lÂKzáZ¼6NÖ°Xa¿Ì/³M3ÑKV1-ËÙÕøpéúï©îUf(}[§Âçwa®NyÔ~ÛqºÏb=]9uñÉ.`8¦ÛÍð`âÀ-tM¥ØfÕU|7oßKNæ?F!ÏRk*Á¹ÿͳH8ÍÛ0ÇuùHL:¥ùPz¾_=_Ë\ÎSÏÝöþ¨ÒB_
#.í¾2UöKçý/ôáU|^2¾3KÝîrÅFcêV1+ÁôÿPºÖì<ÃCºt¥ß²¯Gìªøú"ÑéTMâ®HvBÑáü§8a÷e)-¹Èa'¢¤ì¹ðÛ$ÍFÅâõãG}A£?ºy½x~Ö;x¡´Ýx´ÓÖ÷f#+Ù½#.Ó>8ÚâÏñϹW[²vï#.#8¶._l&*soæ !GÙµizf½#áÿe7§Ã- lgd?
R¥@òkt
2*ïÂçïg¼bÖÿ4¶+O/"Ìù<_xt!ôÇÔ³®3áQ½ñ~Ôì(#§+$d»Ìï,ù:*Pø8¹5³î[ù+c'Ô¦!#.¾ ø¬mqÅxÉP÷é#.á©æ¬îò®z?}åGÉ»ÓuÕßzYµÌë&dAíØ.-ÀÌm=Ù|·_®¯¹¾ÿNÇÉó_[ïóK»¥¡Æ3RÙÔ¯®#'#.40Fña:Ò§¾<mYF"Zh¹¸9¹õHÕ:ûÑDÆÛG7½Ôö¬ ïËï¾N¯àçHhÑ6¦)V\zuëÑÓ}ö/àæ½7MgîOßo·TÎèaÝMsñóâè*Ý%ùCÃ?nþ+×:ºSÕñ+=î`îºÎ׫ÃJ,|n»Å:k=s®µ©Ôbè0ð©ñø2:àû¦ºÆhaÈÜ.#8»ýÔÖXtEôâ%´Gv,ô,xàÂYOÓ8èP'¹vöíÞ«Õ/3TdûyKxxÖ¾^R;ÂñéÎð6&yI²
ò½mÓ¼ÍF®þlcQv¼0SóÃïó.Éx³úõªbøûó2'éiTdéÓ!t!fkL{Ù/Wsç'hÛÏß1%õ½ðVõp:ûj×7BÇPÖ©;?_¡ÓyÙ}NU:¨mÌ1ø±^-üS9ËeRuôÛ°üòø.5çàh½oÉ#$ÜóüÙ·v}dÐvzÜ¿K.ÜÑTxE9póùu#<½à£¤Æ½þçÄ;%~.ñg¡Ëº<¥Åí>Ûg|2;ÿÁèÇØãÀ©'HUµ"
µu/MÜÎLsÓçÒ¼ø~9y0dr<²ÔW5g9øOY¿óCø<g4îø+´ÇvyZ_3 ÒCõý¼KÊ_Åò¼×MÙüø¨3Ñ?EÉúuÉ÷áù5Pa{?5´¹2Ö\\V²h)q.¥/²Ù3ª?ÜGËw§Ã Hæâ¥Çú.#ÈÏ®ú[Ø,O/òD(-_JÁA<xfªÃQ±ÞÊ·"õ÷CÙHÜsjîtZZÖ4c3#.²7ÖzpCqqxÿÕçT½³¹¹¸Ö#£»%áôÍԶϷƳ&!ão>^#.;Qé|íÏ.k}ª4/ãáËcÛéê^#8ÈDá-Zy§¿#¯V.âøÕ{ Ó«¼½[W¦Í»zxÚ_Öutâ#oj{`÷
ð¯¹ð°z#ðÄÃìý¦ç:EQðü5mçÜú:5îA](¶Û
OÄò²BitÝc¯£Ãó/¥\ó & Û¬P©â=~ ¤¤}±¯\ÛáDB%ÄÎz±àúZ¨ýka/HÒ_-ª7Ä0(O»¹ê¦ñ}#,JõN^¹¶ç ¯2Å=St9C+\ú,#8EðÝÉßW%4¢Xwñ;ëVÒ,9Ü4+£i"²Ç©Ç|D·9`°yBËUyÞùv nÉ}®¤¸càáiU«(ïÊ1÷l£ü=õèþ(Agv¾æ#.YVw|mÛÅâaóÔ1¸âýUcHõ#80n7HØßÁ~®÷ËôAÚ#pZ!rc}@)кº/ë#)ý«+¥ÛcÂc9ËÀ&©-¤¤ú'w2j×c~ê7øÖél×$àéì=i_JsS-ð*¢âZQ(Q½¼ðj (¯;·y7P_]Éai»Ã3gv±0Rä{Ì)Lrz #8«¹@çL6#8L3»»8£¾¶ò:ÝicÁê$ÃÉ´5LÝcQ\2¦aíúW1/¹ÎVØ]=l痢òOµ±z)\õ ´A½å*¬_Æa$#.@)kl©U´nAûb#.AB°ZA^Re»ZúfõFÉÜD¹y¥us VwøWØu<#GÇc´'oý¢Sñø|fwF³=´~¹VQáÐ"T3·è´uv¶çÛ4xlÆ88§}/ydíÉ£30|´e£õ¯&ª´¼²ÍæX.#¦a(»åÑè{!ÛsÔ` `6~óô+õwý¢;1ÍZ`ÝÑ"n3 üæpt~û÷sÿ ¿Æsk ÇØ !»KH1-ÕáÇæLC²-8¼`ä#.ö#ò2ýH$XÇüCÄ;#ÏÇÀftz wêEDÕ#åz WAz¤Ð@9Ês¥à\ÉåT)`°{ÿçø¯?ÜÙ^²K5LQ?þ>}®ì÷Âþ##)Ù7heÿ4ÁèøØÌíd×Lߢ²G`ÙúK$C´rÄ^DrƶàÌÊ©¤9º=í¦ÐÍÜAºÄiôå8b§$è"ìÞHBêrÓ±Cý+t0z½GúØÚ¼Æz0>_6¿Lo'dùü¢xæ:ÃÆ2.ú~Þ«Ìu¦¤ÇP9SÏòM¡÷¬%¡J¹ÑÓ_²\éBÍ¿~¾ÆN@s4j©Åk|Ø·¯Ó ¥$:h 6;¿©ü{ú¾/ ³o}Ñb@ØÇàýÍ?½<·ÓGÇ«(5%Noõ=÷*J>ß²7-/ÙLRRHòÀûqÊ'É2]á»g¸ÚT ù¯}ÿ##.Á:@/ñízÍÔm7-o,Wóteç-9ý0,ú#Ó0V.ôº¾Æ¹&fFtEs"½v¯³ïÕniÏ®>ØæÄê¸[ ÔÝ
¹øpQâä"âj'¤íæä:c¡#.7liÆt$¡v+À¾ê!4üþ?oÑ¿f½Û^^lb¤ª@@à ``Úð:¶v#.6û¥¸£ » IµrÝAa:Êqi#2Ó´|F-âNñ@ãHÁ)`÷^uÁÔb-Ù®áñxж~Çæ~¬4Ðv#$"ï#)õÅ}ÈõòËçã´CN_¶×|yB4»ê?t%kYr?ué,ÔSd5øFÙÑÁ¶×µmªgsØqºôv7O¸Jüý°Ù*gÓc¼-b"qðïºaà
Uó¬¶ar¡=Ô37Sfû,Â]#l9~,äï³ÂFØ}zAC¹ùC Ù ]¾v¦÷s¼ëÌ»Â$K Ð;EÁ©:ïQéÔæCÊe"¹0
HÊi«Ùé,î\¯éð´$ñÑ,0¤¤«o5R¨öõûÍÃh@&5eïæÕDzýÖno¾÷çZÑåÑùncwõÀW\yçÃï×<ùvç×Túæ#.5ú:?'ùæÊfµ@'¶¤<=ß/¿=á°°Ýܧû5éúMÙU¸zO¿cð]ùbKѽÎuÏu°coSó¯»ð{ÇT/ÿ?OÞz¶lMðB:$þÿß'BI%JzìM
éÑçÍ¿A çcMû*1û¼aËÖa2M¼0IêS2ºGä#e##ޡ˵4Ʀ#tÅ%wxPÞyl*G¢¬hä9]Ñ/jðQ2#-÷ïÿ<°v1Ñ^Î+×IÒLÝ*KølÚFͯzsetBtÎ?°T¾É»H°¦Í#NzÛÂxòÑ(ý]ǬWäh«CæÌgi2)Æ+ÊB9ãYÏuN¹É5Ïex¢JLj¬xTÏ»ì³^iAÙ¼6áqëÁ2>L³³MÎU¹ê×q®Äì#8u×Çõ¡¥ð¦àw¬fSÏù9ìú:! Lº/Ó,ºoª¹¼#8ów5UL3ÊÌôm¢Á/Î0ãCg*Ì÷Ù7gÃ÷DÂÏrøNýs#8¥ßX<+>6ñÕæmôy.#íxx3§Dj£±ÑÃÑ2ùÞ6¸r×ܳÒÕRb0ù9øù#kWo´KÓ¹³ÎÊZiÝE_ÊÝÔÔctãÏN©òQ¶æ8è÷Wâ3Äóªçnå»Ê<tQz Ó®-IÓÂ-Ejà,-½¹ÔØÑ[_QfH3§áª@uro«læE÷+d¹Eô¡ùjÀ|LOä-ä2Ú=d}fÅDJK²Héݼà.²%\ÞÔÿ'åìó,³#.Xò²S#)í[y«ñû½
äß¼ûKjØðÛÀÅÍ^rÏÜF*ã¿jý65õ£=Ûûþ9ÔîEÂålIcë©øýøAÄ:§ÜùnóIÄë³|ìÔ¤Þ)¶Øpʳ¢@ú}ôq/t¾¿.ÜV;Q³ÏmbÓ[Õh©Çd;j>lw7"éQÕê4ÃhÈù<ôIÍÛÖáØÑ#.¯åOûì4&þMçc!¡úü{Õ¤ÔkÅRci´»Ï3po¦Ìjû¾-¶Í°Q",u<×æ3Òô¿}7#8zÉ6×I}'Åðóå}*¶UYRgR.b@ZäaC³{ý>º#8±*xBgN»EYáé¬ÕdÛq3A<z¬qYHS´(ºÄê²`-fÉ4´Øý;èX¤ü²Ý}ºsµ<¶£m{j¡#gwGYü *; <tUYá:¬ÎàÚÆA®éBÑ\wùSîxä8ÚÄ[téu
ǪG µI©lê]{,ùc{UY¹Ýª1äè(fëéº)ÖÚAA\óºÑEûwóm{jÌSÌlUS!h|ó³j»ßϧ¦a3çºeo-±xnjM+3N¤¥!¾¯}ú±ÆÚ%®l0PÑb¥C9ÏÔ÷§^î¥TÇÛ¹Ð5ߥfºsµ[ü¸ÕüþVBæ¨ÀÍ~9oÈ¥XÆaW#.NÆT?UÖçYÉÀ9ú.%LðdNÚ0 aóqÛ©nf|ôêÕÝQ·6³ç
æëIýµoÏ¢®úw;ø<ïìé¹gð¯}Ç~w)nqÖ'&<ôpÌlܶ衮ãäÔïiÍ®oÜõ¤¶HÎÎ1±ÉT*"°Â}ØZ@"ëͯpr//!îñ¾u}õhFý,gnxÍÃTTËú±Â²EäLÑH ðÏ·ütϾѷ`çQÅ Í7Èvs*¾Ï¯íxäD¬ê]bs¾Uù ¥ÉiNaÒö5¿ÈT#.øÇl]ÊÁëù b0$ö;aNáipÄgàNê'*{+Ôºz×SûhuÛ_7í
48qâìï½\g¥<|ótoï2InyGÔ@pÈGFËg±uÏVy½¹ó¬Âtæ>J!¿L#.ö×ÏTüPÏ;!Ѧ½XÝ#xíÛd6ßÓ<aLpfKùø˺騫oAãkÏYí7#.Õ¦ÎBF'£<3JÌ©¶È
Ö±Yg)uiÛlñÏgcç~hl<cèç-`÷Ñ[üë>Û ¡hæMøù÷Î÷·ÈÃplØäñë#.ؤmZ(<¼¼dìÃ5fç®y:nÄu#)/ï»ðÞ;áÏ×d:åÙNÔZo¢c,ÑÃ(¹ÉåÕ¼|¨Ö{{ú9Ã0d2º7µÒëJU&5©÷ÎQJ½=Lw®ÑçÙÑßq1û+#tPÆ7¨ÿg?¥'O>ÁA{?vð <\«û¥¥DcÇl%n9[3bÌ*nwfä'ÜZÓ·2å£*Ķù¹_B&jµ°EµL·¶É×}5¹#]»ãèä-ÃÉ[øþ|¤M~B)M¨Yf*ñªTã
$Æã]YØ¿1n7xi¾uæÌe^l/
d³iÔìåÌNcuÒA½}}PEÖÓ3Ój[©¡´Õ.,YÊW5QÍIcw[ ¶66³íÛ8òÂuçK"nVE9;çLXÑ*µ[Dö]PÌÔÙ
$BV6¸×EcvôÜâäãÚÀê¬B°Ç>¸)úrȾ,*fhq·æ*ö_ªÒÚ¨©û¶Ïlü~Z³Åݵ¦Ô2*4f#8ä<á¥_SÎäÔ&hqEUDä£A P·ÿOÃN¿Ãâøwyîú¼MèècL_ô«å#8·RõyæÑ|ÇÖX¤õØ
Ê©÷~R}ßF÷:´~õ]}DJÍTUXQ§kfEÅ<óTBÌâw»¨iO»ËÊ»WX]V£$¿_ÂËÉÄ[upæþZÞNn)ÎúsZQ£mErÉçëüߧÆîß7.?¯î«ËæRå¯ù66íjª;ÕðÑsÄ*¬oÚb0~Õ}÷¬Ø]Me'ö:#.OÌ+ÙÞPùåû??¢ÿmÄãH#8uÕâP'`çñ4Ó{~B]>¿ìÁÛ,¿Ãîìú ¿{ì#.ðf 3@Ìy%àIYÿ³ ÀýÎEUWïÊ «çHýl$v¡Á#µRÄ¢ÈÜ5(¤Eþ÷úËAîeIä×W»»sãEÛÚòßIªÃ#þ[X üA÷ÍË·¬_wOy¼ÔA3CiØÜ©ãÄñ#ÏWºÍ©ö("`ÓiÚy0YãBæIíö!fu$"bv`LeÁyçÌl(¥±îiØ£ÜaÒ|Þß8düÔ}N#¡¬=Ba¤Sýp²§xx@»ÄªhZGF7/sáwþ0ÍØf«°,þÑ®Jê Þô!utþ-®Tòë^À/òd'Ø'çMOðîïÂÇÃiRfÏt|_ìÕ°«¿ÚòÓØX1¢BÝþ ï|4Nüë¡¡ÈVɸ#8£CÊOJvãÉàñpee!Iø0¤Õ5:ö'ÒK6þöóîõÌãó(}¹o1¤q¶rÑÊçú£Cf±5>Õ´ ¢ÁZ,ISìpü¦³0H0Î¥II>%oû>;ÏPU{Îf£d¿Ñ vÄw°\ÿc§ê"#.vl©ìgbP"é¥èÅo¤ÙÏTü#.ÐÒö7÷+Å y
+]BCÏl çzË.®´§ËwñD$/Õ榪²ÅÚ(9 h;ÑÉd@Ð#.l µã´áÚÛ¸U 2ûI:¶&Îá-Q¿#)7Ρû;N- í@7bT *-@CãÊ;ÞÂà»ÒÉÒz[f$`Ñs$æ¼Í:T¥Ý¤!f®#.ª¸3ØÎè~(~¸$@üýÞ¬õ#ùoôþ~Õõ÷H¦¬ø²ÀïóÚ3â7@¨©¥"^à¡ûHW]ñ`÷çûÀ@?¼°yQHný¬¾ö9ñ¿äßÜî.¸L4GjÓWËð9KòP½rÏ×:ò7lò|xbLQI/wÉ3ã+?ïkÃrµ®6eÏcn¥µÔÊõ:<:hClVIíﯽ:ÌRR̦RwsöØûânäÌÞ#.õ«ÄW¥vÚ}²öGfGÜXãõ·Â¹vÌ3µ#ö¡Õ3äÁ!"8XÆh>=^u5ÞéYÜÂÏ» 3¶R~«iûj¨@>Ýaykj%EÚÑ#÷¯áÍÌÚs@ 3ü7*©#.áøBeøÇ
<"ªh
Ñ,gê6·yõ;aHôÆX5s§Èæ1?¥
Z:ç(ç5¼fíh±Çi¦2ãÑîÞN6zË:J"³·tHXwÍ;å/>]}Ë;÷cwòõoäÃÏcÆþÖkÅéâ3à§yÎs,Xï×iã uÐÕ9r4#.QÞïêSWr,Ø2,:ß»/M½Î{ËÞcê?!öÏã$å*vqEPáþ=ZÒó:ý´Ï©bO¥þ6\`T0¥ÑGÌÝÇñt
ZlñÊù#8aCße¾o~4ê÷v-ÆÈDÕÝÝ1 á3²ù´E¬iAu$XÓýøy>¿Ò^Â-ÂÂäfjW¹I#. ª¢&Ì>Û;GÃzîNùÄ&²%B1ä#89ªJÓ¥aüÄQH±]hZSNÍSß÷ª,#8 x1$D`5à_¬°.";wíâï6ðò4.dC4M¬>"gö}çÐ߬>¾>B%RBS jn7§èÉS¸`drC¬î7Ãb,uéô<rÀÂSW]ð"/Ý&ÎÐñõ þN5p¦}1çhÏDQ&¦aJH#.4((ÕL IY¢ÑÈÀ÷Þîò½Á¤Ôx0>Òxû̪YH¦Úÿ[ðãUT"CÀ4vaÚɱÌH~o±ÑÀjõÖdheF{K=k¥9SXmR,9ûßY¨¼Í²&¨DØ?dCâ*Pì!Aæ·âQ±4ØÍxGùTBIc|nåXGýÅÍÄs]UöW}÷®b¹ÄUæön§½iŬ£5Å´ÜF®õÑ» lôɦø8\T«|L*½ÍÍýÝ&´öócycàÌÙ3!ÊÔxøefb.Ç´áIñ(Ú¨¹í*̨g,(«¤R~ä*MM)e#.:éôýÐÌ#L ø ¿WÞhàg§ûYÝîÒ_ëú}=O³fc_ý>Êõrú[êc¸ÐÏ$~ÇhoáÁüUUnTWÜÂNÎjÙÖÇ¡¿KØ`Øzsn v&%Øm¤òêCá»?zþÉ?WÑKÜÉ¢Û%³!^2´V®â êï_$AÆã&øÎ#8y¢_e¾ûÅÞ ÜNA¾wçyÒN®áÚR©@Ä7ch¯¼µ§#~YV#8&+ÖØÛC*a3LÇè!²OAç¾O!2SÌÈ4Q¼è|dN\(.uí#.Ê 6eB!¿UûuÎìÒÍ$DbJ+ðçcÍ#)øN&_;í~<¬Âïm$Tú7éÒà.â<G¡ÈÄ\Á²#)âÅQ.ã^#ö4º7#8|Èô?|Ë@Æ2{H¢)×&Ä9¡»pYÐêT½f. |Å^T°íÚ¶o#){ÆÉJïùùô%s%»Aþp¶ÿ1ôÄâÏò:)àE$Ê©"'`¢!Â> Pâ%ÛÈÜ$=0¶#)è-Ópx=ѾBÑ¢§î`é >}¼.Ùäú,#8!^êÖymÑ_YÖ9<aÄþ'×@a#.F]ÑOS ôÖYØëmcÔö*E"-AKD<åIõq,?jx>Ðü|d÷¦ÞX^Ø4<B?~n"E"Å`þ?;ÃcÜn>¾)àð?ÑDcs#.~vóSäní@ÏÊ>6Ë6±î/`00mF=¨A¤Â;Àâøx$ÄÍhÚ?xo#)°Ï¥ñÞ¹ÍâsÙõ&ÀÛÜGh$ëó09#.NB+ôË;oWWØbZ"È%úo²Ûæø^o«cû¥º<ØdP·Ëc¥è|v÷03PÇÌ=s¦0ÄëÊïÍBÌ¢:5¹ì(Ú#)põbÈù|Ïæ>3×Ùk«x ïÃÆïvο¢#ññ<¾ûé+543;Cé5R³Ò¦ä[± #.|Ì!$õpó¡èPåû-ª®S¦ 0o¿å÷/>àf8q-ÖW¼Ð~ÏåãûÓúîØ1âWË-³¦r»-ñlñ4~VcæÆY¡æÍÿ«Õ½LW:úÏE-d2wýá©÷Û`§ØU~Ö>r1ÕOÊÂÑ@:¤,¯¬äyÀ§W<
¤÷b58nàÇÙ}#)ã8É55 uMÐwJ`£;Ñ$*µvj9#zRº@ß
44ʽ֪'Mj¥Yî÷|d30Ìö(¢]KxËà³7ZëñÝU7¡Fxv=F}!¹ô&¼øà"DùOD>naBH
zx½c#8#"HÓÈæb'Ѫڥڪʲ¸Î= öwWòñÀÌOxzUÁÛ¿è<@ÓhvlaáøàÀsG*¥<}úÄ=yü¹û:¼n@*éî¬oRO\õüЪ#"ÔÉmiéÕeæy#.¤r1¬ÓfDUäH½\Ba¤øA©bDI¤ïòhÓ±sÔ¸ÂG´îsXÄY#8AÛËI»@BΫÝÝUVÍc«(ÿÎ&ß[½x1ÛìzÀ¡È#ìHnÚmø|O½|ûkñä,$[¶sUÓ_®×éçÕ\¶éÖuÒ'ÐÉ£s¡d9QQ7M106ó?×õYG°ðlpÐLçÃG'atðsÀ£ó'ð "¥ØBEm¡èhB>.0äÉT
ßÏ?ÄXßÏú~ètCæ{¼l_UcEO{`à¤ÁcnÌR#8i 4&õ£bGpª¹!Ä*ÔM-t»Ðs ,.iùáê°]®¤YضX
Ö5z_,@1)GB&a°A3<¨~<
@âAÑ6#.Z¿AÝÚð>9ûPñ4#g3ÃÇoù¦aB<a1H##.ê´¥]¬,§U÷)sTóàaSCy#.Dûö7.â>@ß'éåÐfæ÷^è:P¥¨;C<!'v`Ð%ÓÛôÏ«Ëü®Ö¾¿k¶QHÚL¦f2ø÷|}v³»W-yÛª¹@dU2D
®#)!#hM¦Ñòõ }»Ñè§|¯«ÀÐÈèisÒÒ_Ø08W}Ã2î>@% {ÈBúüï!ªldÙ³íÑL×CóJ»#.Ëikߺ1£X²jºÛªøå¯m«ÆǤ2#8B#.È%ô£çRÂÖjxpA©öä^5(ã;óÏUlh° ýH´¹1Ü5 æÙ»:÷¿}tPq˵
gÍ¢0Z`36`!]ÓÚ:9£Ødy4ôÝ~v×ÌFã#)ÜhF´ ÃËm}¾ì"uîî± TN7!oijz^æ¾ÝiüôyyÛJg©â;?éÛ¸êL qqi^TØÈÝtA úW¾¥ÇèÚÒòt{ãJMÈi4ÝÇÉ$£¶Q{sÜf¤û k¨`-IÅBáF2^R#. ~aË©÷t¢ûÁ8ð£§$ÔYCú¿9Æ@9íÚ*8&¸A> PûÏHzz}3ÄÂäEêzu£¼ó= >\|Qê!÷ü$?åÊú¸þøMÔÜiO`%uÙÄ##8Ð7ëÆ$dTE$HE¨²ScDz×ì¦ð_Ëë>ë!ïÙö
óCìôcðE2Hôd>ß³L@ÀÈ¿ËûOÇÔG¾5®}ÖâÌ·z#8£äBTö(å#.ÔI¬ê?èû5{ ÏAE}Qy3ǯ¬B-Ê@B`ÄÄÒ`Ùõ2%jJÍÈ´å°ÙÂ/á÷¥Ë®¨ìøxø¦
9ÍV
JX,àb8 ûÁàp7<5 IÒ)yUtÁõÛ`Ù>toî8 À ¯q½Nàû";}?MêADÀgЬâaNôíÐzUèÜ÷Àá ³¢B!eáùl© PkפÛ`;6@-Ø;8°$²ÁëEqa!$sHÙ°löÿ¯=Nß¿«^\îðP)R¿1ÄgL=ý³t¦Lª©Ô7òr»&3}~õsqþ2mðL7ÖGQ,lí³Ó¦J\*¡uÉ^¯vxŸ´h²¢B\Ä"Ó¹?Lº§6hÖs'eþaåÊ6,<;¶«M»õ!Îus}²Z¯%óÐÓ/N3«S-S°ò÷¯¬ZSÀ;Ýv:KÖzD]§#8ä¿3g.EQÂÀIXËCHxSj*0?`áÖx½|¢! ;@Æ!Ó$Ïwß$ôSýùåRI1ËjMêVË #.ã¼9×ODzöãi:ì<ÑÍPð"À3;Â`$MU@Q¬0 h"Q æEÑqï>T.p7¶#6´°|L¶LI¤à Õ`µE°U绳ÃÛ©ÖèØQH=!ùBl2ÙñD=n¨QÛÖLïßÅ8p;ôJ_"XùÆQ8ûK¦&ß4%e"ÁE.]Àø¤ß±ÏP^I#)?}ßA;½oüÄTê$Øû¶úÿã3³
=+úÆÄ>\@z¿+å¨ðcN$´mMÁ$ÜÉüàíävv9uÑ9¨$®G;
Ó4Älñòõ.¿£:ÂãtÌýaÌì¢éAã#)DÄ1·Xr»jùøo÷âù¸×ê²/ß0;ë\ä£.ÅY4WuhZkF5§v§ÌîÈS°!b Üá#8Cá´Ô ÂÈX!Ö(û»Ì{£¸é&éCj¦ HpÆ ËÒ"xPT´6%èz}©qC A¯é:2ÃASdùþý[£Ù<éÉÊø#.ñ|3äÚå<
õfyöÔí-ø¨^Ä>oH\sè&#)plax,X@ääáàóP,.1ü~_3Óì»ÆHý
¤X\fÞÔÐ
w¶ýWªòöiùAWi;'p>*^rä!Aæóa&ö±´Õÿ1CºsÇNMãv˾q²z<øþ^ãõ1O²ÔT¢MSÍõg²×P4´AͶl:É02E ¨$Rh=±{¨aÙb¨ú»hêÝÌÌx@7<]积èvYõÀÌK!ñKgµ¸B£äâb«#),ïBe[7n¾È`a¬ïaÈ×æ£Ñá°*;XÑæ¿ØvÁ6Ö*¥küwÞ}_Ý:ï:Ì«±ü¨IÕ(ìÅÛ!F%éÕÑÉ7Óú÷»ÍWñ>Úðg4Ò7`\Ýþ]«ÐÏoþ#)R`ºk¿ì©üÌ8¬xIBI ¡ rªTª0Êq¨dýRE.hΣøß ^ªª®Ðê{?&(@ùÆï¸È}]nµzÍhK TÝ宺°Å`5#q-:x¬KüÅ/¥ÆæI¯ÙÛû}´ Þ<áT¶k@¹Bï°2©ªn·g$/dzcÐ7Ämxõ×Éãú+2é«4@Ó2¡(}þÜ~Û[ÚÍ¿Ó»Ðoª6ç×ît"M<lY½4TJ
@©ß´¿§
òL40{˼<
0d$bÒÈwYo|Â#³öÛg÷õMªðb.ÿ_o2cBG0t>óïûí÷çÝv̸Â5wgk&@VfzT¼RÃØUÏxB!YãnéY;¾÷Mi³äz½DXôÅtèYù·µÛÉÚ¢?#û§^Uó$ÏóèS_²kù/L Ùû"B MLÞ\ã¦e²yLï<Õe`Ã(²OÀ`e"ÁEM`¦6MÛ¶â4"dÆ%$°©¤ F +M 3K+ÊVh°±XÚ+X ahJ@
ZT¹T2ÿBj(gʹWýÃùáÆÍo=8#8õI
0\¹tI~0úrG;á²#8IýK-Va&Îw*¨¾I1Q½õâ#.ìàÀáwraD o}Ñ@ îéVeɹï´ÄrqÅÂ-l#)
8*IĦ÷Ëæ°Ëå>ÖßàBZs»A¤")Yo5ß;~#.ù~w~õ¼Pè3¼$ÆLö5NØK ¯û»çI]ÿâpjö~¸#.\w+åeõ¶ùBõ#.¨ú3|_ qÔ5E!hKdXiÉ©ÙÛÙd0ì Õá|ùüÿ$¤öðj³ÎfqîþÁCy#)!#ªÄoÖàþ=]÷9ìûxLy«Ã¶[¢7ET»T427ÌwñQøqåKJõ¿¬ø&î#bó:ìbl±GðäW/¦1˸³»ßcßöÓõPy¬ôE(!¬G
D@¨ôzÉæݺ1 ÁÅT P$kõ\½ÅµWß
û<C&GG)øÔMæzG !£Ô6óÂlÙµl§þ8Lh®¼+ǤÍ(.9$fÊ©#8 ep}¾·f#.Â&ò#)ìi:G³Kµ¸Âî#¼R>àÅ 7dèË}(ªpÜw2D´¼¾Þ¿BNǯ#.Î#»®8mfÅõLfê0èob§åÃ\Í=}v9LÓ&áíKG<ï#)K HZ%&ä§%
8ùN á0AÂ6¨?¶©L©IÁßB§6Éâf©È@Û'ìP_Þ2iñÅø+V2¦ïÃ;ã+t{÷vÒù*v\zf1}Ñ''à3~Öor²Ý°½õ7ë]½dN»%&`²d¨GlÇã_
2Ê>¦2ÄM?êû¤r N<,ni;7´C}xhòéhÔþíûr[äiFtÎTþmØà¢t+Y-"rí>D¯;¡&g)%2"Íl×&â"»|Í|)Ûà !ZCaÚÈk¸ïê!jÕy±UØÚD,O·3MÎmB½¨'Ë'cÓl 9×âfÆr&FFüèÕ~è!8îÕ·üsMÿ¿ÕB»M±»ØXÔrÍ)æ~iÄÒ«½Öðòµûô/ý¨Ì{:»OQã(#8®h6Ôâ½Ù@3|ÕjÝ£ã«æòºÈ§Xá©4£_ºoÔ¬xrL®Êÿ[óÛ,ÜQ#c÷ßPUàñ<0£ýKí?ú7ߦÏÛû#¯ú0J¦¡ÈÀÅ5Ë,\Ö°²UBìÃéE? ´xmÑ\cSv¡º Êö[ ïäíârýxÄZÐÝã[÷é¯íüãÃ&.2<Sº7e¸Ã&´ë´3ZKU#8äSLGd>= ìxêq£_t©fÝyÔ.àí¹K¼H)^ç/§>c³Yg¶¹/³mêÿÖN~Ül¿gΰºësBn¨e¼Ñ=æõXñæD£dâ÷Ç~÷lM÷ÎÛ]$%ÜLØîê¢ÉO1îiT±Ì:7>¦6yß!`Ôô¿å¸V±Ý³iëZûÊÂÁ ,bĨ©45%FN].i<Ó-NNÝ[¡pP]J{:#8·#.ÞÇ¡Å]h~·á¦È´të2UkV+ÿ
#PÉñ?gày~3é_ÓõUò[¹£2#.ZqðÐñ KlxìxCïõ¸XPÕìVHì2Èæ¾/¾Îk¶Û¢÷ÑUÇ0´5ÆonîÛ¦ì»fz6üñ[FÛO©ü9r¶EéÝÔWû<õÛ&³ösyºßÌ`X©UXÏפÓßÛ±g=brâG"E>.
ÓqåHÄXìnµÙÀ:~×åîå éÏsÓ±(|kK)b¥Wrdô®i|«¯_Nêë¯MO4àY4ö²[#4ó9ÂîÚgþ\>¦û>ðèëÝÖ´|¡¾Dm'î×n®é¨®å¾ôv¢K_ëù+Ø.ißÌS©ÙH<O£Èèü`é)KÙ fµn0}Dú&}[Ý×Úïµ#.ør9!H2¯ï÷T.ßmÑõ-$ã»Ïs¥§²t¦)Öñ#8¯<-ÊAfKIu5djÁH!{Ï5#8fsv´-ѺhÉ8u>«¢æD@#)¸A7ó&Ä¿E¸ÂѺ#8Ðû(#8£7ÄáVp·Çú°Hãn#.òȱ0¤;ã'6M<
µÌ®NÚ9Sé×Âï9³Ãæ®<ÄU M¦vLE©©#.ÙÍDðyªW#8g£Ú1#8öLÝ_Oñý+µÖ¬ÉÑ6Þe\ZeÈì³áÏ*ÄÇ#.³ ö"SlNÇ46¿²àSL?L
«õNúg·#.r 9FÎBfHò¦Kñç6ïG>Ó4AùÂojµãþ~´¶süwê\±ÖaLi릢Z#)/;ÙõùYÃ]#.$ú?(Q×Ýí·SDDAijSòYõlü?KqoöýÍÀh°ßK ÞÅûÓ¶Còww
-ûÂê`À~ßâ,mÔñØíMÑ9¿;L³9÷e£dTR$Â#.m-óE¥#ñØ$¡Àb0jñy×°¸ñí{°[8í½x<Ð'É£©Öå&#.Åk7§Ei%h`-Æ Í #8HkKÄã^ÙÙñ#\ûÂa¦n´#¾Ö£üNnAo|³x<Ãj=\ïǾô°:J=¢¢FEn rÅþqÈî7ÿ8Ú¯{Чßî;¸rï7Ñ_èXeÛ¹¶@NÀÏ{ûüYª;±À;é¿ÕíýgõS#8«J1رúk³8yE!ó1>99õ²FÕÙÙàL#)¨#bB°Ðö»¾ØÝ®æÙB¡µ&UÌ#ãî¡U9FeÑïËGø¼Ý#I1¨5ª00ÐÖ0ÐjÒ¦CAöIÊ)u°©Öl#.=jçawòKé.mü=;ÇYèõU´{(,¤ö,s Ït)µ ߧLbßZ;¼êÇuâÝèüeÍ·DR}{;ºVYþWQ±¿§/^z´Rh7ýýqîõZwçVwmd{ÈSó9ÊçL*ªZ°¬ÁGývKÁµJ3v[ È,¡¤ACÚÅUªøö#8ÜÃAø}dªR ª
ui«z¬¥Ñýs%2Â,BJ-*¨{¿µÑö4¯NàFUik¡GÁ#.|'âTl\éÝk2VåC' ·ú¸Z~;íÝÙ@$Û©?;ËcÀ8·#aâ´¹4ø~KG¤ÔànÙ!
T
`
¡¼Å¢õâ¶Õ/N)#8z_k!A^yM§a¢îXgI*#.äè3F&¢aýEû1&*³ <0dæð&B¢³qص¤(¬¹(H1EþϤ hñ2d Zµ;¼ÃW)ÍcÁá`J`6¸Ç&ÀvîÛvyÂãm¤V`uÛt´8JB#`x£³Mù)¥ç0ÌSu}&Is:ûÎ}»³öu¡.xu/Ckôõõ[6öìx<Ux4ª¦
_q5q<898míÙj¨¯}¿"ùø½ÙAØú£ºÈ£Ñ¥6téÒ¼èÎ\ÝÛxíXðÇ#Çqu¤N+-7/YÓH?ªuÍ\kî97íØNÜâ0Úø-¬ÛÊô³ªl2åÈ«[Õ;ÿPd+RºpØ;ÔÄ60¤<$`ó.æ{ACq@þr½¾Ïm
/*qjf4bÂ,ÌÀ®8 U_§¨Ùòç¿_AC]U#.'jª¡|zñíðä黤°#.è¹ÃÉH#8jrÓ¼'D:6ÁeôâAï#8NR½nR &D.3æ´êl±ZìÐCH\=à²`ëý{úá¼]ÆíÌn7ìg|U9[9hQBTcïÒ±Ý0ýÍ#.#.¬¤)E(Y+ÜNM£`+,lâpHø@ðcóBÃRß®åÌÈAyé¸(¼0cIÈ75&Pö*r3Ä9xòR} áÉ¥FÀñǺw4Â/_gGBÅø«<Råv(vÂp-Ïd]6°4å}ÄQ):aDî#8#8Ì5þpfÚ÷ÍÓ° ¤ë-
!6·aGsÀMëÂ¥èP,;S!}³¤±ÁÀDT¡Äj&ìÞ yü§Õu5í1
©wkÂp0qïÞSÆyÈ»±ð¬{MKÉæS01#8ÉlLiTì#.%»mæÌÊmÊe¥ÖéÈÄA.Þ¾^"hc÷£08À4ð`#ÄuCq·´i¨²rËdÌè]6jç¢pÀëBDïâq.W4àAe$¦QHL¬&PTÄÎñ·i wtîÁÍ°Éæp"±3" mVë2Ër¬s2ãÌÌs33,nfbÅnf%*fcn4_ÝPEw«a!tÑ47!1¬X !ßT ^o#8º(´ó<qàõ#8g2À!;ú¼v¡ãçéз¼ë=ò.t#0Vè¬Pñ.@Ûðé8ˤ?®õ\ô¶nºq¶ñZ¶nÐçgX&YhlÖµ2±áX@S9°ùØ|sYìÔnoݧ-v:¥°ç°4×'nJ%Q;;IUZ¡R©¡`¹o?ÝýYb<ûI¤Dæ-¡[Ä@¬Èh¶Õik;bKëEgBÛæÆzª£hªXÓ,FË
2ji·cÊôF¨8cñáy@±/ûH!ÖuµEE^EêW¶ ÅãmÈ ÷D£_õ°+#)*-`Ѩ¤¨ Âí¦âF껵.¦Lr»D'RY=u©±¾ÂÉõÊ¢8rN0P
VÌóEôìûGª7 6ÔiXN<R ó1{k,rt&n8w§Á¥àî#)"\M5µJmUjº)yìl"zÍXáîCÞnRC(¢/ ûÑq4%c\PX2õ{0e!\(ÊBçù?1Ð<ôè8TbÐÊ áÁÁXæD:ÅLí'Ñô/dêutÁ¸§)rÆIa©°Èòìà(Mø(Á{æ´Pl;KwB壹[#.#&6#.,f{{ØÖ"¯áСº2É]F©5j¯ä]æmÆF`¤RS4ËfcNxO=ò!e´Å5>x¬À4ÀYPORâRSÚ 3£Ç-´b kµÅ!dÈ¢VE;RЫ´u¸Ùa-å¬ eEñF./>I±Ý°Û
3s)r¤YÌéïl!áqM[aCmLÌùXÙÀ&
jR°§¨j[£Èª`DyèÉ[جÉuuâ¹×¤ªôFr6³#)ÞF#)=}æ(é£1¹AcEæA+´ì rhn#87;ÈܱQsN=
IAd»éÐG¢á¤/Ö¨R,Î8âFùÉdmº{µUUkðõ;9p,¤{gC>ÿ:nôP.Q]¥ .{=x¶ÓÕ¥aÇ#µm±Þ&?µE¿{e°#.3·¹#)y{Ãì|:¾4
Á*º®£xg» 4[Fâc@ µ7ØPÙ+&$$uV>íc¬·d¤-ÍQðw³{Ë9$3Bh³$ÇØ}Lþ§iPWü¦tíóÓ¶¹¦wûõäJ9ÈHÜ(ÏäGDØ¢¬ÓðGðAYMB."ÁÁªÆwJéuf×ûPÚ.¢òHVűV«büó¢µqdÀɧ;·ÓhÚgvm¾¼&ÇgËéêSG¢&0Y$),ª@±ªUòÒSÌ%B·~éÄ<\~`6ð TÂ#)`}½×·«>ÏY{â#?PÍöÙüÇúÿuÿªYO÷?ÜìÃ\«yæùä*#80}jõ>O0*Ï#0D)D
ÿT%Þß.ÜÔ¤
ÎLá¸è¢ :Làõ9ÃÊrB-Óe&ÞwBk)6D xôÃ(s`ËPµÂ)pw·¯&O³ówµëÚ-E"#.%*ª óôº·Ûe½¹ ØÂ;Y!)'\gz£ÂÀ?«íøIìQJBwm ÎcÁê^ê9Ù¡{ûx.´HÃSªTVD0ùEû9X@mæ (>ý)"²&oº>æùàPM@Þ§`tG¼A=26#) @#)=ûª ;þE#)ÉLËê9iRJ¶^&/<ëÍbÙ¤#)¥ÀÔ©-¢¾¸¸M+é5H
Ó!Ìÿkeº;<y%deG^û`hpHEÇlXvPäñ,©CO¼¤-æ}gHK÷Séͦ§¸öB³`¿>¬§P]E˧õ¨£Mü[v[¡@·ü6Yüà®a¯t`ðÖûæO#)R@ 0$ó#.Ç#)ë«üÑETXEF0h$@Bu4ûdã|ïu1×¢6ÒÔ¡@§Þ¬ÕĪ»Ö 0k#.aM#D`Àöà«Cå³üðþ×z¨È¤6V«hQ&zë·KÔ=K\×I<çQ®?¹¼ó^w]7uÆ74ºÅÊ|Ó¯;ëÞ¬5*#}ТhD`o_Ô8æHØP*LMyyµ~õ[[Ñqb)éBâgýÀ·¡góBIH
xthkA·A/#.öÈ1í{S:agXìÆPÓ+@êxÙ¸vö!CØêañ;óp
kj'$ ÀWqÙDÍNYóÚl°ÈÐ\|bEã°UJ.`ÑÆ6{Ímq÷ï÷tQÀ@ Là!Áí£LQ¿3¥ÏÓ¯-ÔªP(_ÚU"nnË1êý0õ |vK~º´Èðj1÷PîM ÔÁÆ"2òRÂðÏu#)ïnGb ÀýìPÌ+¡³!ÂÓ1ÃÆ{~$ÂIJ¤7}7%v2R$÷MM¬Õ#8ÝÿàW#.,t~dǸ 6ï60ä#)zè-Vç{a .½á~ÂsáO?ÎÒüc ?4PS¿Ýéàç.tZW#8·ûOwè¹³£2ÕѦÃ{Ön¦M¶YÀæµIé=H<9üG!:tã±£V@Mæ¤ÒÁñ"0"44}D~#)ÆÌÍÓJS aL;EÕ(³ Xd¯.²Ú)ö4º¬X#.z¿Dý\»LÍÉs[,Iü·ÖàïÓæövÂÍUD¢B¦AG ¼< ÖJý°¸]ØHEBEVEÚ1KTdT¢MlU#.µ#8m¦¶5m¡° HX¢1Å$ã>iÊßTáÇj¼"¤£!DC£Ø¡B$áÚ'Û¥bq/®½thZÆDiÏÂôxe*0u¼¬\âazV¦CzÖ²mÛCT äÅëéeÎMßSè±D$Ìi¼#)ÁãÃãÊyqa©¡¤£"Ð4l´¯Xg2;ë5_WÓ½°(ðQUwn¡WÕ7*£»nt5ãÒ1¡ër¶#.&ë"±àSáe½W/Î)éñOð:PP"TÑM»!#)7ìàpN$};r$b³J̪úiÍcd¦UnmÍ%sWiLØÒhÛ_r×1"¡h@M?Kå|¤¨oCX2A #)1WÁAu ¾ÎÍÖ6¶ïAßëŹSMå¤?ä0âá¹êêÔ°ª μÇOHAOÃhùO|!W#¡#«ý¶éõù~ϯöþöXâ9Qq!qIîò/Á· )2ÂX¬-e¶4DSºô#8b|îªD(¦EB¯¨u<ÛVÞv=<ìfìº4#8TÖ) ¿>Ý%Ùý?&ÇËÿ'\ ?;Þ«màjìRPÇÙA;[ïÿ*áåìß1ûÄòR#½ß*(|µ>>âR77îÉSÎy¥·#8z ÙxIx8Å/ÆT¿®¦á¡pm£ zÙ9ëlc8V7{\Û`ÝÒòN¨èóQØD6ï)vÇHq@ÉaÐNcÌ°iFºò->YS~µMi$®÷G«Ò{8Ýàí_õ»ôns}=VÅû¶'QW(;%ç\Ù²µ|>&j»ü%þêoL'¼úi¿ ±Í¼2B.á#(èLÍC07Nn$\ó@Î2#ÐÀÍüÓ#8lêé"ÈbsHÓP=vÜ´0@¦_3Ū #.5@cX£j²#.ÅõTT6æ-¼8òÉíÉm¼`¤ U"mÆs¬zsE#8Pý¯7Ç#)6*Mä¸ÊâaRÞVD0Ŷm Vý#8wÅ$U@WÔRTT<ÏxwÑ÷ªcìtÌmª"íéçÑYªü?îîNø@¹.ÐO«PfÚK©Äe5TTÅÙq6û>ÞO <:dؾÊî»KvRUKg«ÏùBaALÅ¢ÀÙólì!Û^D#.ñ³êHÏP êÆ0>©ÎlX}|ª^!À,Ýâdï`3s=ùÑ¢VÒ² C%b#)â ¥«ÓÉßþ#.»erÉ7¯[ÕÜ-]su¢B%½¬Ï¤Ú6ÀãúAZ7!þÿý8nïÎpL¤ø<Íé|³Í½±*Dk-H!Êái-|uòÉ%eܨÞ<.ö÷Üo3Î#÷2ÄÁ³t¿ÔDô£iî\tLAáZÀèîüKoÚ:®;ëéZrz_@ðE§å¼Ü[d($Ý·¾ø㥷ì®7</}¼ËÕê|ët϶FeuåzÕ6NyÊ ¢DÞïno¯jíÐ}³¨#.´8¾3ú yÖr:]1[Ù~ó nõ Z'´me_D)thØ¥±Ð©2¤t$ifEfVÆÓ?b°ÆÛyðEp®#¾Ow»°ÝùÝÝßÎZb6y#.X!¥fºm1©õèz5PÅI¯¢Îø,+ý°mGZæB#Ôt|PíïRĬܫ+hWAZjV_é´¯NÔîéhç®Aò\83lI·&oi*³WROá祩<ÑðV8gÍXÔͪnVLOCyà¸BËhZÃ#)±ÐÌn)ÍUh0LÛü÷hÛ{ 9a7ú8Úv0@ÌôÚ«Ïaóú+ñ2Àq±¦FãuèÝäávUPqÁ,\ÞÆ÷0º½ukfrÞ#.¼+ÓÌGk|GM´MnzmEμÞAÐ:®à±´q[ÃÌ
˸S{niD:»ã¸dª¦aËbîÒáÑ5í®¸DAªU)AX_Ã×íÓÛè¬îÛ|oîW¾#)g×,å[RôMD
U\f´ÇeCwÍðѨ&n®±Ì<,ÄÈh;Ð?oe
¡úÍtóQ(ËFÀ¡ÊÚ§TÈ}MµTÔßòdxè@Îƹß\t"<Ó¥¼û3_m²Ò«3+´6ù}?-êI×ÉË/Wfó(ÁùNÈuû;kfñTæ¾4HôQ;¬¬!Q$ p)²ºk²w[©f;«Wjk]ßjÎn»®µãstGA-#8-K"Á·asá)ȼå©.cewã~,°H¬lWÇzÖù}º¤HiZ¡®ã;p#.l6òÅ£Ê#.¢§uå£u_Î{Ý#.½~sÝøqÎPQ<˲Ĥbª¤GL ÄÁ¦ |B7ò|l©b¥d¡ï£ !ïÿÂ`ï£çÀ{[¦nÅupGå$@TÏq7IF7Pê,)ÍÎÚÁâd³O$ >VîÕáÓÂÁ
a¶0¯z~G]ø-{iuS3!úq[Ì.Ìßæ$¢ ÚVØyóèÓãÉ´NôsB|ø:AÙÓO
BH±¦b"£he#dq:SJ±U°ØYõÊ
o¢B¡séSì¤%¦à[` MÃÐF!"H5 =7OdDLonBîA#8Ä#ó£ëXwTwo¸ßÙm«nÏ{uUéØòæ¥{4¯=óÙâuLA*òÃVi~ÌÓðN¼²HPÌÃEפì;¢¸ä¼í!»"Ýe©+í¨¨ ÙÙ`P 5ÝÛlÜ%ÎÊF,A:b¤q·74h+¿f`o[új)aV£8»²øÎLó÷óo5ìmìx¡#.$4V¬wè8JþWÑ¢ ÔàÎÕ$Hq¢
@öZ%SÉ3Ʀ*©Tmr«;@!·8^N
ØqJ>C|*j÷s2¡$æâ4
})°ööà+×cq÷d tÌ:>;:ͱmðEåÌåܹÀ¸;LcgÙÊ@&)AÇn*Ü'nøÇÞ_ðÏ.©ì\'åÃ#.xªªOxzðíd1Æbµ#)º³±T®#8M¥Ü6Qzp Í%#.
Ô Ò.W t>é\)LëÐY÷xjä&nT mÑQh#8xÈÈËe+õgÆ3Ø¡¬Ì_;äL¬"õª Ph#.Ef¨&Á:H-¢PB¥F *#8PÄx fP+d`¡ß#bg©v³j6BEpPQ¿º
fÂêÅZYà1Ä3"-o44cemñ×2º¶¿h! ðBoü|··CÖTL=ÅëTÇÛd^N \nØãËÎH9fSã&¼¬T]°/ç5ébîéÁsÔ.Â!7v¸1÷=墷hTªÂ½#.]¨O¤úøpê]Q\´°m73#)÷¹Åëd!Dv&Îg¿[æeog«µH¸_Oa¡Äl`ñ¸Ü9 ] E»()¨³Âû´BËEÞQA$#8(E¥Ù<ýç÷$HEd CU:@N+ÝæúuwßmG¿Cè-zÄ©gózò¡i'£¼Ó`õQãÃi©Ýæï;«H¼ñÜKøv bbåF10Ü=5nwø~Qúb ÕBuaaÀLËC!ú®Õ"°qcÈJqS\`Ä&`l){ 3bÀçò§µ6Ù4ʶ;pà@):8ÚìäIz #)ac}gÌB<EÎI÷ó6=Ü"tCïi¤?¹oºb\CHÝT |f
³Xw¬ù-#b¢¡'¸ N£-R¤ÃcvZÃ9
"§©îÐ#.RÙ07Êõl¦é«å}Èe¶ãoÎ}9ÑmdÂÑp2xDFÚ(#H߸<¥ #ÐpýA¿öཬŠlÛ7IF¬>áýiÍtvKJÚïB8 ȱ֡©²éR0lV3¡N¸Ú' ý|bÆhÔ0eV"Pû9ï½1Ã|v3täÎ-(ëÈ»&3E2×P# Ó25ZaXºÈÉ"Ï5êfÆØY¢ÊSY^µ4VxÛÍÀÃV/,AZ%Î(¬a0Ò5AÀmvUÃ;`"N$Â\¿ïÝÚàÅo;\*Äú@öýÛ£±
;¦åü Nm¿Õ´gCo:yR ÐF÷"+ï×o/©ã#/c}dà YÚJ\ËöGû#{ïRsIW°k¾/°Ea[٢榬»,kS}3Yër¸Cp£J@6ÛIØ°ïj DeQ"¥Ã¦ùs#)C²;ÖÄah)!ÝFRK#A-l IT#.£leèMiÛhL`>jÜ"e¢Ì±!ªojPÅCH°Kîèàuiüm:}^Ù÷ã:ôy\Á´æÍbÂb*5.RÞgx&úo2wÉ'í!ÐÌ,¦ÀÔæât²Î8r(Z%BçæC1&àã6ßf(Ù²íºèl
2.'~yóÒs,1ßÈ·#.]#8=dÐH°I<"!hÜÏÂhEÒ'(6_ZõD#.§Kî6¶Ô"K#8(¥1_yüâÀâéÿ<ª©¥7xf;²,B©:M¹ö4Ä*ºnQ´ bP-6(T0KlƳÞd+~pÛ2Èæb}Ðaå°{æ]ðoY7·lÍùÎi[¶ªcdI§Ã$¥*] z Ôw[<$+ä2«Gððñ8ÝG]¶MN?#.æ$2Îæ4Ø·PÖYßÏ[A¹*
v,gHr-øà´o®AkÜ r©ÐÙQ²ÝcJ
ØÈkzª©WA¬D°±·ìo±l!4E$Ñ{dɾaVj@X¥R ¨\GGîç²é!ÿ#8 UÕA¼J ÁÓ:ûDÜ04ô&r2§8óÎ,¿=) ÈEõ$+ëÞoã~àÙ5G³fI¼ÇwöSsÿIè.WÛ)8÷à?9rÁ/°è,¡$òU<ú,Ý÷Ľ#"HÁì|¬é(~_k~Æ#M%WÝݼmrL¢kFÖÆ«ÆÆ·5Z6ÚJÛbµmßÃMµ^*ÛÅ«HD%.ãèØ÷¾ÔFDí¯¨ðÅ©&Õ¡ïY[¢X7ºy¡Û ¾¢JßWZeOAÐ|)#)Ä @QH%2Piµ!&d³bÒe@¤É[J"¦IMTd¬Éùvé´6iJUidÈ£@-LM&_7v,TФIÊ#j2J#.F²RX"Åe-d&YAHÉdlÔf$2BFÊ(©ÈØÄÚrg§#8x@ó4eùGm³ÀF÷º¨B:Sc1ÇW¶þC,½UÇBv!Cþ³©+"ÀÌS?WÀmÈí`·ã³aL ¦Qmþb·b@T$ÖÞfÁ®ðfg1ïMÌÜâ]p®AË¡¸¸ ÂÎz©9ÛKï^»¶ZU84iOÝ-zY±>zY´i/âϯò}òü¦Ð6ØcÝ"#)ÀØ<ú¥õ
^ûoÃ[ò3Ùe%"¥i-i*#.2Ñ3i£¡²¶ñºøb&S Tj0ñø´µãÌ®âgÄEV¡(ÇáKI¢DJøçIdl[;1÷gúùÛþç¾.¢0èz~q"19{¡ß@Ë ÞΧ£>;½gâG7åÂÁÄ" ØÎî@dÏ6|ÞopMé]DZÎÆDnGÎß`½+¤üUæW˺·nԢ趵ÍÁ&¶ ¦ñ´zz`Î ¶|½5× îyÞò¿KÙÕàÂæÏs[îóhÑßMó\bM%Ó£¾ÊWhùi=ßD)Ðßx¡pÂWvéÙEä¥ýICèðhNæMW|8Ì|
osé@þ5½}4÷ÎÞ|p^|ˬ¿&ûI^¡<6Ú) Ø~£YÔ2|&1·cÝvº½<j\gÏ+¶$;c¦pøéÌ7#.Oy®«~éuh;¤6ÆWsnÅM^1D?cºÔêûg]ºúMB*Æxoͳ`þx/OK°Æ0ïSÕ2h1w©Ñui¶QüÓåiº_·ffÍCÙº#)&Ô|§iÔÛÍél*~yë^[pslAmÎ3f,v0ÊîñkZ¡çØ`u@öó°Ã@n °Þú|ãÄ* ÓíjÌ3°z #)Ç*º¼×7ZOÐç§3Þ#8~áCB6'MÁ:wçWåâÖ¾%Iõøú_ÐÓ7*¶Re#8O¡¤Ä79ò:¨ñÙn×vFlP&_#.ÅÀÌ]àÈ6[joС±¡³~"mÛ'²ô>ÒÌÛã=P¤ïà Iào´Tô×ô§o~ÒÁÝëú:àÆÚ_tÚ|uH²:²!äùÑ3Ne¥¬m<£µ¢8^*f,ªwùK¨Äb¤{Ä;\Ð//Nç9zêªièNÎiTÊÂ)I¿ÓM)¹¥æ\ºicZRØ¥Éuùõ+ÒÆhDZÆoÊbÁν34MFÞ2¼/ÙD¤Ò9ßwð
´¨Ýa0fZaeðDÎÓ«ü¡CÖ%ÉÔ¾pbf.8`S:äÊ!0RtÍ"gsOKWá¦þÒ¢wX/V×.üLÉubc©x¨Z,Þ1'iغ¦(4Ã,¥0Ìæ®6LfKÖVÛKtoØ-̸ۣ
D86ñPuZ:ÝÒ|°ûgfݺó-Y¸[.µVú#e9#VòPÃâã¹Õ&.ÕE^N¯½¨Ô$"dÔZ;CîtݸÌêdëVs±§ÅÕæø»AòèíÕm³$ææ3¨Þ3ËÒíVüæMº;l!=E&BÇW&°u¾6lT;þo#)X(wc¹´1EN®Ñb#.u)ñ$O-²cðí
:ùÔ:aó¾ÛA¥³çW!Ü^;íS´I½.»ïæç2÷îóàüãG"Ð $Û&C§6ØHFû7<xÆ ZÚ ÙËn¥¢*êoNÐgkLßSi·!Ìç·p[c¨CÆÐJ;&6½ÑÇ-Õzo0îøn6'gÜwØÜ·o#.Ü5ià£8yBÔ§Vé³N(©Ñ)§tÌ1b &)pDÓ4 ±!²¥«µÄ6-Eà;q"4ð@·¸,p
±3È5µª¶92D½~pCgV,7Å(4zDj,4ÝñU¨=55çÉLDvæààäÅÜÜÂCGwÍ[®L¬#¤V§Ce0!½a´Im3â7ï³1u9ZíºòË¡KÆ¥CN7ßÑ/Q!q¡·@A^]ùB|Òn'51}0BdÜ®7î)åíellðq*WèG(å¹Å9Á£4òÆÓ\änÖYÍp.db2ÙBÖGczèÃG#.Ó¹j´D7NÞófµ>Ê×àà-a¡ÇÞr¨¼nç1´X¸¢@Fè°D&ÛgØLïnÙ4Óª(7|´¸,66t¥ëòõ£bÒÕi·Ær¥Á¡È4ÐB2Zgj
ÀæèUE9OÓMÃÎÇ"¡¶mM8é!$É÷ºÚÊfhHhDÒã±½ð-óO5ºåâL,`ûÍ.#.rår2ñãWQ8
cÞ ¿b,¡Ó»¹s
?°OÃ7¤(Q·9gÑ»X5fµèÃaÅÐI&]³µóxã-¹J6Ö
Á)£hvÅXáK#8ÑFë)©#.0ð°½`]ð¯
Ã6]iÆüðCé'(MÚã¼-ØÓ;Z7RIY§^ûÝ¿mõ½ê¥-\\MI0DT;#|«"Êq׸{;¬^ % ßNÝfcé4Z"¼fê$p¹Ë»{{õzQööì¾Q ½XäÀ²ÆàÉo#Ñci1qÆên²FÛ|8va·S!#)Ë#%×2±èÆã·y.æ:kEvn̦c¬
ËZ&BQ¶HÂ2ækKZí½´gEÕ¶ÐÌ´,ÈçÔÊ6ÐAm:Z'{s£`v*Þsçã´lÙ·ÕàhâÒÓÈÃIo#)MÁ{éÎ㨤í³.Gµù«(Âz´Æ¶øÑ`E8µçM¦*!7yÚb&¦jr°44Ô`ºaÀ`µFS38.ëªcGÛD 0zr]¨$y©Ñ4â.4IÅâ%2,þV/%Ä:6ÜÚµ¶ùÏ)&ÈI5¬#.¹Eºe ¹9À×Xokì@"h~;eB=kÕòxôlHh2hJt#)Ä»´R n ÄDľ§Ap4^Ø¢<86Q¦v6qÁÃÏ 9·è>ìè»ð$)Á(¤7}XæPÃ)6x¡Ù£BÐÓlab¶(ûX.F(Ã8"T£.w¢2$ ÑËyg"&q17A£ZÇ#.± å¥ i±\αÓG/#8!°¬lQ$#.M5#.´&jÙ2
¼3%Xص$«£ÁAMÕ<4¬¢lÝ-Y¢Ù³&P7fqG'jȦÊ8ä'¶ ¬3.M@G.3çSÒ)ªIy)ì-4mÓEèägu-ÆÃÔ/ÑÀÃcc{4NÉ©bnóÃ)aÌ!(uº+h5YÆÞ6ÄW2þÒ9ZCÔ[Hêèº!T94©í]F³lñyÑU¥#.¨Ö8³dÓ«lðñL6ÄC2r¡°dîäêÑlé2gÎã'JסB5°RA6F¸8&ª·à¡ç¢3¨ú'8°$j"0¼ h8#.ßýð};|èJ#.,u&Ì!H°"x'FTÍ»2Ðá¹"s0p£»I)ÂgDvõ[â÷dyËiÚQ)ÚCl#4 z3)·}h@ÞßÜÐÞ08Q!ÔPò¡±ÒD
'ÝÁPÉÃm¤X#8!ØpGaMLÍoh¹¡j³ébí J ur6f$ÜY]µx:(wo)8f71£± UQÌ=#.©¤0eÖ]®g#81Ǹvñ0Ì«~AX¾AÕÚd`@vÝ8!£XjaÍv¡c(©#K©@àzrHSµ·,C¢m7c´u#.ØG#.Ý#.ªS¢©¦;¦íÙIùY»Í®P]pQv9<;¥8R±¡`u§¨dlIE*!R(÷0JA?NâþH°¬4y-6l)L@})B£¯øµþ/%~¯#)öõoz¶¾Zû(Úûn«f´dd"°!¼>ù°Ru#ÖPPä F¥Ò)UùÁ#8 "%XÈF!Ü
pÒöAÚ!*AÝïÛòRâ22ypùÆf0|¦Ùô ×Däs£Ïîrx\7Íô.9zÝ>hwºB,¨ê¨15nð·,Øä[ô¹¦yIÏ+7¡µØݺáãµ0.B¸¡ËÈèÃHëк¹É4T<·^ÅPÓÀ<vGù¢ä%ÎR\¡H ïþ[)¸ÓDë®Y·ÖÕ¤Þe%µTQlf Ø CaÂÅÔFE¯gÐôâ# ¥Eª¨Ç/\EÚÆM({=ÀdBw/¶>H#.Ļԫó@@WgÙ°4I~ØbÒKLƺîÌæè-º_B~ a &*Øl<°;àO}¤AlþÁÛ°7¢7òaQHDq9r81õ8ñ¥ßô¹ÖD:s1c?"j]ü?ð7EýNOɲ>¯#ü½¾ÓÏÑV'êÌ̲ÅlÓ-ô9ÌmpXÈ$±)[L¹Q¼\²
à{á¸-ëöìÄ×fC`Æ0.¨"íDhÇ¢2Nñ5.cíÖJA̺ÝL*èë!ùsÝFE¦¡°iî>æ&hº¾½ß,T¶Ñ o,e©æ=t| uUFJkclm)Z6¬h¢©1053$¼Üý&yf }[¥OnÞåÉ2t{6ªNãgj§®u¤#_Þpíhl ÁJ êÆ P^ZSt¶2ÅëáA$N>ÓÆwQkívø®ûÌ3¹ÚPxÜD î
@Is0RÚD
PçÊÕÑ&Ívðæ¦ìaX°ÈF³®ª."²CC®ÀZëº%Y`i¤11´Vv6`Å&ª[y÷1±|Líø F(XP4>©´#85TÉ
HÁ>ùîc:DK¸Æ0ÍQÎ${jçÅ5GvmáÇo6awti9 ¦+q8iNɱdÖU+a³«Y,0©+ \EBÆR¢Àb¢¸#.Ê¢òX¬nWdKM+àff"*êcm·Aà9àº|®8ËFñY#)/Ê ZíÒÿ//ºz©=é(ôõ*`£D,F[%Y@FÅÒè§Òè$ Ýr.´ý[Y*%âî²¢+"èqÆiû'®àý[ñu5(ÂûºÞLpÕRX®¡U÷ݨÁB¾úi«D4Þ35or"²0å®~Èk£ë;GÆ@pêû^z½¢jb9êmk©¯¶¨2c¶±ºÀÐK`¤Cz¦LÙ5ÖaLÌágiÈç ¦£:C<åS9:hA=9p¡»]çÆË®f#8B#YV°À·¥#.Ë»©ÃónbU5HÔ~]rgdl9Û$;»lÛ½.Ù¢@°. 9¼`5#.,íqÆC²H°ã#.ª#.вôP¸mð1ôé¨ÑdFÑtìýpÎT¾[³#.Ë)âÈb¢jÓAC+£Í#)ÉÐT°Ð¸HÊdk"M¢èP9_T¨"($
¶ãÇNWøól¾ï¹Ëû(¼E÷p.¾ïE¤_Ïéµ[Ü®kÔíP0zò«3>éaQ}\ÂbþLàb6àïÙþÂN9pEÎ&|ýÐĦ{\bhs³>ÄÈI$^(WúÑ!6$ëRkZ-ªJÚß²¢þNû ÃîaK´;ÂK;[Éð(CÏßÕ9¨&þ§õ@oR>\mpéÅbÅqþayº¡Þ:ÚälUXÊ&îYÓNÞ "5&VÕ3%¦Õ:RKWNø¬Sf°|§´oYV"3¨"©©ÃcP«°ÔHfÅ9yÌÛÐÈ2D1RSUÌ"$JXru-(
1WQCÞý.õÈæĦbó¼Tl©#.0åØì5;ÈÑ©¨b2ð!¥D@&wBÖÂÍ 0ÅâHÓ9JÉÃòíbÐÏ{ríºÚpËdãܼPlʧXMbù·míC7J×T¬CÕKÌéö@@ɼ7H$õ60¼%Ìä£æmôÊSc½Ù+ó¢á$È.)s ]3³îlHôqÅp\ZXE³2¯Áh;¼EcQÜ^ÂroÖÒX¢1X5¦b!DhÂ{?abÚÒjB0ñHj71QBÁÇRlUyåÆ7[µÖj)bS@§ ²4H!û¡
K<§±¯<ýSzeÚ¡ÁäÞëíl°»¹.Ýqg;^§:çLîvÓwWf®u«´r»®Ýݤ-yÝ(©ÚzÝyymãR¹QZHÂ$-£ü4ÉHÃ:íãy¸¯k]£[^624ÊL³[)êZºRA1b+"CËäÞmäÞé¨Ö¨#.Ö%"É #Ì¿³ÌlrzÔ¶^äZDÖ#8Ô6ÆLÂÉa°R TNG8BÑ0pº*ÒfÛ'/D_9à{,WÏVåaKÞZYMOi·éÉ媯`©Ù¸ª%QQ|â¿&C)&8xAc·ß
9!
dÑ÷ÙÕ&¤Ø¢¨¯6ÇÓ!ÌtçÖgg}#.li=£õwḠvD¥0ÅÐ~K*Ú%àQ#8¨b#Q¢ÕP6m÷88úäq!fsýé¨#øa² ð`pßʤ#8)¤RÚ[ªi¤XoR££7áD×ZLøÀïDd3ÉA
UßÒ}l¬Ê¼â7:s°¿Jk#85.\*rÍ×ð»e×á=UfÛ-I:B 4kN<C«¹iÝ»Êa#8vE¹ÚÑ¥ÆO lq¾F|¶'Jër²#)a¬²C2KüȱHºF§ã.jlÔu«ÉOÉ©QådßC6I·xX?¥F*E"$#)øz¾D+¨÷}};$/7Çåy/\E* Æv£¯ñ³2ÅM*#8°#)¿<ÀiéÙÖ6£cZK2RzëªIƶ¹¢2
¡yvÛ]¥³Ki,ÚL²YLkDmaË jË1f¤1&¢Û-jX¼î(©¶Êîé«"|µº×jõÚìQRÆRU©T³j5±RÉoÞZÝWÌä¦i&È-cRkµlJ¦ÕouuM£CTPÕ<ëË4e¥dÙµ
k-½U³mØÇtZTÛήwFS®UÚÍRoÖk-&&Ö«q5à 0 A°_gÊJvàμo%atc»Ã²¿¤,ã¿3çùþ#.ukÒlÓÔMFTcMÙ©K$ÂmÞ>{¢ÜF¶2w¯§âû"Æ[#.T'± jóÒå0R,RZÞ{uîÖµ½ëh+Ó¦E¦Ò¢i¥¦Z#ÒÛ3b'¥Hy2DXHI ÅâÈ&Ud¦ (ÚÑ®QTVÚëèê¶óR«ç¥Ò úfò#89!TT¨±«Kf¢h¥¤¤µz´ã!²jÓlÓ+d«4¦TÅLQ-²¶&ÐS FJR&l¦eSd¢JcRm%IªZSJ,ÐK%51J5Zi-b°ÉHmbS`¨ÖÊ#.©J²Re&b2LÉ¢mRØÅQ3jªI©MY¶Vµ,ÉS&¥=µZm·YVÅZ£[eeZm&kçZÚéRU)V²V«{5y³TUy¬Z´[)¶7̪¹ªTµªEre×ÁÔ?«úqâlÂrwí¾X¬`I¹ìî¤{óßÅÚm~ݸòj ?©¡nöÃbòs9`ÞUà!zLKKë¥A¥ø¼7="êÂB+o-ûÔe±}Ñ7*îË öC|Ü$TÈh% Å~~6×fλnÅk4Ùk¡S~ ÜÜC²<C±î[ô={u~a>-Êç+qMôI>&ddU"Ȳ2¨Óu
/C¨ªÅU,§ÚÛÐB5ýì #.ÜÌÁÌVØÜðÀµ0KÑDògÈ<Ô#8j(§æñ0#)$òiµyÁÄ>Q¹Ð~÷È> ºÁ"P<PÆ%IC»¶Ôu·÷ ¥ó«£ðlÄNè*£ÕÓO¼§äçجC¾%O#.¾Ï"É¡üO¨´}"ÄÇd©3#8/²¡õ«,0~Th´ý¶u®&ýYdY$gL!ðXíeÈF{¥'µ¨¥;î-è;(Rå4âÔÉgvk9m½Ô±#.¥íOãH¶0ØCì¢_3ßÕ··m.**@åÜ#)#)ÛQm±Y'#8¢RàiT'2@#8ê&é.sÓp*ÄÄDÆÜ^frcÕ<°`?KìqÙÚzÀ²1,68§nàâDìÎéÃB:µ ®]8Æ£^}C_¡¾¨GVÝÞÕT^È»ÃÈøø&§¯:í$O[¾ºÃÆ\ìoöÀÔ:H#8¹f¿o;Yé¸iøÄ;Ê*àU\8zÝFÑ®äý÷«×c^"ÊEy;wF-r]ìåýråì*ÁÇSD"Qô,Ì¢bm¡²É³"Ui¢Æ |:Ĩò)R´hþhÔL®VÐjG!é.F±ÁàÈFszÒn¡´0#Eb¬ÑëÔq6ÓXÑk´[Úà£ò±Ì [Q&¬m*Þ#.+~Ú(ê#)jt¿ÔØ÷È#)ýÄ d¤Dç<í,ä}òïÍß"xÕ¤Z![ 5Q1f¬UÂÇ
Îø¾)îéݸþͦZ>««è&Ad£±öC[ÔlµfGzoU
GS&Çù³X4Ê@F 6ÑöÚo#)ý|¤S}íª ÷ü%°&eÎ0#.ÆN»
v(4A£{'4l¾-I!¦?dÒoê뻺á,B ¸«oÖ+¾o
¨Áãù:Þ.h\,DÅuCKFÕÁV.͵îðY[x[2Ns亻m½êç¬lB6êêRæ·:Æ¢¡Öl.hÉXß¼¹Rf~§`% âZÒ>2"2[réoWî `ÂcZRN¬RJA7+¡¹8¥üR^+àdj0#. Â%ÐheYåÖ·¨§¯*£LÞìD{#.DdÓoUÈhf/a{¹S¥jfué¯elW4ëÙá×,
PÈe#8#\ë
aEÕ¤¡»;vöSQ/«z¡æhIÖ`YIHRÃq¤MRµçY5ÂVjzV¼N6wÑXpE7C®¡©ÑwÃÞÝ¾Ï Ý#.&$ÒbI àÙ °*hu¶uÖ%bÒib5FëÝ-¼qAÀïïÂRG äÍO~#µðw¸2$<¸wæP1%§yÞR!#%4ç%кä×Æ*3A¢{sÇ^vxiÖ©üÖµ0Ó°ôU&#¥CÇg¬Æ©Ûvàgn~üBnºåË·$¡#8û0°4´Øê׿=6ãÙT3#0zNÿ$åÍX¯ÂUá=8Ô3D©0i¸°#ÛÞrÎYº¥ÆòDödà`í9AQÈ
ª©#8Ʀe=nÚ(8êUî¦D
±º´Á}zÍÕ !űo>yGà ñá P¼6¯qBÊåH
$(D9F'#.¥&Ú4Ì~)|Yyßuǽb£@ªEÃ9¢®³
r{u÷{nøozäA½ØèOmn6ÀÊSMª Á¬@ì÷oo5Þ,"ý}º¼í;¸õÑã« µÉÝ.Äiýl©±1U#C@9±Ê&4Ó;B{¦V&û"ØtQ÷úتÕðbÇÈä`;C¿=/rZ ûÙlg¹{tî¾èoϾrêåÕÛZï]´A®ã)<ËgFo¶)B¯#8Z^MÁÂö©UYSp¥÷ cö{úÓ_Nåa':)æróß * Hñ<ÙÍ} ]>9I<^´#.À¨uñiÝ6õpNeåÎa,+!X(ö"ÀÁE%Õ0T2r8øtgkq`$¤¨%óıÙ&T¡ÍRR#j#)¥Ut©LD-¥U»²ÌHFLA[°YB^å4ITë"cQ¨B¢*R4[e <7ó®&`Àùô!Ë«=«³Êf>_vg`¸GS[wõ¼ú³¹RãMqÌéÝ;º4ÅÂû^)M3÷:øyÒ÷òÞb¿cZUQ¡@XÃù,fYÊäÐCQ0|³D,Ð1dYm«XÙ¶XSM×6×Jj+Qö¹¬F,IB)#)ÈJÆ,,PH¡L$ÿ'ø;ƬUM¶ÚW¤I|ªÄA½0<4ÏnG¥Ö~Ä>9¦±$ÈÒ#8±2Ó鶺Eó@ÈÀd ¸sèÕLÈøc(T(pBÒ,)ÁØC´Ì=º ±>Ó nC¤ù±° 3s¤ìêZ)6û N#8 ×ÆDÝl>Îë³èªc#Á§;-C2:DOhÌܾh`OÓ¶¥1Y¨ $B2D$HE$ @#J¡»ÔO äÅøQ1Â0ÏVwÃ_ÏãÜG¢¬AaÑÐ3²¡oºüQ7m'#8* õ$h)"M§doxÄÈð¿×±@¸°ÎmÀÂ`haQ êùº©FV ª<JÑá[{î|ïͳN§nè¢XoÕA#)~=¨è#)/nãi#)3dà[ú46¹Fg>}êùiÊ÷?
è0{}Ak¶=ÑxCÓÐerÝwVCè
uleÒXnÖë4Õ_ó;ëõ¦ü¸yÔ8;;#)PTU|F#/v¢&ÉÖêÒÒÌW!qMRÛÐçlP1B$~pQ#)æ:Ï)ª)±§Ëæ²Ç¿<ô¥ ÂÜ·Ò¥ äFµöMmRÊæ×Yª¶éª¨Ø#8#QI!¼±f
à #)hBÈ.j«)ÆQï¾-´»kõ!óPQŦ"A XâC}gÈk#.Ç'îÐö)©ø~ów=ÀÃ\¡)ú7§ö4jøÛ;í¹¡ZX^óÐS¾A`#8@í;¨îHæú¡bE-
"«mú/¹ì {ÏÄóa=ìµRì¯MÍÐĦñw"B¹N§Ä±êÎÏCjï¬:Mùnò¡ßBò(w¹âîÚØM²
8,{Y"Üå#8fA)òõqPCÆ ,©ÔV!¶Â5?vaÿBû4¡Q1b¢¨UIà»Y)3¹ÍÆ©UÂõ5äÚñ~ë^ȱM+üöu¤¸ÈS#8`ìÙ&%ÛQ´#.í¢D×,Z°K«ÉZܦI)ÂBÓd
3m«.³(R@Ý#8d¹PÀåZ4êE*bÑ£Æep`X÷rözâ"³»Ur±¬øõ_#)#.¤cA¦ÛÆqbijÕÐÆ´Þ!¬Q¨¤HÔDɤ¨À{ÆDMmÒ?ã¥æ$u,,fÔjm%º¢&îqX¥ÝÆ#8JZL3d#8¸¹°8¨Þ,jLP-.êGJ±ç"ØæÔ&ÝݶæÕÊdfLxÚcÁ&1A¬1ÀÜfs ´Î´ëÂPd]¿³¬ÃL°\H#.#.ÖTuoO°¬+¶Îknãx8 8PÅ
{`Vyqhª*mD) ) ¶&]¯pS°æ#)¡¥éaþ"Çcåx%ëFM¤àNpÜK?Tå=ÈR6dÍ3-Pj3&ØãµÞw%bRSLßÙùRá?²=Ç´çîyCÉ»ÐQæ5#8 ç¹ýcóý´4KH¬(/ФR#)Ãüv¿1×Þd´³mkyµEyÕÈÉ´JÆ\·R¢¬EUÍÛY54©¯zê hÑQ6!,ª@EÚü#)\ØD¢ÐK'Nãyô=\¿¢ @ÂY0iñjuz»²¶¥4\Üåòô§£15¡B¢©#)ý°-EÈq#8u)ÕxòpÒà²Û»»¬½TNª]MÌvü6·S3 ñW2ÎDÅÅIhÂVÅ¥b¨«Î×4¶åO~Þ6ÞßCZò³k&Ƶ2ÛEBªHêiS4JÕñ·i¶ÞnèÑI
$Ð#)FM6©
CUI4i°#)©¢×xå,êáÜ`ÁÔÔ?°E£i£.#)Øý,C%@.¤óÇ$¦Xae X¤¶AH¶±PqÏÍRe@#®f±GQh0,À-xcÃ-X^«õ¯²H lÀn<ûMOêmßZÑ_#èäDa¡;º:h+£0¤ÑÑÆúy©t!1Ö3±Ï>±¸ïÂjB²Z3l׶(! q°Xs}ðþ`z vEJ§êÖ°¨°>ÓÑ{§Û['Zw.â@ï<Ê=Ég¬¯$µã]·t%3S1RkFÙM,Ñ¥4¬§ºKI@-DÙ½ÿwÕÕy<8pÞ)@ÎÈ´Í÷»©@¢åXrÌû¾Ii¾î±
¦q#8üÈý½ì?Cαq1/³kOô K¡~=1èhÍR\ÐÖ<ãv~W/0g8¢*òÌàÒ&c3]$.xÐÌ%AtX¨7RXÁe,¥fÔØEP»`ÕT&A5oJ`,Äråáî@Nÿ3ÛÚÀë$I$#)ùbØÃÕèÙÃ/Ñì·¯×Y¨åVçÅÞàÈ2 oÈ$L/î÷m|x5DßÆC<0ÙíÖä)lÐhgýÓ(l&ØêÃã Z'4ª¥©Ðgh)ÒÍN.Üîq×m6ÏÁ¬@rMlÃ1&b(`ÝÀ©L£Ô 'ß·ãË÷tÏF4rC,#¿ÑÍ#8±éóqFÏü0Xüqh¬[;/õÿ·%$°ØÞ4Òv7´Ðå³=iFv3©>ldêêä¡@õ¾äßbwW^£¼ûøTS³¹ëUPm´%Ri!2+R-IµÑÍ~y»hJZsmM-¢¢e5!¦5³VËfÖSMi6¢lFÑm³m#.-iÍe¦Íkb±¨2³æ¿ÇßU|»(äüt¶Z¤"j# ä"ôõq¶¹j-mv\Ûksl\ÚTVìÚ£[\ÙµÖþhV ¼"uIßÕ¿0#.à#.RD$d DðB7êøX.È/â.S7ò²¾Ôs(%P
¼í0<(§Çárd '»R0[nÚ]°EnS#)ìy{ÿát9ã 5}P¹Ð×x>äa3õ/ÖHbª©D $B¢ lP½©n"*WÐÄ/g;ÄH3CÄ÷c9ü4%r9¸hTÅÉ 52HOc<ÑEòº¬ZSDb¦¤J4&0Z`Áâ~mÙÜÏðCEK!Ö|2¿Íé<äNÔ×ÀAòÐu¥®&ã¢US`Î&î6£Åêì7y#)#!+46¦p8î,ôõá±lî8`Ù Ò"É#)à}pÝ#.Sö¹G,,¹v(Q
¤"#8$f%Ú³ÀlÑÑÈB£ñ^£åíÕàê`öüzÓN;êF`8ÅPPü±óvÍß碥Bb!¥néÇDê?§hé/h.àt×Hk¯åÊtb (Éê÷Ñ]²÷9Ð\\àÌÌpamu©)¤«·ØRÁ906C/¢.¥¡XpØÅ´ ((-)>¨ÆC%/KîØÖ|÷Ë7ö{mÊ÷±EøWDÌm~9x>º þøK:+¶oû1,jHvÑQº²Ë!"((²L&.Rj1VÒFDÓEL±M68ûêcÙKuKU<XÂ8»(«h4?k#)T4d;BÄcÓÁ½Ü$çÖDo¼KG;·Ébä%¸íÏ©º\QHÐ~ µãÒçAÃ÷nÜ$9hTÑ¢n"¤a`$oóI çxò&Ü
~§~¼4fø¡&}S®sötبÏSé5bÔ±°µîÐ2#¤ì×Qà\÷É×®Jñ:MÇo$hzH.$Ì!Ae6K,$V!#8¦¤êh,à #)ò£ÔOî!è¿%7#)¹á>îÃ%.´=óÆ3ÆTd<BR8*¢ÊxÒt'ãLûÁ3éÞF¦C{XÃä+Ü^3Íç±åPRi#.4Ã-TZDEµêT»®LÕ%Fô¹:uS2¢3|ÇÙútØÍ$êÀÉl¯§uªØÖü~kÏo~t¦Äe*ÝÐ!ÞÐ8¥ºLzLI"B½>Õ¢bµ´|ED+MÚÔYÈÇwkKM´×:TÝÃS¡vµ±±´N"îbÐGpx¸$úSR.¶®e> Ù?XJÓÓû¨>Ü?*f·Æ }¡¬e;²&hÈrS2Ø®®\§àÌãÃÒ¯ð¦è¿Çî§Ü¤ü6ý®_Xnú?Îv®GI1Ç$.dn¼ÉmH#.C HÝ\U0 ±Vê©e÷¼ñgÝ5ÀYïu±ræ.óB;@»à×·±Xi#80vÐüÖXÅf¨Ê*xõ Þ%?Ntê£4¶N®ë¬²õ8¾ÞÌmáiѪ?Â'7m®/Mrs^übå=rK:f;¶»êfÒçWG=^°ÂÐ[4o.Eª¤X$»(#8J´©Z $x"TH`ÏCZ X7qAá2>â#b ê"íáéR¨¼Î·>!y¡e]Lâ\IXõì¾GCú|íÁSú¢H)´ã4_t #.#ÛÛDà 7,£¡Ùeºñs#dMO?6idq7¿od#)ó¾¿#{Ãß$ËXÏÖ$å ¨¡c
©`ÔV¦Ñ+&Ý×kRVÚ«,»Ë©.m·L **¢e@(ø~yï<È@¶ãBnë[îMôÚ©UU_QÔýuÚÀ±Bdulʶ@¦f¥Fî</#8µ¬é¼ë+î°Ü%ÀAcl/H(Óë/2ÞK&ÕåÎå&¾(£Òsv°É6À$ë#Ç*PT!xºÐédq3H_¬w*XkB¬ÜK/WFtÈ1§p§W¤7&Cn¶¬Q¦Û2p`pÖ!&Õ FÃ#. ß°E"ª!`@º¥.61+
RÇMÊy`'ôñ´â&[Å5 Gl#8·æ;uô¥ÙÑèyÑX@©ìõVF«ÒqÚ>B
Ü ³.3EQþ#.1Ôâhz ÏÐ% â^B×#8ìÍ©KFS5´U)ªûUùV·äD®»m;ªås[¦¨åÔ~ñÎC¦6<.Yh¹»¥µL0rÜ¢,<Ö³VB¡ëN=G/o.iG_^sUr)<±+9²°þ`±>Ð xAv'×D1ßÏw|îp\ãû}sPÛm¬<TW/hð1Uð¼f@D+ª·æ;8|T`F&°ç+£!NWr.®mÐ5! ^Î(ì ê¢"h ÜÃ2ñvM<ÎmÂùBRMóܸΤ¦*T#.¡³2
Æ©I¸Ó:%ﳧʯª®M°ÍKx¸vê÷Õ4£å±û÷5½7_¸Ôn9àCOØdïxâa¨`ÐåôÎôÏË=CÖíB÷ùhrÃ^ïÎ{#)üèñUSéÀQ¬.4l}]¶\¸ëªä1¬J²(Üh+7ìÀ´ëí§¬F&Oqbq©½#.ÈÆÆÆ.g/©Éö:I§wÊö+Ù5°ÇïCJ\Äkì¶gFÝLp'©^Ñ(tøNødÕ¢=éO&+#8ú ¥´¢Ù§nÖ³1gy²#.8¿('³á-ÀqÊÏ´ôhlï#{FÆ×¥[
÷Þ+¯¼ä·X¡ Ç:1ä)K¡yÃÕú7êð½"¿Ù.«S¯³ì*[Oý¾ü©XYbg+X]IbDº.JµJZ*U®ERWÜÅ8I/);âù&Þs1ä`è:]ö ïüßÕvóºJ(%UbÞ«½pVÅq_P©ë÷dÞ]>lº#.óV÷zNêâqÁïpsNK8Í¢¨CeýsYé]"sÉ3B¡ÐlS^&¢ö³kR[Éá£WÉ+#.rçäÔýÃóñ4FyNïW͹$TeýaÜ$Ã{é8ÔRH#.¤Õ¨,±\ÝÂØîÚºåÛÖm¦e©+LVÝVÆÒ¼\]V¾¦bµf«XAS¢çO&0á:¢(uûgQ*{`Z[Ì8Jf#b9©l~Ud×ÒM»âmp22E×í·5'°ú¥osä0DâÇága¹hÜÈÙd&®!g¢pkUjZ¹.#oÏ@Î#.äT1@ê-Fa ò8.«Vt1"BÊPB*BTXH4üwìPÀÍ+ax´rfí+÷ð¸6vq|z2²WÖ#.é=ØnÙâ(±Õé·È7%ÛùýKc'hs7MlfÑÅü;àVEl_ÙYMoá{§ìöz_ñecT.¥r¶µ0¬´ý7ÃI52`½ÔPÔI!ŵp×µI¤K]Íûÿ?óþ/ükkê©Vs;C(ÃJ#áDTd² ïí¥µHRsËB®Ý¥A#.D0,mûÍ[Ú$´QgæÚopÖ²¯$m½nAAeMCT&8Ô\@]OveZñ*ì~Dxª¸9Ù»æÒ~]ÙÝÇÀ÷¾c¥«-#8D¤5´R#)ëà¸'íjRLȶûaÒýG1µÈwfÈP#8ΰÆE§<5ºQüLCpÈ¡p6÷Á ìs.6±ÃCná§DF÷cLÈÑÐl/ÖÄapwAÝh¡j¨Jºß^Ó8Å,/Ç#©#.ã¼2}9δ« ûkpûõl4ñÖMó8á=#.ÐdD;,B#8rFZMaSòUËKUßs6q½úT\ÃFü/ãlÁÉxFPpD~+j}$mÉCFÿ£ìS6%lAÁ¦Ígx½Ìlö Hi#.neÐ]?U~¶DÀ*}xÈÎ3²Â·ºÛ¤ÐÊR5v>¡â#8|é.,;ýxÏÝ}àe'à w¤#)¥DLÎǼn ±ÓÀÂ`$µ©ø6ÕxÖ«bÖÆÕEª!RÒ¢ H)P5&Rï#8vì;¾uÊ@ÀU¥øð8KT.ókrù6§®¶qaFåÃÒPز½ Ù ¢C¥YæÕ#)¸ý'n0#G¡Ë-µ#8·_Ê8rrO¸#87³=(B®Êe VTÅH2 GµèLv°íµæú4ÿâüö#)$¨Ô#)¢4m<êú8jpào½[À(7$½D(ê³Ì (Ü'xðfúJ!²þN1
míî3àî~ÓcÛ0çfYQ[K0[ÌÅVU!3!ówÅKB~ÕÛv[÷ï{m¦ Boøh!»z>äÇ«´k"ñõÅKA,û E'rFà}óoçò¶3èSËÃ" ´B tÅ~RÑ-#.R¬Ê
õ@ÖäE"<$ð.
*È!BVÚVÓef$nd|v8l'FÚlg®Am"M:@Ïl>o'T·L<o§a'w"¬þF+AC(+»n¸»²øûÙµRd«|V± ùü_ÑU&¤#V«Â¬Ñ©âm¶õ>¸ëÇ_MZctí,â~¶íÐÐåU¬9Ä04õòOJo½Ï-l¶¯ÊÀ¾!7wvc!6bçb5ZáQüøú{ÓÞcaÛUÛ8®äK¨í˺ì+6-U#.ÕKDªóeÝaXE%¡KE,bH>ýeØR%«|ѧ³CÚí&ÐÑ!!×ÁÇ[VEFBRëfm®êí6Ó&mÆ#.#)ü¯f%[2pÀÂ$ÍÂѤcLK#8ÎlJA#8 È©MPæîÅ©¨Q£ZjbP$"d#X¡)uH7¢¡ õ[ [×&}RØû·9 H#.¤6 "iväYµfUÎy×S·u2M+»²é<|^½6ZcFm¹aIÆ¥àB6Öë=o;o*jl¦Sf¤´Ö[)%1´B
&Ì´Sb£#.T¥¥ë¸õ;YN»»ªäØÓuÛnQ=ºñ^yÞo]®P¬Û!y¢eÎj ¬R VõDºVTCJlÌÆ6UULF:h:=¸i Ñ#.R*rÕIÇ#8zÓ!B40Ð}QGXH·®ØÄÍÅu$Ó aê-ôÑCqMÁi<MLZe1¶1¦í*T(³S$ÁrÀX¤^Û\(mëºVYæwR¯]áÓÐa§3XEE[I·eÖXÝq´È=$L$DÍL(àV×#.)(²´0´DA&*MVDVlMMãn0-¥ÕAMÒ´´9]NhÓM0WcCí¬aõåÍá7Ä0¸ÈØÊLecg40¸äcjÕM&hÝÌ3×oÛ&ä4Ï×·»C$ØUSÍÄGÓr`ñL]&ka+OÊ&O^,KññÃ<"#8Ø.W#8«¸j-5ã.xUé4£-ibÐĪ7á¤bÐh´÷±#I+ÀÄÕ>Ã[)#8×Ëd½¢ÃÂ*YõñK"tö1²`b[BÛÉùRL Îj¥x*0x¾:ÀÐÍîÔ7XhÆmãiPÍÅQ
+í¡<ÁI¤b#.V%F2³}4Öõ½DÞOlZærÈEÆ`ʲäV8[ à:-ë£$"˱¬Ã¿¯å_®@#.N4°<$¿£H0@»CLê0Öµê0vÆÈÊJF7êC û`ólF\¢*M$ÆP`Ui$ÅÄJºiQ,dJ.K15ab+¸ NÞz¼áÕ6JõOí)©gu?=Ê>_tÝ}l½Íb5aÂ>槶Cgá#G
"8>)¦4LëÙ[}}Ë]¥]¬#.÷ØPÄd$§¡M¥@Jh±wQ*
§^²ª'Ê¡y=«*VêáÝÓ$£ÏRP)äöëvë#.xÈ°bmóYnéöj²¬oÖikR%íòêMMUlg÷ÖÆÞD'¸¼áÉÔnÞTWló¹·&ÆôpÎF$t²õ¤SHQ4°"Ìs°9IuèÎs¶£Mê¹·+L¼ß{ií¯c¡ÇEÊ
vͳE;}kpÚãÿåüð\gÞs#.o3Ȭò<ÑÍ|º³¯DsÇB¼¸`pöÆjRKð¸ÙÆq+ÊÄÒcÅV4BCrÿo?ªÅ½{ähåaÆthÓ÷¡½>ÿé,oï m_e8eh#ÒñÇ»#QñùÄ}ççú6V~v`{Ôä>p6@o6°K|ú6£Z³Û2é¼àÙ,ò#«eú[ ta¤&Î8Öð°¥È\iQ)%Þñæ×KfVÞ#.k«%®ñÒlZ¼º×mnUݹºñTWW4²ÍfBÆÍç#8Õh%R©T¦´EB±)#8!k-E$EmP·@î!RÒZ{3¥¡¶7G¦R0íT¦¹ì!×sGHDFU!RH@A!@#.1ZÀ³Ï$¸7#8BcæËåu]ïg\¬×¶×4D$
#8#8( |^{àÕ5Â9ÛTÝ[ÙµF´Vñn¦mþµC(¶Å`̦űLÔmEmh Ôh¨¦hÖJ̤fRi*Uf $9 A¹öð°¡ódd~öAcåZµêõ#.&¶Á%[Í¿Mü#è^ÑÙÁ³´8¼\é"Ñ?»H¹ÚÅ×)Ítê/3ZZj·åTÓkILµ[)³E¶û¾µj¸Úñ[¥~¶ê"V)O.ºMWu%nݤ¥mvTmm+%níÚekM¶ÊôÛjëii*#UvÔZh§ü¤9v,|`9F¾$ò%*C(#)Ú$d@$wu]Ø
«@CZ'YtäÏ.þ²øBÅò»ñN¨ø¬2ï_e0æ¢)+ftÊÙ×hÔ·|"9ã\äºÝ42ò¡÷¢Ú~Ù,Ôaã`Ôx\u¶f,XÆ9#8Þʤc¯#)Æ1é%@hi#8fV¬Ê öÊèHi#.÷0½x®FNî)«=¹Ë¤ÌßÒqËÔözg#Ll:´n°K»íßKtÏÛyZYRòCgGÄÜ2QÂãv½6º&®%C`étF«ªs¼æhu,°^ÔÐKEaXöèp¼ÙA,Ó.ëgÁ4ööâ #ó'O#8¬2vöÏ}aÖDï#)uL&Mã§7Ú#)Bþè?íýùyHî4íò#.¬#äÈ·$$sïy4N÷ÊÅ]Þ ÐÍA}ñMmcj-¡-¾j__kÉ#ûãüÅ4&XG* DD#8`¢Ûê÷gqI/¹9ü1EÆ@ùà kò³p÷êªW¿`½lÅhÂD£ÜX*&V*®oJòVøÔÞ¥Ó"#.5#.ñ#){iH#ñëFhCBþ#)ØaT]Q«ù$#)F#" ²I%Éâ(Bê¥E¥[H1z<ÆZ@II0í¨W»+ôR±ªð 1e£5i(ÙVÜCÕ¬"äIDQTb
B+/% "!qS`ûii-W#).e
BèÏ å¦ÙÝÊ0H"Â1<´¡@Æéøríi/z°éÁÛgÜ~<=èk[MlÌâ>ÀëkzßÑ4ºµH;vêmSpd9F1n߸ۼÂ_ (TâD^ÒÄ$# t¦âïÐÛ¨Á·¸Ý§vM#ݧàkUÏû 5Õ#.'Òãų¬ ûÕCÚB;w¸û Ì6Ç!HC¼ü¸8ó3îsEÁÇäÁc3=³×Ýl¬¬äòyâ«_j6½s¸Çû[ñЫ#)§<læù
Q40¸öoɲi|~ÄÍJWDHbäif&ÞÐôȵÕ{jG|}´ú`hüV ðX#TRÙäKèP9&ÔĸÞ`Æ#8¡¶²Â+aɱãó*&#÷Ö*PÔƼËbÚ]:¡R:áÙ;tAâEõÐ4#fZ7oF#)>$X¤=©~ _Ðþ@M3U²$d#8¢T@#8$F
"B¬#86ás¾¨ï;0´åùô#)#.±*¤ (©#Á!ê6Qà~/NöIÒf3j0[PÓ%hd%ª¦#)§5uç0´Êc)¶ñÖ±h ÅÁotÖhîuy¼GK¬;®.mÝÛ¤WKżm^(åM5ååÖ¹Ëfh²]VÝZŵæ«MNëj5b¦®©2VO:î2]w[»+®·E5×kº;6-rÔH´B¢,?¾@àÙ.#8¾ôÀ.L&ÐbönôpÏd2°-ÚÈ#.èý~Z4;ÔýýèZaÓ¬õ %ÁPï`%Áèú| ªt'fB>_Á¨)Ü7"`E Ýñ"0Xrìéô×mS^HÞ½E½ÜnöÚø5
Uh¿4/¹Ñ$úè@ ü~íéøû¤Üv²ko¾mÌÀmª%34¾t.TG¶"3µð,ÛR0Òu{yXDLHIAHA$rDOIáÅô*·Ãc`Ù\ê§]uÝK5fîµÍ·I}^o!ÖgÕV-¾©«Rg¼^>¢Hg jSÕ|ÿºå«ÀáI¡$bÄ
¦,ª¶#j×]UÚ|ÊÒVÌ
)PndÁúºtÆ¡D>aD(øñ/n>¢ @$E1B¬Æqû?\ÔôÖr!¨;À^U*@1 "YH #)^+Ϻ6:¨ è+ H°""² !G£Èx°2pnÛWß¿_Ë|E)I¤ª`¦¤ÛWðÔSZÕ*^¯Q#)QÆZM¶¦|+Ùj¡)ÎXûþaࡨH[à¿w]ö!µì.ÓÓÍÝ
×ür¼Y½bL° uú~×øo· $6/[#)ò£\>È5#.Î`_»u#.ä#)#6T8î9|ì¢s4>'aÁô06a#.:8\j#)¬l?kÍ
D¤,7#)Õ0®2Mf#8¡Á8ðH rl.ÕA¡&ÔQ1ª"´*ÀëI6*hÝ̨ePL"Ça¦±Úà5¼¨ñU˹FÞ¬1 #8ÆÑ¥õ¥clÎs'F(÷+Iê5v¬wr«áüBdi
ÃiuäcÂÀ 2É!~àª4eLr¬a.X±JaVD6,^åF"#)dê¸8èdÄŦѻ:·nM¡p 7qR'bWlÈå½~oÀvc!Ò¢ 9 ÒÓA0 8*2 CX&e8öü!Õ3ºÈQ>ÒF0°@à<b=`ÊF¢!#)©¦"©ïs[_\¶4¯¤ºõiâµÊØĤ& ¯3¤>yå#)Ô=NéÀ>E?Ì(µãÈú¦¯pTk²H[ÚøAi*-&©C§ÍM3Èìb Æ21aYÛ$Lp! ÷HÓFÁ0cKOxÔÌnÉ©]ÿN¦Q0bJc±ûçö*ÊtAvØ$¶k«OBPZþ2[jg÷·Þ-ÙÛ{ÕzyQ )ôOÏ°¼;Ï:#.I*ùrç£t,*#)l¨4óôA7ªH÷Ä@ #8H#)õÐÑTH£ ,ü)±ÓYä#8ä`úé°u¿dÅ¿CÕ@½÷Ñ¥µê?Ý·ìg[Ò_×e$Ñc$h5) OÕù¨Âols'D5*>@æÅwCuÕÔI§íw3xÐRþ ;¤J&[òûY ±[ë7È[,Æha²öïfRÎþùf7gI%*Uïa èãRb02ñG"ms˾V*¡æ¢Wt¸·]ä'Í#.Ù>0£ ¼è+@Vy´o Z|(¾h}ýâ®ãföïDëþô«x¤hBévð/Íq¶F#.¶ì(s±U»v_wt³Æ¸ÇfT_ åF©ÛLàm9UT`úHçe¡ðKÙóNAý?É1}Â5µ±Lè[UÀ$¦_oV1´C`ÀhNpeFª±Ç1¶D°V$X5£i*VÒm-0fPHgÍõ$"q;äËfEã2aßK( |Arb©»Fp&`=\ypÎk0§ôËÐpõ+ÚX/¬1rçÓ7ÅÙL×gdr>Øß}p¶Ø)Êjäj¦¯.G~ÇiNýVÊ)3öL«Óâ01ýuWÔhHÅdAÐ9å¶Æ¢ÌÌ7µ²
ÊR¡éÂú+áíèñþ6ARï΢¼ùªkÃ8M#8)w.C%¬Ï¦¢ö`p"Ç#)2îæzQì<Çy(ÂCïº ;|Ò
ãêR
0©ïÌ3>M»VÏ#.?as¹'t2!ù ñ£Ðo§7ÈlN¤suiMòòEì §i!XηÔÖC¾!LjW#)oû]"Âh"ÐcgîÉ>;Hý>ȨcJa#u#8T)».Ì%¤"ØÁQ#)áÍ#ðÍf 5E#ÊÉR`R>¥^äüÙýÌ>8clxàÓø°[øͦ¤ËkÛïÎÏ´f©¨³ìm¨%!£Uy,Xwjåw«O¾&¦ÅLáP9[ý×gÌ®ræ(O/ªkkÃ[3uÛ¾äè²È9"oúPéç4öÒȶ=zwñjN{±vGÛì`'j©ZkÚv¯âòC-Á"Pø6sѶÌ,®¦e0Â( #8¨,дÝ(5qt;b6¬n>*#¦ëy1@Û ²È#j+Ã¥"aÝl é±ô6üåÕ@1ÕÞ1éâµÂI!sÞe!.]K`óf;Y0ôe©Éby=îÈIhöèùqîÞA ½:qæL:gKy"Û°cì)Ǿ°ÂÛôpûû¾*Aä´:ó§
Þh²$´ECʧò$~#)ôÿ>6Ûúv²Þ·Ù6«hµJ±+pîÜZ®¨m÷y.pQ÷Sæ|ÉÜê«#ÃSØ}XúObvK ¿à|ý'amá¾x3 ×w¶g¨¤!yÛØü³9yCH²6=±Ù¢Y-º6¢Õ\(à<4bÏÈÁ^5YÙ!ñAjLÌÚPÄéû_¾ô>ÜKmçZ#.9Ía3#.pf¯¦Ák,͵ÊoOVa74¶q'~Eß5gËT#)µd_k[*Í]¬ÖùWá^TßO3ÕßɵǨ(rÏ|þ4Bt$¥¡iËU(w
!´Û3LüÖWóÝïÆéu¤AýlQòñg¢?/~ß@dJ
Tl)ªs.@d×F(52úVY @ ¸;ÁÄ7Ká>è(*f~ÅÎòÙjÏ~ØRæ¹C§¡R§÷¥håÈ¡]MÝЬBÒz Pл 1¡Jê@.àÊæÀýÂ=
< ù|öϦnIìsOø¢àöA7i@Pdê7jß+^Ô¸©t¤ÏZ¹á¦]¢¶MWbcgKûêÛ9ÌwL¿\ªEZmÆâ$s">zºÄ¦;êýãY<ÔddæÊD1Ëè³4ÒÛ}ï1pt÷ó¤*`¿Fkà±£À¡$ÙÈÑo®ùNZõ8Ñ-#.#8 ($`-kdì{n7PA-VT $ÁOuBF1~º9C>V´R#²Bß_Ùïð§«a«FXÚÏåËTk¶³m)¥¦¦Åj$ f¶¸1k^ìm`À×Gouâ¨!=ØûG)¦ý¾
KUD³3#-$iIB)°ÃRJ3&#e32efA&5)SHRkömô|=V¿¬kàÌtçLÇJls¹ÏÑ9i.HµLl£#8Ãk"g×:àá Æ#¹²yeB«ê«:îöûöDfÍ(ª©Ãðo0I=pæ+LjzH¥¢KD8õ)Ø¡F3>Sýg°ÊvÒlógWbhWH«.
n
³HºPö!#.drp±70e¤g(¢D¸´\{xÁS¢:x)q6-lo²£ dA}PÆ#.)!ÚU%È|H/±ûO#.Z¯pm¨4óéýa×êcÞ¢Ö pY¼"çƲD:ùÿv×JÉÖ¡²ØÒH)?qDFCU¶²n0CLp#I°0±T4#.¤"Ih\aÒÄ0I1Ĺºº®Éwµ×yi5WgkسÁ¶dXi#)VhQ¤øA xMP¶¢!Yqa¿Æ°RH(d5xÛk9§uºmµ·W¯åã|#¡-ð¢÷q í«´POupÍ6ßUÉbðŲáÆÿ!ºWìöÀÉûºÃ¶>`fUÑR2däÑçR_ȽKôP.Èh4¬,±Å#.PNÈ,2XDqÚfdY-b²bE$EK°CÝ[½²®]È¥×Nºz¶îYq@+@y$lRTm&JZ44ÔMd {I#8ÐݤÆÖ2*e¨¤Å±àAÆnCh¥D0jbÈ沨\*:Xó É7#x$Fn",TÊ4ä@©ÖÕGJ±²më-(ÍHc£qD Ñ)4(AÕ_#.½<æÖÓ¹³oZÖo(jï7»Iî4Bbml¦%bó1y4#Ê=M0#8ĤÈøu·lQUƼ#8ÕqÌ °$È8G#83(cQ±èÛg©%ÐÝóõ·lFDÁ(aq¸HÔfØfA:Î@qÀwT7HkS#%qd`ãCÍÚ 5Lcg]jÌMÅ$[Û4A¬!pæá.rèw#G¨ä«#).7È80ÈQ¤ãT`hdèS4 ÖÌ£"J(!¦&ÅÝ3o6j "kåøÈóÔè^¡Ý¨µ[$eRÀÝÎYª033b!#iX¡ÄU$[Ä#8QM4h YLiMÀ Ô{j±'Ý8LûÞèo&楦ÀC81U0Ô¹4DBH¤H4°¥zªð<{i@éb¤ È9ÌB&E\43» ²,f¼é540 ÑÐCä*5¦Õ1¶-äeÆ·IÐÀͳÊǦ aͦ £/5õÂÍZ¯#.ñ ¤ßÑ£HàÀt\ÔÆÛ= ¤ßs9iRQÈN°Ô5ÅÃNMºXâ8×µ¶.7Áb©"!gRf%£ß¤#)Ò\@cB(m*TPE"¥Á4lLPaº0M´.#)¦ëVÞpr¥IË#8g睊Ù*I±¶0Ýt5<+(¢Ã--¹À;È( ªHcBÔر2[_-ý6Ú¨z{;À,¡úWEåÔñ'ñð¿P²#)»vdÀ$¸u>¯êo3F }Æ¢] þ¸ê~8nÉa@d#(Ð7[#.
ì{ì(
#.NAàW"9ògºÆÐ/*Hȹ¥'à§àqHPÔÜ;ØÈBÉD»©£¬È·ºëÉüÖÞ=;g:Ø·WWK!iFà0rEA=
gÁ5 ¸ (»YM¦è,¤©HÊ|
Å*É©¬m/#9w¢!@m)×0ãÉþ÷дé{ºÝ,#.ï"źßq÷Ó²Þ³Ù»'d³¢&{]c40U.UzíШqñÈ1ĵ±ú^ú"¸$ø¸sn'A&ÓÖ gôªë#8éÔHfæñ-à^\µÊ"e:cs'2JÏÜv#8ïCTÄhûôZÚéd!X#
pV«ÝÉ×½°_Á g³¯ñ#õ=8îAxð÷>wV"7;(K{T5çO#8¬(-aÂb.zTèà!àd©Æ×¢{c&¸¯#N¤+§ädè'a¶ÔvÇ.0¸_EÎ#)rÁt|ó¿©Ùv¦ÛÒtÄ¢®öúÙ¸ÙéÌ8äR!<z'È,v$Vµ8ºEÏqÐpat¢#."ݽ¶hM©¿Kkó-½W½àIÛêÃ0j|ßú¸ñQÕ·-*¡',4ÛЦ2Ug½üâq:#)âké¿êÒ2ËdÐUOÛTJªgJ°¸¥Õ ][ºÝi=.Q·³Þ5{J·³m½bW§×6Õã¹h±¼W*ñµb ån×^#)6A ·*Fûò¡BÄ&4Ü`ÜmF±R,b#HA!¸âYkPo7@}1ÜÐ3âúOPyLöF¨Ì@#)s©âEm#)iUjôên"*]¤MýÛ»*¹~ÓÄÖ/ B¿B'²)HÌ#Þ ~Â#)M@÷OëRUN¤C ¾"Qv|ÿoy¾~W·f»n¹Ææ#(Nîòá^iq x"YUUI $i\#.Mkå[Ã^o6Ëjí`¶NF îDæE@d£ù|Cç#)¾ª °:©÷*T6¯DNd?#.Ëæ óQÊWg¨2û`ß3ó#8!ßÜmJ¿b_ ædôüå ÑKÐz¶l^ø&µî¿üÕ««WÕ³*5(Ú(Û&ÊQDQ¦"hlÍL±2H ±´3kQZ±¶ªm6ÆÙªX E¡ÀX$,=Ú»¢Å¶@ Àrc+&Â}XRà4Æ òXGiF ³ 4,+#.aÄ$$xÅÒ"L
,°l®!È6IYdZaC,@q00#.¤ %ARÑ#)UT"×^EòUR P ñüÙÚêêÁ-#8]µË.éD]©õ+µë«´TPh1HÚÐíÁBÓt JÙ¤ãõé5òVTûûåþ^f}¥ÏRUê¤U"@@ñ#.#.:Bv»#ã!(1ìéô7f¼¨ø&Û&( V5IZ²2 õMºÄ{"kð¤Ä7[T.DÁ×¥ÕPïã$;cK Õ5m ä·Í¥Ê½výÏj·5à ²#8«QVW,¬.ÜwûfK;Cóf¬3÷*B\O*ýYÁcZ×rkÚÅfjC×÷µÇCliÁ´å8áÏ£¹ÓkGõaÂeå#)ýu$rãÌLðÞ¯£ÜH꾦¿Ï¿§o#ôM¶Î×(éÉTZYÎÈ6âtNˬùAÔ_Wsnz]¡4ãK\BE´Ïq3IÒêN¶ßn¨ð"·B<<³Têík:'h_/æ§9#påÛ·DÜìM|9Ùu`:#8Ñ\â)-(ý!â¶?'h˹Öä;"eÙ3á÷D bà®w¶üQ¬ç]Q4ÁPÖñ2gcbÙ¹ÓSÙóµn¹ffÜ8B§NÚ£&oÓ©ôJâSÎëºÅ?ÂðÜÝúe«d1¢Ë¶O;9l3r¿ÇÔÚk³Â|[¢S¡¼4íD®5âøkµae¢ÜäqíüµWr_-ÃP! /+ *~2ü9gkó\pî/ÃJgÞ³ÚCÕ^ùµî÷§Ãºb<(¡ëák#.B#8J¦ªÜ@M@62/ô¹«^]úëx0yyþìùæ|Ó¦LéX^'£¶ÈI?ÄébtP)É£
ñìgðÉ®=cR9ïØ{S«c¢Rytút&´jãÁFN9~ÊUØý®W½»ùô/>¶ü]CÝQËÔ#6Ô¬æùòzÃÊñ»dô¤}½(Þo
füTVJû\Âñíïé×®{?ܤ#(FD²Láôª'¤KI;CêÎ:ë@xeØ868ÍM¿
ßBö3Á.\=ÝpõÕ6ßLÉ@ÁXr@Á'®7Î'[6CY8÷÷ìÆ6qÄ!unÊâ:qæ Htç2°t©Øâg`ÁÇ~)DFÜMÆJCÂ%»ÉÐÕÛ1láíÎûÉ°RpÎi[wBEar#¥CIº/4ê¶é#+FÕt;©u³ru£8ÑãGy¡µnøPmb8àrúgýJÙÜjMºnuòḴ#8&6àÒÎk®*;ë(v:&7&iä9³Öo`¨q k
ê-ËÆu ¾Æ>³ÛÙ°ç ¿;íO{K·c¿§Ogõå¹ÚþëÛy0Iá/Ë»<{u¢=^H:Ë®¨#8"Ýû,yÜËG§íI§aú¦Ün6#8ä&Æñ°¦Ùð(òÉ#83Â;¼I¼ Ĩ}OJUv"ßmÙI§-«ã8¹ðMu¯_õÁ·Vè2×.Ís?ÊG
÷;PVÔϤ>O}k¯§_?*ØAíào-ÜC q¢ :<.äê+]$r(FÝr1¹jÖÚhoÙÑ.ÏèjjGôêHld¸Û íè,òä8#ɪÞb0w£©"N8ã*dI\íÎ,òw1ɨ¯Ù%»Ü±?>© ÛEÙ#8
â©.Þ««ÄM¦jé¦ÀÞfÉê~f ALE=ÍäĵsÇ×£z?nqïÒö1%#DÙ\¢]#8k#.6Ár¡iFîBÃäbÆR,ºy·<ÂâF@é3HÂoëõìqtBÙÐÏa%#`Û´»}k*ÔíÍÎɹTèXu\»7¤AÎĺF{º-ºÖ×=uãx^ qT9ÎÆ8Ù¡>32ÎJNº#8sj\²) #8(@NÍ0Ë#.ú¿¤ñéxÍ3;v@ÜèñÉgCBÙPÑ×øBIÓÖj¡³bdvH#)ľͷ¾µ¢H#.kÖ·È!¥07faÐåºÓZúíXÕ¨L ôÅ#8!±ÕT nOf»¡'ÝmÃ×Ñía.òx¢7iRL²rQªà:AÕY.%ö\alØ1xÛ18¨ï1*8ÇBx®Èºïè(=A÷w1'ílê%â3ç ôÁ~ømA:©üßßpØF{M¤ÅIfí~#JXØNAg}¯g:ü´9~p8&£|ÆzÓRñAÝK/cºßw⺾þ\ø´\#'%sv¦¸v§z;FaQ©ñ¤ÝNn5o`#8$Ñ#)sÛKÓv}Ì'çr'4ÒÓó°FüCÕÁë}ÂHÙëOyL QÞãy|áÌ!ÄÎ ®"´;e¼äû t§WØ1>飣Ü)ð½JìÛA°zwóßqÊ!}zw×»éNÆU.¹ÏFɲma»aÃu±e"#.¶Yè Þÿ^#.`ÆÇzÞú~ïb]Ø<São --AÂQý2Bñì¶Þ0'òé8ytý=æýìÙé#.n¾Ôz0#óÜÝ¢áSZ*<J¹ÛcÈõWBg¡hѨ+Ó¥1úÊÍ2¦i¨Ä»UÒIë,¼yà#J2F ),bhc0g ÁU8îvAê¼Ï3M¢±ÐK¶VëÐðð4yò~glÉw1Éã&À&͹ٲÙQ-Ô»TÈ+»LÊÚ<ó1u|éĹe)
8ÙøÉÖLír{¶§SM hQ«¹\!Jg¢ÀG©B½Âá¡®Ê9_~&39;©V!°ô<`Ü#.Ëh"'zR¨M§0oß&˼Ãw`r#.ª#Ùg¢)³#G¤¿ô¶ÛÊÈëaCjxkòùoóÇßó·Á«ZÇë³Rñ¾7½ í¿~)æ5¦¢üYâ¡p H'Þá8óÒê§Ä½FáGOuÉ|³Ãîaç/ég^68xt¡áëZöÁÍÏjZ0$
ÑÒ1#8t1XÌrCTKÏD·¼ëw)IÉØÎ!ó%»0c3v ÀËdQ¦F*ŲfKJ¤aqÆÀ%2X«Æ$6¬kÍ®mG¥×OUæÖôÖ±kîksk3#.M·¦¸mQµk«¡ê§·W¾«H¡óT0Á"¢(ª(ÈT òf./3¯y4Ú%À:ÆÇTn¡Ó@®ÛeþƺÐÀðÔ¨R)ÑmUÒÜy¬²Új«_Z5¬6!$¢hbhúuV52
\+v}°Í}WXñËd¡ÔÒAÿ;8kÃiI0;-Z¢ê<V#.ßÛ÷Ö5[$VtL§Û4*¹$ù#82RDØÆ\=Vºlj)yñµäÐJAG $dQªà6TÁrùq§©Ã/3m"T'+·AêCÇ^¦Ísc¼WLëÕåà'¨kcHõT9Y¼ÁQõ|³láéñÄqBªìgzßY¹ÖÚÔw¸X¶º6pÒäP#.T°ÄfK-C°ÊÌzÛÕëIÄÉÅ1eÌ#®V¸[/ñs1Aâã¨åò³Î6°j",àȱÖ6¸ÖÔèfonDÜÞí2FÛQ6Rµbm© eÜ·Z¹z1Têí:ÎÇj±8:¤5H##8AJtÜK#82(b,IV*Àf¨2kKµIRjº¼2#8!áÀ:ÌàÕij Í-Lp0ÉvkcyLº&Ìm¢ôù×4)v԰ݵvÛxií*JpMà`Å3®¡¢=C8JÓ6Ô¤ je*¢
XaÄM0laXÆÞj,¸R7/<]-0»ÈÁÅÀÉB³b&¦¡¦é!E¸Ç4ݶa-[)3 Àv(+Yÿ¢pae÷Þr.5!kd Aá0<ÚU(ÖeU¸FÊî Îqpe7f
ÓR\âèe £*Û Ô-
#8¡µu2V:Ã
«£¾i¶pa<5°sV½R«Ë28t"'®G¥×F[ Õ¥lʪ©µ@¡ÈÌTXⲶåÍÅ@t|&¬D÷"×{UqNé´ªïÞ.N©-Ç-91Üæ¶ëCá½,-J`pÍ:_ÛF÷aZ³ JFÙÜ$éÝ)µdv44I£$b"ÝaMã.ÈW§ii'Ȩ`¨×]Z·Ò#8ƺPùdÛCìb#xhsµF7^BsgÒûaø#8¨0F"0P¥ì.èØ0`ÚüÃoü¾ ËRo7o'çû{I6¹}íÚ¨$OY¨sêh¬Äö*5;k.¦b¥1ÝÀr(0UU(É_aSÕ%|Í^#.s/L~nk;©á6ÝÂ{IíêE#.>¾àÝ ; $N#.¤2ÀÀóè{=B~[z¿»¦`A¸í5î·:Õ¹LrCµM;û¼³=;"
%K5\:ÛxHÆÐÔ6"¨TÃxöki]5
EÀµR£V5AæÄ[;^Þ3¯I{ܨò·Ê iÐáÎ¥B k2ÙMT?Lüñ$ý'~þjny×_2xôSÞ?RR
xòªH#8ázâTa³T¬ÙkQ%äÛrÕ\Þ*BÄ@éM?TÂyzH§ã<{<e¿ô¦*VTlÒU´Vj#T(Ù,¤Â3k,ÚjY±kXÙe&ؤÅ1¥¢¦P³Jb ¥h-¤£cMÑfÒ¥*#8²e
¡#%cµ¿¥zú¼óËâFáÈ_\q öóç¼ûfõumÍîÞ¨ü^C©³TßÞ"ç¹üóB0÷Î#8Ú'LPYëÒ²HuÚA-Ëø#.##d{øzR%Ý¡¶és2ÃmvÜ/áF2Ýæ döÍ¥NgF½IË/G"ËäÞKB¨/×åðÑ@}{:ÖkÂ$"RVèêÂ!sû®¤D·¿b*µÌvéý«jßÈÖ66ÒkEJÕ®[1¬)0EY2ß~v$VR1GÎBÀ¹í#. øÄÙ¤#8~\DFO«ôÒàòoæ\5"j&DFà²c÷ÐçÛFÁ¨Ë+9££-ÍØå&"FÍÀÓH±yº&]`L!0À#.#¬]a[ ¡AUæ¦j´Jb¨e¢`¬©cæ-}1`ÑOZ%«MQVZw½%(4QÄÈÈBT$W Û{õ7MMbí÷E1w"YLj$#ÃCdNÆÀ#8ñÙ\µÅå7Ùå¯ô²¿ðâåd· 8Ï]HÑpq_\6,("%ÙÂ7$ºmn! ¡ªð$,ée\©2
È·HDI#
ENî=t!ÉT4Ð0¥(¤IYèë,úk(}æ[|¤MÓßRб9·hÌÔC1Ï#)âîÓ öJ=m|0 hùüÊt¬½{(¦öQº¦ìCÖ
JÑE|ê-¬Ñ³ÌúÊðfþ;#8ÌÜ@!½BÛÈk|ÑÝÑýçªón7RTQnáYú<|_bÌî:K8VÏ´2gGFúÁµòi4°ï8Ùmüæ#Ì8Bôùå£æ~:xc? ܱSæsrWJñÆËÇ©EÁ®s¹qÓ*I¤±+5Ö¼UçiN!3ts0#8øüèk¬+ìe×Íï¥dRTèÁÜ÷ $OR\nàNûríCã궦ÕO[¼áwo@ÂH#80ò(ª%ø0::!²Áê$À¨k£¾Hd³CO
XïÐo
Ø#DûýmÓY oªJ22}Ûþn¨ªDïè¿Wèüj¦´±j$MLóÛ÷sðW#8ÇO3/æ6&\#)|)#.Å$9?¤U{¾°1s?ײ%¬É§ýmyatbQµXy=`OrskçÛ¤I õUÚvìmwG¦Á8w #)C»·Z8<]~IÄJ*é-ñ#.öÜ U§¢]Bö äÖñÖ¶d#.q#.¨ÖÜéháÁúÛ£&ÄGðw¶XåR#»Êªt©áFêEU6\Tnãï8¬açwÖ²4Ì0Ö5&!@TA#82 YIºã{Ó#8HÒ͵?aiX-"?¬D¨¨Ó@¦·§8S¦¬¢e²ù`È0»á%رbB9³")ppd¡#.ÚQ²#.ÔÚÑÒø"ªe.Difú#)ÌÔµï#)3¯;7 ÚÙHc¦RĹZq¶çn¼|#¢)ZiU j:C¡VÛv¨³D¨!6(æz¬ÌÀ1@ÁI¦jAÜ(Ó´Olã%¤ÊÔ¶½2#.lE iÛÚ`áQ"Ü£n0Þ@ÖrQQÙ2m¨gY¬¨@ѳ3W,Ê5©ÅÏÅõÆË!º_5ºçA°ÐSJ±T=©d#³º,e¶N5.ú'ó²õmÐ#8,Àï©Dk¢ aK¶Á×´«|_·x)´õ#.Út
¶è)Û{A3ÖJ»s¡0Åll@Ä JUÄÑ&$#8@µ%]
ÁBq Q#.²h§
í
r©Ô¸é+¢°é¦<eéå\XS=AÆôyïveqÛ1N·rÊ4H·ÕBpnv*&6d3@¨®6Ò\!Ç=Q]60`Æu»Û0´±*(zft´ÚT!©#)\¹Í:!HS$0βØ#.1>G¢¸"±iØÖ2ÍÐi#.ÛNÁ#8&)Tdðæu'SYÝ®¼Í&èç¦ÖnkHÈ+cNSÜQØ4'§vdXܦMÓöA[¤ØÌ3¢l"D¥o#8Ùå]*ª®TcPQ.¡8ñ´}ÜðU^RUÐXÊUÔ¹oWÉå8zæhq¦÷£¬+Å#.ºHCQ»®Zím×)nû7¥ÈÁû¾u5¾u«ÂTî$® ÙöaSKx(Æa¹IoIÍã¶ðM¿R3,&iÙÌ)èåÄâ¶êÀ
ìºé°²+ f@ úS>©Ä.§ú5Ä"u0æí-0Äx8ëSj²p #.HM4ø2£vbCtØ9)Úù³sÞKµ¬³4(qtc@
«£®qiäç4Ã[6aìc¢|¦9øìWcë=ð0ÃKU喝&lzÀH:èf(¦6,6C:i´#)s±&«IBE©XU9üqlbÜâXLÆbHÓ
F.UÒD!!ϧ;³Ím<`ÆÉÙ¢jQÊ¥#.4¨,VNó©Ùõ¼¸m¹Fõ´KÛÃ9ÌÃecdÓ0cnMTqØòÄ!¨6)#)0¸#8èu`Ê7Eÿµ¦-³ÍCÖ"â[òí0·è¾¾« $"-Ãts¨èÞ^ÃHϯ¬Ô9smc#+qnéòB3Qß16µæ#8ÙV^Ä·p¯XagÍeÂ#87w°j>9må[7õXS)HäyY^ý³bMÈP*MjGÌP8¹ëlÔ|ÄRlaÚDmÜ.è74V-kÃ×uñ´ojr>ɾäÆÛubÖý4p·³/Z$ÀÁ¤Ød(Á4ÑZ.ÝMlÔáÍá{!1³¦ô¨lÞèæO¦`è`8Cá¶êtç:&zxøã ÍZÒ½¥Ôi6k|
3ûp¹pgKhÍÅg+¸ÁÆc¯m6vrä#.ö´4B@Tð««»©ÈTxÒºpì(|)+@×اhJ'BÇpDDa*d×#)4_K#8ÑÔ#./Ñêò1[§ñ6>ÊjQ«H2hbêyÐQ®*7p6lü Þñï$ÁZò@dÙ³JÊÚm@v7:!f+s-¨Ñ#)t0@ÐÈmgN&·[%¡/ÀÂÝÔÆ°bETcQª`dªÜäz]K-ui<R-YR¤!{asP]¶F
iE; ÑÖað3bhê'qR#Æ#.Á9uTUSST¸9À3©I#)`6LLK®æ¨Í$.±¹50ÅÐ2$T°!ÞªlìuðG,ìt"á#(î6*É0RX,Àl8" Õ@úÉìöô<{ì¥Ê0J¢¢*ùM7(ê³óuÉêxöò"¨C°5DT¨½Wëáü<ûm
Pògu/òwìHE#8Ä·ìöe-õÔ¤ÚDCç(§SyMe=ä;;b#dðmÆ[b-õ\oÓRØÒg/¦îèb²/~öþð4(®
ÂN?w³ÆæÜðÓLùBÂ@9FC;ª°½&g®¬'MÈ$¦9tÛ èbÈcöyè¹;æÐáÎeVT MøL ªNh4P}öY~C6²uö@§¨1!îìtwl|¹TÇ\sOÔÖÔîð*SÆ eA7þ´6
ÂÄÙ|ôUF¢W£d]0ú'k¼Í7ulÌi:áG`HÅõ¯¯Å#)¯²¹1ó¢tq¾Dʹï®Øö¡îe'ÙÝaw9t6Úx:D#)ûd@Ù7*¡ïKÄ4Ç6HAï°î63TäÞÌhÅRȱ¤ªX2ô¼²FI«yÞówa·¤#8ëbØò±dxP©B Ø#,Ð
,)#.#)4l²¡©ÃßdÑ8+²¥=4£9½8ã<í÷£ÌÉp00dh%³*$Á!Â>^°ìíOgwOtËÀï×fài×N@s%¼ÎøÂø¤«JÐï¾Å³aÀ&%JE-ÌÆ2ÔQVè,^Òý¡1|63kã2É]|Ä âP#)xï;º@éq Ô{g±ÞTU£®9Î1Í)ªòÄ
þÖc¸Ð1íî+Aïvì!§8güiÓÝeëùèÔj»#8L¹gîMO°Jnºnbë1SS®1Ù:hNj n{.x!hI¥^ätN¿ºR{þjÉNZ16ÅÉ?Äö¦Pj
©÷9Þ:`3ÔÊÈ£p§o#8èêèVÞmjUVP¥©JýÊmµ&Ôë\´j·¼¶±X#8$°#.#.àÐ0`jî,RìaÉ$H¹îõP±#.´!ÛF3'ú²E_p¬\Ój÷ÔU4mÒqdA"ÁI $ !3¶~=<¡ó©¢=ÔÎX1å#)#)$I]{G¿nNÍ+|kY¸hb0»6c¸I¢À
î#8J$%s$&Öº\#¤B+.e#8(ÅGjq¸6'$ªëxÚ¹¢®å¨®ómeÄA,Á)Á@È¡8ÒpÖYíP$6Ú±#) ÁÀo&E«íPOOAØyø½[FÊ|pN¯Þ}î+À,;K0&0µ
th|©bf{#.7ögKdíu]¤.Bõå qôÔì8~¥ª7ÐÄ/\¶Ù'¿US/Kk§·ËÃAzäñáÒLÌéå#.¨*@ÑfLâ;~ëI*7ÝåXä³:ïæ%£ »ÊNôÒ3[n#8¢#8ÈÓeã¶¶× ÈE]{¡Vº/f#8ÊHØ¡Â×ð¤Ëâ .;hÈ}4êÁñ{OaPØkë,a2%Ê$ÕuæïÌqg¨
É/Á±óçÔAçPNçß½Ä}ä_ÏtÒ¥m3if¦SL´f*jÍC*6mH×ìlk[¥ºRj×#(¨#.!¡à'qö×»UwªÉÑ'ÀÜy#86;Tó»PãëÉ]f]#)ièR[ú°öÛ MðI@Ð'Ä#ª'G`uìC5#)îñSÚÿ~@:EÝ[I$:N¿'YÓéÖÞC0©¦øýk ®¡LCD»ÃÅpAõsÓbйú ߣ3Ï#.ÂöÚ[Ô1; ¦Åaf¬tçQ+ÅïÄK
ÌÓH<&6Ã3H[ÃZ%µXU³@ìqߢîÅËCé}£TÝ7èXÖq¹¹¦tØN&sÝôÛ*:k}7¤ ÓRÂÇSRËGäÚîôÀüFuTX0|à#&ºMQa@¢ © £ðŸ%SJÒi(¶0C}õ_¬MܲR~Ë´MG"iv²=|¤¥G¬ëmÚºú#)¤È[â ü «z3åÓñoì!ãÑ×Å3uCªcP@Í2=iÁO#8&H*îzãÕË óhÿ1J-uGa!È0r¬õ¼j#.zxõ§>Zݺ=^Z¦kÑ"ë26ÈÿLî>F´õ}°º¤³Õû`åÌV]ôe#8©R3Fe!K«Üggï7sBwï¿ú¢æö¥§sCT@²ËY3ðw¨5¥$Hß×E:oÞãøRѹÍ|¥}ÅT<A½"| m"wÈR'¾×jõ¼¦¾¿§åml¯/½ XÖC" ó¹E}û©¶Ä[aø#.XZ-I "Øl¶!jõ®Ý<ÑhÈÆæ»56Ó+k²Sù aP{DÎM¡#)Sí&í¿/yºø$@!º¸8¼Ë¤7T3c_ôb´®Àì;Ad"ÂA²Ô^¶×æ¾íµ^ß\Z%J$*MY,Ó%³I-_oíÆÅôU|¿z5ÆÊcIQ´¥4_eoòwyB/zñ>¨4úá)k¯Ø3A¸Bàù¶ s@ê*ÉÔ~h³S(ª)f2j&Öm[E¥¦E¤õçj¤µKMÚ·×ÕWÀ²!n
ÙþÏ9 uwÞùþ_¬Ã³"I⯠6<Èx«éÚ}ZXàìÛvAóA~åSÀ0í#.n<QÊs3Îc%$OH.潿5U¬D²HNM?PÃë,+ÛFøf`0Ml-À_Ã¥Ñâjz4CtRA(ìß»<³n3ÔÀä(zK#8d"t§±h/°P)JMÄu%,!árj©VÙ5Nï© "\ØÛwa@TÇü@5¢P¬ÁæØQU4xÂ@D¦ü6/Ýäpy~2GaÂóµëêAP<ÓÁiðvðP¶ufå¥#bsòP/À@·KÒ`°àGsÜ8¸#.rÚ_kÁ+ûqáà×?ÏR(Ù
ûMp±îPyçÿ@?ù6Úº¿5_4¿/,ÍÅ4XÔ±jgÝÚß[W°¢¬ )Sê#æD³ã"Ya>àét$b!T²&LhòÑMN^;,BÊ¡A°Ý´Ì÷Ï¢8]Ûahï» ¤Q?x(Em¤Ú¬a6ÓeY@Áð6¾]͵ge#8ªQ)Æß7ÛÛ-[å¯Å<ä$\d-à)½»Ô9²j
L²}jûy#.Ùlá¥^d)[Zl,#. JJ¿îØI²eR)%" »JR7ºK`,(±¢ÓJ0@+e¢H¦È%¢8Kèày{¤29ÄȬK;h+a0eï¨ÔÏY*¦Ûwè÷¼¯®ÞK©H~) ¢²¸1¦ùÁ#.ÓPN°K²Ø¬:¤¢2(D PH4VCjF@ƨCNÅ»532«¹ÖÓJJõÝ®sh¬©SQFÆ·Û^#¨L¡A¼äv6¢dh`ÆÚ6[e-Ji̵ÓnÝA)¤)AB¤¤3[Hq:`]è2ÖÉp´Wgî7gû0«³GÇUífâÜaSDà^Íccä"§5AeXkÛ§gy»¼dAÐ @NÕòvßãS\#8lfF0§Ò«û3ç ¢*#8µâk¯N8LÕ² ËUHÊ7ÍפtVD¬äU$è!pÈf(¬ß}ÿ99ÒßÉèmÆXoÅÒÛ [84&qÜìñïû.üé|%i¬KÐÒ©,ûB <h)ÄÀv*EqpdOtº¯Ù#)4"à¿#.s«§ª[^kÜÃ+ά˹q0@¬írB¶·¸lpz¬MU\ÍE®¤¸ DðñàéÛ4íx{¸!¾ÉpdLT\îir.HD¢1Hd¸&'éÈÝ_&'|¿^²¢°Cd{å(%¥ÜÐöÄ áó0ÆUúìå!H©3´1¹°÷æH"rïS¢hÜþÊV¤#S4{ÿ^yã¤/YÕ¥êeVÃùíñ¶ÝÔ&ÔííWÎgF8T'Le·k
^0j#.ÐØÈõ«nýQ'HC¦E`ø,µ®Û à!¯É3F·
TÌ#.
<º¤ñKü%r3<k ?=HÙ#)®(ÿ #äO«¼2BiÅ¿!N&àZ=°Á¬ñöõ¹ÞæM²Bu~#«ìõÙϸËQú¬¸R~Ím¢:}#."¦©< X¡7 uäÉÓò7Wyz¨ªÒ®[¿|·¨zû²îÙ³Ó}4×#8¡*¹°ÝéÙe¬L~h¾(A'û¿êÿÿ·û>ûÿúÓÿ«þýÿ?ßÿO/
¿øíÿçÃþÏú¿ûÿ·üÿíÿ»ÿ×ýÿþþÏðÿ·þ_ÿ:ÿßþÿêÿ»§þßÿ¿¯WþgÓÿwýòÿ_ü?ýÿëÿùÿÛþ_÷÷ßÿïïÿý?ú~Ïÿ?òñÿçðëýKþÊ?/Õúÿpo¿ö?ùành@MØÙÑ5*áþÌý½"Y?{ýè©#.#_ß$#.kï^F¿e¿ñù㻦L$`FÔë0rÀ5µÒïEP¦»B»M¢ãÄä
ME8b.ùß¿áþºH"£þ|4Üé>!qG©ïÿ"Ub0æν°î«ãva1dz#)c
Wå¡LîÖùoüóý\¿Íç,±øë¹4¡åOíèKÂcýCqPX¤hHI#)mëúxÍ@o|xv¿úçvsÃ\f¦8Ej3©Vgú]ou¦HA}zö´ÛÞ¦Á´¬`àwñJâc6.#.jÈ¡Ü´o{ǼTiöYPUßÓ;¸-2¬ZIÅ4®4mÙ®Ò3¦º5Yw7%aº¢íѽm0ÓC`¡açQýÖqÉîÞbÝY¯tºá®·ÌÈ?o&±db:4lê68ue9#.¯¦¸Õö6©5CµìÙ¼ÌY³DÁ¦.w1«k##µnWÚ0DcåF+VîºÉm{æ¬Û᫤ÚÈSNÊý/kþÑb¾ª@|±²Þ{ëÕ3ÁP¶ð3É#vIX¡vù£xÈpÜÄ°*âÀ9§·Ý÷ÎW`âΪÊ6»&× þ^]8v~2ø&¼¤[¦E8É¢0ZvÕ)#Rû¶qÝqNÝÛºFÈHÈ&ÍÎùpÉ8Õ =êÈ$äKî¹d#8ÈH(1$ÏÊC¾~k²«$3»Ö@õz/k¥ï|CÿíÌÌúl<òw^[; ,ç²[ïûüo}~¤Ú*¬Á¡B Úm)µÔLf*1føݪëV×ÒÙ,Aï¹ösiþ$Vç:,X«CõîRôƯÚ}ÙW»Õ9ªí²²Ï¨|»Ë]0ÿ¢F2H'ĬK!ñsêO6?ðN ¶éýX2È<<OÃG?å8ÊUÇÇJßFÛÃ#8mMZüªe_h>%-®áÕ:R[ªTú½ .ô"íMòwÜÚË/QOòxÂ0¤ÁÔ±ãå×F2(¦J²½,3Pl{gn%ÏD$µäk_ÃfôsKhÊRÖí
$#.ÙQ0;XNh%%ÝÂ6å¯JÞ+K#.ZRÛ^7³UxÚbØÕZ4[ Ã[¸$Æðcvè×Sâ%*9ÿºÿ¬¸ñ#$Pí.î#8 fò«< rÂFINÞáqÿ|ÅQá*¶HÈúbÓ¼(<Æ}Vì!ǺÎÉ! HN#ä]H oò{ò\Þw£êä'd0¿õ#)®"âl÷ÀBDE7;ÞvMA! J0$
+!R#.Þh+"a#)ªH) 侯vGÉûþ±çâÛ¹9ÙЧ< 4,¹5íª,1-K&,J ÏyIáõ}Ïõ#)¨IÙöEÙ2.fy "þzV«ÿY§÷uÌ~?ú#8¨~ïÍÿ»2BSõÐiãÿe¹},÷õì¿·AoÛ_úþ<wÛÿd4úçóý0ËO-WV\εWÊ;ïê¥o<O|%Ì [éõyøøè4î8¹ÿãqòòï2ãýýq¼r ø"ïQ\BÀlLÉ7fµ?îô¡¥5¶Í÷zÊ5üÂRò]¯þô#ͦÕãvÿá?ïÉ£ç©K¦zãS8 ùj¸áË5ïpCÙóÑ9vØLed§0~îeÂ7¬µg~¢qQ-fÑ¢iÝëÏÖ((#.ï¦Pö`¦Ã4KùG¿îIhöç&}¾?¾þ¿úÞ
³ÍìvÇOkÞÔF0ÐþìíöÈÇÛúP/ÿÅÜN$#z®w#)
+#<==
diff --git a/wscript b/wscript
new file mode 100644
index 0000000..efbb69f
--- /dev/null
+++ b/wscript
@@ -0,0 +1,87 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+"""
+Copyright (c) 2014-2015, Regents of the University of California,
+ Arizona Board of Regents,
+ Colorado State University,
+ University Pierre & Marie Curie, Sorbonne University,
+ Washington University in St. Louis,
+ Beijing Institute of Technology
+
+This file is part of NFD (Named Data Networking Forwarding Daemon).
+See AUTHORS.md for complete list of NFD authors and contributors.
+
+NFD is free software: you can redistribute it and/or modify it under the terms
+of the GNU General Public License as published by the Free Software Foundation,
+either version 3 of the License, or (at your option) any later version.
+
+NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
+"""
+
+
+VERSION='0.1'
+APPNAME='ndn-atmos'
+
+from waflib import Configure, Utils, Logs, Context
+import os
+
+def options(opt):
+ opt.load(['compiler_cxx', 'gnu_dirs'])
+
+ opt.load(['default-compiler-flags', 'boost'],
+ tooldir=['.waf-tools'])
+
+ opt = opt.add_option_group('ndn-atmos Options')
+
+ opt.add_option('--with-tests', action='store_true', default=False,
+ dest='with_tests', help='''build unit tests''')
+
+def configure(conf):
+ conf.load(['compiler_cxx', 'default-compiler-flags', 'boost', 'gnu_dirs'])
+
+ conf.find_program('bash', var='BASH')
+
+ if not os.environ.has_key('PKG_CONFIG_PATH'):
+ os.environ['PKG_CONFIG_PATH'] = ':'.join([
+ '/usr/local/lib/pkgconfig',
+ '/opt/local/lib/pkgconfig'])
+
+ conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
+ uselib_store='NDN_CXX', mandatory=True)
+
+ conf.check_cfg (package='ChronoSync', args=['ChronoSync >= 0.1', '--cflags', '--libs'],
+ uselib_store='SYNC', mandatory=True)
+
+ boost_libs = 'system random thread filesystem'
+
+ if conf.options.with_tests:
+ conf.env['WITH_TESTS'] = 1
+ conf.define('WITH_TESTS', 1);
+ boost_libs += ' unit_test_framework'
+
+ conf.check_boost(lib=boost_libs, mandatory=True)
+ if conf.env.BOOST_VERSION_NUMBER < 104800:
+ Logs.error("Minimum required boost version is 1.48.0")
+ Logs.error("Please upgrade your distribution or install custom boost libraries" +
+ " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
+ return
+
+ conf.write_config_header('config.h')
+
+def build (bld):
+ bld(
+ target="bin/ndn-atmos",
+ features=['cxx', 'cxxprogram'],
+ source=bld.path.ant_glob(['catalog/src/*.cpp']),
+ includes="catalog/src .",
+ use="ndn-cxx BOOST SYNC"
+ )
+
+ # Catalog unit tests
+ if bld.env['WITH_TESTS']:
+ bld.recurse('catalog/tests')