build: Setup building system

Change-Id: I74069e0977c637e171c9cdeb7765e54b5bd9f28f
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..fc3231c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+# Emacs temp files
+*~
+
+# Mac OSX
+.DS_*
+
+# waf build system
+.waf-1*
+.waf3-*
+.lock*
+build/
+
+# Compiled python code
+**/*.pyc
diff --git a/.waf-tools/boost.py b/.waf-tools/boost.py
new file mode 100644
index 0000000..8c36b34
--- /dev/null
+++ b/.waf-tools/boost.py
@@ -0,0 +1,381 @@
+#!/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', '/opt/ndn/lib']
+BOOST_INCLUDES = ['/usr/include', '/usr/local/include', '/opt/local/include', '/sw/include',
+                  '/usr/local/ndn/include', '/opt/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/cryptopp.py b/.waf-tools/cryptopp.py
new file mode 100644
index 0000000..320c81f
--- /dev/null
+++ b/.waf-tools/cryptopp.py
@@ -0,0 +1,91 @@
+#! /usr/bin/env python
+# encoding: utf-8
+
+'''
+
+When using this tool, the wscript will look like:
+
+    def options(opt):
+        opt.load('compiler_cxx cryptopp')
+
+    def configure(conf):
+        conf.load('compiler_cxx cryptopp')
+        conf.check_cryptopp()
+
+    def build(bld):
+        bld(source='main.cpp', target='app', use='CRYPTOPP')
+
+Options are generated, in order to specify the location of cryptopp includes/libraries.
+
+
+'''
+import sys
+import re
+from waflib import Utils,Logs,Errors
+from waflib.Configure import conf
+CRYPTOPP_DIR = ['/usr', '/usr/local', '/opt/local', '/sw', '/usr/local/ndn', '/opt/ndn']
+CRYPTOPP_VERSION_FILE = 'config.h'
+
+def options(opt):
+    opt.add_option('--with-cryptopp', type='string', default=None, dest='cryptopp_dir',
+                   help='''Path to where CryptoPP is installed, e.g., /usr/local''')
+
+@conf
+def __cryptopp_get_version_file(self, dir):
+    try:
+        return self.root.find_dir(dir).find_node('%s/%s' % ('include/cryptopp',
+                                                            CRYPTOPP_VERSION_FILE))
+    except:
+        return None
+
+@conf
+def __cryptopp_find_root_and_version_file(self, *k, **kw):
+    root = k and k[0] or kw.get('path', self.options.cryptopp_dir)
+
+    file = self.__cryptopp_get_version_file(root)
+    if root and file:
+        return (root, file)
+    for dir in CRYPTOPP_DIR:
+        file = self.__cryptopp_get_version_file(dir)
+        if file:
+            return (dir, file)
+
+    if root:
+        self.fatal('CryptoPP not found in %s' % root)
+    else:
+        self.fatal('CryptoPP not found, please provide a --with-cryptopp=PATH argument (see help)')
+
+@conf
+def check_cryptopp(self, *k, **kw):
+    if not self.env['CXX']:
+        self.fatal('Load a c++ compiler first, e.g., conf.load("compiler_cxx")')
+
+    var = kw.get('uselib_store', 'CRYPTOPP')
+    mandatory = kw.get('mandatory', True)
+
+    use = kw.get('use', 'PTHREAD')
+
+    self.start_msg('Checking Crypto++ lib')
+    (root, file) = self.__cryptopp_find_root_and_version_file(*k, **kw)
+
+    try:
+        txt = file.read()
+        re_version = re.compile('^#define\\s+CRYPTOPP_VERSION\\s+(.*)', re.M)
+        match = re_version.search(txt)
+
+        if match:
+            self.env.CRYPTOPP_VERSION = match.group(1)
+            self.end_msg(self.env.CRYPTOPP_VERSION)
+        else:
+            self.fatal('CryptoPP files are present, but are not recognizable')
+    except:
+        self.fatal('CryptoPP not found or is not usable')
+
+    val = self.check_cxx(msg='Checking if CryptoPP library works',
+                         header_name='cryptopp/config.h',
+                         lib='cryptopp',
+                         includes="%s/include" % root,
+                         libpath="%s/lib" % root,
+                         mandatory=mandatory,
+                         use=use,
+                         uselib_store=var)
diff --git a/.waf-tools/default-compiler-flags.py b/.waf-tools/default-compiler-flags.py
new file mode 100644
index 0000000..bdf3b19
--- /dev/null
+++ b/.waf-tools/default-compiler-flags.py
@@ -0,0 +1,59 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+from waflib import Logs, Configure
+
+def options(opt):
+    opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
+                   help='''Compile in debugging mode without all optimizations (-O0)''')
+    opt.add_option('--with-c++11', action='store_true', default=False, dest='use_cxx11',
+                   help='''Use C++ 11 features if available in the compiler''')
+
+def configure(conf):
+    areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
+    defaultFlags = []
+
+    if conf.options.use_cxx11:
+        defaultFlags += ['-std=c++0x', '-std=c++11']
+    else:
+        defaultFlags += ['-std=c++03']
+
+    defaultFlags += ['-pedantic', '-Wall', '-Wno-long-long', '-Wno-unneeded-internal-declaration']
+
+    if conf.options.debug:
+        conf.define('_DEBUG', 1)
+        defaultFlags += ['-O0',
+                         '-Og', # gcc >= 4.8
+                         '-g3',
+                         '-fcolor-diagnostics', # clang
+                         '-fdiagnostics-color', # gcc >= 4.9
+                         '-Werror',
+                         '-Wno-error=deprecated-register',
+                         '-Wno-error=maybe-uninitialized', # Bug #1615
+                        ]
+        if areCustomCxxflagsPresent:
+            missingFlags = [x for x in defaultFlags 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:
+            conf.add_supported_cxxflags(defaultFlags)
+    else:
+        defaultFlags += ['-O2', '-g']
+        if not areCustomCxxflagsPresent:
+            conf.add_supported_cxxflags(defaultFlags)
+
+@Configure.conf
+def add_supported_cxxflags(self, cxxflags):
+    """
+    Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
+    """
+    self.start_msg('Checking allowed flags for c++ compiler')
+
+    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
diff --git a/.waf-tools/doxygen.py b/.waf-tools/doxygen.py
new file mode 100644
index 0000000..ac8c70b
--- /dev/null
+++ b/.waf-tools/doxygen.py
@@ -0,0 +1,214 @@
+#! /usr/bin/env python
+# encoding: UTF-8
+# Thomas Nagy 2008-2010 (ita)
+
+"""
+
+Doxygen support
+
+Variables passed to bld():
+* doxyfile -- the Doxyfile to use
+
+When using this tool, the wscript will look like:
+
+	def options(opt):
+		opt.load('doxygen')
+
+	def configure(conf):
+		conf.load('doxygen')
+		# check conf.env.DOXYGEN, if it is mandatory
+
+	def build(bld):
+		if bld.env.DOXYGEN:
+			bld(features="doxygen", doxyfile='Doxyfile', ...)
+
+        def doxygen(bld):
+		if bld.env.DOXYGEN:
+			bld(features="doxygen", doxyfile='Doxyfile', ...)
+"""
+
+from fnmatch import fnmatchcase
+import os, os.path, re, stat
+from waflib import Task, Utils, Node, Logs, Errors, Build
+from waflib.TaskGen import feature
+
+DOXY_STR = '"${DOXYGEN}" - '
+DOXY_FMTS = 'html latex man rft xml'.split()
+DOXY_FILE_PATTERNS = '*.' + ' *.'.join('''
+c cc cxx cpp c++ java ii ixx ipp i++ inl h hh hxx hpp h++ idl odl cs php php3
+inc m mm py f90c cc cxx cpp c++ java ii ixx ipp i++ inl h hh hxx
+'''.split())
+
+re_rl = re.compile('\\\\\r*\n', re.MULTILINE)
+re_nl = re.compile('\r*\n', re.M)
+def parse_doxy(txt):
+	tbl = {}
+	txt   = re_rl.sub('', txt)
+	lines = re_nl.split(txt)
+	for x in lines:
+		x = x.strip()
+		if not x or x.startswith('#') or x.find('=') < 0:
+			continue
+		if x.find('+=') >= 0:
+			tmp = x.split('+=')
+			key = tmp[0].strip()
+			if key in tbl:
+				tbl[key] += ' ' + '+='.join(tmp[1:]).strip()
+			else:
+				tbl[key] = '+='.join(tmp[1:]).strip()
+		else:
+			tmp = x.split('=')
+			tbl[tmp[0].strip()] = '='.join(tmp[1:]).strip()
+	return tbl
+
+class doxygen(Task.Task):
+	vars  = ['DOXYGEN', 'DOXYFLAGS']
+	color = 'BLUE'
+
+	def runnable_status(self):
+		'''
+		self.pars are populated in runnable_status - because this function is being
+		run *before* both self.pars "consumers" - scan() and run()
+
+		set output_dir (node) for the output
+		'''
+
+		for x in self.run_after:
+			if not x.hasrun:
+				return Task.ASK_LATER
+
+		if not getattr(self, 'pars', None):
+			txt = self.inputs[0].read()
+			self.pars = parse_doxy(txt)
+			if not self.pars.get('OUTPUT_DIRECTORY'):
+				self.pars['OUTPUT_DIRECTORY'] = self.inputs[0].parent.get_bld().abspath()
+
+			# Override with any parameters passed to the task generator
+			if getattr(self.generator, 'pars', None):
+				for k, v in self.generator.pars.iteritems():
+					self.pars[k] = v
+
+			self.doxy_inputs = getattr(self, 'doxy_inputs', [])
+			if not self.pars.get('INPUT'):
+				self.doxy_inputs.append(self.inputs[0].parent)
+			else:
+				for i in self.pars.get('INPUT').split():
+					if os.path.isabs(i):
+						node = self.generator.bld.root.find_node(i)
+					else:
+						node = self.generator.path.find_node(i)
+					if not node:
+						self.generator.bld.fatal('Could not find the doxygen input %r' % i)
+					self.doxy_inputs.append(node)
+
+		if not getattr(self, 'output_dir', None):
+			bld = self.generator.bld
+			# First try to find an absolute path, then find or declare a relative path
+			self.output_dir = bld.root.find_dir(self.pars['OUTPUT_DIRECTORY'])
+			if not self.output_dir:
+				self.output_dir = bld.path.find_or_declare(self.pars['OUTPUT_DIRECTORY'])
+
+		self.signature()
+		return Task.Task.runnable_status(self)
+
+	def scan(self):
+		exclude_patterns = self.pars.get('EXCLUDE_PATTERNS','').split()
+		file_patterns = self.pars.get('FILE_PATTERNS','').split()
+		if not file_patterns:
+			file_patterns = DOXY_FILE_PATTERNS
+		if self.pars.get('RECURSIVE') == 'YES':
+			file_patterns = ["**/%s" % pattern for pattern in file_patterns]
+		nodes = []
+		names = []
+		for node in self.doxy_inputs:
+			if os.path.isdir(node.abspath()):
+				for m in node.ant_glob(incl=file_patterns, excl=exclude_patterns):
+					nodes.append(m)
+			else:
+				nodes.append(node)
+		return (nodes, names)
+
+	def run(self):
+		dct = self.pars.copy()
+		dct['INPUT'] = ' '.join(['"%s"' % x.abspath() for x in self.doxy_inputs])
+		code = '\n'.join(['%s = %s' % (x, dct[x]) for x in self.pars])
+		code = code.encode() # for python 3
+		#fmt = DOXY_STR % (self.inputs[0].parent.abspath())
+		cmd = Utils.subst_vars(DOXY_STR, self.env)
+		env = self.env.env or None
+		proc = Utils.subprocess.Popen(cmd, shell=True, stdin=Utils.subprocess.PIPE, env=env, cwd=self.generator.bld.path.get_bld().abspath())
+		proc.communicate(code)
+		return proc.returncode
+
+	def post_run(self):
+		nodes = self.output_dir.ant_glob('**/*', quiet=True)
+		for x in nodes:
+			x.sig = Utils.h_file(x.abspath())
+		self.outputs += nodes
+		return Task.Task.post_run(self)
+
+class tar(Task.Task):
+	"quick tar creation"
+	run_str = '${TAR} ${TAROPTS} ${TGT} ${SRC}'
+	color   = 'RED'
+	after   = ['doxygen']
+	def runnable_status(self):
+		for x in getattr(self, 'input_tasks', []):
+			if not x.hasrun:
+				return Task.ASK_LATER
+
+		if not getattr(self, 'tar_done_adding', None):
+			# execute this only once
+			self.tar_done_adding = True
+			for x in getattr(self, 'input_tasks', []):
+				self.set_inputs(x.outputs)
+			if not self.inputs:
+				return Task.SKIP_ME
+		return Task.Task.runnable_status(self)
+
+	def __str__(self):
+		tgt_str = ' '.join([a.nice_path(self.env) for a in self.outputs])
+		return '%s: %s\n' % (self.__class__.__name__, tgt_str)
+
+@feature('doxygen')
+def process_doxy(self):
+	if not getattr(self, 'doxyfile', None):
+		self.generator.bld.fatal('no doxyfile??')
+
+	node = self.doxyfile
+	if not isinstance(node, Node.Node):
+		node = self.path.find_resource(node)
+	if not node:
+		raise ValueError('doxygen file not found')
+
+	# the task instance
+	dsk = self.create_task('doxygen', node)
+
+	if getattr(self, 'doxy_tar', None):
+		tsk = self.create_task('tar')
+		tsk.input_tasks = [dsk]
+		tsk.set_outputs(self.path.find_or_declare(self.doxy_tar))
+		if self.doxy_tar.endswith('bz2'):
+			tsk.env['TAROPTS'] = ['cjf']
+		elif self.doxy_tar.endswith('gz'):
+			tsk.env['TAROPTS'] = ['czf']
+		else:
+			tsk.env['TAROPTS'] = ['cf']
+
+def configure(conf):
+	'''
+	Check if doxygen and tar commands are present in the system
+
+	If the commands are present, then conf.env.DOXYGEN and conf.env.TAR
+	variables will be set. Detection can be controlled by setting DOXYGEN and
+	TAR environmental variables.
+	'''
+
+	conf.find_program('doxygen', var='DOXYGEN', mandatory=False)
+	conf.find_program('tar', var='TAR', mandatory=False)
+
+# doxygen docs
+from waflib.Build import BuildContext
+class doxy(BuildContext):
+    cmd = "doxygen"
+    fun = "doxygen"
diff --git a/.waf-tools/sphinx_build.py b/.waf-tools/sphinx_build.py
new file mode 100644
index 0000000..e61da6e
--- /dev/null
+++ b/.waf-tools/sphinx_build.py
@@ -0,0 +1,79 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+# inspired by code by Hans-Martin von Gaudecker, 2012
+
+import os
+from waflib import Node, Task, TaskGen, Errors, Logs, Build, Utils
+
+class sphinx_build(Task.Task):
+    color = 'BLUE'
+    run_str = '${SPHINX_BUILD} -D ${VERSION} -D ${RELEASE} -q -b ${BUILDERNAME} -d ${DOCTREEDIR} ${SRCDIR} ${OUTDIR}'
+
+    def __str__(self):
+        env = self.env
+        src_str = ' '.join([a.path_from(a.ctx.launch_node()) for a in self.inputs])
+        tgt_str = ' '.join([a.path_from(a.ctx.launch_node()) for a in self.outputs])
+        if self.outputs: sep = ' -> '
+        else: sep = ''
+        return'%s [%s]: %s%s%s\n'%(self.__class__.__name__.replace('_task',''),
+                                   self.env['BUILDERNAME'], src_str, sep, tgt_str)
+
+@TaskGen.extension('.py', '.rst')
+def sig_hook(self, node):
+    node.sig=Utils.h_file(node.abspath())
+
+@TaskGen.feature("sphinx")
+@TaskGen.before_method("process_source")
+def apply_sphinx(self):
+    """Set up the task generator with a Sphinx instance and create a task."""
+
+    inputs = []
+    for i in Utils.to_list(self.source):
+        if not isinstance(i, Node.Node):
+            node = self.path.find_node(node)
+        else:
+            node = i
+        if not node:
+            raise ValueError('[%s] file not found' % i)
+        inputs.append(node)
+
+    task = self.create_task('sphinx_build', inputs)
+
+    conf = self.path.find_node(self.config)
+    task.inputs.append(conf)
+
+    confdir = conf.parent.abspath()
+    buildername = getattr(self, "builder", "html")
+    srcdir = getattr(self, "srcdir", confdir)
+    outdir = self.path.find_or_declare(getattr(self, "outdir", buildername)).get_bld()
+    doctreedir = getattr(self, "doctreedir", os.path.join(outdir.abspath(), ".doctrees"))
+
+    task.env['BUILDERNAME'] = buildername
+    task.env['SRCDIR'] = srcdir
+    task.env['DOCTREEDIR'] = doctreedir
+    task.env['OUTDIR'] = outdir.abspath()
+    task.env['VERSION'] = "version=%s" % self.VERSION
+    task.env['RELEASE'] = "release=%s" % self.VERSION
+
+    import imp
+    confData = imp.load_source('sphinx_conf', conf.abspath())
+
+    if buildername == "man":
+        for i in confData.man_pages:
+            target = outdir.find_or_declare('%s.%d' % (i[1], i[4]))
+            task.outputs.append(target)
+
+            if self.install_path:
+                self.bld.install_files("%s/man%d/" % (self.install_path, i[4]), target)
+    else:
+        task.outputs.append(outdir)
+
+def configure(conf):
+    conf.find_program('sphinx-build', var='SPHINX_BUILD', mandatory=False)
+
+# sphinx docs
+from waflib.Build import BuildContext
+class sphinx(BuildContext):
+    cmd = "sphinx"
+    fun = "sphinx"
diff --git a/.waf-tools/sqlite3.py b/.waf-tools/sqlite3.py
new file mode 100644
index 0000000..c47ae6f
--- /dev/null
+++ b/.waf-tools/sqlite3.py
@@ -0,0 +1,36 @@
+#! /usr/bin/env python
+# encoding: utf-8
+
+from waflib import Options
+from waflib.Configure import conf
+
+def options(opt):
+    opt.add_option('--with-sqlite3', type='string', default=None,
+                   dest='with_sqlite3', help='''Path to SQLite3, e.g., /usr/local''')
+
+@conf
+def check_sqlite3(self, *k, **kw):
+    root = k and k[0] or kw.get('path', None) or Options.options.with_sqlite3
+    mandatory = kw.get('mandatory', True)
+    var = kw.get('uselib_store', 'SQLITE3')
+
+    if root:
+        self.check_cxx(lib='sqlite3',
+                       msg='Checking for SQLite3 library',
+                       define_name='HAVE_%s' % var,
+                       uselib_store=var,
+                       mandatory=mandatory,
+                       includes="%s/include" % root,
+                       libpath="%s/lib" % root)
+    else:
+        try:
+            self.check_cfg(package='sqlite3',
+                           args=['--cflags', '--libs'],
+                           uselib_store='SQLITE3',
+                           mandatory=True)
+        except:
+            self.check_cxx(lib='sqlite3',
+                           msg='Checking for SQLite3 library',
+                           define_name='HAVE_%s' % var,
+                           uselib_store=var,
+                           mandatory=mandatory)
diff --git a/AUTHORS.md b/AUTHORS.md
new file mode 100644
index 0000000..611744c
--- /dev/null
+++ b/AUTHORS.md
@@ -0,0 +1,11 @@
+NSL authors
+===========
+
+## The primary authors are (and/or have been):
+
+
+## All project authors and contributors
+
+The following is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS,
+people who have reported bugs, submitted patches, and implemented new features
+in the library:
diff --git a/COPYING.md b/COPYING.md
new file mode 100644
index 0000000..d799430
--- /dev/null
+++ b/COPYING.md
@@ -0,0 +1,677 @@
+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..b452923
--- /dev/null
+++ b/README-dev.md
@@ -0,0 +1,80 @@
+Notes for NSL (NDN Signature Logger) developers
+===============================================
+
+Requirements
+------------
+
+Include the following license boilerplate into all `.hpp` and `.cpp` files:
+
+    /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+    /**
+     * Copyright (c) 2014,  Regents of the University of California
+     *
+     * This file is part of NSL (NDN Signature Logger).
+     * See AUTHORS.md for complete list of NSL authors and contributors.
+     *
+     * NSL is free software: you can redistribute it and/or modify it under the terms
+     * of the GNU General Public License as published by the Free Software Foundation,
+     * either version 3 of the License, or (at your option) any later version.
+     *
+     * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+     * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     * PURPOSE.  See the GNU General Public License for more details.
+     *
+     * You should have received a copy of the GNU General Public License along with
+     * NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+     ////// [optional part] //////
+     *
+     * \author Author's Name <email@domain>
+     * \author Other Author's Name <another.email@domain>
+     ////// [end of optional part] //////
+     */
+
+Recommendations
+---------------
+
+NSL code is subject to ndn-cxx [code style](http://named-data.net/doc/ndn-cxx/0.2.0/code-style.html).
+
+
+Running unit-tests
+------------------
+
+To run unit tests, NSL 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 tests
+    ./build/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:
+
+    # Run Basic test case from all core test suites
+    ./build/unit-tests -t */Basic
+
+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/unit-tests` command.  To see test progress, you can use `-l test_suite`
+or `-p` to show progress bar:
+
+    # Show report all log messages including the passed test notification
+    ./build/unit-tests -l all
+
+    # Show test suite messages
+    ./build/unit-tests -l test_suite
+
+    # Show nothing
+    ./build/unit-tests -l nothing
+
+    # Show progress bar
+    ./build/unit-tests -p
+
+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..db85d84
--- /dev/null
+++ b/README.md
@@ -0,0 +1,2 @@
+NSL (NDN Signature Logger) README
+=================================
diff --git a/common.hpp b/common.hpp
new file mode 100644
index 0000000..f308e3a
--- /dev/null
+++ b/common.hpp
@@ -0,0 +1,91 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014,  Regents of the University of California
+ *
+ * This file is part of NSL (NDN Signature Logger).
+ * See AUTHORS.md for complete list of NSL authors and contributors.
+ *
+ * NSL is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE.  See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * \author Yingdi Yu <yingdi@cs.ucla.edu>
+ */
+
+#ifndef NSL_COMMON_HPP
+#define NSL_COMMON_HPP
+
+#include "config.hpp"
+
+#ifdef WITH_TESTS
+#define VIRTUAL_WITH_TESTS virtual
+#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
+#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
+#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
+#else
+#define VIRTUAL_WITH_TESTS
+#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
+#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
+#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
+#endif
+
+#include <cstddef>
+#include <list>
+#include <set>
+#include <queue>
+#include <vector>
+
+#include <ndn-cxx/common.hpp>
+#include <ndn-cxx/interest.hpp>
+#include <ndn-cxx/data.hpp>
+
+#include <boost/algorithm/string.hpp>
+#include <boost/asio.hpp>
+#include <boost/assert.hpp>
+#include <boost/lexical_cast.hpp>
+#include <boost/noncopyable.hpp>
+#include <boost/property_tree/ptree.hpp>
+#include <boost/scoped_ptr.hpp>
+
+namespace nsl {
+
+using std::size_t;
+
+using boost::noncopyable;
+using boost::scoped_ptr;
+
+using ndn::shared_ptr;
+using ndn::weak_ptr;
+using ndn::enable_shared_from_this;
+using ndn::make_shared;
+using ndn::static_pointer_cast;
+using ndn::dynamic_pointer_cast;
+using ndn::const_pointer_cast;
+using ndn::function;
+using ndn::bind;
+using ndn::ref;
+using ndn::cref;
+
+using ndn::Interest;
+using ndn::Data;
+using ndn::Name;
+using ndn::Exclude;
+using ndn::Block;
+
+namespace tlv {
+using namespace ndn::Tlv;
+}
+
+namespace name = ndn::name;
+namespace time = ndn::time;
+
+} // namespace nsl
+
+#endif // NSL_COMMON_HPP
diff --git a/core/tlv.hpp b/core/tlv.hpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/core/tlv.hpp
diff --git a/daemon/main.cpp b/daemon/main.cpp
new file mode 100644
index 0000000..d172f7d
--- /dev/null
+++ b/daemon/main.cpp
@@ -0,0 +1,26 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014,  Regents of the University of California
+ *
+ * This file is part of NSL (NDN Signature Logger).
+ * See AUTHORS.md for complete list of NSL authors and contributors.
+ *
+ * NSL is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE.  See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * \author Yingdi Yu <yingdi@cs.ucla.edu>
+ */
+
+int
+main(int argc, char** argv)
+{
+  return 0;
+}
diff --git a/docs/INSTALL.rst b/docs/INSTALL.rst
new file mode 100644
index 0000000..941eece
--- /dev/null
+++ b/docs/INSTALL.rst
@@ -0,0 +1,4 @@
+.. _NSL Installation Instructions:
+
+NSL Installation Instructions
+=============================
diff --git a/docs/README.rst b/docs/README.rst
new file mode 100644
index 0000000..a772979
--- /dev/null
+++ b/docs/README.rst
@@ -0,0 +1,2 @@
+NSL Overview
+============
diff --git a/docs/conf.py b/docs/conf.py
new file mode 100644
index 0000000..d3dd152
--- /dev/null
+++ b/docs/conf.py
@@ -0,0 +1,257 @@
+# -*- coding: utf-8 -*-
+#
+# NSL - NDN Signature Logger documentation build configuration file, created by
+# sphinx-quickstart on Sun Apr  6 19:58:22 2014.
+#
+# This file is execfile()d with the current directory set to its
+# containing dir.
+#
+# Note that not all possible configuration values are present in this
+# autogenerated file.
+#
+# All configuration values have a default; values that are commented out
+# serve to show the default.
+
+import sys
+import os
+import re
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+#sys.path.insert(0, os.path.abspath('.'))
+
+# -- General configuration ------------------------------------------------
+
+# If your documentation needs a minimal Sphinx version, state it here.
+#needs_sphinx = '1.0'
+
+# Add any Sphinx extension module names here, as strings. They can be
+# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
+# ones.
+extensions = [
+    'sphinx.ext.todo',
+]
+
+def addExtensionIfExists(extension):
+    try:
+        __import__(extension)
+        extensions.append(extension)
+    except ImportError:
+        sys.stderr.write("Extension '%s' in not available. "
+                         "Some documentation may not build correctly.\n" % extension)
+        sys.stderr.write("To install, use \n"
+                         "  sudo pip install %s\n" % extension.replace('.', '-'))
+
+addExtensionIfExists('sphinxcontrib.doxylink')
+
+if os.getenv('GOOGLE_ANALYTICS', None):
+    addExtensionIfExists('sphinxcontrib.googleanalytics')
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# The suffix of source filenames.
+source_suffix = '.rst'
+
+# The encoding of source files.
+#source_encoding = 'utf-8-sig'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General information about the project.
+project = u'NSL: NDN Signature Logger'
+copyright = u'2014, Named Data Networking Project'
+
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+#language = None
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#today = ''
+# Else, today_fmt is used as the format for a strftime call.
+#today_fmt = '%B %d, %Y'
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+exclude_patterns = []
+
+# The reST default role (used for this markup: `text`) to use for all
+# documents.
+#default_role = None
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+#add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+#add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+#show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+# A list of ignored prefixes for module index sorting.
+#modindex_common_prefix = []
+
+# If true, keep warnings as "system message" paragraphs in the built documents.
+#keep_warnings = False
+
+
+# -- Options for HTML output ----------------------------------------------
+
+# The theme to use for HTML and HTML Help pages.  See the documentation for
+# a list of builtin themes.
+# html_theme = 'default'
+html_theme = 'named_data_theme'
+
+# Theme options are theme-specific and customize the look and feel of a theme
+# further.  For a list of options available for each theme, see the
+# documentation.
+#html_theme_options = {}
+
+# Add any paths that contain custom themes here, relative to this directory.
+html_theme_path = ['./']
+
+# The name for this set of Sphinx documents.  If None, it defaults to
+# "<project> v<release> documentation".
+#html_title = None
+
+# A shorter title for the navigation bar.  Default is the same as html_title.
+#html_short_title = None
+
+# The name of an image file (relative to this directory) to place at the top
+# of the sidebar.
+#html_logo = None
+
+# The name of an image file (within the static path) to use as favicon of the
+# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
+# pixels large.
+#html_favicon = None
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+# html_static_path = ['_static']
+
+# Add any extra paths that contain custom files (such as robots.txt or
+# .htaccess) here, relative to this directory. These files are copied
+# directly to the root of the documentation.
+#html_extra_path = []
+
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
+# using the given strftime format.
+#html_last_updated_fmt = '%b %d, %Y'
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+#html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+#html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+#html_additional_pages = {}
+
+# If false, no module index is generated.
+#html_domain_indices = True
+
+# If false, no index is generated.
+#html_use_index = True
+
+# If true, the index is split into individual pages for each letter.
+#html_split_index = False
+
+# If true, links to the reST sources are added to the pages.
+#html_show_sourcelink = True
+
+# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
+#html_show_sphinx = True
+
+# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
+#html_show_copyright = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it.  The value of this option must be the
+# base URL from which the finished HTML is served.
+#html_use_opensearch = ''
+
+# This is the file name suffix for HTML files (e.g. ".xhtml").
+html_file_suffix = ".html"
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'nsl-docs'
+
+
+# -- Options for LaTeX output ---------------------------------------------
+
+latex_elements = {
+# The paper size ('letterpaper' or 'a4paper').
+#'papersize': 'letterpaper',
+
+# The font size ('10pt', '11pt' or '12pt').
+#'pointsize': '10pt',
+
+# Additional stuff for the LaTeX preamble.
+#'preamble': '',
+}
+
+# Grouping the document tree into LaTeX files. List of tuples
+# (source start file, target name, title,
+#  author, documentclass [howto, manual, or own class]).
+latex_documents = [
+  ('index', 'nsl-docs.tex', u'NDN Signature Logger',
+   u'Named Data Networking Project', 'manual'),
+]
+
+# The name of an image file (relative to this directory) to place at the top of
+# the title page.
+#latex_logo = None
+
+# For "manual" documents, if this is true, then toplevel headings are parts,
+# not chapters.
+#latex_use_parts = False
+
+# If true, show page references after internal links.
+#latex_show_pagerefs = False
+
+# If true, show URL addresses after external links.
+#latex_show_urls = False
+
+# Documents to append as an appendix to all manuals.
+#latex_appendices = []
+
+# If false, no module index is generated.
+#latex_domain_indices = True
+
+
+# -- Options for manual page output ---------------------------------------
+
+# One entry per manual page. List of tuples
+# (source start file, name, description, authors, manual section).
+man_pages = [
+    ('manpages/nsl', 'nsl', u'NDN Signature Logger', None, 1),
+]
+
+
+# If true, show URL addresses after external links.
+man_show_urls = True
+
+
+# ---- Custom options --------
+
+doxylink = {
+  'nsl' : ('nsl.tag', 'doxygen/'),
+}
+
+if os.getenv('GOOGLE_ANALYTICS', None):
+    googleanalytics_id = os.environ['GOOGLE_ANALYTICS']
+    googleanalytics_enabled = True
+
+exclude_patterns = ['RELEASE_NOTES.rst']
diff --git a/docs/doxygen.conf.in b/docs/doxygen.conf.in
new file mode 100644
index 0000000..f2f3bd3
--- /dev/null
+++ b/docs/doxygen.conf.in
@@ -0,0 +1,2283 @@
+# Doxyfile 1.8.5
+
+# This file describes the settings to be used by the documentation system
+# doxygen (www.doxygen.org) for a project.
+#
+# All text after a double hash (##) is considered a comment and is placed in
+# front of the TAG it is preceding.
+#
+# All text after a single hash (#) is considered a comment and will be ignored.
+# The format is:
+# TAG = value [value, ...]
+# For lists, items can also be appended using:
+# TAG += value [value, ...]
+# Values that contain spaces should be placed between quotes (\" \").
+
+#---------------------------------------------------------------------------
+# Project related configuration options
+#---------------------------------------------------------------------------
+
+# This tag specifies the encoding used for all characters in the config file
+# that follow. The default is UTF-8 which is also the encoding used for all text
+# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
+# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
+# for the list of possible encodings.
+# The default value is: UTF-8.
+
+DOXYFILE_ENCODING      = UTF-8
+
+# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
+# double-quotes, unless you are using Doxywizard) that should identify the
+# project for which the documentation is generated. This name is used in the
+# title of most generated pages and in a few other places.
+# The default value is: My Project.
+
+PROJECT_NAME           = "NSL: NDN Signature Logger"
+
+# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
+# could be handy for archiving the generated documentation or if some version
+# control system is used.
+
+PROJECT_NUMBER         = @VERSION@
+
+# Using the PROJECT_BRIEF tag one can provide an optional one line description
+# for a project that appears at the top of each page and should give viewer a
+# quick idea about the purpose of the project. Keep the description short.
+
+PROJECT_BRIEF          =
+
+# With the PROJECT_LOGO tag one can specify an logo or icon that is included in
+# the documentation. The maximum height of the logo should not exceed 55 pixels
+# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo
+# to the output directory.
+
+PROJECT_LOGO           =
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
+# into which the generated documentation will be written. If a relative path is
+# entered, it will be relative to the location where doxygen was started. If
+# left blank the current directory will be used.
+
+OUTPUT_DIRECTORY       = docs/doxygen
+
+# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
+# directories (in 2 levels) under the output directory of each output format and
+# will distribute the generated files over these directories. Enabling this
+# option can be useful when feeding doxygen a huge amount of source files, where
+# putting all generated files in the same directory would otherwise causes
+# performance problems for the file system.
+# The default value is: NO.
+
+CREATE_SUBDIRS         = YES
+
+# The OUTPUT_LANGUAGE tag is used to specify the language in which all
+# documentation generated by doxygen is written. Doxygen will use this
+# information to generate all constant output in the proper language.
+# Possible values are: Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-
+# Traditional, Croatian, Czech, Danish, Dutch, English, Esperanto, Farsi,
+# Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en,
+# Korean, Korean-en, Latvian, Norwegian, Macedonian, Persian, Polish,
+# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish,
+# Turkish, Ukrainian and Vietnamese.
+# The default value is: English.
+
+OUTPUT_LANGUAGE        = English
+
+# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
+# descriptions after the members that are listed in the file and class
+# documentation (similar to Javadoc). Set to NO to disable this.
+# The default value is: YES.
+
+BRIEF_MEMBER_DESC      = YES
+
+# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
+# description of a member or function before the detailed description
+#
+# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
+# brief descriptions will be completely suppressed.
+# The default value is: YES.
+
+REPEAT_BRIEF           = YES
+
+# This tag implements a quasi-intelligent brief description abbreviator that is
+# used to form the text in various listings. Each string in this list, if found
+# as the leading text of the brief description, will be stripped from the text
+# and the result, after processing the whole list, is used as the annotated
+# text. Otherwise, the brief description is used as-is. If left blank, the
+# following values are used ($name is automatically replaced with the name of
+# the entity):The $name class, The $name widget, The $name file, is, provides,
+# specifies, contains, represents, a, an and the.
+
+ABBREVIATE_BRIEF       =
+
+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
+# doxygen will generate a detailed section even if there is only a brief
+# description.
+# The default value is: NO.
+
+ALWAYS_DETAILED_SEC    = NO
+
+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
+# inherited members of a class in the documentation of that class as if those
+# members were ordinary class members. Constructors, destructors and assignment
+# operators of the base classes will not be shown.
+# The default value is: NO.
+
+INLINE_INHERITED_MEMB  = YES
+
+# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
+# before files name in the file list and in the header files. If set to NO the
+# shortest path that makes the file name unique will be used
+# The default value is: YES.
+
+FULL_PATH_NAMES        = NO
+
+# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
+# Stripping is only done if one of the specified strings matches the left-hand
+# part of the path. The tag can be used to show relative paths in the file list.
+# If left blank the directory from which doxygen is run is used as the path to
+# strip.
+#
+# Note that you can specify absolute paths here, but also relative paths, which
+# will be relative from the directory where doxygen is started.
+# This tag requires that the tag FULL_PATH_NAMES is set to YES.
+
+STRIP_FROM_PATH        = core/ daemon/
+
+# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
+# path mentioned in the documentation of a class, which tells the reader which
+# header file to include in order to use a class. If left blank only the name of
+# the header file containing the class definition is used. Otherwise one should
+# specify the list of include paths that are normally passed to the compiler
+# using the -I flag.
+
+STRIP_FROM_INC_PATH    =
+
+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
+# less readable) file names. This can be useful is your file systems doesn't
+# support long names like on DOS, Mac, or CD-ROM.
+# The default value is: NO.
+
+SHORT_NAMES            = NO
+
+# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
+# first line (until the first dot) of a Javadoc-style comment as the brief
+# description. If set to NO, the Javadoc-style will behave just like regular Qt-
+# style comments (thus requiring an explicit @brief command for a brief
+# description.)
+# The default value is: NO.
+
+JAVADOC_AUTOBRIEF      = YES
+
+# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
+# line (until the first dot) of a Qt-style comment as the brief description. If
+# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
+# requiring an explicit \brief command for a brief description.)
+# The default value is: NO.
+
+QT_AUTOBRIEF           = NO
+
+# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
+# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
+# a brief description. This used to be the default behavior. The new default is
+# to treat a multi-line C++ comment block as a detailed description. Set this
+# tag to YES if you prefer the old behavior instead.
+#
+# Note that setting this tag to YES also means that rational rose comments are
+# not recognized any more.
+# The default value is: NO.
+
+MULTILINE_CPP_IS_BRIEF = NO
+
+# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
+# documentation from any documented member that it re-implements.
+# The default value is: YES.
+
+INHERIT_DOCS           = YES
+
+# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a
+# new page for each member. If set to NO, the documentation of a member will be
+# part of the file/class/namespace that contains it.
+# The default value is: NO.
+
+SEPARATE_MEMBER_PAGES  = NO
+
+# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
+# uses this value to replace tabs by spaces in code fragments.
+# Minimum value: 1, maximum value: 16, default value: 4.
+
+TAB_SIZE               = 4
+
+# This tag can be used to specify a number of aliases that act as commands in
+# the documentation. An alias has the form:
+# name=value
+# For example adding
+# "sideeffect=@par Side Effects:\n"
+# will allow you to put the command \sideeffect (or @sideeffect) in the
+# documentation, which will result in a user-defined paragraph with heading
+# "Side Effects:". You can put \n's in the value part of an alias to insert
+# newlines.
+
+ALIASES                =
+
+# This tag can be used to specify a number of word-keyword mappings (TCL only).
+# A mapping has the form "name=value". For example adding "class=itcl::class"
+# will allow you to use the command class in the itcl::class meaning.
+
+TCL_SUBST              =
+
+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
+# only. Doxygen will then generate output that is more tailored for C. For
+# instance, some of the names that are used will be different. The list of all
+# members will be omitted, etc.
+# The default value is: NO.
+
+OPTIMIZE_OUTPUT_FOR_C  = YES
+
+# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
+# Python sources only. Doxygen will then generate output that is more tailored
+# for that language. For instance, namespaces will be presented as packages,
+# qualified scopes will look different, etc.
+# The default value is: NO.
+
+OPTIMIZE_OUTPUT_JAVA   = NO
+
+# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
+# sources. Doxygen will then generate output that is tailored for Fortran.
+# The default value is: NO.
+
+OPTIMIZE_FOR_FORTRAN   = NO
+
+# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
+# sources. Doxygen will then generate output that is tailored for VHDL.
+# The default value is: NO.
+
+OPTIMIZE_OUTPUT_VHDL   = NO
+
+# Doxygen selects the parser to use depending on the extension of the files it
+# parses. With this tag you can assign which parser to use for a given
+# extension. Doxygen has a built-in mapping, but you can override or extend it
+# using this tag. The format is ext=language, where ext is a file extension, and
+# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
+# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make
+# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
+# (default is Fortran), use: inc=Fortran f=C.
+#
+# Note For files without extension you can use no_extension as a placeholder.
+#
+# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
+# the files are not read by doxygen.
+
+EXTENSION_MAPPING      =
+
+# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
+# according to the Markdown format, which allows for more readable
+# documentation. See http://daringfireball.net/projects/markdown/ for details.
+# The output of markdown processing is further processed by doxygen, so you can
+# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
+# case of backward compatibilities issues.
+# The default value is: YES.
+
+MARKDOWN_SUPPORT       = YES
+
+# When enabled doxygen tries to link words that correspond to documented
+# classes, or namespaces to their corresponding documentation. Such a link can
+# be prevented in individual cases by by putting a % sign in front of the word
+# or globally by setting AUTOLINK_SUPPORT to NO.
+# The default value is: YES.
+
+AUTOLINK_SUPPORT       = YES
+
+# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
+# to include (a tag file for) the STL sources as input, then you should set this
+# tag to YES in order to let doxygen match functions declarations and
+# definitions whose arguments contain STL classes (e.g. func(std::string);
+# versus func(std::string) {}). This also make the inheritance and collaboration
+# diagrams that involve STL classes more complete and accurate.
+# The default value is: NO.
+
+BUILTIN_STL_SUPPORT    = YES
+
+# If you use Microsoft's C++/CLI language, you should set this option to YES to
+# enable parsing support.
+# The default value is: NO.
+
+CPP_CLI_SUPPORT        = NO
+
+# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
+# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen
+# will parse them like normal C++ but will assume all classes use public instead
+# of private inheritance when no explicit protection keyword is present.
+# The default value is: NO.
+
+SIP_SUPPORT            = NO
+
+# For Microsoft's IDL there are propget and propput attributes to indicate
+# getter and setter methods for a property. Setting this option to YES will make
+# doxygen to replace the get and set methods by a property in the documentation.
+# This will only work if the methods are indeed getting or setting a simple
+# type. If this is not the case, or you want to show the methods anyway, you
+# should set this option to NO.
+# The default value is: YES.
+
+IDL_PROPERTY_SUPPORT   = YES
+
+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
+# tag is set to YES, then doxygen will reuse the documentation of the first
+# member in the group (if any) for the other members of the group. By default
+# all members of a group must be documented explicitly.
+# The default value is: NO.
+
+DISTRIBUTE_GROUP_DOC   = NO
+
+# Set the SUBGROUPING tag to YES to allow class member groups of the same type
+# (for instance a group of public functions) to be put as a subgroup of that
+# type (e.g. under the Public Functions section). Set it to NO to prevent
+# subgrouping. Alternatively, this can be done per class using the
+# \nosubgrouping command.
+# The default value is: YES.
+
+SUBGROUPING            = YES
+
+# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
+# are shown inside the group in which they are included (e.g. using \ingroup)
+# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
+# and RTF).
+#
+# Note that this feature does not work in combination with
+# SEPARATE_MEMBER_PAGES.
+# The default value is: NO.
+
+INLINE_GROUPED_CLASSES = NO
+
+# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
+# with only public data fields or simple typedef fields will be shown inline in
+# the documentation of the scope in which they are defined (i.e. file,
+# namespace, or group documentation), provided this scope is documented. If set
+# to NO, structs, classes, and unions are shown on a separate page (for HTML and
+# Man pages) or section (for LaTeX and RTF).
+# The default value is: NO.
+
+INLINE_SIMPLE_STRUCTS  = NO
+
+# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
+# enum is documented as struct, union, or enum with the name of the typedef. So
+# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
+# with name TypeT. When disabled the typedef will appear as a member of a file,
+# namespace, or class. And the struct will be named TypeS. This can typically be
+# useful for C code in case the coding convention dictates that all compound
+# types are typedef'ed and only the typedef is referenced, never the tag name.
+# The default value is: NO.
+
+TYPEDEF_HIDES_STRUCT   = NO
+
+# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
+# cache is used to resolve symbols given their name and scope. Since this can be
+# an expensive process and often the same symbol appears multiple times in the
+# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
+# doxygen will become slower. If the cache is too large, memory is wasted. The
+# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
+# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
+# symbols. At the end of a run doxygen will report the cache usage and suggest
+# the optimal cache size from a speed point of view.
+# Minimum value: 0, maximum value: 9, default value: 0.
+
+LOOKUP_CACHE_SIZE      = 0
+
+#---------------------------------------------------------------------------
+# Build related configuration options
+#---------------------------------------------------------------------------
+
+# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
+# documentation are documented, even if no documentation was available. Private
+# class members and static file members will be hidden unless the
+# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
+# Note: This will also disable the warnings about undocumented members that are
+# normally produced when WARNINGS is set to YES.
+# The default value is: NO.
+
+EXTRACT_ALL            = YES
+
+# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will
+# be included in the documentation.
+# The default value is: NO.
+
+EXTRACT_PRIVATE        = NO
+
+# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
+# scope will be included in the documentation.
+# The default value is: NO.
+
+EXTRACT_PACKAGE        = NO
+
+# If the EXTRACT_STATIC tag is set to YES all static members of a file will be
+# included in the documentation.
+# The default value is: NO.
+
+EXTRACT_STATIC         = YES
+
+# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined
+# locally in source files will be included in the documentation. If set to NO
+# only classes defined in header files are included. Does not have any effect
+# for Java sources.
+# The default value is: YES.
+
+EXTRACT_LOCAL_CLASSES  = YES
+
+# This flag is only useful for Objective-C code. When set to YES local methods,
+# which are defined in the implementation section but not in the interface are
+# included in the documentation. If set to NO only methods in the interface are
+# included.
+# The default value is: NO.
+
+EXTRACT_LOCAL_METHODS  = NO
+
+# If this flag is set to YES, the members of anonymous namespaces will be
+# extracted and appear in the documentation as a namespace called
+# 'anonymous_namespace{file}', where file will be replaced with the base name of
+# the file that contains the anonymous namespace. By default anonymous namespace
+# are hidden.
+# The default value is: NO.
+
+EXTRACT_ANON_NSPACES   = NO
+
+# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
+# undocumented members inside documented classes or files. If set to NO these
+# members will be included in the various overviews, but no documentation
+# section is generated. This option has no effect if EXTRACT_ALL is enabled.
+# The default value is: NO.
+
+HIDE_UNDOC_MEMBERS     = NO
+
+# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
+# undocumented classes that are normally visible in the class hierarchy. If set
+# to NO these classes will be included in the various overviews. This option has
+# no effect if EXTRACT_ALL is enabled.
+# The default value is: NO.
+
+HIDE_UNDOC_CLASSES     = NO
+
+# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
+# (class|struct|union) declarations. If set to NO these declarations will be
+# included in the documentation.
+# The default value is: NO.
+
+HIDE_FRIEND_COMPOUNDS  = NO
+
+# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
+# documentation blocks found inside the body of a function. If set to NO these
+# blocks will be appended to the function's detailed documentation block.
+# The default value is: NO.
+
+HIDE_IN_BODY_DOCS      = NO
+
+# The INTERNAL_DOCS tag determines if documentation that is typed after a
+# \internal command is included. If the tag is set to NO then the documentation
+# will be excluded. Set it to YES to include the internal documentation.
+# The default value is: NO.
+
+INTERNAL_DOCS          = NO
+
+# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
+# names in lower-case letters. If set to YES upper-case letters are also
+# allowed. This is useful if you have classes or files whose names only differ
+# in case and if your file system supports case sensitive file names. Windows
+# and Mac users are advised to set this option to NO.
+# The default value is: system dependent.
+
+CASE_SENSE_NAMES       = YES
+
+# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
+# their full class and namespace scopes in the documentation. If set to YES the
+# scope will be hidden.
+# The default value is: NO.
+
+HIDE_SCOPE_NAMES       = NO
+
+# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
+# the files that are included by a file in the documentation of that file.
+# The default value is: YES.
+
+SHOW_INCLUDE_FILES     = YES
+
+# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
+# files with double quotes in the documentation rather than with sharp brackets.
+# The default value is: NO.
+
+FORCE_LOCAL_INCLUDES   = NO
+
+# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
+# documentation for inline members.
+# The default value is: YES.
+
+INLINE_INFO            = YES
+
+# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
+# (detailed) documentation of file and class members alphabetically by member
+# name. If set to NO the members will appear in declaration order.
+# The default value is: YES.
+
+SORT_MEMBER_DOCS       = YES
+
+# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
+# descriptions of file, namespace and class members alphabetically by member
+# name. If set to NO the members will appear in declaration order.
+# The default value is: NO.
+
+SORT_BRIEF_DOCS        = NO
+
+# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
+# (brief and detailed) documentation of class members so that constructors and
+# destructors are listed first. If set to NO the constructors will appear in the
+# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
+# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
+# member documentation.
+# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
+# detailed member documentation.
+# The default value is: NO.
+
+SORT_MEMBERS_CTORS_1ST = NO
+
+# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
+# of group names into alphabetical order. If set to NO the group names will
+# appear in their defined order.
+# The default value is: NO.
+
+SORT_GROUP_NAMES       = YES
+
+# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
+# fully-qualified names, including namespaces. If set to NO, the class list will
+# be sorted only by class name, not including the namespace part.
+# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
+# Note: This option applies only to the class list, not to the alphabetical
+# list.
+# The default value is: NO.
+
+SORT_BY_SCOPE_NAME     = NO
+
+# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
+# type resolution of all parameters of a function it will reject a match between
+# the prototype and the implementation of a member function even if there is
+# only one candidate or it is obvious which candidate to choose by doing a
+# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
+# accept a match between prototype and implementation in such cases.
+# The default value is: NO.
+
+STRICT_PROTO_MATCHING  = NO
+
+# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the
+# todo list. This list is created by putting \todo commands in the
+# documentation.
+# The default value is: YES.
+
+GENERATE_TODOLIST      = YES
+
+# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the
+# test list. This list is created by putting \test commands in the
+# documentation.
+# The default value is: YES.
+
+GENERATE_TESTLIST      = YES
+
+# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug
+# list. This list is created by putting \bug commands in the documentation.
+# The default value is: YES.
+
+GENERATE_BUGLIST       = YES
+
+# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO)
+# the deprecated list. This list is created by putting \deprecated commands in
+# the documentation.
+# The default value is: YES.
+
+GENERATE_DEPRECATEDLIST= YES
+
+# The ENABLED_SECTIONS tag can be used to enable conditional documentation
+# sections, marked by \if <section_label> ... \endif and \cond <section_label>
+# ... \endcond blocks.
+
+ENABLED_SECTIONS       =
+
+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
+# initial value of a variable or macro / define can have for it to appear in the
+# documentation. If the initializer consists of more lines than specified here
+# it will be hidden. Use a value of 0 to hide initializers completely. The
+# appearance of the value of individual variables and macros / defines can be
+# controlled using \showinitializer or \hideinitializer command in the
+# documentation regardless of this setting.
+# Minimum value: 0, maximum value: 10000, default value: 30.
+
+MAX_INITIALIZER_LINES  = 30
+
+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
+# the bottom of the documentation of classes and structs. If set to YES the list
+# will mention the files that were used to generate the documentation.
+# The default value is: YES.
+
+SHOW_USED_FILES        = NO
+
+# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
+# will remove the Files entry from the Quick Index and from the Folder Tree View
+# (if specified).
+# The default value is: YES.
+
+SHOW_FILES             = YES
+
+# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
+# page. This will remove the Namespaces entry from the Quick Index and from the
+# Folder Tree View (if specified).
+# The default value is: YES.
+
+SHOW_NAMESPACES        = YES
+
+# The FILE_VERSION_FILTER tag can be used to specify a program or script that
+# doxygen should invoke to get the current version for each file (typically from
+# the version control system). Doxygen will invoke the program by executing (via
+# popen()) the command command input-file, where command is the value of the
+# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
+# by doxygen. Whatever the program writes to standard output is used as the file
+# version. For an example see the documentation.
+
+FILE_VERSION_FILTER    =
+
+# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
+# by doxygen. The layout file controls the global structure of the generated
+# output files in an output format independent way. To create the layout file
+# that represents doxygen's defaults, run doxygen with the -l option. You can
+# optionally specify a file name after the option, if omitted DoxygenLayout.xml
+# will be used as the name of the layout file.
+#
+# Note that if you run doxygen from a directory containing a file called
+# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
+# tag is left empty.
+
+LAYOUT_FILE            =
+
+# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
+# the reference definitions. This must be a list of .bib files. The .bib
+# extension is automatically appended if omitted. This requires the bibtex tool
+# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
+# For LaTeX the style of the bibliography can be controlled using
+# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
+# search path. Do not use file names with spaces, bibtex cannot handle them. See
+# also \cite for info how to create references.
+
+CITE_BIB_FILES         =
+
+#---------------------------------------------------------------------------
+# Configuration options related to warning and progress messages
+#---------------------------------------------------------------------------
+
+# The QUIET tag can be used to turn on/off the messages that are generated to
+# standard output by doxygen. If QUIET is set to YES this implies that the
+# messages are off.
+# The default value is: NO.
+
+QUIET                  = YES
+
+# The WARNINGS tag can be used to turn on/off the warning messages that are
+# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES
+# this implies that the warnings are on.
+#
+# Tip: Turn warnings on while writing the documentation.
+# The default value is: YES.
+
+WARNINGS               = YES
+
+# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate
+# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
+# will automatically be disabled.
+# The default value is: YES.
+
+WARN_IF_UNDOCUMENTED   = YES
+
+# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
+# potential errors in the documentation, such as not documenting some parameters
+# in a documented function, or documenting parameters that don't exist or using
+# markup commands wrongly.
+# The default value is: YES.
+
+WARN_IF_DOC_ERROR      = YES
+
+# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
+# are documented, but have no documentation for their parameters or return
+# value. If set to NO doxygen will only warn about wrong or incomplete parameter
+# documentation, but not about the absence of documentation.
+# The default value is: NO.
+
+WARN_NO_PARAMDOC       = YES
+
+# The WARN_FORMAT tag determines the format of the warning messages that doxygen
+# can produce. The string should contain the $file, $line, and $text tags, which
+# will be replaced by the file and line number from which the warning originated
+# and the warning text. Optionally the format may contain $version, which will
+# be replaced by the version of the file (if it could be obtained via
+# FILE_VERSION_FILTER)
+# The default value is: $file:$line: $text.
+
+WARN_FORMAT            = "$file:$line: $text"
+
+# The WARN_LOGFILE tag can be used to specify a file to which warning and error
+# messages should be written. If left blank the output is written to standard
+# error (stderr).
+
+WARN_LOGFILE           =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the input files
+#---------------------------------------------------------------------------
+
+# The INPUT tag is used to specify the files and/or directories that contain
+# documented source files. You may enter file names like myfile.cpp or
+# directories like /usr/src/myproject. Separate the files or directories with
+# spaces.
+# Note: If this tag is empty the current directory is searched.
+
+INPUT                  = core/ daemon/
+
+# This tag can be used to specify the character encoding of the source files
+# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
+# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
+# documentation (see: http://www.gnu.org/software/libiconv) for the list of
+# possible encodings.
+# The default value is: UTF-8.
+
+INPUT_ENCODING         = UTF-8
+
+# If the value of the INPUT tag contains directories, you can use the
+# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
+# *.h) to filter out the source-files in the directories. If left blank the
+# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
+# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
+# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
+# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
+# *.qsf, *.as and *.js.
+
+FILE_PATTERNS          =
+
+# The RECURSIVE tag can be used to specify whether or not subdirectories should
+# be searched for input files as well.
+# The default value is: NO.
+
+RECURSIVE              = YES
+
+# The EXCLUDE tag can be used to specify files and/or directories that should be
+# excluded from the INPUT source files. This way you can easily exclude a
+# subdirectory from a directory tree whose root is specified with the INPUT tag.
+#
+# Note that relative paths are relative to the directory from which doxygen is
+# run.
+
+EXCLUDE                =
+
+# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
+# directories that are symbolic links (a Unix file system feature) are excluded
+# from the input.
+# The default value is: NO.
+
+EXCLUDE_SYMLINKS       = NO
+
+# If the value of the INPUT tag contains directories, you can use the
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
+# certain files from those directories.
+#
+# Note that the wildcards are matched against the file with absolute path, so to
+# exclude all test directories for example use the pattern */test/*
+
+EXCLUDE_PATTERNS       =
+
+# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
+# (namespaces, classes, functions, etc.) that should be excluded from the
+# output. The symbol name can be a fully qualified name, a word, or if the
+# wildcard * is used, a substring. Examples: ANamespace, AClass,
+# AClass::ANamespace, ANamespace::*Test
+#
+# Note that the wildcards are matched against the file with absolute path, so to
+# exclude all test directories use the pattern */test/*
+
+EXCLUDE_SYMBOLS        =
+
+# The EXAMPLE_PATH tag can be used to specify one or more files or directories
+# that contain example code fragments that are included (see the \include
+# command).
+
+EXAMPLE_PATH           =
+
+# If the value of the EXAMPLE_PATH tag contains directories, you can use the
+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
+# *.h) to filter out the source-files in the directories. If left blank all
+# files are included.
+
+EXAMPLE_PATTERNS       =
+
+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
+# searched for input files to be used with the \include or \dontinclude commands
+# irrespective of the value of the RECURSIVE tag.
+# The default value is: NO.
+
+EXAMPLE_RECURSIVE      = YES
+
+# The IMAGE_PATH tag can be used to specify one or more files or directories
+# that contain images that are to be included in the documentation (see the
+# \image command).
+
+IMAGE_PATH             =
+
+# The INPUT_FILTER tag can be used to specify a program that doxygen should
+# invoke to filter for each input file. Doxygen will invoke the filter program
+# by executing (via popen()) the command:
+#
+# <filter> <input-file>
+#
+# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
+# name of an input file. Doxygen will then use the output that the filter
+# program writes to standard output. If FILTER_PATTERNS is specified, this tag
+# will be ignored.
+#
+# Note that the filter must not add or remove lines; it is applied before the
+# code is scanned, but not when the output code is generated. If lines are added
+# or removed, the anchors will not be placed correctly.
+
+INPUT_FILTER           =
+
+# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
+# basis. Doxygen will compare the file name with each pattern and apply the
+# filter if there is a match. The filters are a list of the form: pattern=filter
+# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
+# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
+# patterns match the file name, INPUT_FILTER is applied.
+
+FILTER_PATTERNS        =
+
+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
+# INPUT_FILTER ) will also be used to filter the input files that are used for
+# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
+# The default value is: NO.
+
+FILTER_SOURCE_FILES    = NO
+
+# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
+# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
+# it is also possible to disable source filtering for a specific pattern using
+# *.ext= (so without naming a filter).
+# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
+
+FILTER_SOURCE_PATTERNS =
+
+# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
+# is part of the input, its contents will be placed on the main page
+# (index.html). This can be useful if you have a project on for instance GitHub
+# and want to reuse the introduction page also for the doxygen output.
+
+USE_MDFILE_AS_MAINPAGE =
+
+#---------------------------------------------------------------------------
+# Configuration options related to source browsing
+#---------------------------------------------------------------------------
+
+# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
+# generated. Documented entities will be cross-referenced with these sources.
+#
+# Note: To get rid of all source code in the generated output, make sure that
+# also VERBATIM_HEADERS is set to NO.
+# The default value is: NO.
+
+SOURCE_BROWSER         = YES
+
+# Setting the INLINE_SOURCES tag to YES will include the body of functions,
+# classes and enums directly into the documentation.
+# The default value is: NO.
+
+INLINE_SOURCES         = NO
+
+# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
+# special comment blocks from generated source code fragments. Normal C, C++ and
+# Fortran comments will always remain visible.
+# The default value is: YES.
+
+STRIP_CODE_COMMENTS    = YES
+
+# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
+# function all documented functions referencing it will be listed.
+# The default value is: NO.
+
+REFERENCED_BY_RELATION = NO
+
+# If the REFERENCES_RELATION tag is set to YES then for each documented function
+# all documented entities called/used by that function will be listed.
+# The default value is: NO.
+
+REFERENCES_RELATION    = NO
+
+# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
+# to YES, then the hyperlinks from functions in REFERENCES_RELATION and
+# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
+# link to the documentation.
+# The default value is: YES.
+
+REFERENCES_LINK_SOURCE = YES
+
+# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
+# source code will show a tooltip with additional information such as prototype,
+# brief description and links to the definition and documentation. Since this
+# will make the HTML file larger and loading of large files a bit slower, you
+# can opt to disable this feature.
+# The default value is: YES.
+# This tag requires that the tag SOURCE_BROWSER is set to YES.
+
+SOURCE_TOOLTIPS        = YES
+
+# If the USE_HTAGS tag is set to YES then the references to source code will
+# point to the HTML generated by the htags(1) tool instead of doxygen built-in
+# source browser. The htags tool is part of GNU's global source tagging system
+# (see http://www.gnu.org/software/global/global.html). You will need version
+# 4.8.6 or higher.
+#
+# To use it do the following:
+# - Install the latest version of global
+# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
+# - Make sure the INPUT points to the root of the source tree
+# - Run doxygen as normal
+#
+# Doxygen will invoke htags (and that will in turn invoke gtags), so these
+# tools must be available from the command line (i.e. in the search path).
+#
+# The result: instead of the source browser generated by doxygen, the links to
+# source code will now point to the output of htags.
+# The default value is: NO.
+# This tag requires that the tag SOURCE_BROWSER is set to YES.
+
+USE_HTAGS              = NO
+
+# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
+# verbatim copy of the header file for each class for which an include is
+# specified. Set to NO to disable this.
+# See also: Section \class.
+# The default value is: YES.
+
+VERBATIM_HEADERS       = YES
+
+#---------------------------------------------------------------------------
+# Configuration options related to the alphabetical class index
+#---------------------------------------------------------------------------
+
+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
+# compounds will be generated. Enable this if the project contains a lot of
+# classes, structs, unions or interfaces.
+# The default value is: YES.
+
+ALPHABETICAL_INDEX     = YES
+
+# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
+# which the alphabetical index list will be split.
+# Minimum value: 1, maximum value: 20, default value: 5.
+# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
+
+COLS_IN_ALPHA_INDEX    = 5
+
+# In case all classes in a project start with a common prefix, all classes will
+# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
+# can be used to specify a prefix (or a list of prefixes) that should be ignored
+# while generating the index headers.
+# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
+
+IGNORE_PREFIX          =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the HTML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
+# The default value is: YES.
+
+GENERATE_HTML          = YES
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: html.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_OUTPUT            = ./
+
+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
+# generated HTML page (for example: .htm, .php, .asp).
+# The default value is: .html.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_FILE_EXTENSION    = .html
+
+# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
+# each generated HTML page. If the tag is left blank doxygen will generate a
+# standard header.
+#
+# To get valid HTML the header file that includes any scripts and style sheets
+# that doxygen needs, which is dependent on the configuration options used (e.g.
+# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
+# default header using
+# doxygen -w html new_header.html new_footer.html new_stylesheet.css
+# YourConfigFile
+# and then modify the file new_header.html. See also section "Doxygen usage"
+# for information on how to generate the default header that doxygen normally
+# uses.
+# Note: The header is subject to change so you typically have to regenerate the
+# default header when upgrading to a newer version of doxygen. For a description
+# of the possible markers and block names see the documentation.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_HEADER            = ../docs/named_data_theme/named_data_header.html
+
+# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
+# generated HTML page. If the tag is left blank doxygen will generate a standard
+# footer. See HTML_HEADER for more information on how to generate a default
+# footer and what special commands can be used inside the footer. See also
+# section "Doxygen usage" for information on how to generate the default footer
+# that doxygen normally uses.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_FOOTER            = @HTML_FOOTER@
+
+# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
+# sheet that is used by each HTML page. It can be used to fine-tune the look of
+# the HTML output. If left blank doxygen will generate a default style sheet.
+# See also section "Doxygen usage" for information on how to generate the style
+# sheet that doxygen normally uses.
+# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
+# it is more robust and this tag (HTML_STYLESHEET) will in the future become
+# obsolete.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_STYLESHEET        = ../docs/named_data_theme/static/named_data_doxygen.css
+
+# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
+# defined cascading style sheet that is included after the standard style sheets
+# created by doxygen. Using this option one can overrule certain style aspects.
+# This is preferred over using HTML_STYLESHEET since it does not replace the
+# standard style sheet and is therefor more robust against future updates.
+# Doxygen will copy the style sheet file to the output directory. For an example
+# see the documentation.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_EXTRA_STYLESHEET  =
+
+# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
+# other source files which should be copied to the HTML output directory. Note
+# that these files will be copied to the base HTML output directory. Use the
+# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
+# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
+# files will be copied as-is; there are no commands or markers available.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_EXTRA_FILES       = ../docs/named_data_theme/static/doxygen.css \
+                         ../docs/named_data_theme/static/base.css \
+                         ../docs/named_data_theme/static/foundation.css \
+                         ../docs/named_data_theme/static/bar-top.png
+
+# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
+# will adjust the colors in the stylesheet and background images according to
+# this color. Hue is specified as an angle on a colorwheel, see
+# http://en.wikipedia.org/wiki/Hue for more information. For instance the value
+# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
+# purple, and 360 is red again.
+# Minimum value: 0, maximum value: 359, default value: 220.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_COLORSTYLE_HUE    = 0
+
+# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
+# in the HTML output. For a value of 0 the output will use grayscales only. A
+# value of 255 will produce the most vivid colors.
+# Minimum value: 0, maximum value: 255, default value: 100.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_COLORSTYLE_SAT    = 0
+
+# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
+# luminance component of the colors in the HTML output. Values below 100
+# gradually make the output lighter, whereas values above 100 make the output
+# darker. The value divided by 100 is the actual gamma applied, so 80 represents
+# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
+# change the gamma.
+# Minimum value: 40, maximum value: 240, default value: 80.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_COLORSTYLE_GAMMA  = 91
+
+# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
+# page will contain the date and time when the page was generated. Setting this
+# to NO can help when comparing the output of multiple runs.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_TIMESTAMP         = YES
+
+# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
+# documentation will contain sections that can be hidden and shown after the
+# page has loaded.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_DYNAMIC_SECTIONS  = NO
+
+# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
+# shown in the various tree structured indices initially; the user can expand
+# and collapse entries dynamically later on. Doxygen will expand the tree to
+# such a level that at most the specified number of entries are visible (unless
+# a fully collapsed tree already exceeds this amount). So setting the number of
+# entries 1 will produce a full collapsed tree by default. 0 is a special value
+# representing an infinite number of entries and will result in a full expanded
+# tree by default.
+# Minimum value: 0, maximum value: 9999, default value: 100.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_INDEX_NUM_ENTRIES = 100
+
+# If the GENERATE_DOCSET tag is set to YES, additional index files will be
+# generated that can be used as input for Apple's Xcode 3 integrated development
+# environment (see: http://developer.apple.com/tools/xcode/), introduced with
+# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
+# Makefile in the HTML output directory. Running make will produce the docset in
+# that directory and running make install will install the docset in
+# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
+# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
+# for more information.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_DOCSET        = NO
+
+# This tag determines the name of the docset feed. A documentation feed provides
+# an umbrella under which multiple documentation sets from a single provider
+# (such as a company or product suite) can be grouped.
+# The default value is: Doxygen generated docs.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_FEEDNAME        = "Doxygen generated docs"
+
+# This tag specifies a string that should uniquely identify the documentation
+# set bundle. This should be a reverse domain-name style string, e.g.
+# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
+# The default value is: org.doxygen.Project.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_BUNDLE_ID       = org.doxygen.Project
+
+# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
+# the documentation publisher. This should be a reverse domain-name style
+# string, e.g. com.mycompany.MyDocSet.documentation.
+# The default value is: org.doxygen.Publisher.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_PUBLISHER_ID    = org.doxygen.Publisher
+
+# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
+# The default value is: Publisher.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_PUBLISHER_NAME  = Publisher
+
+# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
+# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
+# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
+# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
+# Windows.
+#
+# The HTML Help Workshop contains a compiler that can convert all HTML output
+# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
+# files are now used as the Windows 98 help format, and will replace the old
+# Windows help format (.hlp) on all Windows platforms in the future. Compressed
+# HTML files also contain an index, a table of contents, and you can search for
+# words in the documentation. The HTML workshop also contains a viewer for
+# compressed HTML files.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_HTMLHELP      = NO
+
+# The CHM_FILE tag can be used to specify the file name of the resulting .chm
+# file. You can add a path in front of the file if the result should not be
+# written to the html output directory.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+CHM_FILE               =
+
+# The HHC_LOCATION tag can be used to specify the location (absolute path
+# including file name) of the HTML help compiler ( hhc.exe). If non-empty
+# doxygen will try to run the HTML help compiler on the generated index.hhp.
+# The file has to be specified with full path.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+HHC_LOCATION           =
+
+# The GENERATE_CHI flag controls if a separate .chi index file is generated (
+# YES) or that it should be included in the master .chm file ( NO).
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+GENERATE_CHI           = NO
+
+# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc)
+# and project file content.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+CHM_INDEX_ENCODING     =
+
+# The BINARY_TOC flag controls whether a binary table of contents is generated (
+# YES) or a normal table of contents ( NO) in the .chm file.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+BINARY_TOC             = NO
+
+# The TOC_EXPAND flag can be set to YES to add extra items for group members to
+# the table of contents of the HTML help documentation and to the tree view.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+TOC_EXPAND             = NO
+
+# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
+# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
+# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
+# (.qch) of the generated HTML documentation.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_QHP           = NO
+
+# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
+# the file name of the resulting .qch file. The path specified is relative to
+# the HTML output folder.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QCH_FILE               =
+
+# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
+# Project output. For more information please see Qt Help Project / Namespace
+# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
+# The default value is: org.doxygen.Project.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_NAMESPACE          = org.doxygen.Project
+
+# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
+# Help Project output. For more information please see Qt Help Project / Virtual
+# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
+# folders).
+# The default value is: doc.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_VIRTUAL_FOLDER     = doc
+
+# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
+# filter to add. For more information please see Qt Help Project / Custom
+# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
+# filters).
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_CUST_FILTER_NAME   =
+
+# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
+# custom filter to add. For more information please see Qt Help Project / Custom
+# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
+# filters).
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_CUST_FILTER_ATTRS  =
+
+# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
+# project's filter section matches. Qt Help Project / Filter Attributes (see:
+# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_SECT_FILTER_ATTRS  =
+
+# The QHG_LOCATION tag can be used to specify the location of Qt's
+# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
+# generated .qhp file.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHG_LOCATION           =
+
+# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
+# generated, together with the HTML files, they form an Eclipse help plugin. To
+# install this plugin and make it available under the help contents menu in
+# Eclipse, the contents of the directory containing the HTML and XML files needs
+# to be copied into the plugins directory of eclipse. The name of the directory
+# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
+# After copying Eclipse needs to be restarted before the help appears.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_ECLIPSEHELP   = NO
+
+# A unique identifier for the Eclipse help plugin. When installing the plugin
+# the directory name containing the HTML and XML files should also have this
+# name. Each documentation set should have its own identifier.
+# The default value is: org.doxygen.Project.
+# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
+
+ECLIPSE_DOC_ID         = org.doxygen.Project
+
+# If you want full control over the layout of the generated HTML pages it might
+# be necessary to disable the index and replace it with your own. The
+# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
+# of each HTML page. A value of NO enables the index and the value YES disables
+# it. Since the tabs in the index contain the same information as the navigation
+# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+DISABLE_INDEX          = NO
+
+# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
+# structure should be generated to display hierarchical information. If the tag
+# value is set to YES, a side panel will be generated containing a tree-like
+# index structure (just like the one that is generated for HTML Help). For this
+# to work a browser that supports JavaScript, DHTML, CSS and frames is required
+# (i.e. any modern browser). Windows users are probably better off using the
+# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can
+# further fine-tune the look of the index. As an example, the default style
+# sheet generated by doxygen has an example that shows how to put an image at
+# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
+# the same information as the tab index, you could consider setting
+# DISABLE_INDEX to YES when enabling this option.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_TREEVIEW      = YES
+
+# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
+# doxygen will group on one line in the generated HTML documentation.
+#
+# Note that a value of 0 will completely suppress the enum values from appearing
+# in the overview section.
+# Minimum value: 0, maximum value: 20, default value: 4.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+ENUM_VALUES_PER_LINE   = 4
+
+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
+# to set the initial width (in pixels) of the frame in which the tree is shown.
+# Minimum value: 0, maximum value: 1500, default value: 250.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+TREEVIEW_WIDTH         = 250
+
+# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to
+# external symbols imported via tag files in a separate window.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+EXT_LINKS_IN_WINDOW    = NO
+
+# Use this tag to change the font size of LaTeX formulas included as images in
+# the HTML documentation. When you change the font size after a successful
+# doxygen run you need to manually remove any form_*.png images from the HTML
+# output directory to force them to be regenerated.
+# Minimum value: 8, maximum value: 50, default value: 10.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+FORMULA_FONTSIZE       = 10
+
+# Use the FORMULA_TRANPARENT tag to determine whether or not the images
+# generated for formulas are transparent PNGs. Transparent PNGs are not
+# supported properly for IE 6.0, but are supported on all modern browsers.
+#
+# Note that when changing this option you need to delete any form_*.png files in
+# the HTML output directory before the changes have effect.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+FORMULA_TRANSPARENT    = YES
+
+# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
+# http://www.mathjax.org) which uses client side Javascript for the rendering
+# instead of using prerendered bitmaps. Use this if you do not have LaTeX
+# installed or if you want to formulas look prettier in the HTML output. When
+# enabled you may also need to install MathJax separately and configure the path
+# to it using the MATHJAX_RELPATH option.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+USE_MATHJAX            = NO
+
+# When MathJax is enabled you can set the default output format to be used for
+# the MathJax output. See the MathJax site (see:
+# http://docs.mathjax.org/en/latest/output.html) for more details.
+# Possible values are: HTML-CSS (which is slower, but has the best
+# compatibility), NativeMML (i.e. MathML) and SVG.
+# The default value is: HTML-CSS.
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_FORMAT         = HTML-CSS
+
+# When MathJax is enabled you need to specify the location relative to the HTML
+# output directory using the MATHJAX_RELPATH option. The destination directory
+# should contain the MathJax.js script. For instance, if the mathjax directory
+# is located at the same level as the HTML output directory, then
+# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
+# Content Delivery Network so you can quickly see the result without installing
+# MathJax. However, it is strongly recommended to install a local copy of
+# MathJax from http://www.mathjax.org before deployment.
+# The default value is: http://cdn.mathjax.org/mathjax/latest.
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest
+
+# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
+# extension names that should be enabled during MathJax rendering. For example
+# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_EXTENSIONS     =
+
+# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
+# of code that will be used on startup of the MathJax code. See the MathJax site
+# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
+# example see the documentation.
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_CODEFILE       =
+
+# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
+# the HTML output. The underlying search engine uses javascript and DHTML and
+# should work on any modern browser. Note that when using HTML help
+# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
+# there is already a search function so this one should typically be disabled.
+# For large projects the javascript based search engine can be slow, then
+# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
+# search using the keyboard; to jump to the search box use <access key> + S
+# (what the <access key> is depends on the OS and browser, but it is typically
+# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
+# key> to jump into the search results window, the results can be navigated
+# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
+# the search. The filter options can be selected when the cursor is inside the
+# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
+# to select a filter and <Enter> or <escape> to activate or cancel the filter
+# option.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+SEARCHENGINE           = YES
+
+# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
+# implemented using a web server instead of a web client using Javascript. There
+# are two flavours of web server based searching depending on the
+# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for
+# searching and an index file used by the script. When EXTERNAL_SEARCH is
+# enabled the indexing and searching needs to be provided by external tools. See
+# the section "External Indexing and Searching" for details.
+# The default value is: NO.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+SERVER_BASED_SEARCH    = NO
+
+# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
+# script for searching. Instead the search results are written to an XML file
+# which needs to be processed by an external indexer. Doxygen will invoke an
+# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
+# search results.
+#
+# Doxygen ships with an example indexer ( doxyindexer) and search engine
+# (doxysearch.cgi) which are based on the open source search engine library
+# Xapian (see: http://xapian.org/).
+#
+# See the section "External Indexing and Searching" for details.
+# The default value is: NO.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+EXTERNAL_SEARCH        = NO
+
+# The SEARCHENGINE_URL should point to a search engine hosted by a web server
+# which will return the search results when EXTERNAL_SEARCH is enabled.
+#
+# Doxygen ships with an example indexer ( doxyindexer) and search engine
+# (doxysearch.cgi) which are based on the open source search engine library
+# Xapian (see: http://xapian.org/). See the section "External Indexing and
+# Searching" for details.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+SEARCHENGINE_URL       =
+
+# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
+# search data is written to a file for indexing by an external tool. With the
+# SEARCHDATA_FILE tag the name of this file can be specified.
+# The default file is: searchdata.xml.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+SEARCHDATA_FILE        = searchdata.xml
+
+# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
+# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
+# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
+# projects and redirect the results back to the right project.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+EXTERNAL_SEARCH_ID     =
+
+# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
+# projects other than the one defined by this configuration file, but that are
+# all added to the same external search index. Each project needs to have a
+# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
+# to a relative location where the documentation can be found. The format is:
+# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+EXTRA_SEARCH_MAPPINGS  =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the LaTeX output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output.
+# The default value is: YES.
+
+GENERATE_LATEX         = NO
+
+# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: latex.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_OUTPUT           = latex
+
+# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
+# invoked.
+#
+# Note that when enabling USE_PDFLATEX this option is only used for generating
+# bitmaps for formulas in the HTML output, but not in the Makefile that is
+# written to the output directory.
+# The default file is: latex.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_CMD_NAME         = latex
+
+# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
+# index for LaTeX.
+# The default file is: makeindex.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+MAKEINDEX_CMD_NAME     = makeindex
+
+# If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX
+# documents. This may be useful for small projects and may help to save some
+# trees in general.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+COMPACT_LATEX          = NO
+
+# The PAPER_TYPE tag can be used to set the paper type that is used by the
+# printer.
+# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
+# 14 inches) and executive (7.25 x 10.5 inches).
+# The default value is: a4.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+PAPER_TYPE             = a4
+
+# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
+# that should be included in the LaTeX output. To get the times font for
+# instance you can specify
+# EXTRA_PACKAGES=times
+# If left blank no extra packages will be included.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+EXTRA_PACKAGES         =
+
+# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
+# generated LaTeX document. The header should contain everything until the first
+# chapter. If it is left blank doxygen will generate a standard header. See
+# section "Doxygen usage" for information on how to let doxygen write the
+# default header to a separate file.
+#
+# Note: Only use a user-defined header if you know what you are doing! The
+# following commands have a special meaning inside the header: $title,
+# $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will
+# replace them by respectively the title of the page, the current date and time,
+# only the current date, the version number of doxygen, the project name (see
+# PROJECT_NAME), or the project number (see PROJECT_NUMBER).
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_HEADER           =
+
+# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
+# generated LaTeX document. The footer should contain everything after the last
+# chapter. If it is left blank doxygen will generate a standard footer.
+#
+# Note: Only use a user-defined footer if you know what you are doing!
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_FOOTER           =
+
+# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
+# other source files which should be copied to the LATEX_OUTPUT output
+# directory. Note that the files will be copied as-is; there are no commands or
+# markers available.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_EXTRA_FILES      =
+
+# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
+# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
+# contain links (just like the HTML output) instead of page references. This
+# makes the output suitable for online browsing using a PDF viewer.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+PDF_HYPERLINKS         = YES
+
+# If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
+# the PDF file directly from the LaTeX files. Set this option to YES to get a
+# higher quality PDF documentation.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+USE_PDFLATEX           = YES
+
+# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
+# command to the generated LaTeX files. This will instruct LaTeX to keep running
+# if errors occur, instead of asking the user for help. This option is also used
+# when generating formulas in HTML.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_BATCHMODE        = NO
+
+# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
+# index chapters (such as File Index, Compound Index, etc.) in the output.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_HIDE_INDICES     = NO
+
+# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
+# code with syntax highlighting in the LaTeX output.
+#
+# Note that which sources are shown also depends on other settings such as
+# SOURCE_BROWSER.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_SOURCE_CODE      = NO
+
+# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
+# bibliography, e.g. plainnat, or ieeetr. See
+# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
+# The default value is: plain.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_BIB_STYLE        = plain
+
+#---------------------------------------------------------------------------
+# Configuration options related to the RTF output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The
+# RTF output is optimized for Word 97 and may not look too pretty with other RTF
+# readers/editors.
+# The default value is: NO.
+
+GENERATE_RTF           = NO
+
+# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: rtf.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_OUTPUT             = rtf
+
+# If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF
+# documents. This may be useful for small projects and may help to save some
+# trees in general.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+COMPACT_RTF            = NO
+
+# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
+# contain hyperlink fields. The RTF file will contain links (just like the HTML
+# output) instead of page references. This makes the output suitable for online
+# browsing using Word or some other Word compatible readers that support those
+# fields.
+#
+# Note: WordPad (write) and others do not support links.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_HYPERLINKS         = NO
+
+# Load stylesheet definitions from file. Syntax is similar to doxygen's config
+# file, i.e. a series of assignments. You only have to provide replacements,
+# missing definitions are set to their default value.
+#
+# See also section "Doxygen usage" for information on how to generate the
+# default style sheet that doxygen normally uses.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_STYLESHEET_FILE    =
+
+# Set optional variables used in the generation of an RTF document. Syntax is
+# similar to doxygen's config file. A template extensions file can be generated
+# using doxygen -e rtf extensionFile.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_EXTENSIONS_FILE    =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the man page output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_MAN tag is set to YES doxygen will generate man pages for
+# classes and files.
+# The default value is: NO.
+
+GENERATE_MAN           = NO
+
+# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it. A directory man3 will be created inside the directory specified by
+# MAN_OUTPUT.
+# The default directory is: man.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_OUTPUT             = man
+
+# The MAN_EXTENSION tag determines the extension that is added to the generated
+# man pages. In case the manual section does not start with a number, the number
+# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
+# optional.
+# The default value is: .3.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_EXTENSION          = .3
+
+# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
+# will generate one additional man file for each entity documented in the real
+# man page(s). These additional files only source the real man page, but without
+# them the man command would be unable to find the correct page.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_LINKS              = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the XML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_XML tag is set to YES doxygen will generate an XML file that
+# captures the structure of the code including all documentation.
+# The default value is: NO.
+
+GENERATE_XML           = NO
+
+# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: xml.
+# This tag requires that the tag GENERATE_XML is set to YES.
+
+XML_OUTPUT             = xml
+
+# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
+# validating XML parser to check the syntax of the XML files.
+# This tag requires that the tag GENERATE_XML is set to YES.
+
+XML_SCHEMA             =
+
+# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
+# validating XML parser to check the syntax of the XML files.
+# This tag requires that the tag GENERATE_XML is set to YES.
+
+XML_DTD                =
+
+# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
+# listings (including syntax highlighting and cross-referencing information) to
+# the XML output. Note that enabling this will significantly increase the size
+# of the XML output.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_XML is set to YES.
+
+XML_PROGRAMLISTING     = YES
+
+#---------------------------------------------------------------------------
+# Configuration options related to the DOCBOOK output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files
+# that can be used to generate PDF.
+# The default value is: NO.
+
+GENERATE_DOCBOOK       = NO
+
+# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
+# front of it.
+# The default directory is: docbook.
+# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
+
+DOCBOOK_OUTPUT         = docbook
+
+#---------------------------------------------------------------------------
+# Configuration options for the AutoGen Definitions output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen
+# Definitions (see http://autogen.sf.net) file that captures the structure of
+# the code including all documentation. Note that this feature is still
+# experimental and incomplete at the moment.
+# The default value is: NO.
+
+GENERATE_AUTOGEN_DEF   = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the Perl module output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module
+# file that captures the structure of the code including all documentation.
+#
+# Note that this feature is still experimental and incomplete at the moment.
+# The default value is: NO.
+
+GENERATE_PERLMOD       = NO
+
+# If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary
+# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
+# output from the Perl module output.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
+PERLMOD_LATEX          = NO
+
+# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely
+# formatted so it can be parsed by a human reader. This is useful if you want to
+# understand what is going on. On the other hand, if this tag is set to NO the
+# size of the Perl module output will be much smaller and Perl will parse it
+# just the same.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
+PERLMOD_PRETTY         = YES
+
+# The names of the make variables in the generated doxyrules.make file are
+# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
+# so different doxyrules.make files included by the same Makefile don't
+# overwrite each other's variables.
+# This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
+PERLMOD_MAKEVAR_PREFIX =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the preprocessor
+#---------------------------------------------------------------------------
+
+# If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all
+# C-preprocessor directives found in the sources and include files.
+# The default value is: YES.
+
+ENABLE_PREPROCESSING   = YES
+
+# If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names
+# in the source code. If set to NO only conditional compilation will be
+# performed. Macro expansion can be done in a controlled way by setting
+# EXPAND_ONLY_PREDEF to YES.
+# The default value is: NO.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+MACRO_EXPANSION        = YES
+
+# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
+# the macro expansion is limited to the macros specified with the PREDEFINED and
+# EXPAND_AS_DEFINED tags.
+# The default value is: NO.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+EXPAND_ONLY_PREDEF     = NO
+
+# If the SEARCH_INCLUDES tag is set to YES the includes files in the
+# INCLUDE_PATH will be searched if a #include is found.
+# The default value is: YES.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+SEARCH_INCLUDES        = YES
+
+# The INCLUDE_PATH tag can be used to specify one or more directories that
+# contain include files that are not input files but should be processed by the
+# preprocessor.
+# This tag requires that the tag SEARCH_INCLUDES is set to YES.
+
+INCLUDE_PATH           =
+
+# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
+# patterns (like *.h and *.hpp) to filter out the header-files in the
+# directories. If left blank, the patterns specified with FILE_PATTERNS will be
+# used.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+INCLUDE_FILE_PATTERNS  =
+
+# The PREDEFINED tag can be used to specify one or more macro names that are
+# defined before the preprocessor is started (similar to the -D option of e.g.
+# gcc). The argument of the tag is a list of macros of the form: name or
+# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
+# is assumed. To prevent a macro definition from being undefined via #undef or
+# recursively expanded use the := operator instead of the = operator.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+PREDEFINED             =
+
+# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
+# tag can be used to specify a list of macro names that should be expanded. The
+# macro definition that is found in the sources will be used. Use the PREDEFINED
+# tag if you want to use a different macro definition that overrules the
+# definition found in the source code.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+EXPAND_AS_DEFINED      =
+
+# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
+# remove all refrences to function-like macros that are alone on a line, have an
+# all uppercase name, and do not end with a semicolon. Such function macros are
+# typically used for boiler-plate code, and will confuse the parser if not
+# removed.
+# The default value is: YES.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+SKIP_FUNCTION_MACROS   = YES
+
+#---------------------------------------------------------------------------
+# Configuration options related to external references
+#---------------------------------------------------------------------------
+
+# The TAGFILES tag can be used to specify one or more tag files. For each tag
+# file the location of the external documentation should be added. The format of
+# a tag file without this location is as follows:
+# TAGFILES = file1 file2 ...
+# Adding location for the tag files is done as follows:
+# TAGFILES = file1=loc1 "file2 = loc2" ...
+# where loc1 and loc2 can be relative or absolute paths or URLs. See the
+# section "Linking to external documentation" for more information about the use
+# of tag files.
+# Note: Each tag file must have an unique name (where the name does NOT include
+# the path). If a tag file is not located in the directory in which doxygen is
+# run, you must also specify the path to the tagfile here.
+
+TAGFILES               =
+
+# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
+# tag file that is based on the input files it reads. See section "Linking to
+# external documentation" for more information about the usage of tag files.
+
+GENERATE_TAGFILE       = nsl.tag
+
+# If the ALLEXTERNALS tag is set to YES all external class will be listed in the
+# class index. If set to NO only the inherited external classes will be listed.
+# The default value is: NO.
+
+ALLEXTERNALS           = NO
+
+# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in
+# the modules index. If set to NO, only the current project's groups will be
+# listed.
+# The default value is: YES.
+
+EXTERNAL_GROUPS        = YES
+
+# If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in
+# the related pages index. If set to NO, only the current project's pages will
+# be listed.
+# The default value is: YES.
+
+EXTERNAL_PAGES         = YES
+
+# The PERL_PATH should be the absolute path and name of the perl script
+# interpreter (i.e. the result of 'which perl').
+# The default file (with absolute path) is: /usr/bin/perl.
+
+PERL_PATH              = /usr/bin/perl
+
+#---------------------------------------------------------------------------
+# Configuration options related to the dot tool
+#---------------------------------------------------------------------------
+
+# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
+# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
+# NO turns the diagrams off. Note that this option also works with HAVE_DOT
+# disabled, but it is recommended to install and use dot, since it yields more
+# powerful graphs.
+# The default value is: YES.
+
+CLASS_DIAGRAMS         = YES
+
+# You can define message sequence charts within doxygen comments using the \msc
+# command. Doxygen will then run the mscgen tool (see:
+# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
+# documentation. The MSCGEN_PATH tag allows you to specify the directory where
+# the mscgen tool resides. If left empty the tool is assumed to be found in the
+# default search path.
+
+MSCGEN_PATH            =
+
+# If set to YES, the inheritance and collaboration graphs will hide inheritance
+# and usage relations if the target is undocumented or is not a class.
+# The default value is: YES.
+
+HIDE_UNDOC_RELATIONS   = YES
+
+# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
+# available from the path. This tool is part of Graphviz (see:
+# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
+# Bell Labs. The other options in this section have no effect if this option is
+# set to NO
+# The default value is: NO.
+
+HAVE_DOT               = YES
+
+# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
+# to run in parallel. When set to 0 doxygen will base this on the number of
+# processors available in the system. You can set it explicitly to a value
+# larger than 0 to get control over the balance between CPU load and processing
+# speed.
+# Minimum value: 0, maximum value: 32, default value: 0.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_NUM_THREADS        = 0
+
+# When you want a differently looking font n the dot files that doxygen
+# generates you can specify the font name using DOT_FONTNAME. You need to make
+# sure dot is able to find the font, which can be done by putting it in a
+# standard location or by setting the DOTFONTPATH environment variable or by
+# setting DOT_FONTPATH to the directory containing the font.
+# The default value is: Helvetica.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_FONTNAME           = Helvetica
+
+# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
+# dot graphs.
+# Minimum value: 4, maximum value: 24, default value: 10.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_FONTSIZE           = 10
+
+# By default doxygen will tell dot to use the default font as specified with
+# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
+# the path where dot can find it using this tag.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_FONTPATH           =
+
+# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
+# each documented class showing the direct and indirect inheritance relations.
+# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+CLASS_GRAPH            = YES
+
+# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
+# graph for each documented class showing the direct and indirect implementation
+# dependencies (inheritance, containment, and class references variables) of the
+# class with other documented classes.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+COLLABORATION_GRAPH    = YES
+
+# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
+# groups, showing the direct groups dependencies.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+GROUP_GRAPHS           = YES
+
+# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
+# collaboration diagrams in a style similar to the OMG's Unified Modeling
+# Language.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+UML_LOOK               = NO
+
+# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
+# class node. If there are many fields or methods and many nodes the graph may
+# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
+# number of items for each type to make the size more manageable. Set this to 0
+# for no limit. Note that the threshold may be exceeded by 50% before the limit
+# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
+# but if the number exceeds 15, the total amount of fields shown is limited to
+# 10.
+# Minimum value: 0, maximum value: 100, default value: 10.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+UML_LIMIT_NUM_FIELDS   = 10
+
+# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
+# collaboration graphs will show the relations between templates and their
+# instances.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+TEMPLATE_RELATIONS     = YES
+
+# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
+# YES then doxygen will generate a graph for each documented file showing the
+# direct and indirect include dependencies of the file with other documented
+# files.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+INCLUDE_GRAPH          = YES
+
+# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
+# set to YES then doxygen will generate a graph for each documented file showing
+# the direct and indirect include dependencies of the file with other documented
+# files.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+INCLUDED_BY_GRAPH      = YES
+
+# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
+# dependency graph for every global function or class method.
+#
+# Note that enabling this option will significantly increase the time of a run.
+# So in most cases it will be better to enable call graphs for selected
+# functions only using the \callgraph command.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+CALL_GRAPH             = NO
+
+# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
+# dependency graph for every global function or class method.
+#
+# Note that enabling this option will significantly increase the time of a run.
+# So in most cases it will be better to enable caller graphs for selected
+# functions only using the \callergraph command.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+CALLER_GRAPH           = NO
+
+# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
+# hierarchy of all classes instead of a textual one.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+GRAPHICAL_HIERARCHY    = YES
+
+# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
+# dependencies a directory has on other directories in a graphical way. The
+# dependency relations are determined by the #include relations between the
+# files in the directories.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DIRECTORY_GRAPH        = YES
+
+# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
+# generated by dot.
+# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
+# to make the SVG files visible in IE 9+ (other browsers do not have this
+# requirement).
+# Possible values are: png, jpg, gif and svg.
+# The default value is: png.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_IMAGE_FORMAT       = svg
+
+# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
+# enable generation of interactive SVG images that allow zooming and panning.
+#
+# Note that this requires a modern browser other than Internet Explorer. Tested
+# and working are Firefox, Chrome, Safari, and Opera.
+# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
+# the SVG files visible. Older versions of IE do not have SVG support.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+INTERACTIVE_SVG        = NO
+
+# The DOT_PATH tag can be used to specify the path where the dot tool can be
+# found. If left blank, it is assumed the dot tool can be found in the path.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_PATH               =
+
+# The DOTFILE_DIRS tag can be used to specify one or more directories that
+# contain dot files that are included in the documentation (see the \dotfile
+# command).
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOTFILE_DIRS           =
+
+# The MSCFILE_DIRS tag can be used to specify one or more directories that
+# contain msc files that are included in the documentation (see the \mscfile
+# command).
+
+MSCFILE_DIRS           =
+
+# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
+# that will be shown in the graph. If the number of nodes in a graph becomes
+# larger than this value, doxygen will truncate the graph, which is visualized
+# by representing a node as a red box. Note that doxygen if the number of direct
+# children of the root node in a graph is already larger than
+# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
+# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
+# Minimum value: 0, maximum value: 10000, default value: 50.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_GRAPH_MAX_NODES    = 50
+
+# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
+# generated by dot. A depth value of 3 means that only nodes reachable from the
+# root by following a path via at most 3 edges will be shown. Nodes that lay
+# further from the root node will be omitted. Note that setting this option to 1
+# or 2 may greatly reduce the computation time needed for large code bases. Also
+# note that the size of a graph can be further restricted by
+# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
+# Minimum value: 0, maximum value: 1000, default value: 0.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+MAX_DOT_GRAPH_DEPTH    = 0
+
+# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
+# background. This is disabled by default, because dot on Windows does not seem
+# to support this out of the box.
+#
+# Warning: Depending on the platform used, enabling this option may lead to
+# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
+# read).
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_TRANSPARENT        = YES
+
+# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
+# files in one run (i.e. multiple -o and -T options on the command line). This
+# makes dot run faster, but since only newer versions of dot (>1.8.10) support
+# this, this feature is disabled by default.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_MULTI_TARGETS      = NO
+
+# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
+# explaining the meaning of the various boxes and arrows in the dot generated
+# graphs.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+GENERATE_LEGEND        = YES
+
+# If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot
+# files that are used to generate the various graphs.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_CLEANUP            = YES
diff --git a/docs/index.rst b/docs/index.rst
new file mode 100644
index 0000000..8dbcefa
--- /dev/null
+++ b/docs/index.rst
@@ -0,0 +1,40 @@
+NSL: NDN Signature Logger
+=========================
+
+NSL is a Logging System that can be used to validate data with long lifetime.
+
+Please submit any bugs or issues to the `NSL issue tracker
+<http://redmine.named-data.net/projects/nsl/issues>`__.
+
+NSL Documentation
+-----------------
+
+.. toctree::
+   :hidden:
+   :maxdepth: 3
+
+   README
+   INSTALL
+   manpages
+
+- :doc:`README`
+
+- :doc:`INSTALL`
+
+- :doc:`manpages`
+
+Documentation for ndn-cxx developers and contributors
++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+- `API documentation (doxygen) <doxygen/annotated.html>`_
+
+License
+-------
+
+NSL is an open source project licensed under conditions of GNU Lesser General Public License.
+For more information about the license, refer to
+`COPYING <https://github.com/named-data/nsl/blob/master/COPYING>`_.
+
+While the license does not require it, we really would appreciate it if
+others would share their contributions to the library if they are
+willing to do so under the same license.
diff --git a/docs/manpages.rst b/docs/manpages.rst
new file mode 100644
index 0000000..d33e272
--- /dev/null
+++ b/docs/manpages.rst
@@ -0,0 +1,8 @@
+.. _Manpages:
+
+Manpages
+========
+
+.. toctree::
+   manpages/nsl
+   :maxdepth: 1
diff --git a/docs/manpages/nsl.rst b/docs/manpages/nsl.rst
new file mode 100644
index 0000000..f57c6cf
--- /dev/null
+++ b/docs/manpages/nsl.rst
@@ -0,0 +1,2 @@
+nsl
+===
diff --git a/docs/named_data_theme/layout.html b/docs/named_data_theme/layout.html
new file mode 100644
index 0000000..78b6477
--- /dev/null
+++ b/docs/named_data_theme/layout.html
@@ -0,0 +1,86 @@
+{#
+    named_data_theme/layout.html
+    ~~~~~~~~~~~~~~~~~
+#}
+{% extends "basic/layout.html" %}
+
+{% block header %}
+    <!--headercontainer-->
+    <div id="header_container">
+
+        <!--header-->
+        <div class="row">
+             <div class="three columns">
+                  <div id="logo">
+                        <a href="http://named-data.net" title="A Future Internet Architecture"><img src="http://named-data.net/wp-content/uploads/cropped-20130722_Logo2.png" alt="" /></a>
+                  </div><!--logo end-->
+             </div>
+
+             <!--top menu-->
+             <div class="nine columns" id="menu_container" >
+               <h1><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a></h1>
+             </div>
+        </div>
+    </div><!--header container end-->
+
+{% endblock %}
+
+{% block content %}
+    <div class="content-wrapper">
+      <div class="content">
+        <div class="document">
+          {%- block document %}
+            {{ super() }}
+          {%- endblock %}
+        </div>
+        <div class="sidebar">
+          {%- block sidebartoc %}
+          <h3>{{ _('Table Of Contents') }}</h3>
+          {{ toctree(includehidden=True) }}
+
+          <h3>{{ _('Developer documentation') }}</h3>
+          <ul>
+            <li class="toctree-l1"><a class="reference internal" href="doxygen/annotated.html">API documentation (doxygen)</a></li>
+            <li class="toctree-l1"><a class="reference internal" href="code-style.html">ndn-cxx Code Style and Coding Guidelines</a></li>
+          </ul>
+          {%- endblock %}
+
+          {%- block sidebarsearch %}
+          <h3 style="margin-top: 1.5em;">{{ _('Search') }}</h3>
+          <form class="search" action="{{ pathto('search') }}" method="get">
+            <input type="text" name="q" />
+            <input type="submit" value="{{ _('Go') }}" />
+            <input type="hidden" name="check_keywords" value="yes" />
+            <input type="hidden" name="area" value="default" />
+          </form>
+          <p class="searchtip" style="font-size: 90%">
+            {{ _('Enter search terms or a module, class or function name.') }}
+          </p>
+          {%- endblock %}
+        </div>
+        <div class="clearer"></div>
+      </div>
+    </div>
+{% endblock %}
+
+{% block footer %}
+    <div id="footer-container">
+        <!--footer container-->
+        <div class="row">
+        </div><!-- footer container-->
+    </div>
+
+    <div id="footer-info">
+        <!--footer container-->
+        <div class="row">
+            <div class="twelve columns">
+
+                <div id="copyright">This research is partially supported by NSF (Award <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1040868" target="_blank>">CNS-1040868</a>)<br/><br/><a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US" target="_blank">Creative Commons Attribution 3.0 Unported License</a> except where noted.</div>
+
+            </div>
+        </div>
+    </div><!--footer info end-->
+{% endblock %}
+
+{% block relbar1 %}{% endblock %}
+{% block relbar2 %}{% endblock %}
diff --git a/docs/named_data_theme/named_data_footer-with-analytics.html.in b/docs/named_data_theme/named_data_footer-with-analytics.html.in
new file mode 100644
index 0000000..b05c1f2
--- /dev/null
+++ b/docs/named_data_theme/named_data_footer-with-analytics.html.in
@@ -0,0 +1,37 @@
+<!-- start footer part -->
+<!--BEGIN GENERATE_TREEVIEW-->
+<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
+  <ul>
+    $navpath
+    <li class="footer">$generatedby
+    <a href="http://www.doxygen.org/index.html">
+    <img class="footer" src="$relpath$doxygen.png" alt="doxygen"/></a> $doxygenversion </li>
+  </ul>
+</div>
+<!--END GENERATE_TREEVIEW-->
+<!--BEGIN !GENERATE_TREEVIEW-->
+<hr class="footer"/>
+<address class="footer"><small>
+$generatedby &#160;<a href="http://www.doxygen.org/index.html">
+<img class="footer" src="$relpath$doxygen.png" alt="doxygen"/>
+</a> $doxygenversion
+</small></address>
+<!--END !GENERATE_TREEVIEW-->
+
+<script type="text/javascript">
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', '@GOOGLE_ANALYTICS@']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  })();
+</script>
+
+<script type="text/javascript">
+</script>
+</body>
+</html>
diff --git a/docs/named_data_theme/named_data_footer.html b/docs/named_data_theme/named_data_footer.html
new file mode 100644
index 0000000..77fc327
--- /dev/null
+++ b/docs/named_data_theme/named_data_footer.html
@@ -0,0 +1,24 @@
+<!-- start footer part -->
+<!--BEGIN GENERATE_TREEVIEW-->
+<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
+  <ul>
+    $navpath
+    <li class="footer">$generatedby
+    <a href="http://www.doxygen.org/index.html">
+    <img class="footer" src="$relpath$doxygen.png" alt="doxygen"/></a> $doxygenversion </li>
+  </ul>
+</div>
+<!--END GENERATE_TREEVIEW-->
+<!--BEGIN !GENERATE_TREEVIEW-->
+<hr class="footer"/>
+<address class="footer"><small>
+$generatedby &#160;<a href="http://www.doxygen.org/index.html">
+<img class="footer" src="$relpath$doxygen.png" alt="doxygen"/>
+</a> $doxygenversion
+</small></address>
+<!--END !GENERATE_TREEVIEW-->
+
+<script type="text/javascript">
+</script>
+</body>
+</html>
diff --git a/docs/named_data_theme/named_data_header.html b/docs/named_data_theme/named_data_header.html
new file mode 100644
index 0000000..c84397c
--- /dev/null
+++ b/docs/named_data_theme/named_data_header.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
+<meta http-equiv="X-UA-Compatible" content="IE=9"/>
+<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
+<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
+<link href="$relpath$tabs.css" rel="stylesheet" type="text/css"/>
+<script type="text/javascript" src="$relpath$jquery.js"></script>
+<script type="text/javascript" src="$relpath$dynsections.js"></script>
+$treeview
+$search
+$mathjax
+<link href="$relpath$doxygen.css" rel="stylesheet" type="text/css"/>
+<link href="$relpath$named_data_doxygen.css" rel="stylesheet" type="text/css" />
+<link href="$relpath$favicon.ico" rel="shortcut icon" type="image/ico" />
+</head>
+<body>
+<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
+
+<!--BEGIN TITLEAREA-->
+<!--headercontainer-->
+<div id="header_container">
+
+    <!--header-->
+    <div class="row">
+         <div class="three columns">
+              <div id="logo">
+                    <a href="http://named-data.net" title="A Future Internet Architecture"><img src="http://named-data.net/wp-content/uploads/cropped-20130722_Logo2.png" alt="" /></a>
+              </div><!--logo end-->
+         </div>
+
+         <!--top menu-->
+         <div class="nine columns" id="menu_container" >
+           <h1><a href="http://named-data.net/doc/ndn-cxx/$projectnumber/">$projectname $projectnumber documentation</a></h1>
+         </div>
+    </div>
+</div><!--header container end-->
+<!--END TITLEAREA-->
+
+<!-- end header part -->
diff --git a/docs/named_data_theme/static/bar-top.png b/docs/named_data_theme/static/bar-top.png
new file mode 100644
index 0000000..07cafb6
--- /dev/null
+++ b/docs/named_data_theme/static/bar-top.png
Binary files differ
diff --git a/docs/named_data_theme/static/base.css b/docs/named_data_theme/static/base.css
new file mode 100644
index 0000000..164d1c1
--- /dev/null
+++ b/docs/named_data_theme/static/base.css
@@ -0,0 +1,71 @@
+* {
+  margin: 0px;
+  padding: 0px;
+}
+
+html { font-size: 62.5%; }
+
+body {
+  font-family: "Verdana", Arial, sans-serif;
+  background-color: #eeeeec;
+  color: #777;
+  border-top: 4px solid #fd7800;
+}
+
+body { background: white; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1; color: #222222; position: relative; -webkit-font-smoothing: antialiased; }
+
+.clearer {
+  clear: both;
+}
+
+.left {
+  float: left;
+}
+
+.right {
+  float: right;
+}
+
+.line-block {
+    display: block;
+    margin-top: 1em;
+    margin-bottom: 1em;
+}
+
+.line-block .line-block {
+    margin-top: 0;
+    margin-bottom: 0;
+    margin-left: 1.5em;
+}
+
+h1, h2, h3, h4 {
+  font-family: "Georgia", "Times New Roman", serif;
+  font-weight: normal;
+  color: #3465a4;
+  margin-bottom: .8em;
+}
+
+h1 {
+  color: #204a87;
+}
+
+h2 {
+  padding-bottom: .5em;
+  border-bottom: 1px solid #3465a4;
+}
+
+a.headerlink {
+  visibility: hidden;
+  color: #dddddd;
+  padding-left: .3em;
+}
+
+h1:hover > a.headerlink,
+h2:hover > a.headerlink,
+h3:hover > a.headerlink,
+h4:hover > a.headerlink,
+h5:hover > a.headerlink,
+h6:hover > a.headerlink,
+dt:hover > a.headerlink {
+  visibility: visible;
+}
diff --git a/docs/named_data_theme/static/base.css_t b/docs/named_data_theme/static/base.css_t
new file mode 100644
index 0000000..eed3973
--- /dev/null
+++ b/docs/named_data_theme/static/base.css_t
@@ -0,0 +1,459 @@
+* {
+  margin: 0px;
+  padding: 0px;
+}
+
+html { font-size: 62.5%; }
+
+body {
+  font-family: {{ theme_bodyfont }};
+  background-color: {{ theme_bgcolor }};
+  color: #777;
+  border-top: 4px solid #fd7800;
+}
+
+body { background: white; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1; color: #222222; position: relative; -webkit-font-smoothing: antialiased; }
+
+/* Page layout */
+
+div.header, div.content, div.footer {
+  width: 90%;
+  margin-left: auto;
+  margin-right: auto;
+}
+
+div.header-wrapper {
+  background: {{ theme_headerbg }};
+  border-bottom: 3px solid #2e3436;
+}
+
+
+/* Default body styles */
+a {
+  color: {{ theme_linkcolor }};
+}
+
+div.bodywrapper a, div.footer a {
+  text-decoration: none;
+}
+
+.clearer {
+  clear: both;
+}
+
+.left {
+  float: left;
+}
+
+.right {
+  float: right;
+}
+
+.line-block {
+    display: block;
+    margin-top: 1em;
+    margin-bottom: 1em;
+}
+
+.line-block .line-block {
+    margin-top: 0;
+    margin-bottom: 0;
+    margin-left: 1.5em;
+}
+
+h1, h2, h3, h4 {
+  font-family: {{ theme_headerfont }};
+  font-weight: normal;
+  color: {{ theme_headercolor2 }};
+  margin-bottom: .8em;
+}
+
+h1 {
+  color: {{ theme_headercolor1 }};
+}
+
+h2 {
+  padding-bottom: .5em;
+  border-bottom: 1px solid {{ theme_headercolor2 }};
+}
+
+a.headerlink {
+  visibility: hidden;
+  color: #dddddd;
+  padding-left: .3em;
+}
+
+h1:hover > a.headerlink,
+h2:hover > a.headerlink,
+h3:hover > a.headerlink,
+h4:hover > a.headerlink,
+h5:hover > a.headerlink,
+h6:hover > a.headerlink,
+dt:hover > a.headerlink {
+  visibility: visible;
+}
+
+img {
+  border: 0;
+}
+
+div.admonition {
+  margin-top: 10px;
+  margin-bottom: 10px;
+  padding: 2px 7px 1px 7px;
+  border-left: 0.2em solid black;
+}
+
+p.admonition-title {
+  margin: 0px 10px 5px 0px;
+  font-weight: bold;
+}
+
+dt:target, .highlighted {
+  background-color: #fbe54e;
+}
+
+/* Header */
+
+div.header {
+  padding-top: 10px;
+  padding-bottom: 10px;
+}
+
+div.header .headertitle {
+  font-family: {{ theme_headerfont }};
+  font-weight: normal;
+  font-size: 180%;
+  letter-spacing: .08em;
+  margin-bottom: .8em;
+}
+
+div.header .headertitle a {
+  color: white;
+}
+
+div.header div.rel {
+  margin-top: 1em;
+}
+
+div.header div.rel a {
+  color: {{ theme_headerlinkcolor }};
+  letter-spacing: .1em;
+  text-transform: uppercase;
+}
+
+p.logo {
+    float: right;
+}
+
+img.logo {
+    border: 0;
+}
+
+
+/* Content */
+div.content-wrapper {
+  background-color: white;
+  padding-top: 20px;
+  padding-bottom: 20px;
+}
+
+div.document {
+  width: 70%;
+  float: left;
+}
+
+div.body {
+  padding-right: 2em;
+  text-align: left;
+}
+
+div.document h1 {
+  line-height: 120%;
+}
+
+div.document ul {
+  margin-left: 1.5em;
+  list-style-type: square;
+}
+
+div.document dd {
+  margin-left: 1.2em;
+  margin-top: .4em;
+  margin-bottom: 1em;
+}
+
+div.document .section {
+  margin-top: 1.7em;
+}
+div.document .section:first-child {
+  margin-top: 0px;
+}
+
+div.document div.highlight {
+  padding: 3px;
+  background-color: #eeeeec;
+  border-top: 2px solid #dddddd;
+  border-bottom: 2px solid #dddddd;
+  margin-bottom: .8em;
+}
+
+div.document h2 {
+  margin-top: .7em;
+}
+
+div.document p {
+  margin-bottom: .5em;
+}
+
+div.document li.toctree-l1 {
+  margin-bottom: 1em;
+}
+
+div.document .descname {
+  font-weight: bold;
+}
+
+div.document .docutils.literal {
+  background-color: #eeeeec;
+  padding: 1px;
+}
+
+div.document .docutils.xref.literal {
+  background-color: transparent;
+  padding: 0px;
+}
+
+div.document ol {
+  margin: 1.5em;
+}
+
+
+/* Sidebar */
+
+div.sidebar {
+  width: 20%;
+  float: right;
+  font-size: .9em;
+}
+
+div.sidebar a, div.header a {
+  text-decoration: none;
+}
+
+div.sidebar a:hover, div.header a:hover {
+  text-decoration: none;
+}
+
+div.sidebar h3 {
+  color: #2e3436;
+  text-transform: uppercase;
+  font-size: 130%;
+  letter-spacing: .1em;
+}
+
+div.sidebar ul {
+  list-style-type: none;
+}
+
+div.sidebar li.toctree-l1 a {
+  display: block;
+  padding: 1px;
+  border: 1px solid #dddddd;
+  background-color: #eeeeec;
+  margin-bottom: .4em;
+  padding-left: 3px;
+  color: #2e3436;
+}
+
+div.sidebar li.toctree-l2 a {
+  background-color: transparent;
+  border: none;
+  margin-left: 1em;
+  border-bottom: 1px solid #dddddd;
+}
+
+div.sidebar li.toctree-l3 a {
+  background-color: transparent;
+  border: none;
+  margin-left: 2em;
+  border-bottom: 1px solid #dddddd;
+}
+
+div.sidebar li.toctree-l2:last-child a {
+  border-bottom: none;
+}
+
+div.sidebar li.toctree-l1.current a {
+  border-right: 5px solid {{ theme_headerlinkcolor }};
+}
+
+div.sidebar li.toctree-l1.current li.toctree-l2 a {
+  border-right: none;
+}
+
+div.sidebar input[type="text"] {
+  width: 170px;
+}
+
+div.sidebar input[type="submit"] {
+  width: 30px;
+}
+
+
+/* Footer */
+
+div.footer-wrapper {
+  background: {{ theme_footerbg }};
+  border-top: 4px solid #babdb6;
+  padding-top: 10px;
+  padding-bottom: 10px;
+  min-height: 80px;
+}
+
+div.footer, div.footer a {
+  color: #888a85;
+}
+
+div.footer .right {
+  text-align: right;
+}
+
+div.footer .left {
+  text-transform: uppercase;
+}
+
+
+/* Styles copied from basic theme */
+
+img.align-left, .figure.align-left, object.align-left {
+    clear: left;
+    float: left;
+    margin-right: 1em;
+}
+
+img.align-right, .figure.align-right, object.align-right {
+    clear: right;
+    float: right;
+    margin-left: 1em;
+}
+
+img.align-center, .figure.align-center, object.align-center {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
+
+.align-left {
+    text-align: left;
+}
+
+.align-center {
+    text-align: center;
+}
+
+.align-right {
+    text-align: right;
+}
+
+/* -- search page ----------------------------------------------------------- */
+
+ul.search {
+    margin: 10px 0 0 20px;
+    padding: 0;
+}
+
+ul.search li {
+    padding: 5px 0 5px 20px;
+    background-image: url(file.png);
+    background-repeat: no-repeat;
+    background-position: 0 7px;
+}
+
+ul.search li a {
+    font-weight: bold;
+}
+
+ul.search li div.context {
+    color: #888;
+    margin: 2px 0 0 30px;
+    text-align: left;
+}
+
+ul.keywordmatches li.goodmatch a {
+    font-weight: bold;
+}
+
+/* -- index page ------------------------------------------------------------ */
+
+table.contentstable {
+    width: 90%;
+}
+
+table.contentstable p.biglink {
+    line-height: 150%;
+}
+
+a.biglink {
+    font-size: 1.3em;
+}
+
+span.linkdescr {
+    font-style: italic;
+    padding-top: 5px;
+    font-size: 90%;
+}
+
+/* -- general index --------------------------------------------------------- */
+
+table.indextable td {
+    text-align: left;
+    vertical-align: top;
+}
+
+table.indextable dl, table.indextable dd {
+    margin-top: 0;
+    margin-bottom: 0;
+}
+
+table.indextable tr.pcap {
+    height: 10px;
+}
+
+table.indextable tr.cap {
+    margin-top: 10px;
+    background-color: #f2f2f2;
+}
+
+img.toggler {
+    margin-right: 3px;
+    margin-top: 3px;
+    cursor: pointer;
+}
+
+/* -- viewcode extension ---------------------------------------------------- */
+
+.viewcode-link {
+    float: right;
+}
+
+.viewcode-back {
+    float: right;
+    font-family:: {{ theme_bodyfont }};
+}
+
+div.viewcode-block:target {
+    margin: -1px -3px;
+    padding: 0 3px;
+    background-color: #f4debf;
+    border-top: 1px solid #ac9;
+    border-bottom: 1px solid #ac9;
+}
+
+td.linenos pre {
+    padding: 5px 0px;
+    border: 0;
+    background-color: transparent;
+    color: #aaa;
+    margin-top: -10pt;
+}
\ No newline at end of file
diff --git a/docs/named_data_theme/static/bc_s.png b/docs/named_data_theme/static/bc_s.png
new file mode 100644
index 0000000..eebf862
--- /dev/null
+++ b/docs/named_data_theme/static/bc_s.png
Binary files differ
diff --git a/docs/named_data_theme/static/default.css_t b/docs/named_data_theme/static/default.css_t
new file mode 100644
index 0000000..b582768
--- /dev/null
+++ b/docs/named_data_theme/static/default.css_t
@@ -0,0 +1,14 @@
+@import url("agogo.css");
+
+pre {
+    padding: 10px;
+    background-color: #fafafa;
+    color: #222;
+    line-height: 1.2em;
+    border: 2px solid #C6C9CB;
+    font-size: 1.1em;
+    /* margin: 1.5em 0 1.5em 0; */
+    margin: 0;
+    border-right-style: none;
+    border-left-style: none;
+}
diff --git a/docs/named_data_theme/static/doxygen.css b/docs/named_data_theme/static/doxygen.css
new file mode 100644
index 0000000..e5c796e
--- /dev/null
+++ b/docs/named_data_theme/static/doxygen.css
@@ -0,0 +1,1157 @@
+/* The standard CSS for doxygen */
+
+body, table, div, p, dl {
+	font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
+	font-size: 13px;
+	line-height: 1.3;
+}
+
+/* @group Heading Levels */
+
+h1 {
+	font-size: 150%;
+}
+
+.title {
+	font-size: 150%;
+	font-weight: bold;
+	margin: 10px 2px;
+}
+
+h2 {
+	font-size: 120%;
+}
+
+h3 {
+	font-size: 100%;
+}
+
+h1, h2, h3, h4, h5, h6 {
+	-webkit-transition: text-shadow 0.5s linear;
+	-moz-transition: text-shadow 0.5s linear;
+	-ms-transition: text-shadow 0.5s linear;
+	-o-transition: text-shadow 0.5s linear;
+	transition: text-shadow 0.5s linear;
+	margin-right: 15px;
+}
+
+h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
+	text-shadow: 0 0 15px cyan;
+}
+
+dt {
+	font-weight: bold;
+}
+
+div.multicol {
+	-moz-column-gap: 1em;
+	-webkit-column-gap: 1em;
+	-moz-column-count: 3;
+	-webkit-column-count: 3;
+}
+
+p.startli, p.startdd, p.starttd {
+	margin-top: 2px;
+}
+
+p.endli {
+	margin-bottom: 0px;
+}
+
+p.enddd {
+	margin-bottom: 4px;
+}
+
+p.endtd {
+	margin-bottom: 2px;
+}
+
+/* @end */
+
+caption {
+	font-weight: bold;
+}
+
+span.legend {
+        font-size: 70%;
+        text-align: center;
+}
+
+h3.version {
+        font-size: 90%;
+        text-align: center;
+}
+
+div.qindex, div.navtab{
+	background-color: #EFEFEF;
+	border: 1px solid #B5B5B5;
+	text-align: center;
+}
+
+div.qindex, div.navpath {
+	width: 100%;
+	line-height: 140%;
+}
+
+div.navtab {
+	margin-right: 15px;
+}
+
+/* @group Link Styling */
+
+a {
+	color: #585858;
+	font-weight: normal;
+	text-decoration: none;
+}
+
+/*.contents a:visited {
+	color: #686868;
+}*/
+
+a:hover {
+	text-decoration: underline;
+}
+
+a.qindex {
+	font-weight: bold;
+}
+
+a.qindexHL {
+	font-weight: bold;
+	background-color: #B0B0B0;
+	color: #ffffff;
+	border: 1px double #9F9F9F;
+}
+
+.contents a.qindexHL:visited {
+        color: #ffffff;
+}
+
+a.el {
+	font-weight: bold;
+}
+
+a.elRef {
+}
+
+a.code, a.code:visited {
+	color: #4665A2;
+}
+
+a.codeRef, a.codeRef:visited {
+	color: #4665A2;
+}
+
+/* @end */
+
+dl.el {
+	margin-left: -1cm;
+}
+
+pre.fragment {
+        border: 1px solid #C4CFE5;
+        background-color: #FBFCFD;
+        padding: 4px 6px;
+        margin: 4px 8px 4px 2px;
+        overflow: auto;
+        word-wrap: break-word;
+        font-size:  9pt;
+        line-height: 125%;
+        font-family: monospace, fixed;
+        font-size: 105%;
+}
+
+div.fragment {
+        padding: 4px;
+        margin: 4px;
+	background-color: #FCFCFC;
+	border: 1px solid #D0D0D0;
+}
+
+div.line {
+	font-family: monospace, fixed;
+        font-size: 13px;
+	min-height: 13px;
+	line-height: 1.0;
+	text-wrap: unrestricted;
+	white-space: -moz-pre-wrap; /* Moz */
+	white-space: -pre-wrap;     /* Opera 4-6 */
+	white-space: -o-pre-wrap;   /* Opera 7 */
+	white-space: pre-wrap;      /* CSS3  */
+	word-wrap: break-word;      /* IE 5.5+ */
+	text-indent: -53px;
+	padding-left: 53px;
+	padding-bottom: 0px;
+	margin: 0px;
+	-webkit-transition-property: background-color, box-shadow;
+	-webkit-transition-duration: 0.5s;
+	-moz-transition-property: background-color, box-shadow;
+	-moz-transition-duration: 0.5s;
+	-ms-transition-property: background-color, box-shadow;
+	-ms-transition-duration: 0.5s;
+	-o-transition-property: background-color, box-shadow;
+	-o-transition-duration: 0.5s;
+	transition-property: background-color, box-shadow;
+	transition-duration: 0.5s;
+}
+
+div.line.glow {
+	background-color: cyan;
+	box-shadow: 0 0 10px cyan;
+}
+
+
+span.lineno {
+	padding-right: 4px;
+	text-align: right;
+	border-right: 2px solid #0F0;
+	background-color: #E8E8E8;
+        white-space: pre;
+}
+span.lineno a {
+	background-color: #D8D8D8;
+}
+
+span.lineno a:hover {
+	background-color: #C8C8C8;
+}
+
+div.ah {
+	background-color: black;
+	font-weight: bold;
+	color: #ffffff;
+	margin-bottom: 3px;
+	margin-top: 3px;
+	padding: 0.2em;
+	border: solid thin #333;
+	border-radius: 0.5em;
+	-webkit-border-radius: .5em;
+	-moz-border-radius: .5em;
+	box-shadow: 2px 2px 3px #999;
+	-webkit-box-shadow: 2px 2px 3px #999;
+	-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
+	background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
+}
+
+div.groupHeader {
+	margin-left: 16px;
+	margin-top: 12px;
+	font-weight: bold;
+}
+
+div.groupText {
+	margin-left: 16px;
+	font-style: italic;
+}
+
+body {
+	background-color: white;
+	color: black;
+        margin: 0;
+}
+
+div.contents {
+	margin-top: 10px;
+	margin-left: 12px;
+	margin-right: 8px;
+}
+
+td.indexkey {
+	background-color: #EFEFEF;
+	font-weight: bold;
+	border: 1px solid #D0D0D0;
+	margin: 2px 0px 2px 0;
+	padding: 2px 10px;
+        white-space: nowrap;
+        vertical-align: top;
+}
+
+td.indexvalue {
+	background-color: #EFEFEF;
+	border: 1px solid #D0D0D0;
+	padding: 2px 10px;
+	margin: 2px 0px;
+}
+
+tr.memlist {
+	background-color: #F1F1F1;
+}
+
+p.formulaDsp {
+	text-align: center;
+}
+
+img.formulaDsp {
+
+}
+
+img.formulaInl {
+	vertical-align: middle;
+}
+
+div.center {
+	text-align: center;
+        margin-top: 0px;
+        margin-bottom: 0px;
+        padding: 0px;
+}
+
+div.center img {
+	border: 0px;
+}
+
+address.footer {
+	text-align: right;
+	padding-right: 12px;
+}
+
+img.footer {
+	border: 0px;
+	vertical-align: middle;
+}
+
+/* @group Code Colorization */
+
+span.keyword {
+	color: #008000
+}
+
+span.keywordtype {
+	color: #604020
+}
+
+span.keywordflow {
+	color: #e08000
+}
+
+span.comment {
+	color: #800000
+}
+
+span.preprocessor {
+	color: #806020
+}
+
+span.stringliteral {
+	color: #002080
+}
+
+span.charliteral {
+	color: #008080
+}
+
+span.vhdldigit {
+	color: #ff00ff
+}
+
+span.vhdlchar {
+	color: #000000
+}
+
+span.vhdlkeyword {
+	color: #700070
+}
+
+span.vhdllogic {
+	color: #ff0000
+}
+
+blockquote {
+        background-color: #F8F8F8;
+        border-left: 2px solid #B0B0B0;
+        margin: 0 24px 0 4px;
+        padding: 0 12px 0 16px;
+}
+
+/* @end */
+
+/*
+.search {
+	color: #003399;
+	font-weight: bold;
+}
+
+form.search {
+	margin-bottom: 0px;
+	margin-top: 0px;
+}
+
+input.search {
+	font-size: 75%;
+	color: #000080;
+	font-weight: normal;
+	background-color: #e8eef2;
+}
+*/
+
+td.tiny {
+	font-size: 75%;
+}
+
+.dirtab {
+	padding: 4px;
+	border-collapse: collapse;
+	border: 1px solid #B5B5B5;
+}
+
+th.dirtab {
+	background: #EFEFEF;
+	font-weight: bold;
+}
+
+hr {
+	height: 0px;
+	border: none;
+	border-top: 1px solid #6E6E6E;
+}
+
+hr.footer {
+	height: 1px;
+}
+
+/* @group Member Descriptions */
+
+table.memberdecls {
+	border-spacing: 0px;
+	padding: 0px;
+}
+
+.memberdecls td {
+	-webkit-transition-property: background-color, box-shadow;
+	-webkit-transition-duration: 0.5s;
+	-moz-transition-property: background-color, box-shadow;
+	-moz-transition-duration: 0.5s;
+	-ms-transition-property: background-color, box-shadow;
+	-ms-transition-duration: 0.5s;
+	-o-transition-property: background-color, box-shadow;
+	-o-transition-duration: 0.5s;
+	transition-property: background-color, box-shadow;
+	transition-duration: 0.5s;
+}
+
+.memberdecls td.glow {
+	background-color: cyan;
+	box-shadow: 0 0 15px cyan;
+}
+
+.mdescLeft, .mdescRight,
+.memItemLeft, .memItemRight,
+.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
+	background-color: #FAFAFA;
+	border: none;
+	margin: 4px;
+	padding: 1px 0 0 8px;
+}
+
+.mdescLeft, .mdescRight {
+	padding: 0px 8px 4px 8px;
+	color: #555;
+}
+
+.memItemLeft, .memItemRight, .memTemplParams {
+	border-top: 1px solid #D0D0D0;
+}
+
+.memItemLeft, .memTemplItemLeft {
+        white-space: nowrap;
+}
+
+.memItemRight {
+	width: 100%;
+}
+
+.memTemplParams {
+	color: #686868;
+        white-space: nowrap;
+}
+
+/* @end */
+
+/* @group Member Details */
+
+/* Styles for detailed member documentation */
+
+.memtemplate {
+	font-size: 80%;
+	color: #686868;
+	font-weight: normal;
+	margin-left: 9px;
+}
+
+.memnav {
+	background-color: #EFEFEF;
+	border: 1px solid #B5B5B5;
+	text-align: center;
+	margin: 2px;
+	margin-right: 15px;
+	padding: 2px;
+}
+
+.mempage {
+	width: 100%;
+}
+
+.memitem {
+	padding: 0;
+	margin-bottom: 10px;
+	margin-right: 5px;
+        -webkit-transition: box-shadow 0.5s linear;
+        -moz-transition: box-shadow 0.5s linear;
+        -ms-transition: box-shadow 0.5s linear;
+        -o-transition: box-shadow 0.5s linear;
+        transition: box-shadow 0.5s linear;
+        display: table !important;
+        width: 100%;
+}
+
+.memitem.glow {
+         box-shadow: 0 0 15px cyan;
+}
+
+.memname {
+        font-weight: bold;
+        margin-left: 6px;
+}
+
+.memname td {
+	vertical-align: bottom;
+}
+
+.memproto, dl.reflist dt {
+        border-top: 1px solid #B9B9B9;
+        border-left: 1px solid #B9B9B9;
+        border-right: 1px solid #B9B9B9;
+        padding: 6px 0px 6px 0px;
+        color: #323232;
+        font-weight: bold;
+        text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
+        background-image:url('nav_f.png');
+        background-repeat:repeat-x;
+        background-color: #E8E8E8;
+        /* opera specific markup */
+        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
+        border-top-right-radius: 4px;
+        border-top-left-radius: 4px;
+        /* firefox specific markup */
+        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
+        -moz-border-radius-topright: 4px;
+        -moz-border-radius-topleft: 4px;
+        /* webkit specific markup */
+        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
+        -webkit-border-top-right-radius: 4px;
+        -webkit-border-top-left-radius: 4px;
+
+}
+
+.memdoc, dl.reflist dd {
+        border-bottom: 1px solid #B9B9B9;
+        border-left: 1px solid #B9B9B9;
+        border-right: 1px solid #B9B9B9;
+        padding: 6px 10px 2px 10px;
+        background-color: #FCFCFC;
+        border-top-width: 0;
+        background-image:url('nav_g.png');
+        background-repeat:repeat-x;
+        background-color: #FFFFFF;
+        /* opera specific markup */
+        border-bottom-left-radius: 4px;
+        border-bottom-right-radius: 4px;
+        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
+        /* firefox specific markup */
+        -moz-border-radius-bottomleft: 4px;
+        -moz-border-radius-bottomright: 4px;
+        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
+        /* webkit specific markup */
+        -webkit-border-bottom-left-radius: 4px;
+        -webkit-border-bottom-right-radius: 4px;
+        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
+}
+
+dl.reflist dt {
+        padding: 5px;
+}
+
+dl.reflist dd {
+        margin: 0px 0px 10px 0px;
+        padding: 5px;
+}
+
+.paramkey {
+	text-align: right;
+}
+
+.paramtype {
+	white-space: nowrap;
+}
+
+.paramname {
+	color: #602020;
+	white-space: nowrap;
+}
+.paramname em {
+	font-style: normal;
+}
+.paramname code {
+        line-height: 14px;
+}
+
+.params, .retval, .exception, .tparams {
+        margin-left: 0px;
+        padding-left: 0px;
+}
+
+.params .paramname, .retval .paramname {
+        font-weight: bold;
+        vertical-align: top;
+}
+
+.params .paramtype {
+        font-style: italic;
+        vertical-align: top;
+}
+
+.params .paramdir {
+        font-family: "courier new",courier,monospace;
+        vertical-align: top;
+}
+
+table.mlabels {
+	border-spacing: 0px;
+}
+
+td.mlabels-left {
+	width: 100%;
+	padding: 0px;
+}
+
+td.mlabels-right {
+	vertical-align: bottom;
+	padding: 0px;
+	white-space: nowrap;
+}
+
+span.mlabels {
+        margin-left: 8px;
+}
+
+span.mlabel {
+        background-color: #8F8F8F;
+        border-top:1px solid #787878;
+        border-left:1px solid #787878;
+        border-right:1px solid #D0D0D0;
+        border-bottom:1px solid #D0D0D0;
+	text-shadow: none;
+        color: white;
+        margin-right: 4px;
+        padding: 2px 3px;
+        border-radius: 3px;
+        font-size: 7pt;
+	white-space: nowrap;
+}
+
+
+
+/* @end */
+
+/* these are for tree view when not used as main index */
+
+div.directory {
+        margin: 10px 0px;
+        border-top: 1px solid #A8B8D9;
+        border-bottom: 1px solid #A8B8D9;
+        width: 100%;
+}
+
+.directory table {
+        border-collapse:collapse;
+        width: 100%;
+}
+
+.directory td {
+        margin: 0px;
+        padding: 0px;
+	vertical-align: top;
+}
+
+.directory td.entry {
+        width: 20%;
+        white-space: nowrap;
+        padding-right: 6px;
+}
+
+.directory td.entry a {
+        outline:none;
+}
+
+.directory td.entry a img {
+        border: none;
+}
+
+.directory td.desc {
+        width: 80%;
+        padding-left: 6px;
+	padding-right: 6px;
+	border-left: 1px solid rgba(0,0,0,0.05);
+}
+
+.directory tr.even {
+	padding-left: 6px;
+	background-color: #F8F8F8;
+}
+
+.directory img {
+	vertical-align: -30%;
+}
+
+.directory .levels {
+        white-space: nowrap;
+        width: 100%;
+        text-align: right;
+        font-size: 9pt;
+}
+
+.directory .levels span {
+        cursor: pointer;
+        padding-left: 2px;
+        padding-right: 2px;
+	color: #585858;
+}
+
+div.dynheader {
+        margin-top: 8px;
+	-webkit-touch-callout: none;
+	-webkit-user-select: none;
+	-khtml-user-select: none;
+	-moz-user-select: none;
+	-ms-user-select: none;
+	user-select: none;
+}
+
+address {
+	font-style: normal;
+	color: #3A3A3A;
+}
+
+table.doxtable {
+	border-collapse:collapse;
+        margin-top: 4px;
+        margin-bottom: 4px;
+}
+
+table.doxtable td, table.doxtable th {
+	border: 1px solid #3F3F3F;
+	padding: 3px 7px 2px;
+}
+
+table.doxtable th {
+	background-color: #4F4F4F;
+	color: #FFFFFF;
+	font-size: 110%;
+	padding-bottom: 4px;
+	padding-top: 5px;
+}
+
+table.fieldtable {
+        width: 100%;
+        margin-bottom: 10px;
+        border: 1px solid #B9B9B9;
+        border-spacing: 0px;
+        -moz-border-radius: 4px;
+        -webkit-border-radius: 4px;
+        border-radius: 4px;
+        -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
+        -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
+        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
+}
+
+.fieldtable td, .fieldtable th {
+        padding: 3px 7px 2px;
+}
+
+.fieldtable td.fieldtype, .fieldtable td.fieldname {
+        white-space: nowrap;
+        border-right: 1px solid #B9B9B9;
+        border-bottom: 1px solid #B9B9B9;
+        vertical-align: top;
+}
+
+.fieldtable td.fielddoc {
+        border-bottom: 1px solid #B9B9B9;
+        width: 100%;
+}
+
+.fieldtable tr:last-child td {
+        border-bottom: none;
+}
+
+.fieldtable th {
+        background-image:url('nav_f.png');
+        background-repeat:repeat-x;
+        background-color: #E8E8E8;
+        font-size: 90%;
+        color: #323232;
+        padding-bottom: 4px;
+        padding-top: 5px;
+        text-align:left;
+        -moz-border-radius-topleft: 4px;
+        -moz-border-radius-topright: 4px;
+        -webkit-border-top-left-radius: 4px;
+        -webkit-border-top-right-radius: 4px;
+        border-top-left-radius: 4px;
+        border-top-right-radius: 4px;
+        border-bottom: 1px solid #B9B9B9;
+}
+
+
+.tabsearch {
+	top: 0px;
+	left: 10px;
+	height: 36px;
+	background-image: url('tab_b.png');
+	z-index: 101;
+	overflow: hidden;
+	font-size: 13px;
+}
+
+.navpath ul
+{
+	font-size: 11px;
+	background-image:url('tab_b.png');
+	background-repeat:repeat-x;
+	height:30px;
+	line-height:30px;
+	color:#A2A2A2;
+	border:solid 1px #CECECE;
+	overflow:hidden;
+	margin:0px;
+	padding:0px;
+}
+
+.navpath li
+{
+	list-style-type:none;
+	float:left;
+	padding-left:10px;
+	padding-right:15px;
+	background-image:url('bc_s.png');
+	background-repeat:no-repeat;
+	background-position:right;
+	color:#4D4D4D;
+}
+
+.navpath li.navelem a
+{
+	height:32px;
+	display:block;
+	text-decoration: none;
+	outline: none;
+}
+
+.navpath li.navelem a:hover
+{
+	color:#888888;
+}
+
+.navpath li.footer
+{
+        list-style-type:none;
+        float:right;
+        padding-left:10px;
+        padding-right:15px;
+        background-image:none;
+        background-repeat:no-repeat;
+        background-position:right;
+        color:#4D4D4D;
+        font-size: 8pt;
+}
+
+
+div.summary
+{
+	float: right;
+	font-size: 8pt;
+	padding-right: 5px;
+	width: 50%;
+	text-align: right;
+}
+
+div.summary a
+{
+	white-space: nowrap;
+}
+
+div.ingroups
+{
+	font-size: 8pt;
+	width: 50%;
+	text-align: left;
+}
+
+div.ingroups a
+{
+	white-space: nowrap;
+}
+
+div.header
+{
+        background-image:url('nav_h.png');
+        background-repeat:repeat-x;
+	background-color: #FAFAFA;
+	margin:  0px;
+	border-bottom: 1px solid #D0D0D0;
+}
+
+div.headertitle
+{
+	padding: 5px 5px 5px 7px;
+}
+
+dl
+{
+        padding: 0 0 0 10px;
+}
+
+/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
+dl.section
+{
+	margin-left: 0px;
+	padding-left: 0px;
+}
+
+dl.note
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border-left:4px solid;
+        border-color: #D0C000;
+}
+
+dl.warning, dl.attention
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border-left:4px solid;
+        border-color: #FF0000;
+}
+
+dl.pre, dl.post, dl.invariant
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border-left:4px solid;
+        border-color: #00D000;
+}
+
+dl.deprecated
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border-left:4px solid;
+        border-color: #505050;
+}
+
+dl.todo
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border:4px solid;
+        border-color: #00C0E0;
+}
+
+dl.test
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border-left:4px solid;
+        border-color: #3030E0;
+}
+
+dl.bug
+{
+        margin-left:-7px;
+        padding-left: 3px;
+        border-left:4px solid;
+        border-color: #C08050;
+}
+
+dl.section dd {
+	margin-bottom: 6px;
+}
+
+
+#projectlogo
+{
+	text-align: center;
+	vertical-align: bottom;
+	border-collapse: separate;
+}
+
+#projectlogo img
+{
+	border: 0px none;
+}
+
+#projectname
+{
+	font: 300% Tahoma, Arial,sans-serif;
+	margin: 0px;
+	padding: 2px 0px;
+}
+
+#projectbrief
+{
+	font: 120% Tahoma, Arial,sans-serif;
+	margin: 0px;
+	padding: 0px;
+}
+
+#projectnumber
+{
+	font: 50% Tahoma, Arial,sans-serif;
+	margin: 0px;
+	padding: 0px;
+}
+
+#titlearea
+{
+	padding: 0px;
+	margin: 0px;
+	width: 100%;
+	border-bottom: 1px solid #787878;
+}
+
+.image
+{
+        text-align: center;
+}
+
+.dotgraph
+{
+        text-align: center;
+}
+
+.mscgraph
+{
+        text-align: center;
+}
+
+.caption
+{
+	font-weight: bold;
+}
+
+div.zoom
+{
+	border: 1px solid #A6A6A6;
+}
+
+dl.citelist {
+        margin-bottom:50px;
+}
+
+dl.citelist dt {
+        color:#484848;
+        float:left;
+        font-weight:bold;
+        margin-right:10px;
+        padding:5px;
+}
+
+dl.citelist dd {
+        margin:2px 0;
+        padding:5px 0;
+}
+
+div.toc {
+        padding: 14px 25px;
+        background-color: #F6F6F6;
+        border: 1px solid #DFDFDF;
+        border-radius: 7px 7px 7px 7px;
+        float: right;
+        height: auto;
+        margin: 0 20px 10px 10px;
+        width: 200px;
+}
+
+div.toc li {
+        background: url("bdwn.png") no-repeat scroll 0 5px transparent;
+        font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
+        margin-top: 5px;
+        padding-left: 10px;
+        padding-top: 2px;
+}
+
+div.toc h3 {
+        font: bold 12px/1.2 Arial,FreeSans,sans-serif;
+	color: #686868;
+        border-bottom: 0 none;
+        margin: 0;
+}
+
+div.toc ul {
+        list-style: none outside none;
+        border: medium none;
+        padding: 0px;
+}
+
+div.toc li.level1 {
+        margin-left: 0px;
+}
+
+div.toc li.level2 {
+        margin-left: 15px;
+}
+
+div.toc li.level3 {
+        margin-left: 30px;
+}
+
+div.toc li.level4 {
+        margin-left: 45px;
+}
+
+.inherit_header {
+        font-weight: bold;
+        color: gray;
+        cursor: pointer;
+	-webkit-touch-callout: none;
+	-webkit-user-select: none;
+	-khtml-user-select: none;
+	-moz-user-select: none;
+	-ms-user-select: none;
+	user-select: none;
+}
+
+.inherit_header td {
+        padding: 6px 0px 2px 5px;
+}
+
+.inherit {
+        display: none;
+}
+
+tr.heading h2 {
+        margin-top: 12px;
+        margin-bottom: 4px;
+}
+
+@media print
+{
+  #top { display: none; }
+  #side-nav { display: none; }
+  #nav-path { display: none; }
+  body { overflow:visible; }
+  h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
+  .summary { display: none; }
+  .memitem { page-break-inside: avoid; }
+  #doc-content
+  {
+    margin-left:0 !important;
+    height:auto !important;
+    width:auto !important;
+    overflow:inherit;
+    display:inline;
+  }
+}
diff --git a/docs/named_data_theme/static/foundation.css b/docs/named_data_theme/static/foundation.css
new file mode 100644
index 0000000..ff1330e
--- /dev/null
+++ b/docs/named_data_theme/static/foundation.css
@@ -0,0 +1,788 @@
+.c-1, .c-2, .c-3, .c-4, .c-5, .c-6, .c-7, .c-8, .c-9, .c-10, .c-11, .c-12 { float: left; }
+
+.c-1, .c-2, .c-3, .c-4, .c-5, .c-6, .c-7, .c-8, .c-9, .c-10, .c-11, .c-12 { position: relative; min-height: 1px; padding: 0 15px; }
+
+.c-1 { width: 8.33333%; }
+
+.c-2 { width: 16.66667%; }
+
+.c-3 { width: 25%; }
+
+.c-4 { width: 33.33333%; }
+
+.c-5 { width: 41.66667%; }
+
+.c-6 { width: 50%; }
+
+.c-7 { width: 58.33333%; }
+
+.c-8 { width: 66.66667%; }
+
+.c-9 { width: 75%; }
+
+.c-10 { width: 83.33333%; }
+
+.c-11 { width: 91.66667%; }
+
+.c-12 { width: 100%; }
+
+/* Requires: normalize.css */
+/* Global Reset & Standards ---------------------- */
+* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
+
+html { font-size: 62.5%; }
+
+body { background: white; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1; color: #222222; position: relative; -webkit-font-smoothing: antialiased; }
+
+/* Links ---------------------- */
+a { color: #fd7800; text-decoration: none; line-height: inherit; }
+
+a:hover { color: #2795b6; }
+
+a:focus { color: #fd7800; outline: none; }
+
+p a, p a:visited { line-height: inherit; }
+
+/* Misc ---------------------- */
+.left { float: left; }
+@media only screen and (max-width: 767px) { .left { float: none; } }
+
+.right { float: right; }
+@media only screen and (max-width: 767px) { .right { float: none; } }
+
+.text-left { text-align: left; }
+
+.text-right { text-align: right; }
+
+.text-center { text-align: center; }
+
+.hide { display: none; }
+
+.highlight { background: #ffff99; }
+
+#googlemap img, object, embed { max-width: none; }
+
+#map_canvas embed { max-width: none; }
+
+#map_canvas img { max-width: none; }
+
+#map_canvas object { max-width: none; }
+
+/* Reset for strange margins by default on <figure> elements */
+figure { margin: 0; }
+
+/* Base Type Styles Using Modular Scale ---------------------- */
+body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; font-size: 14px; direction: ltr; }
+
+p { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-size: 14px; line-height: 1.6; margin-bottom: 17px; }
+p.lead { font-size: 17.5px; line-height: 1.6; margin-bottom: 17px; }
+
+aside p { font-size: 13px; line-height: 1.35; font-style: italic; }
+
+h1, h2, h3, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; color: #222222; text-rendering: optimizeLegibility; line-height: 1.0; margin-bottom: 14px; margin-top: 14px; }
+h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }
+
+h1 { font-size: 24px; }
+
+h2 { font-size: 18px; }
+
+h3 { font-size: 14px; }
+
+h4 { font-size: 12px; }
+
+h5 { font-weight: bold; font-size: 12px; }
+
+h6 { font-style: italic; font-size: 12px; }
+
+hr { border: solid #c6c6c6; border-width: 1px 0 0; clear: both; margin: 22px 0 21px; height: 0; }
+
+.subheader { line-height: 1.3; color: #6f6f6f; font-weight: 300; margin-bottom: 17px; }
+
+em, i { font-style: italic; line-height: inherit; }
+
+strong, b { font-weight: bold; line-height: inherit; }
+
+small { font-size: 60%; line-height: inherit; }
+
+code { font-weight: bold; background: #ffff99; }
+
+/* Lists ---------------------- */
+ul, ol { font-size: 14px; line-height: 1.6; margin-bottom: 17px; list-style-position: inside; }
+
+ul li ul, ul li ol { margin-left: 20px; margin-bottom: 0; }
+ul.square, ul.circle, ul.disc { margin-left: 17px; }
+ul.square { list-style-type: square; }
+ul.square li ul { list-style: inherit; }
+ul.circle { list-style-type: circle; }
+ul.circle li ul { list-style: inherit; }
+ul.disc { list-style-type: disc; }
+ul.disc li ul { list-style: inherit; }
+ul.no-bullet { list-style: none; }
+ul.large li { line-height: 21px; }
+
+ol li ul, ol li ol { margin-left: 20px; margin-bottom: 0; }
+
+/* Blockquotes ---------------------- */
+blockquote, blockquote p { line-height: 1.5; }
+
+blockquote { margin: 0 0 17px; padding: 9px 20px 0 19px; }
+blockquote cite { display: block; font-size: 13pt; color: #555555; }
+blockquote cite:before { content: "\2014 \0020"; }
+blockquote cite a, blockquote cite a:visited { color: #555555; }
+
+abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px solid #ddd; cursor: help; }
+
+abbr { text-transform: none; }
+
+/* Print styles.  Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
+*/
+.print-only { display: none !important; }
+
+@media print { * { background: transparent !important; color: black !important; box-shadow: none !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
+  /* Black prints faster: h5bp.com/s */
+  a, a:visited { text-decoration: underline; }
+  a[href]:after { content: " (" attr(href) ")"; }
+  abbr[title]:after { content: " (" attr(title) ")"; }
+  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
+  /* Don't show links for images, or javascript/internal links */
+  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
+  thead { display: table-header-group; }
+  /* h5bp.com/t */
+  tr, img { page-break-inside: avoid; }
+  img { max-width: 100% !important; }
+  @page { margin: 0.5cm; }
+  p, h2, h3 { orphans: 3; widows: 3; }
+  h2, h3 { page-break-after: avoid; }
+  .hide-on-print { display: none !important; }
+  .print-only { display: block !important; } }
+/* Requires globals.css */
+/* Standard Forms ---------------------- */
+form { margin: 0 0 19.41641px; }
+
+.row form .row { margin: 0 -6px; }
+.row form .row .column, .row form .row .columns { padding: 0 6px; }
+.row form .row.collapse { margin: 0; }
+.row form .row.collapse .column, .row form .row.collapse .columns { padding: 0; }
+
+label { font-size: 14px; color: #4d4d4d; cursor: pointer; display: block; font-weight: 500; margin-bottom: 3px; }
+label.right { float: none; text-align: right; }
+label.inline { line-height: 32px; margin: 0 0 12px 0; }
+
+@media only screen and (max-width: 767px) { label.right { text-align: left; } }
+.prefix, .postfix { display: block; position: relative; z-index: 2; text-align: center; width: 100%; padding-top: 0; padding-bottom: 0; height: 32px; line-height: 31px; }
+
+a.button.prefix, a.button.postfix { padding-left: 0; padding-right: 0; text-align: center; }
+
+span.prefix, span.postfix { background: #f2f2f2; border: 1px solid #cccccc; }
+
+.prefix { left: 2px; -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; border-top-left-radius: 2px; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; overflow: hidden; }
+
+.postfix { right: 2px; -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; border-top-right-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
+
+input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; border: 1px solid #cccccc; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.75); display: block; font-size: 14px; margin: 0 0 12px 0; padding: 6px; height: 32px; width: 100%; -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; transition: all 0.15s linear; }
+input[type="text"].oversize, input[type="password"].oversize, input[type="date"].oversize, input[type="datetime"].oversize, input[type="email"].oversize, input[type="number"].oversize, input[type="search"].oversize, input[type="tel"].oversize, input[type="time"].oversize, input[type="url"].oversize, textarea.oversize { font-size: 17px; padding: 4px 6px; }
+input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { background: #fafafa; outline: none !important; border-color: #b3b3b3; }
+input[type="text"][disabled], input[type="password"][disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="email"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="time"][disabled], input[type="url"][disabled], textarea[disabled] { background-color: #ddd; }
+
+textarea { height: auto; }
+
+select { width: 100%; }
+
+/* Fieldsets */
+fieldset { border: solid 1px #ddd; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; padding: 12px 12px 0; margin: 18px 0; }
+fieldset legend { font-weight: bold; background: white; padding: 0 3px; margin: 0; margin-left: -3px; }
+
+/* Errors */
+.error input, input.error, .error textarea, textarea.error { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); }
+
+.error label, label.error { color: #c60f13; }
+
+.error small, small.error { display: block; padding: 6px 4px; margin-top: -13px; margin-bottom: 12px; background: #c60f13; color: #fff; font-size: 12px; font-size: 1.2rem; font-weight: bold; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
+
+@media only screen and (max-width: 767px) { input[type="text"].one, input[type="password"].one, input[type="date"].one, input[type="datetime"].one, input[type="email"].one, input[type="number"].one, input[type="search"].one, input[type="tel"].one, input[type="time"].one, input[type="url"].one, textarea.one, .row textarea.one { width: 100% !important; }
+  input[type="text"].two, .row input[type="text"].two, input[type="password"].two, .row input[type="password"].two, input[type="date"].two, .row input[type="date"].two, input[type="datetime"].two, .row input[type="datetime"].two, input[type="email"].two, .row input[type="email"].two, input[type="number"].two, .row input[type="number"].two, input[type="search"].two, .row input[type="search"].two, input[type="tel"].two, .row input[type="tel"].two, input[type="time"].two, .row input[type="time"].two, input[type="url"].two, .row input[type="url"].two, textarea.two, .row textarea.two { width: 100% !important; }
+  input[type="text"].three, .row input[type="text"].three, input[type="password"].three, .row input[type="password"].three, input[type="date"].three, .row input[type="date"].three, input[type="datetime"].three, .row input[type="datetime"].three, input[type="email"].three, .row input[type="email"].three, input[type="number"].three, .row input[type="number"].three, input[type="search"].three, .row input[type="search"].three, input[type="tel"].three, .row input[type="tel"].three, input[type="time"].three, .row input[type="time"].three, input[type="url"].three, .row input[type="url"].three, textarea.three, .row textarea.three { width: 100% !important; }
+  input[type="text"].four, .row input[type="text"].four, input[type="password"].four, .row input[type="password"].four, input[type="date"].four, .row input[type="date"].four, input[type="datetime"].four, .row input[type="datetime"].four, input[type="email"].four, .row input[type="email"].four, input[type="number"].four, .row input[type="number"].four, input[type="search"].four, .row input[type="search"].four, input[type="tel"].four, .row input[type="tel"].four, input[type="time"].four, .row input[type="time"].four, input[type="url"].four, .row input[type="url"].four, textarea.four, .row textarea.four { width: 100% !important; }
+  input[type="text"].five, .row input[type="text"].five, input[type="password"].five, .row input[type="password"].five, input[type="date"].five, .row input[type="date"].five, input[type="datetime"].five, .row input[type="datetime"].five, input[type="email"].five, .row input[type="email"].five, input[type="number"].five, .row input[type="number"].five, input[type="search"].five, .row input[type="search"].five, input[type="tel"].five, .row input[type="tel"].five, input[type="time"].five, .row input[type="time"].five, input[type="url"].five, .row input[type="url"].five, textarea.five, .row textarea.five { width: 100% !important; }
+  input[type="text"].six, .row input[type="text"].six, input[type="password"].six, .row input[type="password"].six, input[type="date"].six, .row input[type="date"].six, input[type="datetime"].six, .row input[type="datetime"].six, input[type="email"].six, .row input[type="email"].six, input[type="number"].six, .row input[type="number"].six, input[type="search"].six, .row input[type="search"].six, input[type="tel"].six, .row input[type="tel"].six, input[type="time"].six, .row input[type="time"].six, input[type="url"].six, .row input[type="url"].six, textarea.six, .row textarea.six { width: 100% !important; }
+  input[type="text"].seven, .row input[type="text"].seven, input[type="password"].seven, .row input[type="password"].seven, input[type="date"].seven, .row input[type="date"].seven, input[type="datetime"].seven, .row input[type="datetime"].seven, input[type="email"].seven, .row input[type="email"].seven, input[type="number"].seven, .row input[type="number"].seven, input[type="search"].seven, .row input[type="search"].seven, input[type="tel"].seven, .row input[type="tel"].seven, input[type="time"].seven, .row input[type="time"].seven, input[type="url"].seven, .row input[type="url"].seven, textarea.seven, .row textarea.seven { width: 100% !important; }
+  input[type="text"].eight, .row input[type="text"].eight, input[type="password"].eight, .row input[type="password"].eight, input[type="date"].eight, .row input[type="date"].eight, input[type="datetime"].eight, .row input[type="datetime"].eight, input[type="email"].eight, .row input[type="email"].eight, input[type="number"].eight, .row input[type="number"].eight, input[type="search"].eight, .row input[type="search"].eight, input[type="tel"].eight, .row input[type="tel"].eight, input[type="time"].eight, .row input[type="time"].eight, input[type="url"].eight, .row input[type="url"].eight, textarea.eight, .row textarea.eight { width: 100% !important; }
+  input[type="text"].nine, .row input[type="text"].nine, input[type="password"].nine, .row input[type="password"].nine, input[type="date"].nine, .row input[type="date"].nine, input[type="datetime"].nine, .row input[type="datetime"].nine, input[type="email"].nine, .row input[type="email"].nine, input[type="number"].nine, .row input[type="number"].nine, input[type="search"].nine, .row input[type="search"].nine, input[type="tel"].nine, .row input[type="tel"].nine, input[type="time"].nine, .row input[type="time"].nine, input[type="url"].nine, .row input[type="url"].nine, textarea.nine, .row textarea.nine { width: 100% !important; }
+  input[type="text"].ten, .row input[type="text"].ten, input[type="password"].ten, .row input[type="password"].ten, input[type="date"].ten, .row input[type="date"].ten, input[type="datetime"].ten, .row input[type="datetime"].ten, input[type="email"].ten, .row input[type="email"].ten, input[type="number"].ten, .row input[type="number"].ten, input[type="search"].ten, .row input[type="search"].ten, input[type="tel"].ten, .row input[type="tel"].ten, input[type="time"].ten, .row input[type="time"].ten, input[type="url"].ten, .row input[type="url"].ten, textarea.ten, .row textarea.ten { width: 100% !important; }
+  input[type="text"].eleven, .row input[type="text"].eleven, input[type="password"].eleven, .row input[type="password"].eleven, input[type="date"].eleven, .row input[type="date"].eleven, input[type="datetime"].eleven, .row input[type="datetime"].eleven, input[type="email"].eleven, .row input[type="email"].eleven, input[type="number"].eleven, .row input[type="number"].eleven, input[type="search"].eleven, .row input[type="search"].eleven, input[type="tel"].eleven, .row input[type="tel"].eleven, input[type="time"].eleven, .row input[type="time"].eleven, input[type="url"].eleven, .row input[type="url"].eleven, textarea.eleven, .row textarea.eleven { width: 100% !important; }
+  input[type="text"].twelve, .row input[type="text"].twelve, input[type="password"].twelve, .row input[type="password"].twelve, input[type="date"].twelve, .row input[type="date"].twelve, input[type="datetime"].twelve, .row input[type="datetime"].twelve, input[type="email"].twelve, .row input[type="email"].twelve, input[type="number"].twelve, .row input[type="number"].twelve, input[type="search"].twelve, .row input[type="search"].twelve, input[type="tel"].twelve, .row input[type="tel"].twelve, input[type="time"].twelve, .row input[type="time"].twelve, input[type="url"].twelve, .row input[type="url"].twelve, textarea.twelve, .row textarea.twelve { width: 100% !important; } }
+/* Custom Forms ---------------------- */
+form.custom { /* Custom input, disabled */ }
+form.custom span.custom { display: inline-block; width: 16px; height: 16px; position: relative; top: 2px; border: solid 1px #ccc; background: #fff; }
+form.custom span.custom.radio { -webkit-border-radius: 100px; -moz-border-radius: 100px; -ms-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; }
+form.custom span.custom.checkbox:before { content: ""; display: block; line-height: 0.8; height: 14px; width: 14px; text-align: center; position: absolute; top: 0; left: 0; font-size: 14px; color: #fff; }
+form.custom span.custom.radio.checked:before { content: ""; display: block; width: 8px; height: 8px; -webkit-border-radius: 100px; -moz-border-radius: 100px; -ms-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; background: #222; position: relative; top: 3px; left: 3px; }
+form.custom span.custom.checkbox.checked:before { content: "\00d7"; color: #222; }
+form.custom div.custom.dropdown { display: block; position: relative; width: auto; height: 28px; margin-bottom: 9px; margin-top: 2px; }
+form.custom div.custom.dropdown a.current { display: block; width: auto; line-height: 26px; min-height: 28px; padding: 0; padding-left: 6px; padding-right: 38px; border: solid 1px #ddd; color: #141414; background-color: #fff; white-space: nowrap; }
+form.custom div.custom.dropdown a.selector { position: absolute; width: 27px; height: 28px; display: block; right: 0; top: 0; border: solid 1px #ddd; }
+form.custom div.custom.dropdown a.selector:after { content: ""; display: block; content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: #aaaaaa transparent transparent transparent; position: absolute; left: 50%; top: 50%; margin-top: -2px; margin-left: -5px; }
+form.custom div.custom.dropdown:hover a.selector:after, form.custom div.custom.dropdown.open a.selector:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: #222222 transparent transparent transparent; }
+form.custom div.custom.dropdown.open ul { display: block; z-index: 10; }
+form.custom div.custom.dropdown.small { width: 134px !important; }
+form.custom div.custom.dropdown.medium { width: 254px !important; }
+form.custom div.custom.dropdown.large { width: 434px !important; }
+form.custom div.custom.dropdown.expand { width: 100% !important; }
+form.custom div.custom.dropdown.open.small ul { width: 134px !important; }
+form.custom div.custom.dropdown.open.medium ul { width: 254px !important; }
+form.custom div.custom.dropdown.open.large ul { width: 434px !important; }
+form.custom div.custom.dropdown.open.expand ul { width: 100% !important; }
+form.custom div.custom.dropdown ul { position: absolute; width: auto; display: none; margin: 0; left: 0; top: 27px; margin: 0; padding: 0; background: #fff; background: rgba(255, 255, 255, 0.95); border: solid 1px #cccccc; }
+form.custom div.custom.dropdown ul li { color: #555; font-size: 13px; cursor: pointer; padding: 3px; padding-left: 6px; padding-right: 38px; min-height: 18px; line-height: 18px; margin: 0; white-space: nowrap; list-style: none; }
+form.custom div.custom.dropdown ul li.selected { background: #cdebf5; color: #000; }
+form.custom div.custom.dropdown ul li.selected:after { content: "\2013"; position: absolute; right: 10px; }
+form.custom div.custom.dropdown ul li:hover { background-color: #e3f4f9; color: #222; }
+form.custom div.custom.dropdown ul li:hover:after { content: "\2013"; position: absolute; right: 10px; color: #8ed3e7; }
+form.custom div.custom.dropdown ul li.selected:hover { background: #cdebf5; cursor: default; color: #000; }
+form.custom div.custom.dropdown ul li.selected:hover:after { color: #000; }
+form.custom div.custom.dropdown ul.show { display: block; }
+form.custom .custom.disabled { background-color: #ddd; }
+
+/* Correct FF custom dropdown height */
+@-moz-document url-prefix() { form.custom div.custom.dropdown a.selector { height: 30px; } }
+
+.lt-ie9 form.custom div.custom.dropdown a.selector { height: 30px; }
+
+/* The Grid ---------------------- */
+.row { width: 1000px; max-width: 100%; min-width: 768px; margin: 0 auto; }
+.row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; }
+.row.collapse .column, .row.collapse .columns { padding: 0; }
+.row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; }
+.row .row.collapse { margin: 0; }
+
+.column, .columns { float: left; min-height: 1px; padding: 0 15px; position: relative; }
+.column.centered, .columns.centered { float: none; margin: 0 auto; }
+
+[class*="column"] + [class*="column"]:last-child { float: right; }
+
+[class*="column"] + [class*="column"].end { float: left; }
+
+.one, .row .one { width: 8.33333%; }
+
+.two, .row .two { width: 16.66667%; }
+
+.three, .row .three { width: 25%; }
+
+.four, .row .four { width: 33.33333%; }
+
+.five, .row .five { width: 41.66667%; }
+
+.six, .row .six { width: 50%; }
+
+.seven, .row .seven { width: 58.33333%; }
+
+.eight, .row .eight { width: 66.66667%; }
+
+.nine, .row .nine { width: 75%; }
+
+.ten, .row .ten { width: 83.33333%; }
+
+.eleven, .row .eleven { width: 91.66667%; }
+
+.twelve, .row .twelve { width: 100%; }
+
+.row .offset-by-one { margin-left: 8.33333%; }
+
+.row .offset-by-two { margin-left: 16.66667%; }
+
+.row .offset-by-three { margin-left: 25%; }
+
+.row .offset-by-four { margin-left: 33.33333%; }
+
+.row .offset-by-five { margin-left: 41.66667%; }
+
+.row .offset-by-six { margin-left: 50%; }
+
+.row .offset-by-seven { margin-left: 58.33333%; }
+
+.row .offset-by-eight { margin-left: 66.66667%; }
+
+.row .offset-by-nine { margin-left: 75%; }
+
+.row .offset-by-ten { margin-left: 83.33333%; }
+
+.push-two { left: 16.66667%; }
+
+.pull-two { right: 16.66667%; }
+
+.push-three { left: 25%; }
+
+.pull-three { right: 25%; }
+
+.push-four { left: 33.33333%; }
+
+.pull-four { right: 33.33333%; }
+
+.push-five { left: 41.66667%; }
+
+.pull-five { right: 41.66667%; }
+
+.push-six { left: 50%; }
+
+.pull-six { right: 50%; }
+
+.push-seven { left: 58.33333%; }
+
+.pull-seven { right: 58.33333%; }
+
+.push-eight { left: 66.66667%; }
+
+.pull-eight { right: 66.66667%; }
+
+.push-nine { left: 75%; }
+
+.pull-nine { right: 75%; }
+
+.push-ten { left: 83.33333%; }
+
+.pull-ten { right: 83.33333%; }
+
+img, object, embed { max-width: 100%; height: auto; }
+
+object, embed { height: 100%; }
+
+img { -ms-interpolation-mode: bicubic; }
+
+#map_canvas img, .map_canvas img { max-width: none!important; }
+
+/* Nicolas Gallagher's micro clearfix */
+.row { *zoom: 1; }
+.row:before, .row:after { content: ""; display: table; }
+.row:after { clear: both; }
+
+/* Mobile Grid and Overrides ---------------------- */
+@media only screen and (max-width: 767px) { body { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
+  .row { width: auto; min-width: 0; margin-left: 0; margin-right: 0; }
+  .column, .columns { width: auto !important; float: none; }
+  .column:last-child, .columns:last-child { float: none; }
+  [class*="column"] + [class*="column"]:last-child { float: none; }
+  .column:before, .columns:before, .column:after, .columns:after { content: ""; display: table; }
+  .column:after, .columns:after { clear: both; }
+  .offset-by-one, .offset-by-two, .offset-by-three, .offset-by-four, .offset-by-five, .offset-by-six, .offset-by-seven, .offset-by-eight, .offset-by-nine, .offset-by-ten { margin-left: 0 !important; }
+  .push-two, .push-three, .push-four, .push-five, .push-six, .push-seven, .push-eight, .push-nine, .push-ten { left: auto; }
+  .pull-two, .pull-three, .pull-four, .pull-five, .pull-six, .pull-seven, .pull-eight, .pull-nine, .pull-ten { right: auto; }
+  /* Mobile 4-column Grid */
+  .row .mobile-one { width: 25% !important; float: left; padding: 0 15px; }
+  .row .mobile-one:last-child { float: right; }
+  .row.collapse .mobile-one { padding: 0; }
+  .row .mobile-two { width: 50% !important; float: left; padding: 0 15px; }
+  .row .mobile-two:last-child { float: right; }
+  .row.collapse .mobile-two { padding: 0; }
+  .row .mobile-three { width: 75% !important; float: left; padding: 0 15px; }
+  .row .mobile-three:last-child { float: right; }
+  .row.collapse .mobile-three { padding: 0; }
+  .row .mobile-four { width: 100% !important; float: left; padding: 0 15px; }
+  .row .mobile-four:last-child { float: right; }
+  .row.collapse .mobile-four { padding: 0; }
+  .push-one-mobile { left: 25%; }
+  .pull-one-mobile { right: 25%; }
+  .push-two-mobile { left: 50%; }
+  .pull-two-mobile { right: 50%; }
+  .push-three-mobile { left: 75%; }
+  .pull-three-mobile { right: 75%; } }
+/* Block Grids ---------------------- */
+/* These are 2-up, 3-up, 4-up and 5-up ULs, suited
+for repeating blocks of content. Add 'mobile' to
+them to switch them just like the layout grid
+(one item per line) on phones
+
+For IE7/8 compatibility block-grid items need to be
+the same height. You can optionally uncomment the
+lines below to support arbitrary height, but know
+that IE7/8 do not support :nth-child.
+-------------------------------------------------- */
+.block-grid { display: block; overflow: hidden; padding: 0; }
+.block-grid > li { display: block; height: auto; float: left; }
+.block-grid.one-up { margin: 0; }
+.block-grid.one-up > li { width: 100%; padding: 0 0 15px; }
+.block-grid.two-up { margin: 0 -15px; }
+.block-grid.two-up > li { width: 50%; padding: 0 15px 15px; }
+.block-grid.two-up > li:nth-child(2n+1) { clear: both; }
+.block-grid.three-up { margin: 0 -12px; }
+.block-grid.three-up > li { width: 33.33%; padding: 0 12px 12px; }
+.block-grid.three-up > li:nth-child(3n+1) { clear: both; }
+.block-grid.four-up { margin: 0 -10px; }
+.block-grid.four-up > li { width: 25%; padding: 0 10px 10px; }
+.block-grid.four-up > li:nth-child(4n+1) { clear: both; }
+.block-grid.five-up { margin: 0 -8px; }
+.block-grid.five-up > li { width: 20%; padding: 0 8px 8px; }
+.block-grid.five-up > li:nth-child(5n+1) { clear: both; }
+
+/* Mobile Block Grids */
+@media only screen and (max-width: 767px) { .block-grid.mobile > li { float: none; width: 100%; margin-left: 0; }
+  .block-grid > li { clear: none !important; }
+  .block-grid.mobile-two-up > li { width: 50%; }
+  .block-grid.mobile-two-up > li:nth-child(2n+1) { clear: both; }
+  .block-grid.mobile-three-up > li { width: 33.33%; }
+  .block-grid.mobile-three-up > li:nth-child(3n+1) { clear: both !important; }
+  .block-grid.mobile-four-up > li { width: 25%; }
+  .block-grid.mobile-four-up > li:nth-child(4n+1) { clear: both; }
+  .block-grid.mobile-five-up > li:nth-child(5n+1) { clear: both; } }
+/* Requires globals.css */
+/* Normal Buttons ---------------------- */
+.button { width: auto; background: #fd7800; border: 1px solid #ce6200; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; color: white; cursor: pointer; display: inline-block; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 14px; font-weight: bold; line-height: 1; margin: 0; outline: none; padding: 10px 20px 11px; position: relative; text-align: center; text-decoration: none; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out; /* Hovers */ /* Sizes */ /* Colors */ /* Radii */ /* Layout */ /* Disabled ---------- */ }
+.button:hover { color: white; background-color: #ce6200; }
+.button:active { -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
+.button:focus { -webkit-box-shadow: 0 0 4px #fd7800, 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 0 4px #fd7800, 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 0 4px #fd7800, 0 1px 0 rgba(255, 255, 255, 0.5) inset; color: white; }
+.button.large { font-size: 17px; padding: 15px 30px 16px; }
+.button.medium { font-size: 14px; }
+.button.small { font-size: 11px; padding: 7px 14px 8px; }
+.button.tiny { font-size: 10px; padding: 5px 10px 6px; }
+.button.expand { width: 100%; text-align: center; }
+.button.primary { background-color: #fd7800; border: 1px solid #1e728c; }
+.button.primary:hover { background-color: #2284a1; }
+.button.primary:focus { -webkit-box-shadow: 0 0 4px #fd7800, 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 0 4px #fd7800, 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 0 4px #fd7800, 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
+.button.success { background-color: #5da423; border: 1px solid #396516; }
+.button.success:hover { background-color: #457a1a; }
+.button.success:focus { -webkit-box-shadow: 0 0 5px #5da423, 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 0 5px #5da423, 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 0 5px #5da423, 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
+.button.alert { background-color: #c60f13; border: 1px solid #7f0a0c; }
+.button.alert:hover { background-color: #970b0e; }
+.button.alert:focus { -webkit-box-shadow: 0 0 4px #c60f13, 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 0 4px #c60f13, 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 0 4px #c60f13, 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
+.button.secondary { background-color: #e9e9e9; color: #1d1d1d; border: 1px solid #c3c3c3; }
+.button.secondary:hover { background-color: #d0d0d0; }
+.button.secondary:focus { -webkit-box-shadow: 0 0 5px #e9e9e9, 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 0 5px #e9e9e9, 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 0 5px #e9e9e9, 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
+.button.radius { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
+.button.round { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
+.button.full-width { width: 100%; text-align: center; padding-left: 0px !important; padding-right: 0px !important; }
+.button.left-align { text-align: left; text-indent: 12px; }
+.button.disabled, .button[disabled] { opacity: 0.6; cursor: default; background: #fd7800; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
+.button.disabled :hover, .button[disabled] :hover { background: #fd7800; }
+.button.disabled.success, .button[disabled].success { background-color: #5da423; }
+.button.disabled.success:hover, .button[disabled].success:hover { background-color: #5da423; }
+.button.disabled.alert, .button[disabled].alert { background-color: #c60f13; }
+.button.disabled.alert:hover, .button[disabled].alert:hover { background-color: #c60f13; }
+.button.disabled.secondary, .button[disabled].secondary { background-color: #e9e9e9; }
+.button.disabled.secondary:hover, .button[disabled].secondary:hover { background-color: #e9e9e9; }
+
+/* Don't use native buttons on iOS */
+input[type=submit].button, button.button { -webkit-appearance: none; }
+
+@media only screen and (max-width: 767px) { .button { display: block; }
+  button.button, input[type="submit"].button { width: 100%; padding-left: 0; padding-right: 0; } }
+/* Correct FF button padding */
+@-moz-document url-prefix() { button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner { border: none; padding: 0; }
+  input[type="submit"].tiny.button { padding: 3px 10px 4px; }
+  input[type="submit"].small.button { padding: 5px 14px 6px; }
+  input[type="submit"].button, input[type=submit].medium.button { padding: 8px 20px 9px; }
+  input[type="submit"].large.button { padding: 13px 30px 14px; } }
+
+/* Buttons with Dropdowns ---------------------- */
+.button.dropdown { position: relative; padding-right: 44px; /* Sizes */ /* Triangles */ /* Flyout List */ /* Split Dropdown Buttons */ }
+.button.dropdown.large { padding-right: 60px; }
+.button.dropdown.small { padding-right: 28px; }
+.button.dropdown.tiny { padding-right: 20px; }
+.button.dropdown:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: white transparent transparent transparent; position: absolute; top: 50%; right: 20px; margin-top: -2px; }
+.button.dropdown.large:after { content: ""; display: block; width: 0; height: 0; border: solid 7px; border-color: white transparent transparent transparent; margin-top: -3px; right: 30px; }
+.button.dropdown.small:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: white transparent transparent transparent; margin-top: -2px; right: 14px; }
+.button.dropdown.tiny:after { content: ""; display: block; width: 0; height: 0; border: solid 4px; border-color: white transparent transparent transparent; margin-top: -1px; right: 10px; }
+.button.dropdown > ul { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; display: none; position: absolute; left: -1px; background: #fff; background: rgba(255, 255, 255, 0.95); list-style: none; margin: 0; padding: 0; border: 1px solid #cccccc; border-top: none; min-width: 100%; z-index: 40; }
+.button.dropdown > ul li { width: 100%; cursor: pointer; padding: 0; min-height: 18px; line-height: 18px; margin: 0; white-space: nowrap; list-style: none; }
+.button.dropdown > ul li a { display: block; color: #555; font-size: 13px; font-weight: normal; padding: 6px 14px; text-align: left; }
+.button.dropdown > ul li:hover { background-color: #e3f4f9; color: #222; }
+.button.dropdown > ul li.divider { min-height: 0; padding: 0; height: 1px; margin: 4px 0; background: #ededed; }
+.button.dropdown.up > ul { border-top: 1px solid #cccccc; border-bottom: none; }
+.button.dropdown ul.no-hover.show-dropdown { display: block !important; }
+.button.dropdown:hover > ul.no-hover { display: none; }
+.button.dropdown.split { padding: 0; position: relative; /* Sizes */ /* Triangle Spans */ /* Colors */ }
+.button.dropdown.split:after { display: none; }
+.button.dropdown.split:hover { background-color: #fd7800; }
+.button.dropdown.split.alert:hover { background-color: #c60f13; }
+.button.dropdown.split.success:hover { background-color: #5da423; }
+.button.dropdown.split.secondary:hover { background-color: #e9e9e9; }
+.button.dropdown.split > a { color: white; display: block; padding: 10px 50px 11px 20px; padding-left: 20px; padding-right: 50px; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out; }
+.button.dropdown.split > a:hover { background-color: #2284a1; }
+.button.dropdown.split.large > a { padding: 15px 75px 16px 30px; padding-left: 30px; padding-right: 75px; }
+.button.dropdown.split.small > a { padding: 7px 35px 8px 14px; padding-left: 14px; padding-right: 35px; }
+.button.dropdown.split.tiny > a { padding: 5px 25px 6px 10px; padding-left: 10px; padding-right: 25px; }
+.button.dropdown.split > span { background-color: #fd7800; position: absolute; right: 0; top: 0; height: 100%; width: 30px; border-left: 1px solid #1e728c; -webkit-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out; }
+.button.dropdown.split > span:hover { background-color: #2284a1; }
+.button.dropdown.split > span:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: white transparent transparent transparent; position: absolute; top: 50%; left: 50%; margin-left: -6px; margin-top: -2px; }
+.button.dropdown.split.secondary > span:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: #1d1d1d transparent transparent transparent; }
+.button.dropdown.split.large span { width: 45px; }
+.button.dropdown.split.small span { width: 21px; }
+.button.dropdown.split.tiny span { width: 15px; }
+.button.dropdown.split.large span:after { content: ""; display: block; width: 0; height: 0; border: solid 7px; border-color: white transparent transparent transparent; margin-top: -3px; margin-left: -7px; }
+.button.dropdown.split.small span:after { content: ""; display: block; width: 0; height: 0; border: solid 4px; border-color: white transparent transparent transparent; margin-top: -1px; margin-left: -4px; }
+.button.dropdown.split.tiny span:after { content: ""; display: block; width: 0; height: 0; border: solid 3px; border-color: white transparent transparent transparent; margin-top: -1px; margin-left: -3px; }
+.button.dropdown.split.alert > span { background-color: #c60f13; border-left-color: #7f0a0c; }
+.button.dropdown.split.success > span { background-color: #5da423; border-left-color: #396516; }
+.button.dropdown.split.secondary > span { background-color: #e9e9e9; border-left-color: #c3c3c3; }
+.button.dropdown.split.secondary > a { color: #1d1d1d; }
+.button.dropdown.split.alert > a:hover, .button.dropdown.split.alert > span:hover { background-color: #970b0e; }
+.button.dropdown.split.success > a:hover, .button.dropdown.split.success > span:hover { background-color: #457a1a; }
+.button.dropdown.split.secondary > a:hover, .button.dropdown.split.secondary > span:hover { background-color: #d0d0d0; }
+
+/* Button Groups ---------------------- */
+ul.button-group { list-style: none; padding: 0; margin: 0 0 12px; *zoom: 1; }
+ul.button-group:before, ul.button-group:after { content: ""; display: table; }
+ul.button-group:after { clear: both; }
+ul.button-group li { padding: 0; margin: 0 0 0 -1px; float: left; }
+ul.button-group li:first-child { margin-left: 0; }
+ul.button-group.radius li a.button, ul.button-group.radius li a.button.radius, ul.button-group.radius li a.button-rounded { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; }
+ul.button-group.radius li:first-child a.button, ul.button-group.radius li:first-child a.button.radius { -moz-border-radius-left3px: 5px; -webkit-border-left-3px-radius: 5px; border-left-3px-radius: 5px; }
+ul.button-group.radius li:first-child a.button.rounded { -moz-border-radius-left1000px: 5px; -webkit-border-left-1000px-radius: 5px; border-left-1000px-radius: 5px; }
+ul.button-group.radius li:last-child a.button, ul.button-group.radius li:last-child a.button.radius { -moz-border-radius-right3px: 5px; -webkit-border-right-3px-radius: 5px; border-right-3px-radius: 5px; }
+ul.button-group.radius li:last-child a.button.rounded { -moz-border-radius-right1000px: 5px; -webkit-border-right-1000px-radius: 5px; border-right-1000px-radius: 5px; }
+ul.button-group.even a.button { width: 100%; }
+ul.button-group.even.two-up li { width: 50%; }
+ul.button-group.even.three-up li { width: 33.3%; }
+ul.button-group.even.three-up li:first-child { width: 33.4%; }
+ul.button-group.even.four-up li { width: 25%; }
+ul.button-group.even.five-up li { width: 20%; }
+
+@media only screen and (max-width: 767px) { .button-group button.button, .button-group input[type="submit"].button { width: auto; padding: 10px 20px 11px; }
+  .button-group button.button.large, .button-group input[type="submit"].button.large { padding: 15px 30px 16px; }
+  .button-group button.button.medium, .button-group input[type="submit"].button.medium { padding: 10px 20px 11px; }
+  .button-group button.button.small, .button-group input[type="submit"].button.small { padding: 7px 14px 8px; }
+  .button-group button.button.tiny, .button-group input[type="submit"].button.tiny { padding: 5px 10px 6px; }
+  .button-group.even button.button, .button-group.even input[type="submit"].button { width: 100%; padding-left: 0; padding-right: 0; } }
+div.button-bar { overflow: hidden; }
+div.button-bar ul.button-group { float: left; margin-right: 8px; }
+div.button-bar ul.button-group:last-child { margin-left: 0; }
+
+/* CSS for jQuery Reveal Plugin Maintained for Foundation. foundation.zurb.com Free to use under the MIT license. http://www.opensource.org/licenses/mit-license.php */
+/* Reveal Modals ---------------------- */
+.reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: #000; background: rgba(0, 0, 0, 0.45); z-index: 40; display: none; top: 0; left: 0; }
+
+.reveal-modal { background: white; visibility: hidden; display: none; top: 100px; left: 50%; margin-left: -260px; width: 520px; position: absolute; z-index: 41; padding: 30px; -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
+.reveal-modal *:first-child { margin-top: 0; }
+.reveal-modal *:last-child { margin-bottom: 0; }
+.reveal-modal .close-reveal-modal { font-size: 22px; font-size: 2.2rem; line-height: .5; position: absolute; top: 8px; right: 11px; color: #aaa; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6); font-weight: bold; cursor: pointer; }
+.reveal-modal.small { width: 30%; margin-left: -15%; }
+.reveal-modal.medium { width: 40%; margin-left: -20%; }
+.reveal-modal.large { width: 60%; margin-left: -30%; }
+.reveal-modal.xlarge { width: 70%; margin-left: -35%; }
+.reveal-modal.expand { width: 90%; margin-left: -45%; }
+.reveal-modal .row { min-width: 0; margin-bottom: 10px; }
+
+/* Mobile */
+@media only screen and (max-width: 767px) { .reveal-modal-bg { position: absolute; }
+  .reveal-modal, .reveal-modal.small, .reveal-modal.medium, .reveal-modal.large, .reveal-modal.xlarge { width: 80%; top: 15px; left: 50%; margin-left: -40%; padding: 20px; height: auto; } }
+  /* NOTES Close button entity is &#215;
+ Example markup <div id="myModal" class="reveal-modal"> <h2>Awesome. I have it.</h2> <p class="lead">Your couch.  I it's mine.</p> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam. </p> <a class="close-reveal-modal">&#215;</a> </div> */
+/* Requires -globals.css -app.js */
+/* Tabs ---------------------- */
+dl.tabs { border-bottom: solid 1px #e6e6e6; display: block; height: 40px; padding: 0; margin-bottom: 20px; }
+dl.tabs.contained { margin-bottom: 0; }
+dl.tabs dt { color: #b3b3b3; cursor: default; display: block; float: left; font-size: 12px; height: 40px; line-height: 40px; padding: 0; padding-right: 9px; padding-left: 20px; width: auto; text-transform: uppercase; }
+dl.tabs dt:first-child { padding: 0; padding-right: 9px; }
+dl.tabs dd { display: block; float: left; padding: 0; margin: 0; }
+dl.tabs dd a { color: #6f6f6f; display: block; font-size: 14px; height: 40px; line-height: 40px; padding: 0px 23.8px; }
+dl.tabs dd a:focus { font-weight: bold; color: #fd7800; }
+dl.tabs dd.active { border-top: 3px solid #fd7800; margin-top: -3px; }
+dl.tabs dd.active a { cursor: default; color: #3c3c3c; background: #fff; border-left: 1px solid #e6e6e6; border-right: 1px solid #e6e6e6; font-weight: bold; }
+dl.tabs dd:first-child { margin-left: 0; }
+dl.tabs.vertical { height: auto; border-bottom: 1px solid #e6e6e6; }
+dl.tabs.vertical dt, dl.tabs.vertical dd { float: none; height: auto; }
+dl.tabs.vertical dd { border-left: 3px solid #cccccc; }
+dl.tabs.vertical dd a { background: #f2f2f2; border: none; border: 1px solid #e6e6e6; border-width: 1px 1px 0 0; color: #555; display: block; font-size: 14px; height: auto; line-height: 1; padding: 15px 20px; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
+dl.tabs.vertical dd.active { margin-top: 0; border-top: 1px solid #4d4d4d; border-left: 4px solid #1a1a1a; }
+dl.tabs.vertical dd.active a { background: #4d4d4d; border: none; color: #fff; height: auto; margin: 0; position: static; top: 0; -webkit-box-shadow: 0 0 0; -moz-box-shadow: 0 0 0; box-shadow: 0 0 0; }
+dl.tabs.vertical dd:first-child a.active { margin: 0; }
+dl.tabs.pill { border-bottom: none; margin-bottom: 10px; }
+dl.tabs.pill dd { margin-right: 10px; }
+dl.tabs.pill dd:last-child { margin-right: 0; }
+dl.tabs.pill dd a { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; background: #e6e6e6; height: 26px; line-height: 26px; color: #666; }
+dl.tabs.pill dd.active { border: none; margin-top: 0; }
+dl.tabs.pill dd.active a { background-color: #fd7800; border: none; color: #fff; }
+dl.tabs.pill.contained { border-bottom: solid 1px #eee; margin-bottom: 0; }
+dl.tabs.pill.two-up dd, dl.tabs.pill.three-up dd, dl.tabs.pill.four-up dd, dl.tabs.pill.five-up dd { margin-right: 0; }
+dl.tabs.two-up dt a, dl.tabs.two-up dd a, dl.tabs.three-up dt a, dl.tabs.three-up dd a, dl.tabs.four-up dt a, dl.tabs.four-up dd a, dl.tabs.five-up dt a, dl.tabs.five-up dd a { padding: 0 17px; text-align: center; overflow: hidden; }
+dl.tabs.two-up dt, dl.tabs.two-up dd { width: 50%; }
+dl.tabs.three-up dt, dl.tabs.three-up dd { width: 33.33%; }
+dl.tabs.four-up dt, dl.tabs.four-up dd { width: 25%; }
+dl.tabs.five-up dt, dl.tabs.five-up dd { width: 20%; }
+
+ul.tabs-content { display: block; margin: 0 0 20px; padding: 0; }
+ul.tabs-content > li { display: none; }
+ul.tabs-content > li.active { display: block; }
+ul.tabs-content.contained { padding: 0; }
+ul.tabs-content.contained > li { border: solid 0 #e6e6e6; border-width: 0 1px 1px 1px; padding: 20px; }
+ul.tabs-content.contained.vertical > li { border-width: 1px 1px 1px 1px; }
+
+.no-js ul.tabs-content > li { display: block; }
+
+@media only screen and (max-width: 767px) { dl.tabs.mobile { width: auto; margin: 20px -20px 40px; height: auto; }
+  dl.tabs.mobile dt, dl.tabs.mobile dd { float: none; height: auto; }
+  dl.tabs.mobile dd a { display: block; width: auto; height: auto; padding: 18px 20px; line-height: 1; border: solid 0 #ccc; border-width: 1px 0 0; margin: 0; color: #555; background: #eee; font-size: 15px; font-size: 1.5rem; }
+  dl.tabs.mobile dd a.active { height: auto; margin: 0; border-width: 1px 0 0; }
+  .tabs.mobile { border-bottom: solid 1px #ccc; height: auto; }
+  .tabs.mobile dd a { padding: 18px 20px; border: none; border-left: none; border-right: none; border-top: 1px solid #ccc; background: #fff; }
+  .tabs.mobile dd a.active { border: none; background: #fd7800; color: #fff; margin: 0; position: static; top: 0; height: auto; }
+  .tabs.mobile dd:first-child a.active { margin: 0; }
+  dl.contained.mobile { margin-bottom: 0; }
+  dl.contained.tabs.mobile dd a { padding: 18px 20px; }
+  dl.tabs.mobile + ul.contained { margin-left: -20px; margin-right: -20px; border-width: 0 0 1px 0; } }
+/* Requires: globals.css */
+/* Table of Contents
+
+:: Visibility
+:: Alerts
+:: Labels
+:: Tooltips
+:: Panels
+:: Accordion
+:: Side Nav
+:: Sub Nav
+:: Pagination
+:: Breadcrumbs
+:: Lists
+:: Link Lists
+:: Keystroke Chars
+:: Image Thumbnails
+:: Video
+:: Tables
+:: Microformats
+:: Progress Bars
+
+*/
+/* Visibility Classes ---------------------- */
+/* Standard (large) display targeting */
+.show-for-small, .show-for-medium, .show-for-medium-down, .hide-for-large, .hide-for-large-up, .show-for-xlarge { display: none !important; }
+
+.hide-for-xlarge, .show-for-large, .show-for-large-up, .hide-for-small, .hide-for-medium, .hide-for-medium-down { display: block !important; }
+
+/* Very large display targeting */
+@media only screen and (min-width: 1441px) { .hide-for-small, .hide-for-medium, .hide-for-medium-down, .hide-for-large, .show-for-large-up, .show-for-xlarge { display: block !important; }
+  .show-for-small, .show-for-medium, .show-for-medium-down, .show-for-large, .hide-for-large-up, .hide-for-xlarge { display: none !important; } }
+/* Medium display targeting */
+@media only screen and (max-width: 1279px) and (min-width: 768px) { .hide-for-small, .show-for-medium, .show-for-medium-down, .hide-for-large, .hide-for-large-up, .hide-for-xlarge { display: block !important; }
+  .show-for-small, .hide-for-medium, .hide-for-medium-down, .show-for-large, .show-for-large-up, .show-for-xlarge { display: none !important; } }
+/* Small display targeting */
+@media only screen and (max-width: 767px) { .show-for-small, .hide-for-medium, .show-for-medium-down, .hide-for-large, .hide-for-large-up, .hide-for-xlarge { display: block !important; }
+  .hide-for-small, .show-for-medium, .hide-for-medium-down, .show-for-large, .show-for-large-up, .show-for-xlarge { display: none !important; } }
+/* Orientation targeting */
+.show-for-landscape, .hide-for-portrait { display: block !important; }
+
+.hide-for-landscape, .show-for-portrait { display: none !important; }
+
+@media screen and (orientation: landscape) { .show-for-landscape, .hide-for-portrait { display: block !important; }
+  .hide-for-landscape, .show-for-portrait { display: none !important; } }
+@media screen and (orientation: portrait) { .show-for-portrait, .hide-for-landscape { display: block !important; }
+  .hide-for-portrait, .show-for-landscape { display: none !important; } }
+/* Touch-enabled device targeting */
+.show-for-touch { display: none !important; }
+
+.hide-for-touch { display: block !important; }
+
+.touch .show-for-touch { display: block !important; }
+
+.touch .hide-for-touch { display: none !important; }
+
+/* Specific overrides for elements that require something other than display: block */
+table.show-for-xlarge, table.show-for-large, table.hide-for-small, table.hide-for-medium { display: table !important; }
+
+@media only screen and (max-width: 1279px) and (min-width: 768px) { .touch table.hide-for-xlarge, .touch table.hide-for-large, .touch table.hide-for-small, .touch table.show-for-medium { display: table !important; } }
+@media only screen and (max-width: 767px) { table.hide-for-xlarge, table.hide-for-large, table.hide-for-medium, table.show-for-small { display: table !important; } }
+/* Alerts ---------------------- */
+div.alert-box { display: block; padding: 6px 7px 7px; font-weight: bold; font-size: 14px; color: white; background-color: #fd7800; border: 1px solid rgba(0, 0, 0, 0.1); margin-bottom: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); position: relative; }
+div.alert-box.success { background-color: #5da423; color: #fff; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
+div.alert-box.alert { background-color: #c60f13; color: #fff; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
+div.alert-box.secondary { background-color: #e9e9e9; color: #505050; text-shadow: 0 1px rgba(255, 255, 255, 0.3); }
+div.alert-box a.close { color: #333; position: absolute; right: 4px; top: -1px; font-size: 17px; opacity: 0.2; padding: 4px; }
+div.alert-box a.close:hover, div.alert-box a.close:focus { opacity: 0.4; }
+
+/* Labels ---------------------- */
+
+
+/* Tooltips ---------------------- */
+.has-tip { border-bottom: dotted 1px #cccccc; cursor: help; font-weight: bold; color: #333333; }
+.has-tip:hover { border-bottom: dotted 1px #196177; color: #fd7800; }
+.has-tip.tip-left, .has-tip.tip-right { float: none !important; }
+
+.tooltip { display: none; background: black; background: rgba(0, 0, 0, 0.85); position: absolute; color: white; font-weight: bold; font-size: 12px; font-size: 1.2rem; padding: 5px; z-index: 999; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; line-height: normal; }
+.tooltip > .nub { display: block; width: 0; height: 0; border: solid 5px; border-color: transparent transparent black transparent; border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent; position: absolute; top: -10px; left: 10px; }
+.tooltip.tip-override > .nub { border-color: transparent transparent black transparent !important; border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent !important; top: -10px !important; }
+.tooltip.tip-top > .nub { border-color: black transparent transparent transparent; border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent; top: auto; bottom: -10px; }
+.tooltip.tip-left, .tooltip.tip-right { float: none !important; }
+.tooltip.tip-left > .nub { border-color: transparent transparent transparent black; border-color: transparent transparent transparent rgba(0, 0, 0, 0.85); right: -10px; left: auto; }
+.tooltip.tip-right > .nub { border-color: transparent black transparent transparent; border-color: transparent rgba(0, 0, 0, 0.85) transparent transparent; right: auto; left: -10px; }
+.tooltip.noradius { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
+.tooltip.opened { color: #fd7800 !important; border-bottom: dotted 1px #196177 !important; }
+
+.tap-to-close { display: block; font-size: 10px; font-size: 1rem; color: #888888; font-weight: normal; }
+
+@media only screen and (max-width: 767px) { .tooltip { font-size: 14px; font-size: 1.4rem; line-height: 1.4; padding: 7px 10px 9px 10px; }
+  .tooltip > .nub, .tooltip.top > .nub, .tooltip.left > .nub, .tooltip.right > .nub { border-color: transparent transparent black transparent; border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent; top: -12px; left: 10px; } }
+/* Panels ---------------------- */
+.panel { background: #f2f2f2; border: solid 1px #e6e6e6; margin: 0 0 22px 0; padding: 20px; }
+.panel > :first-child { margin-top: 0; }
+.panel > :last-child { margin-bottom: 0; }
+.panel.callout { background: #fd7800; color: #fff; border-color: #2284a1; -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5); -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5); box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5); }
+.panel.callout a { color: #fff; }
+.panel.callout .button { background: white; border: none; color: #fd7800; text-shadow: none; }
+.panel.callout .button:hover { background: rgba(255, 255, 255, 0.8); }
+.panel.radius { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
+
+/* Accordion ---------------------- */
+ul.accordion { margin: 0 0 22px 0; border-bottom: 1px solid #e9e9e9; }
+ul.accordion > li { list-style: none; margin: 0; padding: 0; border-top: 1px solid #e9e9e9; }
+ul.accordion > li .title { cursor: pointer; background: #f6f6f6; padding: 15px; margin: 0; position: relative; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; -webkit-transition: 0.15s background linear; -moz-transition: 0.15s background linear; -o-transition: 0.15s background linear; transition: 0.15s background linear; }
+ul.accordion > li .title h1, ul.accordion > li .title h2, ul.accordion > li .title h3, ul.accordion > li .title h4, ul.accordion > li .title h5 { margin: 0; }
+ul.accordion > li .title:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: transparent #9d9d9d transparent transparent; position: absolute; right: 15px; top: 21px; }
+ul.accordion > li .content { display: none; padding: 15px; }
+ul.accordion > li.active { border-top: 3px solid #fd7800; }
+ul.accordion > li.active .title { background: white; padding-top: 13px; }
+ul.accordion > li.active .title:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: #9d9d9d transparent transparent transparent; }
+ul.accordion > li.active .content { background: white; display: block; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; }
+
+/* Side Nav ---------------------- */
+ul.side-nav { display: block; list-style: none; margin: 0; padding: 17px 0; }
+ul.side-nav li { display: block; list-style: none; margin: 0 0 7px 0; }
+ul.side-nav li a { display: block; }
+ul.side-nav li.active a { color: #4d4d4d; font-weight: bold; }
+ul.side-nav li.divider { border-top: 1px solid #e6e6e6; height: 0; padding: 0; }
+
+/* Sub Navs http://www.zurb.com/article/292/how-to-create-simple-and-effective-sub-na ---------------------- */
+dl.sub-nav { display: block; width: auto; overflow: hidden; margin: -4px 0 18px; margin-right: 0; margin-left: -9px; padding-top: 4px; }
+dl.sub-nav dt, dl.sub-nav dd { float: left; display: inline; margin-left: 9px; margin-bottom: 10px; }
+dl.sub-nav dt { color: #999; font-weight: normal; }
+dl.sub-nav dd a { text-decoration: none; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
+dl.sub-nav dd.active a { font-weight: bold; background: #fd7800; color: #fff; padding: 3px 9px; cursor: default; }
+
+/* Pagination ---------------------- */
+ul.pagination { display: block; height: 24px; margin-left: -5px; }
+ul.pagination li { float: left; display: block; height: 24px; color: #999; font-size: 14px; margin-left: 5px; }
+ul.pagination li a { display: block; padding: 1px 7px 1px; color: #555; }
+ul.pagination li:hover a, ul.pagination li a:focus { background: #e6e6e6; }
+ul.pagination li.unavailable a { cursor: default; color: #999; }
+ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { background: transparent; }
+ul.pagination li.current a { background: #fd7800; color: white; font-weight: bold; cursor: default; }
+ul.pagination li.current a:hover { background: #fd7800; }
+
+/* Breadcrums ---------------------- */
+ul.breadcrumbs { display: block; background: #f6f6f6; padding: 6px 10px 7px; border: 1px solid #e9e9e9; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; }
+ul.breadcrumbs li { margin: 0; padding: 0 12px 0 0; float: left; list-style: none; }
+ul.breadcrumbs li a, ul.breadcrumbs li span { text-transform: uppercase; font-size: 11px; font-size: 1.1rem; padding-left: 12px; }
+ul.breadcrumbs li:first-child a, ul.breadcrumbs li:first-child span { padding-left: 0; }
+ul.breadcrumbs li:before { content: "/"; color: #aaa; }
+ul.breadcrumbs li:first-child:before { content: " "; }
+ul.breadcrumbs li.current a { cursor: default; color: #333; }
+ul.breadcrumbs li:hover a, ul.breadcrumbs li a:focus { text-decoration: underline; }
+ul.breadcrumbs li.current:hover a, ul.breadcrumbs li.current a:focus { text-decoration: none; }
+ul.breadcrumbs li.unavailable a { color: #999; }
+ul.breadcrumbs li.unavailable:hover a, ul.breadcrumbs li.unavailable a:focus { text-decoration: none; color: #999; cursor: default; }
+
+/* Link List */
+ul.link-list { margin: 0 0 17px -22px; padding: 0; list-style: none; overflow: hidden; }
+ul.link-list li { list-style: none; float: left; margin-left: 22px; display: block; }
+ul.link-list li a { display: block; }
+
+/* Keytroke Characters ---------------------- */
+.keystroke, kbd { font-family: "Consolas", "Menlo", "Courier", monospace; font-size: 13px; padding: 2px 4px 0px; margin: 0; background: #ededed; border: solid 1px #dbdbdb; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
+
+/* Image Thumbnails ---------------------- */
+.th { display: block; }
+.th img { display: block; border: solid 4px #fff; -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; -webkit-transition-property: border, box-shadow; -moz-transition-property: border, box-shadow; -o-transition-property: border, box-shadow; transition-property: border, box-shadow; -webkit-transition-duration: 300ms; -moz-transition-duration: 300ms; -o-transition-duration: 300ms; transition-duration: 300ms; }
+.th:hover img { -webkit-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); -moz-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); }
+
+/* Video - Mad props to http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/ ---------------------- */
+.flex-video { position: relative; padding-top: 25px; padding-bottom: 67.5%; height: 0; margin-bottom: 16px; overflow: hidden; }
+.flex-video.widescreen { padding-bottom: 57.25%; }
+.flex-video.vimeo { padding-top: 0; }
+.flex-video iframe, .flex-video object, .flex-video embed, .flex-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
diff --git a/docs/named_data_theme/static/named_data_doxygen.css b/docs/named_data_theme/static/named_data_doxygen.css
new file mode 100644
index 0000000..02bcbf6
--- /dev/null
+++ b/docs/named_data_theme/static/named_data_doxygen.css
@@ -0,0 +1,776 @@
+@import url("base.css");
+
+@import url("foundation.css");
+
+table {
+      border: 0;
+}
+
+pre {
+    padding: 10px;
+    background-color: #fafafa;
+    color: #222;
+    line-height: 1.0em;
+    border: 2px solid #C6C9CB;
+    font-size: 0.9em;
+    /* margin: 1.5em 0 1.5em 0; */
+    margin: 0;
+    border-right-style: none;
+    border-left-style: none;
+}
+
+/* General */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+a:link {
+    text-decoration: none;
+}
+a:visited {
+    text-decoration: none;
+}
+a:active,
+a:hover {
+    text-decoration: none;
+}
+
+h1,h2,h3,h4,h5,h6 {
+    color: #000;
+    margin-bottom: 18px;
+}
+
+h1 { font-weight: normal; font-size: 24px; line-height: 24px;  }
+h2 { font-weight: normal; font-size: 18px; line-height: 18px;  }
+h3 { font-weight: bold;   font-size: 18px; line-height: 18px; }
+h4 { font-weight: normal; font-size: 18px; line-height: 178px; }
+
+hr {
+    background-color: #c6c6c6;
+    border:0;
+    height: 1px;
+    margin-bottom: 18px;
+    clear:both;
+}
+
+div.hr {
+  height: 1px;
+  background: #c6c6c6;
+}
+
+div.hr2 {
+  height: 1px;
+  background: #c6c6c6;
+}
+
+div.hr hr, div.hr2 hr {
+  display: none;
+}
+
+p {
+    padding: 0 0 0.5em;
+    line-height:1.6em;
+}
+ul {
+    list-style: square;
+    margin: 0 0 18px 0;
+}
+ol {
+    list-style: decimal;
+    margin: 0 0 18px 1.5em;
+}
+ol ol {
+    list-style:upper-alpha;
+}
+ol ol ol {
+    list-style:lower-roman;
+}
+ol ol ol ol {
+    list-style:lower-alpha;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+    margin-bottom:0;
+}
+dl {
+    margin:0 0 24px 0;
+}
+dt {
+    font-weight: bold;
+}
+dd {
+    margin-bottom: 18px;
+}
+strong {
+    font-weight: bold;
+    color: #000;
+}
+cite,
+em,
+i {
+    font-style: italic;
+    border: none;
+}
+big {
+    font-size: 131.25%;
+}
+ins {
+    background: #FFFFCC;
+    border: none;
+    color: #333;
+}
+del {
+    text-decoration: line-through;
+    color: #555;
+}
+blockquote {
+    font-style: italic;
+    padding: 0 3em;
+}
+blockquote cite,
+blockquote em,
+blockquote i {
+    font-style: normal;
+}
+pre {
+    background: #f7f7f7;
+    color: #222;
+    padding: 1.5em;
+}
+abbr,
+acronym {
+    border-bottom: 1px solid #666;
+    cursor: help;
+}
+ins {
+    text-decoration: none;
+}
+sup,
+sub {
+    height: 0;
+    line-height: 1;
+    vertical-align: baseline;
+    position: relative;
+    font-size: 10px;
+}
+sup {
+    bottom: 1ex;
+}
+sub {
+    top: .5ex;
+}
+
+p,
+ul,
+ol,
+dd,
+hr {
+    margin-bottom:10px;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+    margin-bottom:0;
+}
+pre,
+kbd,
+tt,
+var {
+}
+code {
+    font-size: 13px;
+}
+strong,
+b,
+dt,
+th {
+    color: #000;
+}
+
+
+/* main_container */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#wrapper {
+    padding: 0px 0px;
+    margin-top: 20px;
+}
+
+/* header*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#search-header{
+    margin-top:15px;
+    padding-bottom:13px;
+}
+
+#search-header #search{
+    background: #222;
+
+}
+
+#search-header #search #s{
+    background: #222;
+    font-size:12px;
+    color: #aaa;
+}
+
+#header_container{
+    padding-bottom: 25px;
+    padding-top: 0px;
+    background: #fff;
+}
+
+#header {
+
+}
+
+#header2 {
+
+}
+
+#content_container{
+    padding-top: 15px;
+}
+
+#left-col {
+    padding: 10px 20px;
+    padding-left: 0px;
+    background: #fff;
+
+}
+
+
+/*footer*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+
+#footer {
+    padding: 5px 20px;
+    background: #ddd;
+}
+
+#footer-container{
+    padding: 5px 20px;
+    background: #303030;
+    border-top: 8px solid #000;
+    font-size:11px;
+}
+
+#footer-info {
+    color:#ccc;
+    text-align:left;
+    background: #1b1b1b;
+    padding: 20px 0;
+}
+
+
+#footer-info a{
+    text-decoration:none;
+    color: #fff;
+}
+
+#footer-info a:hover{
+    color: #ebebeb;
+}
+
+#copyright{float: left;}
+
+.scroll-top {
+    text-align:right;
+}
+
+#footer-widget{
+    padding: 8px 0px 8px 0px;
+    color:#6f6f6f;
+}
+
+#footer-widget #search {
+    width:120px;
+    height:28px;
+    background: #222;
+    margin-left: 0px;
+    position: relative;
+    border: 1px solid #666;
+}
+
+#footer-widget #search #s {
+    width:110px;
+    height:23px;
+    border:0px;
+    margin-left:7px;
+    margin-right:10px;
+    margin-top:3px;
+    color:#fff;
+    display: inline;
+    background: #222;
+    float: left;
+}
+
+#footer-widget #calendar_wrap {
+    padding: 8px 0px;
+}
+
+#footer-widget #wp-calendar td{
+    padding:2px;
+}
+
+
+#footer-widget .textwidget {
+    padding: 5px 0px;
+    line-height: 23px;
+}
+
+
+#footer-widget .widget_tag_cloud a{
+    text-decoration: none;
+    margin: 5px;
+    line-height: 24px;
+    margin-left: 0px;
+    color: #6f6f6f;
+}
+
+#footer-widget .widget_tag_cloud a:hover{
+    color: #fff;
+}
+
+#footer-widget .widget-container ul li a    {
+    color:#fd7800;
+}
+
+#footer-widget .widget-container ul li a:hover    {
+    color: #ccc;
+}
+
+#footer-widget .widget-container h3 {
+    color: #a5a5a5;
+    text-transform: uppercase;
+    margin-bottom: 0px;
+    padding-top: 10px;
+    padding-left: 0px;
+    font-size: 25px;
+    padding-bottom: 8px;
+    font-weight: bold;
+}
+
+#footer-widget .widget-container ul li {
+    padding: 5px 0px;
+    background: none;
+    }
+
+#footer-widget ul {
+    margin-left: 0px;
+    }
+
+#footer-bar1 {
+    padding-right: 40px;
+}
+#footer-bar2 {
+    padding-right: 40px;
+}
+#footer-bar3 {
+}
+#footer-bar4 {
+}
+
+span#follow-box{
+    position: absolute;
+    right: 100px;
+}
+
+span#follow-box img{
+    margin: 0 2px;
+}
+
+/*logo*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#logo {
+    margin: 0px 0px 0px 0px;
+}
+
+#logo2 {
+    margin: 0px 0px 0px 0px;
+}
+
+#logo img{
+    border: none;
+}
+
+#logo2{
+    text-decoration: none;
+    font-size: 42px;
+    letter-spacing: -1pt;
+    font-weight: bold;
+    font-family:arial, "Times New Roman", Times, serif;
+    text-align: left;
+    line-height: 57px;
+    padding-left: 0px;
+}
+
+#logo2 a, #slogan{
+    color: #fd7800;
+}
+
+#slogan{
+    text-align: left;
+    padding-left: 0px;
+}
+
+/*search*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#search {
+    width:180px;
+    height:28px;
+    border: 1px solid #ccc;
+    margin-left: 10px;
+    position: relative;
+}
+
+#sidebar #search {
+    margin-top: 20px;
+}
+
+#search #searchsubmit {
+    background:url(images/go-btn.png) no-repeat top right;
+    width:28px;
+    height:28px;
+    border:0px;
+    position:absolute;
+    right: -35px;
+}
+
+#search #s {
+    width:170px;
+    height:23px;
+    border:0px;
+    margin-left:7px;
+    margin-right:10px;
+    margin-top:3px;
+    color:#000;
+    display: inline;
+    float: left;
+}
+
+/*menu bar*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#menu_container{
+    padding-top: 0px;
+}
+
+
+/*responsive menu*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+/* default style */
+.selectnav { display: none; }
+
+/* small screen */
+@media screen and (max-width: 600px) {
+  .js #nav { display: none; }
+   .js #nav2 { display: none; }
+  .js .selectnav { display: block; }
+}
+
+
+/*welcome*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+#welcome_container h1{
+    margin-top: 0px;
+}
+
+/*homepage boxes*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#box_container{
+    padding-top: 35px;
+    padding-bottom: 15px;
+}
+
+.box-head {
+    float: left;
+    padding-bottom: 20px;
+}
+
+.box-head img{
+
+}
+
+.title-head{
+    padding-top:2px;
+}
+
+.title-box{
+    color: #333;
+    line-height: 15px;
+    text-transform: uppercase;
+}
+
+.title-box h1 {
+    font-size: 18px;
+    margin-bottom: 3px;
+}
+
+.box-content {
+    float: left;
+    padding-top: 10px;
+    line-height: 20px;
+}
+
+
+/* POST */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+
+.post {
+    overflow: hidden;
+
+}
+
+.post-shadow{
+    background: url("images/post_shadow.png") no-repeat bottom;
+    height: 9px;
+    margin-bottom: 25px;
+}
+
+.post ol{
+    margin-left: 20px;
+}
+
+.post ul {
+    margin-left: 15px;
+}
+.post-entry ul { margin: 0 0 10px 10px; }
+.post-entry ul li {
+    display: block;
+    margin: 5px 0;
+    padding: 0 0 0 20px;
+    /*background: url(images/bullet.png) no-repeat 0 7px;*/
+}
+
+.post-entry ol {
+    list-style: decimal;
+    margin: 0 0 18px 1.6em;
+}
+.post-entry ol li {
+    list-style: decimal;
+ }
+
+.post-entry {
+    padding-bottom: 10px;
+    padding-top: 10px;
+    overflow: hidden;
+
+}
+
+.post-head {
+    margin-bottom: 5px;
+    padding-top: 15px;
+}
+
+.post-head h1 a, .post-head h1 {
+    text-decoration:none;
+    color:#000;
+    margin: 0px;
+    font-size: 27px;
+}
+
+.post-head h1 a:hover {
+    color:#777;
+}
+
+
+.post-head-notfound h1, .post-head-404 h1, .post-head-archive h1, .post-head-search h1 {
+    margin-bottom: 10px;
+    font-weight:normal;
+    text-decoration:none;
+    color:#000;
+    font-size: 27px;
+}
+
+.post-thumb img {
+    border: 0px solid #ebebeb;
+}
+
+.post-entry img{
+    margin-bottom: 10px;
+    height:auto;
+    max-width:100% !important;
+}
+
+.meta-data{
+    line-height: 16px;
+    padding: 6px 3px;
+    margin-bottom: 3px;
+    font-size: 11px;
+    border-bottom: 1px solid #e9e9e9;
+}
+
+.meta-data a{
+    color: #fd7800;
+}
+
+.meta-data a:hover{
+    color: #777;
+}
+
+.read-more {
+color: #000;
+    background: #fff;
+      padding: 4px 8px;
+      border-radius: 3px;
+      display: inline-block;
+      font-size: 11px;
+      font-weight: bold;
+      text-decoration: none;
+      text-transform: capitalize;
+      cursor: pointer;
+      margin-top: 20px;
+}
+
+.read-more:hover{
+    background: #fff;
+    color: #666;
+}
+
+.clear {
+    clear:both;
+}
+
+.sticky {
+
+}
+
+/* content */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+#content_container table {
+    border: 1px solid #e7e7e7;
+    margin: 0 -1px 24px 0;
+    text-align: left;
+    width: 100%;
+
+}
+#content_container tr th,
+#content_container thead th {
+    color: #888;
+    font-size: 12px;
+    font-weight: bold;
+    line-height: 18px;
+    padding: 9px 10px;
+}
+#content_container tr td {
+
+    padding: 6px 10px;
+}
+#content_container tr.odd td {
+    background: #f2f7fc;
+}
+
+/*--navigation--*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+.navigation {
+    float: left;
+    width: 100%;
+    margin: 20px 0;
+}
+
+
+.navigation .alignleft a {
+    float: left;
+}
+
+.navigation .alignright a {
+    float: right;
+}
+
+#nav-single {
+    overflow:hidden;
+    margin-top:20px;
+    margin-bottom:10px;
+}
+.nav-previous {
+    float: left;
+    width: 50%;
+}
+.nav-next {
+    float: right;
+    text-align: right;
+    width: 50%;
+}
+
+/*--sub head and breadcrumbs--*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#subhead_container{
+    padding: 7px 0px;
+}
+
+#subhead h1{
+    color: #000;
+    padding-top: 10px;
+    padding-left: 0px;
+    font-size: 30px;
+}
+
+#breadcrumbs {
+    padding-left: 25px;
+    margin-bottom: 15px;
+    color: #9e9e9e;
+    margin:0 auto;
+    width: 964px;
+    font-size: 10px;
+}
+
+#breadcrumbs a{
+    text-decoration: none;
+    color: #9e9e9e;
+}
+
+/*Alignments */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+.alignleft,
+img.alignleft {
+    display: inline;
+    float: left;
+    margin-right: 22px;
+    margin-top: 9px;
+}
+
+.alignright,
+img.alignright {
+    display: inline;
+    float: right;
+    margin-left: 22px;
+    margin-top: 8px;
+}
+.aligncenter,
+img.aligncenter {
+    clear: both;
+    display: block;
+    margin-left: auto;
+    margin-right: auto;
+}
+
+.alignleft,
+.alignright,
+.aligncenter,
+img.alignleft,
+img.alignright,
+img.aligncenter
+{
+    margin-bottom: 10px;
+}
+
+
+a img.aligncenter {
+    display:block;
+    margin-left:auto;
+    margin-right:auto;
+}
+
+img { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
diff --git a/docs/named_data_theme/static/named_data_style.css_t b/docs/named_data_theme/static/named_data_style.css_t
new file mode 100644
index 0000000..3edfb72
--- /dev/null
+++ b/docs/named_data_theme/static/named_data_style.css_t
@@ -0,0 +1,813 @@
+@import url("base.css");
+
+@import url("foundation.css");
+
+table {
+      border: 0;
+}
+
+pre {
+    padding: 10px;
+    background-color: #fafafa;
+    color: #222;
+    /* line-height: 1.0em; */
+    border: 2px solid #C6C9CB;
+    font-size: 0.9em;
+    /* margin: 1.5em 0 1.5em 0; */
+    margin: 0;
+    border-right-style: none;
+    border-left-style: none;
+}
+
+/* General */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+a:link {
+    text-decoration: none;
+}
+a:visited {
+    text-decoration: none;
+}
+a:active,
+a:hover {
+    text-decoration: none;
+}
+
+h1,h2,h3,h4,h5,h6 {
+    color: #000;
+    margin-bottom: 18px;
+}
+
+h1 { font-weight: bold; font-size: 24px; }
+h2 { font-weight: bold; font-size: 18px; }
+h3 { font-weight: bold; font-size: 16px; }
+h4 { font-weight: bold; font-size: 14px; }
+
+hr {
+    background-color: #c6c6c6;
+    border:0;
+    height: 1px;
+    margin-bottom: 18px;
+    clear:both;
+}
+
+div.hr {
+  height: 1px;
+  background: #c6c6c6;
+}
+
+div.hr2 {
+  height: 1px;
+  background: #c6c6c6;
+}
+
+div.hr hr, div.hr2 hr {
+  display: none;
+}
+
+p {
+    padding: 0;
+    line-height:1.6em;
+}
+ul {
+    list-style: square;
+    margin: 0 0 18px 0;
+}
+ol {
+    list-style: decimal;
+    margin: 0 0 18px 1.5em;
+}
+ol ol {
+    list-style:upper-alpha;
+}
+ol ol ol {
+    list-style:lower-roman;
+}
+ol ol ol ol {
+    list-style:lower-alpha;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+    margin-bottom:0;
+}
+dl {
+    margin:0 0 24px 0;
+}
+dt {
+    font-weight: bold;
+}
+dd {
+    margin-bottom: 18px;
+}
+strong {
+    font-weight: bold;
+    color: #000;
+}
+cite,
+em,
+i {
+    font-style: italic;
+    border: none;
+}
+big {
+    font-size: 131.25%;
+}
+ins {
+    background: #FFFFCC;
+    border: none;
+    color: #333;
+}
+del {
+    text-decoration: line-through;
+    color: #555;
+}
+blockquote {
+    padding: 0 3em;
+}
+blockquote cite,
+blockquote em,
+blockquote i {
+    font-style: normal;
+}
+pre {
+    background: #f7f7f7;
+    color: #222;
+    padding: 1.5em;
+}
+abbr,
+acronym {
+    border-bottom: 1px solid #666;
+    cursor: help;
+}
+ins {
+    text-decoration: none;
+}
+sup,
+sub {
+    height: 0;
+    line-height: 1;
+    vertical-align: baseline;
+    position: relative;
+    font-size: 10px;
+}
+sup {
+    bottom: 1ex;
+}
+sub {
+    top: .5ex;
+}
+
+p,
+ul,
+ol,
+dd,
+hr {
+    margin-bottom:10px;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+    margin-bottom:0;
+}
+pre,
+kbd,
+tt,
+var {
+}
+code {
+    font-size: 13px;
+}
+strong,
+b,
+dt,
+th {
+    color: #000;
+}
+
+
+/* main_container */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#wrapper {
+    padding: 0px 0px;
+    margin-top: 20px;
+}
+
+/* header*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#search-header{
+    margin-top:15px;
+    padding-bottom:13px;
+}
+
+#search-header #search{
+    background: #222;
+
+}
+
+#search-header #search #s{
+    background: #222;
+    font-size:12px;
+    color: #aaa;
+}
+
+#header_container{
+    padding-bottom: 25px;
+    padding-top: 0px;
+    background: #fff;
+}
+
+#header {
+
+}
+
+#header2 {
+
+}
+
+#content_container{
+    padding-top: 15px;
+}
+
+#left-col {
+    padding: 10px 20px;
+    padding-left: 0px;
+    background: #fff;
+
+}
+
+
+/*footer*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+
+#footer {
+    padding: 5px 20px;
+    background: #ddd;
+}
+
+#footer-container{
+    padding: 5px 20px;
+    background: #303030;
+    border-top: 8px solid #000;
+    font-size:11px;
+}
+
+#footer-info {
+    color:#ccc;
+    text-align:left;
+    background: #1b1b1b;
+    padding: 20px 0;
+}
+
+
+#footer-info a{
+    text-decoration:none;
+    color: #fff;
+}
+
+#footer-info a:hover{
+    color: #ebebeb;
+}
+
+#copyright{float: left;}
+
+.scroll-top {
+    text-align:right;
+}
+
+#footer-widget{
+    padding: 8px 0px 8px 0px;
+    color:#6f6f6f;
+}
+
+#footer-widget #search {
+    width:120px;
+    height:28px;
+    background: #222;
+    margin-left: 0px;
+    position: relative;
+    border: 1px solid #666;
+}
+
+#footer-widget #search #s {
+    width:110px;
+    height:23px;
+    border:0px;
+    margin-left:7px;
+    margin-right:10px;
+    margin-top:3px;
+    color:#fff;
+    display: inline;
+    background: #222;
+    float: left;
+}
+
+#footer-widget #calendar_wrap {
+    padding: 8px 0px;
+}
+
+#footer-widget #wp-calendar td{
+    padding:2px;
+}
+
+
+#footer-widget .textwidget {
+    padding: 5px 0px;
+    line-height: 23px;
+}
+
+
+#footer-widget .widget_tag_cloud a{
+    text-decoration: none;
+    margin: 5px;
+    line-height: 24px;
+    margin-left: 0px;
+    color: #6f6f6f;
+}
+
+#footer-widget .widget_tag_cloud a:hover{
+    color: #fff;
+}
+
+#footer-widget .widget-container ul li a    {
+    color:#fd7800;
+}
+
+#footer-widget .widget-container ul li a:hover    {
+    color: #ccc;
+}
+
+#footer-widget .widget-container h3 {
+    color: #a5a5a5;
+    text-transform: uppercase;
+    margin-bottom: 0px;
+    padding-top: 10px;
+    padding-left: 0px;
+    font-size: 25px;
+    padding-bottom: 8px;
+    font-weight: bold;
+}
+
+#footer-widget .widget-container ul li {
+    padding: 5px 0px;
+    background: none;
+    }
+
+#footer-widget ul {
+    margin-left: 0px;
+    }
+
+#footer-bar1 {
+    padding-right: 40px;
+}
+#footer-bar2 {
+    padding-right: 40px;
+}
+#footer-bar3 {
+}
+#footer-bar4 {
+}
+
+span#follow-box{
+    position: absolute;
+    right: 100px;
+}
+
+span#follow-box img{
+    margin: 0 2px;
+}
+
+/*logo*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#logo {
+    margin: 0px 0px 0px 0px;
+}
+
+#logo2 {
+    margin: 0px 0px 0px 0px;
+}
+
+#logo img{
+    border: none;
+}
+
+#logo2{
+    text-decoration: none;
+    font-size: 42px;
+    letter-spacing: -1pt;
+    font-weight: bold;
+    font-family:arial, "Times New Roman", Times, serif;
+    text-align: left;
+    line-height: 57px;
+    padding-left: 0px;
+}
+
+#logo2 a, #slogan{
+    color: #fd7800;
+}
+
+#slogan{
+    text-align: left;
+    padding-left: 0px;
+}
+
+/*search*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#search {
+    width:180px;
+    height:28px;
+    border: 1px solid #ccc;
+    margin-left: 10px;
+    position: relative;
+}
+
+#sidebar #search {
+    margin-top: 20px;
+}
+
+#search #searchsubmit {
+    background:url(images/go-btn.png) no-repeat top right;
+    width:28px;
+    height:28px;
+    border:0px;
+    position:absolute;
+    right: -35px;
+}
+
+#search #s {
+    width:170px;
+    height:23px;
+    border:0px;
+    margin-left:7px;
+    margin-right:10px;
+    margin-top:3px;
+    color:#000;
+    display: inline;
+    float: left;
+}
+
+/*menu bar*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#menu_container{
+    padding-top: 0px;
+}
+
+
+/*responsive menu*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+/* default style */
+.selectnav { display: none; }
+
+/* small screen */
+@media screen and (max-width: 600px) {
+  .js #nav { display: none; }
+   .js #nav2 { display: none; }
+  .js .selectnav { display: block; }
+}
+
+
+/*welcome*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+#welcome_container h1{
+    margin-top: 0px;
+}
+
+/*homepage boxes*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#box_container{
+    padding-top: 35px;
+    padding-bottom: 15px;
+}
+
+.box-head {
+    float: left;
+    padding-bottom: 20px;
+}
+
+.box-head img{
+
+}
+
+.title-head{
+    padding-top:2px;
+}
+
+.title-box{
+    color: #333;
+    line-height: 15px;
+    text-transform: uppercase;
+}
+
+.title-box h1 {
+    font-size: 18px;
+    margin-bottom: 3px;
+}
+
+.box-content {
+    float: left;
+    padding-top: 10px;
+    line-height: 20px;
+}
+
+
+/* POST */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+
+.post {
+    overflow: hidden;
+
+}
+
+.post-shadow{
+    background: url("images/post_shadow.png") no-repeat bottom;
+    height: 9px;
+    margin-bottom: 25px;
+}
+
+.post ol{
+    margin-left: 20px;
+}
+
+.post ul {
+    margin-left: 15px;
+}
+.post-entry ul { margin: 0 0 10px 10px; }
+.post-entry ul li {
+    display: block;
+    margin: 5px 0;
+    padding: 0 0 0 20px;
+    /*background: url(images/bullet.png) no-repeat 0 7px;*/
+}
+
+.post-entry ol {
+    list-style: decimal;
+    margin: 0 0 18px 1.6em;
+}
+.post-entry ol li {
+    list-style: decimal;
+ }
+
+.post-entry {
+    padding-bottom: 10px;
+    padding-top: 10px;
+    overflow: hidden;
+
+}
+
+.post-head {
+    margin-bottom: 5px;
+    padding-top: 15px;
+}
+
+.post-head h1 a, .post-head h1 {
+    text-decoration:none;
+    color:#000;
+    margin: 0px;
+    font-size: 27px;
+}
+
+.post-head h1 a:hover {
+    color:#777;
+}
+
+
+.post-head-notfound h1, .post-head-404 h1, .post-head-archive h1, .post-head-search h1 {
+    margin-bottom: 10px;
+    font-weight:normal;
+    text-decoration:none;
+    color:#000;
+    font-size: 27px;
+}
+
+.post-thumb img {
+    border: 0px solid #ebebeb;
+}
+
+.post-entry img{
+    margin-bottom: 10px;
+    height:auto;
+      max-width:100% !important;
+}
+
+.meta-data{
+    line-height: 16px;
+    padding: 6px 3px;
+    margin-bottom: 3px;
+    font-size: 11px;
+    border-bottom: 1px solid #e9e9e9;
+}
+
+.meta-data a{
+    color: #fd7800;
+}
+
+.meta-data a:hover{
+    color: #777;
+}
+
+.read-more {
+color: #000;
+    background: #fff;
+      padding: 4px 8px;
+      border-radius: 3px;
+      display: inline-block;
+      font-size: 11px;
+      font-weight: bold;
+      text-decoration: none;
+      text-transform: capitalize;
+      cursor: pointer;
+      margin-top: 20px;
+}
+
+.read-more:hover{
+    background: #fff;
+    color: #666;
+}
+
+.clear {
+    clear:both;
+}
+
+.sticky {
+
+}
+
+/* content */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+#content_container table {
+    border: 1px solid #e7e7e7;
+    margin: 0 -1px 24px 0;
+    text-align: left;
+    width: 100%;
+
+}
+#content_container tr th,
+#content_container thead th {
+    color: #888;
+    font-size: 12px;
+    font-weight: bold;
+    line-height: 18px;
+    padding: 9px 10px;
+}
+#content_container tr td {
+
+    padding: 6px 10px;
+}
+#content_container tr.odd td {
+    background: #f2f7fc;
+}
+
+/* sidebar*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#sidebar {
+    padding:0px 20px 20px 0px;
+}
+
+#sidebar ul  {
+    list-style: none;
+}
+
+#sidebar { word-wrap: break-word;}
+
+
+/*--navigation--*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+.navigation {
+    float: left;
+    width: 100%;
+    margin: 20px 0;
+}
+
+
+.navigation .alignleft a {
+    float: left;
+}
+
+.navigation .alignright a {
+    float: right;
+}
+
+#nav-single {
+    overflow:hidden;
+    margin-top:20px;
+    margin-bottom:10px;
+}
+.nav-previous {
+    float: left;
+    width: 50%;
+}
+.nav-next {
+    float: right;
+    text-align: right;
+    width: 50%;
+}
+
+/*--slider--*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#slider_container {
+    background: #fff;
+}
+
+.flex-caption{
+background: #232323;
+color: #fff;
+padding: 7px;
+}
+
+.flexslider p{
+    margin: 0px;
+}
+
+/*--sub head and breadcrumbs--*/
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+#subhead_container{
+    padding: 7px 0px;
+}
+
+#subhead h1{
+    color: #000;
+    padding-top: 10px;
+    padding-left: 0px;
+    font-size: 30px;
+}
+
+#breadcrumbs {
+    padding-left: 25px;
+    margin-bottom: 15px;
+    color: #9e9e9e;
+    margin:0 auto;
+    width: 964px;
+    font-size: 10px;
+}
+
+#breadcrumbs a{
+    text-decoration: none;
+    color: #9e9e9e;
+}
+
+/*Alignments */
+/*////////////////////////////////////////////////////////////////////////////////////////////*/
+
+.alignleft,
+img.alignleft {
+    display: inline;
+    float: left;
+    margin-right: 22px;
+    margin-top: 9px;
+}
+
+.alignright,
+img.alignright {
+    display: inline;
+    float: right;
+    margin-left: 22px;
+    margin-top: 8px;
+}
+.aligncenter,
+img.aligncenter {
+    clear: both;
+    display: block;
+    margin-left: auto;
+    margin-right: auto;
+}
+
+.alignleft,
+.alignright,
+.aligncenter,
+img.alignleft,
+img.alignright,
+img.aligncenter
+{
+    margin-bottom: 10px;
+}
+
+
+a img.aligncenter {
+    display:block;
+    margin-left:auto;
+    margin-right:auto;
+}
+
+
+table {
+    border-collapse:collapse;
+}
+table, th, td {
+    border: 1px solid black;
+    padding: 5px;
+}
\ No newline at end of file
diff --git a/docs/named_data_theme/static/nav_f.png b/docs/named_data_theme/static/nav_f.png
new file mode 100644
index 0000000..f09ac2f
--- /dev/null
+++ b/docs/named_data_theme/static/nav_f.png
Binary files differ
diff --git a/docs/named_data_theme/static/tab_b.png b/docs/named_data_theme/static/tab_b.png
new file mode 100644
index 0000000..801fb4e
--- /dev/null
+++ b/docs/named_data_theme/static/tab_b.png
Binary files differ
diff --git a/docs/named_data_theme/theme.conf b/docs/named_data_theme/theme.conf
new file mode 100644
index 0000000..aa5a7ff
--- /dev/null
+++ b/docs/named_data_theme/theme.conf
@@ -0,0 +1,15 @@
+[theme]
+inherit = agogo
+stylesheet = named_data_style.css
+# pygments_style = sphinx
+
+theme_bodyfont = "normal 12px Verdana, sans-serif"
+theme_bgcolor = "#ccc"
+
+theme_documentwidth = "100%"
+theme_textalign = "left"
+
+[options]
+
+stickysidebar = true
+collapsiblesidebar = true
diff --git a/nsl.conf.sample.in b/nsl.conf.sample.in
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/nsl.conf.sample.in
diff --git a/tests/boost-test.hpp b/tests/boost-test.hpp
new file mode 100644
index 0000000..a3b8579
--- /dev/null
+++ b/tests/boost-test.hpp
@@ -0,0 +1,37 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014,  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 NFD_TESTS_BOOST_TEST_HPP
+#define NFD_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 // NFD_TESTS_BOOST_TEST_HPP
diff --git a/tests/main.cpp b/tests/main.cpp
new file mode 100644
index 0000000..2733634
--- /dev/null
+++ b/tests/main.cpp
@@ -0,0 +1,28 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014  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/tests/wscript b/tests/wscript
new file mode 100644
index 0000000..0a53f7c
--- /dev/null
+++ b/tests/wscript
@@ -0,0 +1,55 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+"""
+Copyright (c) 2014,  Regents of the University of California
+
+This file is part of NSL (NDN Signature Logger).
+See AUTHORS.md for complete list of NSL authors and contributors.
+
+NSL is free software: you can redistribute it and/or modify it under the terms
+of the GNU General Public License as published by the Free Software Foundation,
+either version 3 of the License, or (at your option) any later version.
+
+NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
+top = '..'
+
+def build(bld):
+    # Unit tests
+    if bld.env['WITH_TESTS']:
+        # main()
+        unit_test_main = bld(
+            target='unit-tests-main',
+            name='unit-tests-main',
+            features='cxx',
+            use='core-objects',
+            source='main.cpp',
+            install_path=None,
+          )
+
+        # common test modules
+        unit_test_base = bld(
+            target='unit-tests-base',
+            name='unit-tests-base',
+            features='cxx',
+            source=bld.path.ant_glob(['*.cpp'], excl='main.cpp'),
+            use='core-objects',
+            headers='../common.hpp boost-test.hpp',
+            install_path=None,
+          )
+
+        # unit tests
+        unit_tests = bld.program(
+            target='../unit-tests',
+            features='cxx cxxprogram',
+            source=bld.path.ant_glob(['core/**/*.cpp', 'daemon/**/*.cpp']),
+            use='core-objects daemon-objects unit-tests-base unit-tests-main',
+            includes='.',
+            install_path=None,
+          )
diff --git a/tools/wscript b/tools/wscript
new file mode 100644
index 0000000..40750c2
--- /dev/null
+++ b/tools/wscript
@@ -0,0 +1,42 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+"""
+Copyright (c) 2014,  Regents of the University of California
+
+This file is part of NSL (NDN Signature Logger).
+See AUTHORS.md for complete list of NSL authors and contributors.
+
+NSL is free software: you can redistribute it and/or modify it under the terms
+of the GNU General Public License as published by the Free Software Foundation,
+either version 3 of the License, or (at your option) any later version.
+
+NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
+from waflib import Utils
+
+top = '..'
+
+def configure(conf):
+    conf.find_program('sh')
+
+def build(bld):
+    for app in bld.path.ant_glob('*.cpp'):
+        bld(features=['cxx', 'cxxprogram'],
+            target = '%s' % (str(app.change_ext('','.cpp'))),
+            source = app,
+            use = 'daemon-objects',
+            )
+
+    bld(features = "subst",
+        source = bld.path.ant_glob(['wrapper/*.sh']),
+        target = ['%s' % node.change_ext('', '.sh')
+                  for node in bld.path.ant_glob(['wrapper/*.sh'])],
+        install_path = "${BINDIR}",
+        chmod = Utils.O755,
+       )
diff --git a/version.hpp.in b/version.hpp.in
new file mode 100644
index 0000000..1d47c7d
--- /dev/null
+++ b/version.hpp.in
@@ -0,0 +1,70 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014,  Regents of the University of California
+ *
+ * This file is part of NSL (NDN Signature Logger).
+ * See AUTHORS.md for complete list of NSL authors and contributors.
+ *
+ * NSL is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE.  See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * \author Yingdi Yu <yingdi@cs.ucla.edu>
+ */
+
+#ifndef NSL_VERSION_HPP
+#define NSL_VERSION_HPP
+
+namespace nsl {
+
+/** NSL version follows Semantic Versioning 2.0.0 specification
+ *  http://semver.org/
+ */
+
+// To change version number, modify VERSION variable in top-level wscript.
+
+/** \brief NSL version represented as an integer
+ *
+ *  MAJOR*1000000 + MINOR*1000 + PATCH
+ */
+#define NSL_VERSION @VERSION@
+
+/** \brief NSL version represented as a string
+ *
+ *  MAJOR.MINOR.PATCH
+ */
+#define NSL_VERSION_STRING "@VERSION_STRING@"
+
+/** \brief NSL version string, including git commit information, if NSL
+ *         is build from specific git commit
+ *
+ * NSL_VERSION_BUILD_STRING is obtained using the following command (`NSL-` prefix is
+ * afterwards removed):
+ *
+ *    `git describe --match 'NSL-*'`
+ *
+ * When NSL is built not from git, NSL_VERSION_BUILD_STRING equals NSL_VERSION_STRING
+ *
+ * MAJOR.MINOR.PATCH(-release-candidate-tag)(-(number-of-commits-since-tag)-COMMIT-HASH)
+ *
+ * Example, 0.1.0-rc1-1-g5c86570
+ */
+#define NSL_VERSION_BUILD_STRING "@VERSION_BUILD@"
+
+/// MAJOR version
+#define NSL_VERSION_MAJOR @VERSION_MAJOR@
+/// MINOR version
+#define NSL_VERSION_MINOR @VERSION_MINOR@
+/// PATCH version
+#define NSL_VERSION_PATCH @VERSION_PATCH@
+
+} // namespace nsl
+
+#endif // NSL_VERSION_HPP
diff --git a/waf b/waf
new file mode 100755
index 0000000..babf365
--- /dev/null
+++ b/waf
@@ -0,0 +1,168 @@
+#!/usr/bin/env python
+# encoding: ISO8859-1
+# Thomas Nagy, 2005-2014
+
+"""
+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
+
+VERSION="1.8.0"
+REVISION="8b796c068b3476c699246f84311031f0"
+INSTALL=''
+C1='#.'
+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):
+	f = open(sys.argv[0],'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():
+	name = sys.argv[0]
+	base = os.path.dirname(os.path.abspath(name))
+
+	#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)
+	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&SYZ˜"ñ¶ÿÿ¼Hÿÿÿÿÿÿÿÿÿÿÿÿ€†"¢§PÀ#%‘#% >Xaänöº#%#%#%#%#%#%#%#%#%#%#%#%#%#%#%#%#%#%篬Ž6¾Ü®½u{l2µ =Ú½¸ûÜ^ê}k³RõŠå}ÙóÜ®|湶ÛK,£»ÞòëK¯}>å…õËu¨îoeaHvÙmnØîÓ£§£×»Q{Ü÷½Õm꺮ï7o]so6ðÞvŠÝ¹ëÕï:#-}<öë¾÷{á×@Ô_|l¾î¶ñ5§o¸µ3Û>»ì#%#%#%#%>„û#%#§¦ì€{>@ }óç¸K˜6³—ÝžL½Ûíco`PtÑ£CYïv Ð¶ž…yÙօ±ª[GG{¯Gªq% ¡@ ‚ÚC­R•JCL¥*°#-zÑTkÖêv£¾ßv×^—Ö/M6·¶Þ÷KÓ#%µŒ‚;:Ó©]µ¶o·ªv[ZÇÕ2¾<vúúõ÷o«o¾³•Ù݄¯9w>íÝ<ßw{×o³l¥µ¸ûïž_cß;wzõyîûíÅõ×hä#%ú3±@#%]Š(룦ÙíÌï}Þòzú:Š)ï{ª%ìi(—¹ÜôÀëEU	騍@Ð7[¶k_Nï¬×VÙ½Ô#.{¶·{;ß{æû{Ü…Of‹ÛÖ·±£çØ_^êùÝÐ>sN(øÏ{+[kÞí#%ówrzß|ïUY#-Ïy^ØñÓëݎtÔ#.!Z;îñᙯ¯Œîzïªçm×˯›W¬û«ªl}ÏvÕî3]uõÞÕÞé÷·½Fï¶àÃÚw݌÷¶>¾@µ×7·Ï3ݹ4IäzR™óÑÖ¾=e²½ê)P­ªåÜÍñžîç>Þ÷{ÖÖon¶ûÚɏ™óëRÉkës¯¹ËÝå]åí^ì}ïT{Öù5€#-÷¶÷Ϟ}ﯷy¼ðöÏ èҁ¡CÖP#%¡]Sˆ&•eÊ®ìݏ«qï=zh,ÆMuµÞs¯	¤ê«šÕ0îÔ'uWƒBìd­€#%ß{Þ<@#%&½õ˵ö¯o½Ù÷zú‰Ï¶ûy½ïzµÝ­ŽÝƒæ‡¸¦ê»›‘:äºètøžžì÷w9ëÕm•¬]ïb!Ýp{ÎÖ÷gy>öð4ë¼ #-½Üœ:˜­yÇ»}±ÒŸ#.¾¶òíõãìï{u.ßW×}½Íî·sÅΟq»í‡ºÛ«‹Ëì{Ö÷Þ½<öúÏ3ªéît¤ŸrîîçO1Åá¼ÝPv±¾ðú§yñ7nÃö¯½7cï@0}këbbª]yG¯}ÝáC`îMQ<Ø^ݹ[®÷ièõ÷ÞÎrNë¹Ýݾ½…×g‰êîîØë“ES躥	²¼ÁÝÕ·¯uõÐûÏ­^Ïí ‡qÝ·®½æ÷¡ô:n÷#%Ð=æ+·œŽž÷€ ïa™z£Ýñ›wª#%}d¡[9'ßqÍ@Cݾ½c‰U­¾¶»ëκn{g½£]u8]·cERK—k›­¤K#-Ù÷¸®}pvlô×K!®ºkÞw}Wuç¯6>÷ÊîÖæ|ôÏa¥éïg¶»8‹´k£)uÓ×o½Çvï]Ï@>½^ûjwkòë½ÚÝçeøÜšA#%	 Ð#%@&&@#M€3C!õ?Q©¡é#%€#%#%Jh‚DÂ#%M	¦„ôÔSƤõ6™4Ô6I õ€#%#%4#%#% ‘@€%?ÔÈhM£Ñ”Úž™M=5zCM¨#%õ#%Ð#%#%#%#%'ªRD#.dh§ƒJzž¦šžh˜¦FSÔ4Ð#%Ðõ4 Ð¡ ÓC@#%#%$ € h2hÈL	¦14ÚG¥0i4i£Fš#%ÐÐIåPI¨ˆ #%šdSÐi2z(Ÿ¦Tô50ÄcM2=HÐ20F&Oÿ¯žÿfÛjíÐO÷r\­ÝÚ¹´Z×u?Wm©]ˆ¦ß¶§@™!$V£+f{ÕV«óííÛU¯Ùü?OÍ=~jIýéX¸X!ëQŒ;Õ#‚*)LS\MeÎ82nÛÇ.¯ï>±ÿ(œø—Í!°8 ЀïUm­ûóÍÝ¿˜™ÛžW#.±Œ*ˆ›{ºyª§ˆ› W‹¨©‰|\,båðg3¨#%š}ûèú!Â*0(È°‡®ÛjUFµmÖ¢Ûf`$@º¨@DyÁH¢§0 Ð‚#%Š!!”A±Rt¢ e€ŠD‰j‘YÑ#%S¤X@#.&bXÌÓ£©Y¢$¥H¥Œ&JlÅ5¤¨je5BBi-JŠÉA„FP$Íe#-d¤¬Ê±„¡cBi…(64‘“b-¢)%-)–¢A‚Yi-$‚`Ê"FÑmIªib–&¤b‚’QM"F&™±hÔj›V•m”’²X”&I’*-@J¦ÛF&lÍ4ÕL²Õ*[5I%HiL’I¨¶djFkE¤#dÓ(,IF‹&¤‚ÑJU&±‰‚)1)±C©›„#%R!ŒÌ@Ca’dJ"L,›d#KŒšRDÈB’“-"AQ)IjÔ&Ô#-"¡‹#.(¥ `F™’$Ò%±1±²e6ŠI-")"h1dRFIRŠ)™Ò4ŒM†$Â@¦ÄT–6‰ ²#.FJ*6"#-I¥*	$ԔRF@™™š@“2fb“Y”¡¡,b$"©6$“FÁ‰2bÊSÍDSB¢¤€J&ƒH“6¥–e(Á‰Hi4²Mšf4¥ŠM™ed™‰$U#%ÍK$*$²͂–fˆÚ2†ÉD%6h’š´ÐhbiŒi‚5&JI ¦JY¨ÒYR¢ÅQI¨‰‰3” ¦#%ÂHÉ#-0Ñ$J#-5¡¨f²ÌÒ,™#.R´›&5’-I‰&’%#-"Ø6,L™b†ÈšLÍI£A)°ÌÍ$2#-Lš-,bÍMŠJQf“Q)bL²*HÙM1h Å&HÃ$Ì6L#-&eC!„VI•„6‚ɲP$¢L¢B)¦‚2™HË‚ÒR©³Xب„È&D¤ˆ­¶4“5‘CI$†64†H	bj5”ŒU$–“#3E&Y$ÂÍ"#Q¤ÈFTfÙj¦µ´–Æ2TÐ-%ÊHM’”LQl–‹,1”Í4Ù)J-LŒlۍ#.›1”ŒÐ2Í-~•n²´†BYFBkÔV-&Ƅ̨¦‘FÉh*˜´ª‘6#-,FSIʌÒT2Ô%¨²)¬˜Ôe•EabdÌjZi±#.‹̦ÛMdJ²²*–ÃXÓeYQ”ªÅ*ÒZB³ek5)LمYŠȋ£MJ‰-2Š#,Q±XØ©š-“clU™l[hH©(ÛcQ°Y(Ö"%Q¨4UŠ¢¡šµˆJÉ#."´Øe4”R	¢Œ3R‰M©Tj6I6ŠÈXÕ4™[VmZh#E„[FË"fÍdIššP¤™¶Ùª)³54©–Ò©i6©B¬©”¤Úšj-,Š*)lÖfd’²Å¤¶–Ód(µ4‚@͍%Å2†!AL“•£jLL–,ÊV-)4بəA¤¥(¤S*"Å ´²Ò Fš)’›ÊlÐƉ	B¢Å™!š6jK‹&“,Ò`Ù#-D”4‘`„Ò&ÄERQ‘ Ò4Ê-L´Ò)+a3` É¬L1³-B)S4RE")´d,Í£EŠ4#.ˆÒZP‘IƒhRËA„‘&6˜M%#)°d¶33Rˆ’Mš”dÛcJ¦f,66R“dm&QelQ!˜Y(”I6RK	Q¨ÊFÌÒ!*k#6*#.ÌÙh¨ÄؤÓQ2ÄÑS-©e-ɒŒÙ	˜–"cBi”h£#YI²R†&"jI-*„ب¨ÑFªi0É3D”šE¢˜#%ØÉ%‹Ùi¤’¤ *5’a¤¥™#-­6´j-²ABe…h"	"²kc()5JQ5b±”ÌІÅI%L*J$´l†ˆ²ÊÕ*š‹F1%dÔSKRSAD•,’¤¥)J6ÑUm”Š,”i*Œ%%‹dÒTXÚ٘¦Q³M`ª†’fÉ›ˆ„,ZfJ£“¥2ÄÚ¦ˆ¦fSYˆ¥-F±¬†Ã$ƀŠ#)Th¬É,l€h"ŠL"J´ ¢Òš¦VJ¬V6Ó1¬–²@VŠ¤Ô”Q˜¥dfŠ4Ј„Ť¦#-2؂‹FÅ´lR›m%Ú ¬`2j*$+DͲËQ±´Xµ‰$¶¥²ÈieaTbÑLØÛf¤¥eFŠPÒl©±´†Ñ¬›I¶J6Émš”Ì£I´hR**J4Z6ÖÙµi£5&ˆ“fQhØÚA¤Ù¬ÚŠLS*ÒQb´m±h¶Ú6¨e’µ‚-SR²Ø›)bE¤˜Á²°²”Y#f•A3D’e$ȈZ’´ËTÇÇý¥^–þ?Ƚ/å_ë=‘°µXI¬×6ì%%¤ÿmþM™H¸a”ÈŽÕQ&%Ra?±?ÛE2áÿøhùJPØ$\AȟöçQ”lþ¬^ÙéH¿IÆCtP¶Cd£J«Jê’MÒÄPwfB¥Ïøª~°‚ÔµÝüµáøÙeßñ¥$É¡‹»*˜¥Õ܅ˆˆò;Hˆhž‹£¸—Yøïf£S¸˜OU¸ÏÝ!SºqÖÅhâcQ cŒ<|V˜÷j(ä6Ú¢ZUUYe\Dorõ3YQæÉKL§Dk@ªî†Ö•’¨ÊafRG%5æØ2¨)‘TQ‰i–[5¢‚¯‚½žòzõ7¦ÞÂæå£bÑlÁ-¾—^HóRjï~ÝåØóº¡þ/W¿³.nRnsíç^!éÅ:EAÿ¹å¨Æf0íTH8“äÅ˖1=­e	DEøÿe–NÝÕ£0´¤Mê}(¡¨0xçR¿¿œVªÉ-ʄÌP`Ìõ Ý–‡&™v“_Y¯¦ÆM+fe>	´Ü”={\ÛýZü#¤‡®-Í8]¨"0¡ùíæó$×;¢î4W74šB’¬’lXÚ?…/ªUìµzZ•ásɐ²&Zd‚ÅV…	JEÓPÌd÷²Á°•íQ è0ŠV8ç‹Ê”‡‹_â6½ç¥îµu,´Ôv(Æ5ŒŒ|>w»¡– º†#-î‘VŽX‚7ªT®#-=È@n\¹&î»ï¾òb ßÛםý+éw‘5_‰w·N·I²_'|ó›S‘’˜¯ÝTÚŠÇì­1éOú¯L,ðU&É'}f4#-°¬.D¨Àn2Wò1ž#%ÍTDDÐÆ%ɅV’QøSßhhäMŸÖퟧ:™ñˆbPJ2!׉Že„us#-¥QLq½s±æjœ)þÝj•Ï…_6L„oC¡#±Î¾·êC_ÂÇG”Š€2KE?‡ Œg›„3ªP°Í=nN¸~rˆ˜Z2í¯V6ŠÅÙªÄÝIÞXR‚Á/=/WåŠ0ôIQ:kE›5#.BÆ籗S+áÌÜϦ÷‰j@’Ò<òwóû­÷»¯aŒ™¦É1šüb)àföQ0æë‹2—Š‡”¨¿úÜoÔHÎÒt‡ܙ+m5øúR¦4d»>ÿv÷»©´Th¯ÉdÞ+œ¬j¿Uå5}Þá¢Óìêû^oöû}ßÞí}/k´G-Íkº»b"‹0a*ON\¯·×Ýöõmo&„Š[ByV	š'…-%!&ÇÓDf@îrØÅÁxã(ß­5Ìø¸¤¶L%jÖí[‹ ¤P9¤Ù#.Eípch²pô»|u#-ÿ<p°#+_;žÚXþM–~Æ.¥Ý;§š’‰_ý#r®¦ùK©!M(Áa·K±dÜd)7ª­pF´­–ˆå¥ŒF(AÃMiM™ ™¢¥šO£#-*‰¯…Øœh°4B‘gwZ² ¤1T¤Zëaɼ•H¤xU%»Däâ	WpòÄ#-Ù£&ZKª•Š(ÍJuªS«FˆoœÄ^#-"³Ç­By3GŠ×Ӆ"wÕ7áRüjŽÉB|áøÝËéð©óÐ>îÇ»Àü"VéõŽÒòìøò‚?|>áH ùgW‡ØÂhEïú¥|dT=‰pJ$R4(‚§{‹”~%vÒV „gÚÔaÚŽn#Ó~7Göß[ïºhþß~—Ñ¥Ù›(ãvfþÿ¶¹3L˜¡èÐ)Ñ(üwöK§ÆZk/ê×l!€SIÁ†‡ Ñx%XÛ±¹H<xÂÉlƒײ!²³ ìË÷U.„8†Í×ôQSnkÍò£ã»ÃaxI	£ËþÂv¤,©åÉ!ã8úñ|öݶ|¬ÅC¾ÜIö¿,ecßi©3è©¢ø­“36ɾz9­¤!Q½WdÑÙíˆO‘CÝe|ä(ô¥% Æâɳ‹ƒ)õò©0æ©_À”ejOQ`_ÀÝrtÒ4\|¼ÇcŽÇ'}Ôþvž·äçxáp’3†ZCQçs1›síP8ú~‹MsΈց…j¦nìe´ÄîªEøûê߃C–‚’’Î{¼¡ÿå4Ö¾¥ºD›dåÁ;@‘kÃó¼\®ï#.6ôҍXà¹J‘ëxî`¸ kì«=­Ù;i¯v3Ώém´e%Ý’›¢…Ó…Ì8~ú<¯¹—Á*>ýk¯0ãUƒÆ¶&#.j•b<}¶L¹yò ÕˆÈ ‡¸y:8Q×_,Néš2*ÑûÿOãÌÌDß1Ž(R⚮y»žwõy3©¦#.e:#.#.FSu“õܟbjgJ=çr·y:¢Sèq“#-¯J,sŠ‘‚æó¾i/"›ý#(Hë\4íìþ±‹O#»¯°p…óøs#-+ÏPãm¡Œzª“Q!££.xœ(Î&l9^ã-”>Žˆi˜x%6±Q4©»`»·u:­ér|’úß‘«>‹¯Ï?CdPDMή·ñ…p¬òLC†(‚]0ˆ‚ÁM[K™j4bËæÝë»A?n³ZLúýü¼r•êB„^òn(‰2€vkîåý7¿oó¾+?¥é(ŸåâŽÇäÀƒ²#-Ä×ÆФžÚKºYîg°ºþ'ôOjݱQáKëM*a¿uAÓjŽÛ9ÒHg#-ž±!ù¸ÝÖéKÛ¶dŒâ#†›uA‹³ÞÿWÂn„|õ¼4Ú¸G§>[¡O·2™¡Ãó¾íü°Òhh]#.‡Í…µ»Fî#-p|3÷hb3åƵfÙS‚Ñ¡ΌWõ™¸‘B84Øã¶O­™ôÓ¦)8¤£J)Œ3Ž8¶&—Q]‹«ˆ,N80YBOeÙëÍkõgÃ4=ÀmÇ<}W®@ŽØšðˆŒklü¨¢-ß9´/âñàlœÞO^Tpi!SuDÏ겚Y$Çö¸VüõœŽ2TO×W¾xèŽRW[³FyïS8)•]ºV5ëw î©vb`EQUhËz<ª©ɍ„%#­WM*üäÙÏ¥SÁÆ1s-ýž¸Rvö\CÉʳM1³.nPïGʤGð1Ó$”&íM)ý·z·›ßÅÚx/y(rX@”¦<–݈Ô¼­äÁN(¢f:}±ž#-È/—…0?²‚D{£/8Å2’쨧£<HõI€EbY …²Ñwùã(WcÌOrJ_®qãjgDkí*ÚÀ{Ó÷¹kpsÍ×2?¢ÿÞ$ÓJ4Òw׈R-FÔú;éÉM?Œ–)èýbá¸Ûí©2	CgŒn;è<—¢ß©o7!P:#.g#^+Ÿ²ù»¶.Sôúþ®øf„&ú›#¤¥òë¯X>}­ÔÖe;Ç˯P“Uy5éI©átîß¹«Ò½F‚QÝf÷%@22œ¤F,ìː'ÕØôÑnEò}GuÖbSxS.¨66;¹²Ds¿¦çE“†[-Ïo7ÚÎ\†•@´òM¶©«ßôül/¨Q¿[ºPàxþú]¾Sѕœ;ã ÕÏ~ÒôU|?#-՞ٻ¹Œ³æ­Fÿo>úŸ]úIχ7~Œ …	©"\JyzR/ƒ¾ßb}®gCýӚðUYW%ܐ“(À„mRhæò…ö“FWã‡U“#-Îí%×{H”-Ó͋—­³®êrͺ¡X³¡ÎmȧIÕ£fç•M›~JQ¿wS9?‡ëÆنº=/ÊàéPÍ(tE†|;^1AÜͱ¥YmQè=Û÷?¢ý4âÆþ$ó	è‹$Þ§2G@†h#.ÌÑMÐñçÝÝ×NÉ<¹`²JC‹!÷|èSGO¤@|_‹ò›œi´ž¦V®B·¾câÀðoY¼!dLˆñ|Ø%³ºÚþT‰tìõ嚉 tètîÓÁ[ÝÖ'"ó´º}`8¨g[¼kP¶!8'¬¤|Gam&÷m/œD Ù?!&\¨Ú>Rs+«R±öñH‚ÐpF"áÞºYšœ,P¤Èögïgƒ“º`·çUuB|֖”ÔV®ðѬÖdcZð™¨DØò¸sK‹"¨å4º…2„ªJkŸï³ïîÒXqCX* ‹¾#.ÅqEèè:`Uë/œ˜»²ÏÏ­“	 ðá•3£_©íRwKÊçš}ß­¸C¼§d˜B>¿ª••Hºr<9®h!Š[ÿ`áTÿÆ~ë“e­9Þ¡ÁûEmêl/ç„^µ#cÅÉÊWòfµÇ\#.%‰JÞ¯3#ôk&›&皥ºã–pK«2³5µ•Š•½P¢}©e}9¾ÉÖè~ÉËë&µÉîã#.ÌqÖ¤Ž_O:ŠÌ‚1Š"ÍÄÐx»žö¸âþx©|/\ѐ¶#.clŵdÉGòZŸ‡I‡a,áµ_Í(ÂRÊF¥']sÎ{xTÜ>½x9¨x󘳙\#.c%ÚN_[èG”¸&И+¹ád\¸Œ\x\üȕäïbœÜa ù< FR!‡:ÖÞPÚ|WŠñ¦õ/JêFL’Ê<¥ÔtÆfŒaêa¦=ù¿¯u|Žˆ}0ü×|ÍF}uçŒ*ΈQÚ¥Þª¦Ôn“ÚÊØ*½žÖS#-RnÒcÏ#-Æ·hW³:bXäpgžê§×Ö±ZÝ×HyÍ@$ÂXT›÷)³â‹”îƒ6'‘'a@lÉõPë|¾˜K="_.p:Iç²ч’†D­:˜[R‚°*¨¶]¨(}G+X¢hŒÐè²V-<M`T¢i¦˜@tj2'2A¦‹îÅe	™©(R¨”(¢7ŠW×T½[ªJ’”«Ç'k‘ŠÒÐ#-4Tlµ¦Se—õ÷õõcGIRåÍókn!OZs:Ý!Ï’òN’K]ÑSk…£üzé­ÁC¼Ðßûyíd(Û~Ý¿·ö*†ÅPÙі㠉u†óۋÎL¢ã‰š/T;çòÓüîÊ.ru±Í+«Kž'ï¿*~¥›`Žlx”¿b¢N5f8¦ ™Ž©¾äÆV;E½¹Š’<­ÔÉ“ÝL1¤Î¬½Ùh6Ð(ÖôRÙH”3)¢t”µY©8â¦)¤¥ÃqaŸâ£¹ÑýôÑôd8³ŸÕ¦¹ÝVú!8Õo[>•Ö ÊeÂs”l›o5êÊ-ž“'•îE¹ä£7{‹Üõ¯ëu‡ªn,šû“Ç%Šô‹¢xRÕîÌhi¥J­%-×Geç™TÂr‚™‡h™-Bó_ªœÕB¯ãÄÝ.<¾«—²p (EÈ1»gä˛V³j¦¨é6CÓ{˜×~çf(Rª¨§ûqÒ]|º]§ó¯õêv–…zô†mÓ=?Å:ùÓ{(6}„²}®êÖËîû³44jWB;Í¢i·£ÉCg½Ú–Æ#„Ñ\F7é>9m²ñ²•T”S¥BãG{dê”ȲMP*h¼å£BïAV‡9ÈŠ—ÄjM˜®”ÿŒòÏ.lê2ðë8~»çqœuØÁ%ÁÏGn5Ó#HèüšÛG:Ÿk›šh¬¿v"$BB(¾ÎPÓH«½íÜòêDÓb“ã%_T4ÆJ‰6*暋çðN~3CkOiȺt§Þ‰@–šIõ%䦵-ç¨P„>ÿ/OÚkYŸ_¯\èùqäÛ=å¹û÷­á÷sçðç1‘³È¶ôGäÏDO˜ÿ>¯G–°ðȨt”¹IÑñšð$D96çüˆŠ[ÖȂÖ0åéî9Ž¢)‰p¤Ñºv6Ã;eR;íίìÜwïÏ.»tL3ÐêWZ!5MØN¼h5yÅSø\|”ÍýÎg®åƒÃ«Fˆèç½ä«“ô©C…pº%pé•T¦iäð¥ô¡ š‡çsš>2ÊZiíá£lîwçÑnZu’Ô—?ÏÐìWŸC³êyQ¸ÿB¦~Œáz[ç‡÷ø}ýk¥Íñèò!=ê2€õ*„Úe§ðvs̤¦£8ê…2o+¼"*¹ø*ðÎ5Ÿ5ÝZb@ÿ$[„,ªÙPG¸%F‡<ÿb‡û_Lé-wM‹½2´²0÷mŒ‡#.H¤Œ}([üôuy½öQÍ"'íŠ7$!)­$œ€èkÎ=çåͲ¾Ž)F¶‰ÂÊ#-Ц>æú‰G»vp…½¨ßÆ|Q7~TBƒdB7œoð‹[ã+ò'×}óôÎQ¿dͳíó/JM׈51â‹HåÜÎê>gAùEÈ;xî:é¤Å"ð÷Þa/“Ï\ã5Ν¾ZiÚú¬qs¸P™¹G—=#¦Ñ£\µ=ÄybÔð˜÷ã#.‹®–«¡šMîΊœ£üÔxéàóz;$¸s°½Íçz®TCæG„” ~éñÐ`ý%ì¬i³¾‘$ªj{;×ý†ï£D#-ó¦u›2Ñ\ZãE.EYÐvÓ«}zX+tf¥k|¤XÆ	¨¡Ú5TF0Å߆ëHåCZ5ÿ–o]×nÙ²40´·­ðT*aF¢1Âçk,9Ñ:wBQôPí~§ë×FRšW*`Òéz«ük¬)7þfjcù¦kùoËìÝ£Á•ŒÜÍaþQŽ­cþAFå«ý?ß#.<j㊖”d9#%¸êŽˆ|`ðeGKa¦Ø±B7aùÎÿ°­Výâ/\y_s/Ws2¡·ïU#-¾Ä°|ô‡ò`$BDË	Õÿ&Ý™‰AogdTߛʽ•VÓêµ@›J\¶—Šhð v¹ù¹ÍZk¤¢2‡W¯?WÝöVtul5€Ã"RØîýž™¹ï´Ù0pÁÀD7e4p"Qô–mŠ>ãCœT,ežÉ$X(?—ëÎmÈþ½Öõï¶>WsE›4`©‹p#-1ý²§ð°°‡ã[i!¡¡‚’D£Å?ŸŽÿ‹›~‡ha#-nü¡4b¨{íüª3÷oWI¥o”ÂJ¯»„iR;y¥[ѧåæ±*ËQ*…GºÎ8ü'DQò~‚Þ)eä¢êÏóéטšu÷iÓ}=AAx¦áM(¦ËAASžëOC}3óÚe-æiÃ%Æ«‰z¤¼"šKœ,G1—تüûv[$¯¦i„ìñ#ß}zý3ôΩÑeRÇâüæÁÞ!˜#.™	u6¤	½øùœ6 Â»/WšíðŠÅŒPýþ‹z<*¶k™Z¼Ûß½õv˜ß›™{ãStËöÀÕBP‡º:?wË:¶BûØ_Èý—:žªÚÌ#Šï‹Ëõ»F_Ð?ï½b¯>\}Û2§-„?ÚÌю¯#-ñ±ºgDI²A¦HjêÊÜJr[ä[¿¢‹µ¨4™‡“Uš“O^8ƒ¦i¿áóç¶ucTÍ|>cûT^ɼtÙ)›þX>6pÉ-£,³Gâ8­ü‘uA*"Í÷bé9jθÛmE-†41wa"ö‚zTaLt¸V]û~Ìÿ^G²¾5ýÓôàÎÑÂPt¨m’IÓwq¬Ôþ–N¨´ÖßÁ8ÆÇêë5ÉpAçVîÌ88l-§GJÕYʶ^êóŒèá]½Úý‡o\eqbBӎœóåz€@„^ø¥¼vœÒŸÏçöéaÕ4$t]ðw>hlŒËãì×rÎñl¢%ï®É¯OW/½ÄÌ <}-Ù¦E, JH’sýè1Ž°÷`òLÃ#.=(ÎÁ»•¶ ³E1ƒ>qTÆ`ûnš†gϯz¤uÿf?HÙ±|´Xfw-}gªâ89‘ÎÐҗ¡;¾·h#-‰­¶ì>nÔHéºù^O]9‹#ÛüÿLۋ(xÈ@J“W8Ãà–ï¢#.j{^#.õ<5jžÃÜjÝ-;–wÇ0öýøÅj4Ð=œl{m>üæÅãa‚…NZ§^ÖÙ5U‹-U#-Z£O[ýÿÓ­\ºÉz"hÃÊS3Õw^ÛfüÌÌ{¹2|×&Œªvà f}ÉÓ*=æÛù´+B¿2¨wS¶eÈÙ{„ÄuÝó=bׁæ#-CŠ¡\$ßÏòÜäkoï|tï¬^æ±üš–ݗki'\Ì×ð›=ßÇ¢Zá©´l%)hU:Ä!R6Ôf:§”üzúpaÞLrˆvÚ;Fß6¤!/Žr|uÂ߇ztt>§1ýÜöRJã“n6ÀA¹(Q^Y¼=ÝÂo¢ºjË'a²˜aÀb[Üwí8?Ÿ}¬zb¹µÓµ˜p‰ÀßÆAðIä†<:†-iØYÛìŽæú¾¯át3c‰^‘:¶“Xp¿S-±cˆÎ×w×:ÔÞ¾3	5ؾCV™„&#-zx?V›þEÕ5ryÚio›Ã,vrDҀ“Ճ˜^؟uæí–òÓ¶ûbE§vK$Ã#.Ý8ˆ/Ô95ª$\^„š_çõÇZRàfÚA<Ô\§Xuh-Q¦ƒVZñs|X¤f(¡HV+10¢Ý2©¨4ʈz"Btš“0úâ?s·1Îqíu÷/öb,D@ó׶ÙȊì$¨ˆ “:>ãR£±©Â:Šl×îÿ30|õC#-¡gBE‚K};±p4ƒ9ŠŸäyäî“t×ßaxÖ{wÖÃä-#-I•ò¤ùDÜB[TÄ-0À€vd¨>GîÁ÷©°Ä?W­íîõ)Yš}Kl±¢«c¢‰ÔeùµÜ$›MXW+«è¼³V÷Ó#-þHÁ~wé¨IC–&ÆÎu/Ç{Ø,5Èç=Ä7æØšQŽ•dYSЈÍÄn±°¢qÎâÔòóã˜+#-ŒâylŒ[µ>+ÇræoÇÑîêjmŽŒÕ…þŠ>¼hÝÍ»\¡À\^S;x:è]S3è[@w‡ë.”RóŽ+zóÞØâœwÏS@áä%<r1ïåE‡×[cÉ<ò–u”@¼yÙÞh,–ÙÜÁS„eQ±§&><¥„’rpÑs¬/¹””Cú#q	iZPõXv j^:¾–êŸÏ£çßV1ÓcÕÚé*ë;k–6nBGŽ{{‚y¬+ÒBøƛ#.§‰`•xb֕¬¡ŒkÎq´Éî]þ}MV£8gÇGtÆÒß<{‚?)@˜ñT†l}ß·ØÎSXdØ×ÇlcúH|’Ï‘Dfg>¯'ðÛ©¯©öãþTT}Ÿ^笷ê‹}°­û5Kóh×~u‹zžc~¶ láMÑc<za‘ºkº¯;sLI-T¨­$¤"i¥¾W ™Ñ­~Þ~|_vp÷éñãÅ#-0i)¢Æ¬)#.Lˆ¦aXÄþòÀÍl&tc¤˜÷À>ŠT<‰¥¼ñX¬7lì[K´&%:#-ãxcZŠ2=BŠNI?ÙøQ[Žæ7›‚ÃѬ8C|QI ,],3[˜v³¹@ã{Ñé˜ß›¶ËÒjý!ò˜å%N"m$Ú#D$[«X7Ñ-²}k"."b Q@ðɆóӎóFKn9ˆAƒé#.DùQÓÓ­Ãé“:çD•í„úð¤5¢vçÚ$cg¤Q-ר¨‘HMTìÎèŸøYqŽÞ“¡«{éÅõÛdŒ×§{û°pïTÓg€jD¡;ünhˆÝ-hÞd Ã#-s€¤ÄÊg÷ÄtM"!ÍÖh:YšÐ˜¾)ªÂ3ÐÐÎb±‰#.ŠJÍq²nF‰@ÊJ*Ð-‡)CPü :ϒIXª+‚¢KESœ«Ýc¥"ðáBfb=ÜÑmuÊiûn+aha.‰‚é£/•Û©«Ò5¯­­à’¨¦XÖZUz&×-|›|Ǧ¬¥B&D…·S+KL{€¨0mƒ2CQ½ú7§ÇùšHü<wÜ®~‘:N:ßµ+\¢âµ®›©ÓqE»ÉÎøQÖ«ªÙˆ‹ÜŠ«ê—¦úh«j2A„œ¸ÐÆþý¥NÍä_Ù§öÑNÛúµ¶ÊØÓSxˆl!øk¿!ÿ{„‚¶î¤¢5ðê…È·ÛOÕé÷ú³Ï$[“±î63~átݳr›/b67JP~@Ɇ`È,b Èã†Æ‹ŠÉxô³îÈz_㞬›©ŠÑª‰BîŽåKxà°Ë$0ÌS8sÇML–»U/ÏyR}³f7¬…£|Ž[ø¹¼„üŸÜvŠû5ñ㔱õ¿JïÏ+‰	ٟiƒüœÞ“WÖë#-¬h^ƒƒTtœdwÚ!˜µŸ$Àh´Çˆ?ª™‡áû:¼tZ¶ã\»ùϽ™˜1>œ˜â`"`ÑÞøsbì4œDˆ¸ Me8Rq›_vžÊpd6#Ž	TÛñ’J‚¢0o©èg&#-ü%ʧbüÜćí ß,'c²¶ß-.][æR!ár¹eAè– Œ…³óÃü£ž{qzCšn<'í!rŠ‹ˆ­ñ²V¤˜]±Ú"¤mìðÍl‹z˜–csèû^Ÿ΅Oô÷:‰ié€Úi”Jv²ÙitkÍCÓ]0ÅV‹rV­‰í­&cG´õçNÊ]®ƒ^þ2¨ÝTð‹‘?1¤cFÈ+M’ìͤU4¢–E$XdKMÁ4@֒¢phˆ#Cjå…Ee0pRA‚Ɔ¸5öižÙ­q$–«èmŽÏå¥iD-€éR+ü\ÅOÙ¦º¬Àʘ\Å]Dà4†¹G”æ‰vž\'¾-§w’!ÚÄNªú·ËWaøyØ]®c–ž4õP5v;ÎÔÈ|~çÙ#-hM‡\‹Ԛ…²-f¹WHX”ÐÑcÅKÕMñ?-òÁ Ãyl@›ÈéP.Üð£¿ð70m.Bƒ `’vÏ[¦X¸€QÔ©Ei†Ö*Ÿý^çßë³L‹›¸¨¦d¶ÈýŠé‡.±Œ>RˆÄª-¸ñ"ƒ.¦xç%—£MÎÅoƒñFõӏ¯ª²n9þ†”±¹9ëÍÔPí>ÊàUAB¾JF+7:=ÔòÊԙ#-p&#.Þ1$¦	ÝñNnÈɇÂ!Ì“ý=Að{jÏq™’UùÊ!l,…J/MˆKNZ]5ŽÙç(¢DY‰5#ãæ¯'»gØÿ8#m„Ïï18át:ÎË<lBHpZÚ¦åþGÉwðö<¤>ÝÛEà“nvàCúêŒÛräÊ´‘¢Ì „nª¢*‹¶%ÌüÃ%ˆ!õä,8"¡`ë‰O,çòßN#->=ä®æö|ü×Õ)b–2äOÇ*l?ðÉÐFì‰l[fu§f]ýf܏ÚÀYel¤Êyü+C7c^ J¦Úñv’éz7]b²Ð˜1í9TÆuCBsU,‚È¢Â,U%+k›I¢´m¹ktڙ¢@x”3ÆÌqƺËRi¶”Yê¨-†Kfõ&ç!öTå·aÄ㣔²M%ô®s?‘Ê:À3CŸ¤)õ£Ð?Pý#%;30hÌç漛G)æKq<ß!É~~#&‘s·;Çg¶¸[ï6ws•±Ñ7Ò_±Ôr1r¹Nš+jÆÖ_R‡¿ðØߦƒ†gý¯.›ŽÆ4&„]‡ÖíÉy7Ÿ˜íJ«VþÊLQåFßüs3Ù8G«õýªFÁƒ@“{L '‚{?×»ŽOLL՝·Æ\câ?ðõ[ÆO{×H¹E4I,÷Ü¢¤<#£×+‹	ፍÌò’Ât#׈NªÝ׳ÉÎûü¦zK‹tMuèpš‚|¨åã|üÖ¼'Ñ­ÿX®×Ý#.O›éïѺãI˜Òc>nÿ7%s?®˜†ÇpÁQ'W¼á_/Ӎ•Qá÷XÒbey†õ~}y[zúüüÛöâîU~jel¼öó–EÚϲðçù%@Q·vïÐÿË(Ÿç>Oiùº¸t¯ëßúwwü>ߺ-£#GfKåôë’ÛDÎÅò7D÷¶wrWA ׉E¦P» Ô´{è<çuÇfßåÙ\‹JÒÀþ•a£ŸŸäÑ2¡¬V¤˜éížîðŒ4уŒ#zh­²K#.‹ôÓ©¿ïO¬Á}Ÿo†mg+?ÇÔWyHí-9"vH„bj'õ5#.:½3̹֫Hˆ14¡¦àNýeÐËHÈJHÁÅ	Y,?_ñuþ$ƒ¼Pÿ¥$ƒ./à³L¾ŸÏöi§“30Q]c	°•Ñ¬²<N·æäÕ÷B¯‹wjŸ´£ÞkÕ?r¼Cÿ,ý9¹R* °„g´íh"™jM¾Ås&$T©±*OÊã14–•_ٛ-Š5,Mì­Ê¼ö~µ÷#-#.ߨøYþÂâÉlþ˜‚¨)ºe1PTÁ8Ð'uÓHX'ìBÅfø_[š+-Š(±E *¨’¤´à¨¤_S„ 	±COï»ë™ê]¬ñr\)@µER(‚Â/³‡ÆW;ÞQwhE4€Ä†ý¶åz¿Á®¶¿O®¢(ڈËE‡‹á-kòL _ùUciDH¡´)ßSZüËÓzUÒ¯R®¦ÞEm›ðˆ%ȋ€Å%!1#%ñ0Ÿàüø–îr¢ÕD¶’Œ ¶PL¡)"•©/Gë7j43?Å6‘úµìO®›N|4OÈóΟګÇmºm)–i}­:—òŸ×‹û…)s¸þ҉r.ziuaÀ1†ÒʳdíÞ#ýÑΈƧ}yÙø²›ù§´ò^+l¡:²~³¢‚‡‡Â¶ûîkú«àӈ†¨p]ಪŽ+ŹDáédÞJ…S[æܹûïcSÏLü ¦PPˆ#î²u8VD)”:2ôEÌòRä=<sû­R5èÕóL¿žYÎEZ¢*”²~,Ÿwé£#.Ãö´/à›Uaˆ¢¤¸ ‚y5?zRIš(:lÃøT¤œpö@t¡ícâÐøÏÛù»*èóîöωóÝûü¡ý§ÍVñrª£Ê/_£Gn_	ÕùÏÓOñúîçì9æÜW’‚üFTé_t¸ü紁]ã¶?‘ÏžïÓÍAêìëbꨬëþ1€s ˆ6­4x¢˜æTcKÂÿu–ÝTðd¹Å8SÂß-9ôcLÿm…I»MöÞ‰AÍÖ¯iVv}½ô¦<W²Uÿå//#.8Qî†ÛŠ3;×(Us@ۖq—7–ŒxÏYbz­@¾ÚÕê5é÷GAOæ®,P¶MQ#,¶JÏ©5Š~š”iSØ£L>{€64ààS¼Éîݨӛ?Á?íï¶|â!ϦÚYF¨vu>xg戢æ½õA®ÇC]Æ_B³g›ŽŽO"³I~´NHÛC|œkP|þ§o÷Xæ”ߘë=҈!.ŠÔÔ'qãí‰"îÑmÈ£ùçì]å$ÚQLhMû9§n®Î)Bg—Oüqڀ°H_™®ƒHlv#vy„ÚvŸÉ.ŒK^òG÷{Ǻœ§~7ßRÕoäÁ";Ã8tËôxCíèeOö!ޚ“ A¿+—$‰~Ò\QƤ×ÙêÓÉÉ?òaWœÃ«D˜r=çM¡ „™,àf†éž_ö–F¤Ø&ϵ‘D 'Â{„NR§ÅPi(û—Ó:H}&êKNz5g¸žuï/ëøe–Y{cQª¨Ç¢Q|Eøé)¯¤Äiša¢	Æ{é~Å.wŒ&0ªC‹9Ö+E{+x±Ç¯(KoN܇qA"‚%/ªÙi‹~ãæ#-=ù$•é‚ñŽcðÔ¼Í;›¸ÛuFÖI$’\ü3b,e‰—Bœr2ÎÆ?[3+Ÿâ¿,JÐÍ	#ùÁ¯äåÖ=qLëªY-¥¥¢Ú#-¤ŠÙ Kù>r0@d¤›Zç'‘¶2$bÍJ–„Äíé*'ø§¥|úöìîþ™vwÿwl¸½>Ï7ïÅ¿7°ú~`;9iê½w7Ëuz~:ÚÏvÿwö¶Ó—Òi#-w@÷h¾­¦èš}N;4_„}$-ԏgqûuíљv«¨²Ý¿<èί¹ìS­?̼÷l¾tXmòÿp'3Ý«¯„únëž,Чk–xì©Ï²3ú¥,—›ûúއç ß¢2úO£wÛÃIèÇ×õjóqûɜ¸qæëæÛåÏU<	qãˆü5Âþu4v]áÄÒ_êæðõú³1ËIð¿·õ†–~˜7Éáïôgl=í&@«ÔOjüº<6¾ŒkçÕoTfWTMô÷HB¯)ZÞ§o‡¤õÏaYîþ{üÜoÛ¢Z?d°ÕL·ÇÛ#.g«t7U~‚<5%Ï[‹Ç·ñ»~Ë϶_ҌµFºˆyê—iŸM3Û«•sÝۆÚxMͬV®-®~³ä-‘ô~ÎsÍeþ…M=ý¹Sœ¡ª¡Ê÷K®wº»î¬«-ÛòÐíy‡+#G›G¦ª=PrÑ‡“–»tUiô¹aŒZø–ΈQ‡0ùœ‘Tcǔ>ÿ„gÎsÚµÔõ/7E¼ûlï¢6›6{³½+tÁKÇß®ßÛµû9üm,‡e·7—ÈsrvÕŸ’î\º'IÍÏU»=–SoT]ž‚KÓÞ̥ޅJý¼]”2ðÿ®VÓ·Ìs‘̉ÆCïêïjãtô?³õHÙ÷#-¤ÏÖ|yºÿR«æöî>1°ãmÒEå zÍQÕOĜ½úêó_aL:®Çì<älãÁ³+þ~m3œ(ZújÉ£©[þŸ.|H¼)dQÝöì·+¿(ëß¾ÿ|}§ivÝV¯ÍåçáE;tÿ¹Ì“YSsà?àúþm¿·F²6}ßYqN]õå"©Î+úÏN‹üŸO°¶þj/ù½zj¦egÃCíóü—¹Y¾–m#Ûùj§>”óó§÷{¡:þÎ!ªèq?ÜWè¶0ÏÜ(\’õW#-NÏ×f†Mc–dhëÔG	úò»2Ù~Êãw£Íý+ú4V²Ür>SoýÝ»ãñüŸ5A´ýxr×t¹ºy¨Fµë£§¸Ù^_¼ŸM°'ZôÞB#-ã£?¯w?ÝGñÇ÷!1êN4Ø EÇd™;šQ+<qŠý|îÔ6­pg;ŠáäI„œO?0ûÏâ{a%Aù¥4ß3"Æk–P"T_—ÄŒ/͟À3Þ𣛴çèÓôú¬Þ§·îóýZý]}‡§Åöý16õ´Ï]1Ö»°ë%ÃídU_KíÏf½:þ¿ËèZPûyϼnôÇWeîˤñãßí«³öôs_/éïýE„°ôçî:îmƦ¿MÌß²¶zOéíÜßoèü|ÛëÃè§l[՟+~ZOqI§Å¿Â[—%iìŸgÏï^;47»ë6Ôy»EBS^ÁgÙi¥&àü~µæj›«·t#%}ï!ýqƒtý´k„ÚzáIþ!ÙßG×2¯	<ú†Ù©#p!þMÞr»û¤h¶ÎΎÃirZ¾~ð¥qÛ·ôWÿž#¬^›û;_M‘ýUp²¤©wUut²ùÑßü¿nTԣê¯}g£‘…ÿNÁO3iõÕný'šÔ±Íó×fÂÿ’“N•‚ƒhqwbÈ3S²uͨ÷@…·ké¯NfMKÔn tvÞRçÃdò[üE½w8Á#-‘~öÖW¹>4ðºOªîŒxjUэÉ{õÑÍòó*(–:®éÊÞlhæ)Þu§l¼2É$£×ö¹7W“r„êþþ1ã;ÑqrI'!d†åÕ-A¨ÙøoÓ椣-¾°XY^Ÿ¾ýݝŸkÔ(֚	Ôæu	ýtTCì¦u×Á<(ùvB,aþ[®…ó ŽMjæ•;ó††^êÎÙÊÜў¦kjÕÂ6èõ#˜Î܎=þN@·yŒ;"'1?â½cV~³éŠxëÓ£ò¾ÃÞ¿Qû$KHõku~X´1Œ°Œî;¬$¤É!o¿anrû½µX-ùðknÐ`[‰^ê涩˜kÇg71õ÷Àáð¯û»‰ê¬·‡ò"؜ÄЫ¡ÃBbzym #ÒµŒÈJÛ!bµk‘\5ð¨&UQT+m̟yñÛX…,2ú.å6á3§®ªêäVÞ؝=Ú´S=·v[e670›ñ…Ò}Ü YEÄ"M?•ãôé{ÐPa‹9žanœŠ?]w•eWùÆî›à¾·ûèªâ:öqøügJ‘ÅsÅS—m¯wpqþodtùþã›áÇÃÍë9›¼°ÀG‘¥~¯^¸mè[cÛüwº*¹'ýœß$¾œzmæ»»×t>øZËÍþ‰·}Çoí Âá¸rýQö_g§Ù2ÿY™„|j—J‘¤åæI(ób‡¦’±5øâ^¼]ü=8táÜNDªò²Ÿ¦ŸŠ)e×ì©õ.’¾šnÿ‡ÒM¨gê«÷—ø˜Wm_à3.dl­¹Š|ž*äD„?¦TVŒƒFi`¥„pDТ´T©+	S@VˆlpȱŠ¨$¢²BËU±#-d2̳5¤Á¥˜±QãI±<ÃeM&“t!HZÄ*ۑŒq?l7¤5Fdˆü¯ú/wd30d1ET“bR?•S‹&Ó¬_gYÜÞ³!·PP»ü\ôg‚ÑùÔÆI3ïÓYtŸ‡ø¶†µ–'Üîw‰¹ttQD1Fne‰eÐș‰øè~VÀàŽKÑiP"Ö-׃"@î42‘Ž”¬‹Û¤hf›Š#-‘TV¬ˆi¡¨¤Óµ8<Š6Xâ¤FõCŒHyÑvßÈ`ßî¾ÎÚ4g·âQ÷cðŸ:ð>’#-éՅw表x—jÔ´é‰dèÑð¦¾ýµé5ÿ#.èÇV¤¿§ÊÌ}G¡oý?›Ñ¢'ï®õtþc®†5à߯;Ú¢Üz覯žÄî{{«³5ßsÛ]wûg2ÆQõRD©4úÔÑi¡zZ“ð<º~OÕú^V9z9!­d!qOç9÷E†Ò¬w·îÙºå«WÑijGÝEÜß/.Ž|hâ¶[B6þøY´bñ‹Â#.c;ü÷KùuwO¾»Íûs¥qá4N=ŸÍò<~îGD—îó{ÿEÇöUÑëéþwqéíè«ï®û?uŽ¯^d“ÐBU9ö‘Ç{7#Ëàä'hQ—ÿ	ù‡‹»šNB?ÇÑËjyBm:V9a¤Ò·BÆÒ´pÞ#.˜’êjQ 	 Ó@ÓHnj£Dk)Õ1z±ÚÞ¯\õEÓ*fÛz»^5ÊfÔÙ6FJíݯ#.òóÀÐ-1N▨ªM#q¨Ð£@ ÁBŽÄJ1BÁ‘J›M‰…JÄÓL%Tt¬µ¥:zb4!äèJö¤ÞáMñM˜,pU¤Ýp¥J˜™Tmƒ¡GtqFɼíN5FQ³	ÁE„#.(D0(#-0 ›µç®é6õë¥,«Ì³lmˆJUò#š È8#.H¥(#-˜Ã2#-eæ:EÅJDœQxS"2`²ÛqKaÁ BÁi*€Â‰Q¤T˜#-A;5[a¦ôT&cÈ""¨. …O#Wԕ#-»1DÄ҈ÄÍBªÔӕØDš…:à°ÇX`-ÊÔ üB„g‰‡p¡Å8íÁ¶C¹¬QŽ²µzµ»xń\Ã].„4jùU_sT¹RYiôÁ쪸£Ú+Iï¬:ümÿ?ëõvQó7Šð7w¶&þ̼äÏÍo†ã卭» û#¿}–ÜU]q–cSvÈgjéUtSÊxëhoÆϯV8¾ŸÐk“FÎϺç_%öbí¼3u~£¹ôÜ«ág®xF¥C;?®ß‹KöÌyÎsŒ‰BF»û8ž*ޚ×Y±ãѓ(.+Û:ɕÝõÝÝꨄjÝÙW>MåBUË¾“ç»LHº4Óû¬¢TYO|œ²g‡ƒ¹úhêÖ8êXÐÔÌ 0ÍQÍ.y¼(‘µð÷¼.i4ÛÝBLøۆWL,#=íŒ>”`ù¸ÒIBï|dŒ,n%ÎÐfÒ ç³\*õ®e€¾oï£ÊÇÈÏè‡)—6ýê9<'œñæ}¾Uò,ÃT	HV»õ–N6(àÔJA—6PցúÕ$¡æ\#-Ã.R0¦Q¬ƒÖ0£2N³½zU/ÑvI¸±$ÿUìÕ[p~•,ˆt×ÁÐâ¶þiøOÇØÛ(˜fæpB(;NÌNJfh-è .#%±Aï¿eG'¾MÑ?“ŸÏµãØ9Cb©ÇëÄ„†Yw{«,M:ÃcƒyŽÛú™JW^úþ›Ëã·t,³]vWnŽöÒõ™æ«òȎ/b®‹âeFÃ_£Ví3WDébmͺJ·4d’[7\Ն­¡Çc<4òÔ¡-oBÖՌš«Ö¶>¹ÊÏ6ì%	B6ʆÄ܈KL|<*»ëúÜsrgDº4ø	oø%u6ÕDŽ#R"ÄÔKøX­‰OåÍcÙ¤lefq	dCXA:aîûèô{&¯U_Gqùý7{gwO×/ªdÛ70„‹‘<M1W<rJ¿$ÐL‰A+Úh%Ëc@°ÐÆqŒfÆØ|j᢬ÔÍ˦#TՌ4D“Í9Y¦9^ºaM°ŒŒW$Ì,Hä•Ü´EF#-¢µW½èz‘MÓ¶mbk—îôp\h5^Gl·PvïX,í¼>&Ò#.R:ÊÁ¢Ðà¿ Ž¤k–‹Q+HL1uÈ&=¢6–qby,p†‘#e€S/˜nC"eT#¨ÜÓ´íµ•Œ²ƒ6ƒ)ÒÄì6(XsE–!¥NPkSµ)´däm‰ÁÙ4©¬EIp«m¢Ñ‰£x*	f2ûHØ	Âfr‰hP¿˜þÏöä›uCǝÉZiv*‹e¬‰JÊ*„êÖ"˜Ò@|2S¦wÑh2ì7àéÀÙ2§N*+:`Z‡X‡FsôçÝòýZ¢3×ؘ‡„þ}öCôө˳­©0ˆ!Ò`LqƒÀœ0ФÈ?'Q Ò@èöR9d"ãÑʦ4ò=§³×oJýr€û4Ùê³sJ/ÞéR{½©{Q¿–Û}víöê?ˆ‡ã‚¼®óˆ,&Y*?šŒAmÖëzu™î#-5öDbâM&¾%Æ£†‚JV¨'Gk©Á§ Hȑ#hf°Ÿ	›Ò	Ò*#-p)_èí’„>ÍÞgk6m:;õæÁÐÍJ”cÂâÁ‚ª4´h¡EŽ‹l$méÚ,^ÙÕÊ6§~ž¿†yqżtÒƉ"À*kSBɦˆ‚ŒŸòþM}ÿâëçƚ~ú¼gö_E<ý³ÓÛãàiÿÓýÞ5ðêE¢c‹MÉÛ ƒ(ˆ6ñeã‰4.ZP)›MŽÃñÖë4{[Ìø¨æŒTSÓ§5ɧÆêFè27bR+BP‰­P¥‰°…ÃFâ«IÈDB2W_q!a€ê‰•Ê‹XäiÀ¥àh­×²¥–ãZÞæt‡0áF#T23 îòL#%X jc`„°ÍB6Õ¦^šU@Q.ª•X>[яèÒ2®eoŒó8w–‰‹»Ì]M“¯nwÁ#-r2ƒ‹»èЕBd›Ã•†4pa¾*šð¾)2g6-2ØÅàqĢ§è«³Aùñ(°Þ5FžŒ‚ŠGb“vHÇc‚z•þÄÞ³úð¥Cµ¾4ZÚ'>š2§@m”ˆzàß·F¶!‡<ëKa%#.ÈÿX‰UãWj¶¹¹Y—ä›U:b¢7)­5s”u¬Óvˆøh ÿgó~£ßóâAЁ©Ê¼oI¶wõ_¿#-ÑMhSsˆpåv²3Œ°Ç«#.à𼓋0œ‹Ô„¿8	I;›lgèÚ3zÿžÖ3ŽÞp±py\/´Áµj&ØÂ,‰¸ãL`xËM±†µ,.8ÛÎV>°ŒmŒ6›ÆՍ¹1ZW¹†e`Á‘¶F‰#.©U4âLe5HÅ%’vf¦WIŒSŸ©{Ýü5Üd¬='~3œJ g´o€Ózhƒ²-a4«’%2˜¤U©Ë®¤Ó×F¸]$ÆúÿtI0Pi@ðnÕi™¶#-ðßT‘§ØÖñ¶\ØCP˜-lœ7…·#-·c´B£Ë„'%Á̸i¨É\W¼ˆ•oÖÛm›ßð™ZB%Tfèí—æMæÂ𘒜®ˆ)ØgSÓ?6(!Þ˃cs¡¶Æ‚Г4&µzYBùq±X6ká󝷼Û@èI®ßǏ„ÑèpEÓS‡*Ù,§i#.ãj«¨1]Ó51E¾áã…Adìºá·anoö[ðŒƒ;ípͼ´%1›¡7VÖzW1Æv#-Ç{rNF:ÔuÖ¦[­ïµ9XO	¢+¸®2YÌåº1&Û4®pE6k†v$<g:b¡Çûq™¬Û8Mö$Yª[•†¥#r5A±‹,`îõ²š6*m2,}N6q›q|¹%¸µr`ž*¸¶|,(#-5d ÜèÎLÒb0DHõ‡ÓÇH‹ÆóK¯BÅeqÓo‡îØâ (~¢šÑš'cöQ]	§_ÍætQž(þq¦Ô©ƒÌ™B#»Âô¶z˜ñ?7Ís†÷LŒ·sà彝‹Q³—÷l*ÐõΕåSbùËvÖ,¿íqô>ˆ˜ÏëÜ¢	ÆgKý1]ªç~ñú!ÐY£:®6\5<ï•ÍK-ê?GMæL1ïvúµ]ë#.mæ$¹Œ>™gƒ3l¨·ë©ÖròMNvlY)#.¤aèR`Œ<óÛô˜Òה™‘Õ”Jnk#-o}&—óÖ„&‘ÏíÆLÍ}u<zÓÚ©]ynQ¼`Ä&8ß"è”Ë·ûë®_Ä<_iš~ý¦µ–ÙßÔóv-ñ¼MN9/ºÎ3™—ˆ-RðµVË\dóؤßק'¬¥-8­ÌðuÕ`Ñ,¢U§ƒŠo²Úðœô|#8ݾT,³Ë$ý‡Cë26ypïd(´º=²>ÔS$u4{_;šiëoY¡˜ä†¸O+rÉZ³#-u¹•¦i]$øQ$Q9u䘟k#.#-Ö%ªhëÓÓ0ïft©)7œ·ßt\⭂ó»±voV)fŽÌèL“fø£JÍNÎÍ-;i”ã#æÀ+šH$çr	‰–ìöfávvù4;ǁ¶]\Ôw‡šœ/;í3·xvMÅw[«‡Ÿ‡–yÜy–Ïçæ‚8ÿJifË7N™’x#.h4Á:L&‹uí,o2˜J'ô3¡U1èCÀs£ÿWâ9îљ.®ø´šqʈMçöü¤jýjπN Bð*źK8>²k¢8‹ŽíöN$yH·£‹#-TéÊúÉ1WcšãIÎ#.#-ìûºhœÏ>ˆ³XÃwjÚ6(Kêöv¨Qwo“jóN» H?w±ã²/ç^^˜ói…ó¡aé‘(ÊVk—¥dÖÝiT!ÊnõP>#-A)E´úï ñò¡³¾Uºu[Ç6)U¿ ,21G‘ñí%SœÁyŠ0îòò,²±$„b'gÏ'J#-œLQáGð¾ëK?Ã=e™µÐqÃQ¼Û¢Jm´rnj™ãÜŠi¨®PìØTy4©93§•‰¬!+z%~#-F7®B;.þѳ;à‹0#-–=„_²eµ‰žºt¿?¤»¹îcю²ùšzqŽÞurÕUqî§? CIA·çÔs‹,‹ò¹%ÙÄnA1$ƒˆRJ2®ŽÇÍ•5Ԟ0Œ5Y°Þ©€Qg%°Õ>Vü¢‘!/בقg1TùAºø²8lþÌð6[Oi+l#vr9©	Ax‚U…-°ºsˆáLl¡¡¬;£p ·\g´÷dàøàìy¾Ú}ßÍß LðD¢ð&Ւ_/@ð'|'ò5~Ïuš<QQ×V’¥)¶DdRrB{¦7Ù^;\y¸Jfu¸C—õ“ÉRïàç#-ûYy ##-á7]ŸJ(¿9ÝRO¨´ÊÝm ZowïèÕøf-œú慁ÏÜü—·£‹g´”¤ëR…™~™>ÌÂöøçHÑzçjV µ:‹0íÛÅÒ~^[ɫ£ÓÅ2`èžAzß·¥kË<=².vâgÑ#-%dð-ÕãÚê#.R¬wRi.ÙI,M¥¦£X兖µ_/a™~D0iIAü…|zG#-/fúŸu>_¼;á3#.\¶l¦1ËfV–šÉ?Ë=2RäämŸFÌ;îtpÜYòû¡dWSÛø÷ëPêéþ–r|üüCÍ->„|#-ž#-u´‚À±Ø~lžƒôœC$׏áëìò«$=¬“,K0ã³¢ÝcÜ£:ˆØ 	úUFç{azo£^Ë&ˆ³ØF¼òôجÃ$3’aï4ÝZÒ>tI–dÚ-0ètáöm[­øÛß³{{õ““‡½#.`%·®·ÃfØ¿÷Q•àªÓdù´[}J²³‘å¥v^BËTSÊocú9*Åû\C{*ay+÷Ê2ÿo£o+²ŽÕcn//"Jožs ¸æm¶g>Á–Âül~.#-’9uùoÏeÀϑu¥6ä·¾×8¼”yŸÃGa¯ÃxÛD»U.Íã„îCîvú¤Ÿšk×Ôk’7,”s–ØIŠ6ðyJظß+r`qÉAtÈÏb£øÈùqä™`œ…øm›•T(2¥@ÑIP›å%¹šgiõöì&žÃí¹wW?²jæýQ'ë/Ýñs4Æ A˜š¥BUl;³ÎŠQ4j(‹óëzýe=u<ÎÃnda¬ÍìÓáÚ×Q4;ÐNéø툨3{bMàÅï?ì^[øõфmw—Âà¢nÏÑ*i¶C–Ö¥®×)\Æú•ÝÛ¼ÔFûŒŽË¡ÏÞo—ÎoÈ°–ÊW'ÝušùBc÷f¨Ù÷n=ú=}ØסÄlÙڲӇ|ÜC<¼g®RÆ6}a²cÃ	BÞÝ®©u{n“=fìÃêIÀå2G?(l»`_;}hdPN-1MDf‰7T._ßâo‡5Õ÷†ÞcpËì{¤”%Ó/ßmãù–秥äùm¼úk²çwŐ&‘6{z@âïy©ù7Á4óï硃N½:IÀa ˆyÉ°ög’Þ#-§v¾ä¾6T·zª3²8m»ÄKwèÆV¦¬Ù$ðÞ'ÕT­¶6ë{ì‡~îÙ֕µ×Cå£80±Mºè®BÚ~܈5M„>Orn’cÊöiE£•ŽCû£’È¢Y´²†TOV¼ÊµÎ¡^'ÑVjR!ïÍ<›\lýoÊËÙÜE—$˦¬gõ/HàÓÅ9ŒÏkßKÕîß5þ)jÖ=LõE¶Ï€öM­J#.|ÛïEáa(7¹Ç«;[IvÉF̈́Z|½%ÇN±pktà(Ïki33FGхŠP¼1M褞‹Š”ÂXá©c²Ž®&^ÊàdMÍZõ’n”Ü?D›#§Bð‰´á÷g_WÉÓºwOæcøgå´½\âΑ	i@ڔo©’Gí0#÷CäþXñç½yñ/ÇLç	w+᥎¦ç–|¥Ö4—(‘hÝ®ÈÑq·lùÞì	|z¹Ê’Žê\Éâ}Cϼg~,h6M¬fØÁhøÆÞÍ·ÞkbÍ s‰qÓ-å#.ꌅ¸ éIè¡ÇT´vvlSG&Ïy$ì!ñÜM•$Ž¤uçi ­äêuå-vqVaé¢4í%OÀßØ~3Ž6ði<µ®˜¸Úµ×;øf`:Mc\ûÝÌÓ{T9àíŒ0+##. ƒÀ®»£̲–Ø=Ðël˜l¿´³þ_ßJ÷ ÷éá÷ðnD›³Zˆ2»¾<<Ô¶:ùؗfúò;®ƒyÄk“Äoð“i+>^Úö4k=øF,Òr3N4¯›rz»:jD¼F}Œt—ø,ïÁµå#% °~’Äâ;Ü]Ú©Ïl†Æsx¾7ânx=âͅ4µ	¹«Et|0ÑhF\ìM*t‡<VÔÚüŽ§Çgñs¤æ¡Êw*“ÿ³‰?«‹Œ#L¦žSÕÛû§ðSÔãUšøä[tlçòþR)Cn¼qVW^™h½"/lÝҞú.¢Úh#-O˜ÐÈnÁähÊÓMkEö5¶Ž;Ð,I<'Žk/NHœø@»UÐy™h’Í·§QÓý²"p¶2ç²>:/²xèíÉElé'}¹ý^eP®IŸžÝ±ÄYÕߢÉè<bKöõ'µÖ†«ÁÇ#.Åôþ°jòÖCé{ø–;å!*7af6µ"¦‹¸ߓ©¿l¸‹U;T6+ÏHÃEu«F§·…èÓuW?gkxØf¤Ú{ìý²õ™•"n’ÞæþˉéåNW?Â.W‹xîæOžz¤Fý/¢èÛ6$õå"RIńì‡M‘EÕuW›JýÖáeƒèÝÜåuå5¾	6#¬õ×/¼>ÿù¡ƒ•žÝv5O}ºñÑ%Î{ùùø¯Uã²yâÎJò¾ÈèÚ;vÝСóD~ȃªþô=3æ1&Û¨3æ8õ‘¿$w—0&㬛Ë?eWcÓn¼m5HçGôÓ­cXíÍ÷Þ¥Î	$鿶u›É}J5²åuöþ²Í7ŸéÇ}4§ë¥Ÿ>n‘Ñ¢g%+7öQ˜ºtÏeykḐDv¹¹f‰ï†V[núÀƒåpZyêätúR¿SöùçË©㿒å¸$¥ñœ{ ÆßãìffxoEïö>ÕÄzDn½Îþ~(ƒ	VÑ#.DߣŸ®'î_K.v<O§Öqîž5±Jªø•åOIw"Ëùٔ½Ø¨ëÛ~ÛþKx¨ÔpŽ,/±v…8Q²{ꥄ¥¾—ô}ðl Sm0¹Ñ««+IVŠ(>ÔRªòÓêO?&ã:†[EIiƒ:ÍsR¯Ï¡eÏ´óy«‡]ÞxUÖpÛ{zxÇßUÌ3ü·éЬ㔟„·ßYÊ!Fœ.Ä{»c“NÏÝÚræL¶#n\Ñ̺8]6è¶ÜâË8Žëhy?C§žõ¢v)ØüÍþøÆfäûë®øWò9ÏùýŸÍ|èu§Æ}#ˆõòòÞqê>ÛF·–U¹Ô^/‰»„aÞ#å#-Bf#eÔNÎ)í,ªtgÌmu.׍¹ƒ›>h´Ñ„ß›8©:¡öHŽµ9]å_¶)àŽ¬ý“¢ñ¿Ç_’µßíǬV÷îО¿_hi>	õ´²Ž>çŠÉ¡kS+7î鍽w™#-’W~ÛIiy>6ø^Ó¥hÚ¿w_>žiô<ùóåuæoP¨‡M˱x<)r~Ø6]Ú‡Ö”m.x‹í˜ò]bïQÃíëœ{jHÚ=ãü³{¦ì“PÏ#.Õ°…|.¦:lr¦KBkʬ=6›0ªœ¤:ôß#¦vYyCQ¡ýkRcŽ8V›Ê:J6B:9꾗~}¸\ÕÆiS½Ñý¯ÙVå;4B뮧}Žu–aÇO\«z,²	Ð[lVù¸h¡áE[é8ѶÝK\¨+#-Ã|‡§V#”t4)SEjøjhg'”+ÕǪê/NT¨Èüo}keí×uû3¢Ñ½pKm¢èµèŽKÏ)Ìñ¸W~OÆ}ÅÆE](œßgˆë³écïN~MÏ|ïýݞ¨¿Z7,yçG|Í6›Œ@{uYõ]»ÇŽEçùÇ~˨ólºxW¢GÏÏ>-b2îz+¦ ´.ž!‹‹¬¾øò¦ÁrAKÕi#%¥ ¤L&EH%J±*k*x£U“Æ‚Š¢íÛ3Fü6ƽ¸ÞNœ3î\4VçÊ5ßÒ;rk~ßH£ç´f³I¦xÃÅûä<HÚñبÐñ,ÓÉà´\=¡<Õ¸só«5U%ЯB±K®«ãe•F¥”©™¡avŒwYM<ßIݱ‚/oӎ¾O@©>û’yF«Ö¦NÙ Õt½õåìuþœ|öœ³¦3ôcˆ­u8Ï>¹§î£ŽÏòžø[{|TgŠ1²=à³{ÔÝx_VÑċæGŽ4Á[ý ñ§rE÷#¢•?7òëY0É:G$˜Ý¼ß¯ÏÎ(ÿ›ëó»QÉm‡U„¹?Kº'…]‹é`ÒúLlŠ]¥í$%°èGá´Uü¾û¼ü1Ò¡Ì÷DŒX¼ísa,÷×+lÐÎôE&B™cµ’¾ÄÓus)²ÆºØUKý\6Á®5qï}\ùîzm¨9øwù|ŸÏ¯;¯CãÕ5-¼Ì"=î<<!lˆ“†›ÑD§#.*a±ÌÉ/"zæ\®ñ&8űûJsþÞÒÓë[FÑ«9T2kzÞYåÁqa×rˆ#.‘My<¶Aëe]yï0„Êi/Ž霰Áå•\ä.ٖÒ^^>y¤ËÜòÄ%NÁñ}pQBµéÆ#.¤GÍæ:Eb]ڝ0¥;ºÞXí}Ô]¨}»bm‰Ë¯–]í®#-eÙ¨Žsß8çÛ\#.š/„£BˆÛñe¼£èI&Þ¶IêÞÿ™:gÂèš"ÂÅëÇ|­FÕ<*HÑQå92ŠiÁÆÔ#-å¾_‹vÇ«óí٠ǦµÙ×QUnÕÀ~ºÎYJ-¥ï;%£=uçíI^E:y}W×Ô؋ùý>]=õՖq–½[kçF¸QI¶©ÿ;%e'±‹ÖélV¦ü”<¢-c¯¦_\æ(>™_¨Õoוûhz¿‚ûSfòéüb×==mÆðåïdúãI,×»бþ¡…õÿ3šk|ùݞÛi‚ÜŒ—2ƚº±35s„Ÿ~ºfÜÈøÍØ𫊺;mp­S8Cy:;º‡Ù8Urå}Їs>¸÷ÆPӖ»ÿ*RÓïñ=Ú4 )yÜv…³ð°º·v6¿ ƒêË0§ÇDøpz>íë^“ôj½5ºa§ýjÒÒ×ÀA³ôô¾ÿxžÑùd6ž;ö@óvHdT”gCóƛú³²FÜÿ_§òŠéc“ø×<-«WöY-³¦è‘C§/ ëΦbèð~7‘4¼ü2¨²v ¦+Â*x#ßÌñ¶bÜûHÏЕ[tm<üsÌb&>Ï㴟oXÉõ˜û»×[ô›6¦µãwl³˜#áÉ?y䊤Û/Ez¬ÈU—NÉ>#-®©`êuÚlÓ¢o(Nßa,VŒèƒ'œ=£Åù7'O×®ÛäÛnŽ\CžpW‹‚Ý+‚¶q¿4}UÅqIñÖ¸¦¶Xüë*ö_ío7^~}1£UÂx:³5¸·®#-¾×Uüð…”sW,¹¢œç…qôùª —ºŸÒª};8½qÚo¬4ÚԐƒÃ¿—¬dç0?Át犎wÞ\áß×_5Íg1¶n÷å1ü»}hç¦Ðžou÷Ȋkûq¾¶bŠ0qé~•¦6Ù7‘Õ_²R(™GŸyˆm²m ±v—á?O”ãâm´ÈO¦Ò|v²2í¤¾? STUFP"(;hF¢›qâY«#.ŠVÕ¢›¡éäµD©5Bdȋ­¸ž\|0 ¾¤k²z¾.ÃVŽùÈ@ú®Š7*þ¹/©Â#-ؙš¾‹2JVµeAÒµÀµ`¢7^ªüt÷RwUUܔ4œ}þPÓÆ—;Êh…ȲŽ÷Ù:øQá+[mÃ@¼(ºã"B;)»*éŒíÙWF—ÎÊlz4Ò]it5vøq²ÔFðæ)›#-ê:äSÏPQÊ{µ[B§¿Ióý8=b#-öuƒ²^ëù;ãcžž³#-›2S‘ӟ³œà}³Fß@ûIgÁãNïËü´$ÆcŒciúñKçç¼[ŽeáòŸú\p­&çYÌé66Ñëﺕ^x"zªûAY_jùvã§#-¾Ïƒ¤Ä¢c¬‘½þWßB&P~Ѫ¥UgÃè0÷äáÒÎDiss´º4¡60øžfµ¹íâ?~ÊN„xñÖ6FyíÞI!…Õê¼ä0NÅÚ§²Þ¶¯´ßi¼tß1îÛPfŸãßÜz]¾ù']äŽl±'âL/?gÍ3cË&£cÙð°dî¢<x%•s|‘fµ-Ñ:ð›å‡•TûÒ}Ó±Ùè(|£²†î¡ã~l_U«Ü±ºØ6¥„²¬"]-1³#-xçKïùÉâ/UÍìD^s<25Óæ¥Ú:³Üô¬L£C³G•‡ðüq'»b‹äKw1uæ6ۘ]k8z܇ùK2c8ôu=¦8Ý×®)›B6kÁš”°la"ÝÑy~ºØu¤EÐÓªØGFKCÃÊøå÷µ‹y=ø0êï*÷Hú#ª´^?Š#ªcÁ:}†×Xôå²Õì‰µÖ§©KÖå§w5>••ô¾ª<÷ÐLŽâZ[KR¯O\~GÃ&ø9ǽ9RkR7¸å¨«¢ÈÝes5º*º#.0GD¦+§¿6֎ý<Ucaó‰˜r%΋o ¸V:pt:+7û%ÌNÚxIÄa@𛖨^í»ÊCò絟W8cÉ3øs{ÎL“îò6Á¹”3²Gõ¿®N»™	?7íó”p馓q+Aã#-UáÒf!š™†<K…EÉۆ1:Kg}éšÜÛ!îl›#-ƒÛŸ#%ê9	·‹JZáÞ¹‡P„½/h8Îé²Uפk_vØó·ÛÍ?‡öt£V«YÚ}°‡ou6ÚÕ«A€^TDiQwæÅ]¤íN×tSô"¢àun;#.dKœÈ<_Õã»,NxÍ=·ÖYÉo=qòŒ3Ò·Ša°¿ž»YŠÎ:“[	ë¾é8`Ó«$e®|rs~äTˆ)$Ïuó՝eÛ|_ãê_ËéørÕÛ@ã"—I Çoøï·w^ áðÿ9o,cqeVWԙ¦›Óxaf#.Pá–í—çH€ÙðóC˜µŸ°‡BVPÏ+n¬·µRÑ¥ƒ¶—]5]ìwn$џïõa3K}fýÓòö¯˜´ÔrÄ4Ááv$$G%;Wo7|pcظ¼¡Z™þ\p t×$NÎíGFÏ2(YßiŽ™|ºÚˆQ×_™UGiüÊäVÓJ§°N\%c“Ûn†òŠO|­9rïWºôtƍ1ºd‡g…=P¹Iò|S^n'íÄõ«üü[PÍWîéú‹?#.½ÏÔéBQà†·tÔIÒbuàgêj¢¡œ'+_=|Ðͬ×õµP®Ë¯'>ڒ÷NɗóÔ¡ Ùü,<È<´ ´çïõ?Cò¶9Øþ¾g’êM AÅ~¸~OM¶xy4¯¦]’æÙ«c3E©#-êGï?? »¸´%=¶‘Þ¸ì™øUU5…ȇJbÅ&Ÿ³»;êÒM¹ˆHgL’ÿÆž`Kj…JÂèd¿¼ë‰>ÿðÁ*’E …_¹µü5†`ÚKhÕbÕuÁIÓHs2‰¦ Äép#%¯üx¹Šî’¸bÆ|ðtæl_®pÐö›9™Æ0"$`¤V0X"°„ ›lÑÓЬv¦Á«)‡¸dããÞ7~îc"¹ê¥ÚŠ°Œ”‘ñR‘Pû®Ž¹…›$µT	í!¤ûŸcÀýXMî'°'éizƒ׋1ù¾}Ùô—ÓK˜­L*¯ñ9L¦AEÝ;«ø÷öÚ7ååƒ|Ü©Íßrÿ#q¤¯k™^tÿ[0ãsBÞSj!ò†3¯‹º²p¦2¤¯‰‚Akqõ¯qµ›]%ý?'Ç]Ÿ"¶Xô¨sC|3ÞsâÆ Ó½øyq+¼ùÁðÕÈ%¥þóŽ¿à} o5ºâRfۓѢÐ[[‡SQµòÝI¿®ˆ¤× 9¿ÚbKþËqLœ¦|þðþ2!cäOÜØ0ãÛM’2÷iN°5	÷#>ÆΪày³Žˆe Ÿ›ïöb®C#ë"IMO´Îc³·Ã.΁†ŽEx€Þš¤#.eƒA{#Ïqěi[ž·“‚w„1+#-|ÇŒ¸}Oöí÷ýé<a!E'„ç˚æFØÓd[{ö3>ŒåìßDVš5¼9ë*ÉǾÈ+|exøv/Ë~JOÝ<rcš“ïìyEÐs	¤þ.§Ú†iÎ#c(Qñ€uÄÒ#íqâýpõÅ4ŽÉ‰PNë{¬ŽÿôÖ±¨‚{È"Aá¥#.4º49B¾.ÂÚD)‡’ES,‹àA͕§«+%€tÜ"#-ñE ÞZOaÒ+–í…€­”w 4hô@<óu#÷D2‚[áÃÏ°ÃmóTÌÈ@p/§ûz¬T2ªƒë^P<*û\ÍõM™èZ]=ZKE8×Á·Ó¾ìïOºo©¶»\Ðd¢¢1®{ÚeÅۃ”ÄÞ´„Ö&‚¶§f(õÏ(›¤PÑØ(…WQ½R˒WE<’üNÞ6b@]Jߍb8w5%‡½VÎñÏîó»™Þwð¼0Òpž`ì)ü­ÒƒßXöš?‘ÝTáD4Lh~Ô¥Ý!oÁÝC`HÜmåÇ¢gGCOU5I7fˆ>XÂ9ïL@ÉnD7}£ôٝQîé¶tæށöÕ0ö)`R®ß®STÆ68¡õÜïguJ¸<Èy‰˜úÔÈâê9$êhöçQãn=xŠ3MÅõef©±P÷»t Î´Vx\LÊ5dÈÁH#-¤I!æ.•c¶>ÐQªÐ=Ä·£¾s†p$CÒ§£‰B‡,óç}ÞsùMÚ_^U–;9F&­cXF”lA`θSa3›²”¿déÆî;ö8Wt¬¤õ°3êÔgÛNsSuuÙ¨Z-ß»×­ Ǭd³sÖÖÜéZ™®Šäüݏø–”јðãÛ|%¾¢é<¥<ÐPV»h^H*A’IÊSn0,!cd#.¶Öh,Ztès³ÈþÌpFzg;}q&}`!¢¶ú.µCMxüf¶0QÓHÄS,jMÝôÚ¾þuÛãzødÇ?#B<™CFBx°¤Rh1FIšÄI<ÅYkRI‡f1 „T>põa„îêÒÚçÎïåÕÒ9ØÓq²C;‰ª„&·”­µ$˜6v¸NL®ފ0&zóÕQƒ/&>tZÔæ÷Ð	£˜ðÌC-	äVtÏnuQèqŸÒΩM²/-²´¾#-᲋4)Pê’ç•°c¬Ïnxb ¹ôa¦6 }é9>Ž¹ðζ;k¶	5qJ!¿<h{¶R\–ªöRçùwyX’YBM–É¢\<ÍqÒ#.à¦cuÛ¹zV›+Í­g㋒ÆW,1ª»ß¬¢ä]¦ŒÔ™N ÉêL:üʯ†fÓ]†R+3HNšz{˜Ø1ÍFø¬·i}ª¶n@}4öúñÙÃfr‰(Ån—¸¥kñqª<«¡ùÄóŠÚ‹¦Ês«C6”ÎÙa-~yôn•C"-#.¬„!Ìuß:UØPNŠIa›KkX)gt„Ñ#-Ma#-¸^̑î{šEÎÏG^ÙÌëCQ; >wȁ¡ì¾ë?zó}‚`ûsnNÎÇf#>÷g)à÷¯¯«‘'ÕVM`èqd˜#-Ðà‰L;p=ó*Ã'iPÔûïË2ÑVŠAÛsߺøÚ±¸Ó2ÄÒiß>›¨b<4[ëf$yHҙµÈpÛ,Ñ¡(­’»çÓeû¦uWi¤ÐgjV«#%v%³rw4ÒH“µ&\#|‹2x¹ö•…mÂñ—X?ί÷#.5¾f%É^ï™Ì|Ê:é€HhÏ×¢y+Tñ¿¾›Gl4{d¢„ÓĊ!ýˆÇg-5âž5ì¤JÁ:îs¿ÐÁ×G2ãGÉÎDna#%½—ã	o!0v¼±Þ¢iC#%/E#.&î겗!¤z9Ý#-„¾”äÔÀ†^rhÚ-ßEZútG;Ý;ÎÇj‘+avTáÀ	‘ƒF• ²2œ`¶Û³ææͻˀ,¶¶!{õêÀÎë¶bÒÙàQÓýúô±¬f`Ù<5]נ̤ð†0$Ž¡µƒ9qM¶<ÛÑ=Ѥ(È¢%âŸtúi2ÕõêY:âT{ùW#-‡P×îÔyC•¸H‰¸ÒöNîÖAuóEèKƒÀé4Ôéˆ#.ž5a'ÎýI¨[3…J#-	‘#%²ª«Ù^‡	ôëʞ‡šJˏ s~‘ø«‘c˜–çŠõŸ6b—öB9ÅË"ÉÝ潝y(–e#êE	 B\m”iÝu\Bíägoeº;51£sL¹[üóG±ùa›hì³õ3nԃË›Hžã¯µÙµ‡[ï±½!Û*ÛU8ç×:KÕ7iªÿ4?֊Ììv—fHh;‚ã9¸:ðy[ôãsofŒ8Øݨ0§HQkŅ‡€ëU7W¿…–‡˜)/¿\ýâ»Ë%qãÓo^ùьÞÅq‡jb兜Ï#-oŸCVÍՇŠô•.Ýß[jî@ÄìÍ>aí㧃!˸"#.oyéå#-[ÞFxÔ3.éœå#.š.†m[Æë!¾ê¦éfãÖÐ#¼ Pß=‚1Š¦µJ,Š[#.m:s×åâ+åuã\›š#-Xe3‚PÇLžþ*ø¦Û×~1¯rÊå[ØÔlpBhÄy®Å„H¢Š‰î(¶`õÙ‚"—tUu¶•n§Ô’o_õC¤ÚréǖºT?×þ…²¿ÔJ¥Ei·nëígn·—^Nj¸ÇíûûQ˜hwNHú#.=­Fîq¹8ªè2$zx’F$"%yý~5|I	j#-Š¡ýävnÖZùbsMa òëãÌÒMýPpMÓ¾Ú8LBIDL ÿ–(‚‘‡ð®„€ÿ9÷ýíÆöz}q9†ú“^QƉSmÍØbÉM0@´v¡º‹==›’¯ßí¶$“ôX×ÀkŠsv¡Xô0¨	ßgšI‚»¨²#.¤½ðçD¸Øøñõ¹±ÁË71ßìŧÏ^¢*[áí,y¥Ã¢‡—E»I~TVóÃe]€ÜԌ’Ù#ÐQž)˽»•³f:˜R¤0ÍOY#.šÜ*ó·‘øSi…¶6‘„	³X;R6é3jV·n.aʞèX»¬¨[Ìz8pI#-}9¾A@c€~<))9üÜa.Úé(0”_rhûÏ?鮖›¿R#.š´#.ˆŸÕ°ê“O=í0’tÚEìÙþóÇ|}i&Ñév‡èÕBµ©aâ…Í"¹·Ê¿Ã™t´SMüyýñ<Z·Cf§ø?´6¤{{½Ó’{D‡8çÀ)3Èô VM@Fè…zQ&h䅘{eِ_kŠMðQwÔëR&–	gDŒU4#%êXK?®ž‰KpÍ)(ɀ`@–œˆ\¡@©4&¾æ ä R‰i€mMlÒ6EдÚ.ás1ö!¦[´d#.Ø2HÒ)t&M#-Ê)¸)”A):®B ‚J‚nF¦]i/oƒ¸¿ÇŸg»|ƒãÉÀԛèqə$ù#.0xX‚4æ ì½;sÉúj!綻'Wômóþ¦Mø)“qt¡ŽÆÁrÇnóÕ÷%"Bok ¿®MZ.Z58	Ei½ÚO+±Âré<*¹ˆÌÍT¾¦¡•G‰‘•boµA鍰²å'‚=ëBº£?ÑoÍQŠ‹ÍlôEŽ'þ~*†t=-fˆÉ#.Sýä›C¢bj%H±e Q*¬AbÝ@îKx$Âo4÷\š°Af‰ÔÛj9Ôîz÷d×Àþr§J«BçõH<Øcž`°¡ð<jØ!]D³‚Ž\Õ¨Žåq,¡‘7(›Ë©5Ю	Œ©†‘råðeÕCvNñš©®nŸÒïty2™âÓøz·Àw	Ìãw¿5¹¼[òË<Œ"Ý݌ËúÐÏĘ5žuŸà©a¶¹E°¦R{\$†my¶êÙóސ§öú™ûöé8‚>`RCV(iV2ŅŠÉm”²ÙM7Þy↓(ˆM5EJF)(ª…÷ºùöî4¤ÁÖðæ›ÍÖhõº©»ZÈÞR:èÞÊíYš‡$˜`5@)$dT‡Ý*©‚)Q<FÊ2û â%¦ï/?á8Ùó`uÖy]œŽbE "Hwñ9Ó/$5ôã#%„0jƒ“ÉÖÀ!ÆBØn	%³eÇÇs|ê+´é#.Bé#-ðQ´:{e–©£äP[iª6)°ôÀZŠájܲ#-Q[˜Ò9X1Ãsälå#.æš}´‘¨d!åϏ`苙ÃZè2¸ö:³S"6b–,ÀÖʃ©Bf-h×m¶Uˆ>Ú‚cb¡ÖwFhé&9îJîÍ딯pʌ|kf|„ØäÀðE€‰$< &ù5à­¯’æÖM¶‹Z5µ$•i(1#%jÂ~GdÌH†mkî|õÊ-²l"HÂ¾¡1&:w$'ƒ#.eX.£¿KÉ5£›É‡‹ÏNîÑ—ӕJZäʙ›¼Œ»0p‰#)ïé†tÇÕ ï’6ª}¶iÕGš“¡«uöRo/Ðúúì3ŠŽÂ,’*ÈÅ(›Ä¿1€"|KÎù*2"qìÞ&ۙ:à!‚Aì<5P³ÚÈ¥Xºƒ*Â&Ê¤pÀ‚4¡#)犦–£"3g/ìU`Û¡­¶(ç„N€r÷š`†Œ®\8Éq¥Õ¹­¸V£d´mr­ñÛ_cúPÒ(f@$A®ûzM¡WÛ²{l›6QÁå¼#-ûâE<8UÅÃ*ŽÜ9V˜Á8%O!DÑlÏeå’ácÒTóèc†NÛy_Îb íɈ!ÝJ²…d&#%°I͐Rl“‡Ÿ.G4áß·'«>ž3ÎÂWMᛜz-ø²ù5S‚u¤( é!(óys¿=Ü´^ã˜hªiÔáÁõj	ÌœÎ[D/7Õ#.#-u[Lp;‹%(ŠAdŸ1’!)‹öQ°êãžG1m鰊©Q^=øÊbÄÂÎÊǙE4,5 oŽn™ÒÌk“36Š#.¹¥{íU+K8v@v’’+BTéÆòÑ`’Êwã¼ñ/[er».×y7:M±(›XK¦á¯8ÝTø`ԚÁƒV©:fÎ7N™àÍ°KÄ£†¶/¬ïïO#ÖPtliŸ{YÎÐ#.FÔ©†¾´DÓEA"wçŒÇƒÈ)׳ÑPÍrê8ЕT5(žy¶ùjîÜkèÑo®Ð²Í7’ù^»6>#%©Ryw‘í‹#-ÿ„$!!&A…#-6ÜŸ¢1ħ,¿€H»"æfæçÐÚ]7>’X4š!ڏ·»®ø:èÕ[žVÀY²¨VD<klݕT¼í£¸s<užï¯qÃß|xð¤¡Ç´ð‡6ëø;Š…=¦ò.rØR£•^˜C0›ýoNY'Y¡DØñîïÖçÍÈu5ŽJ;g™\ÛËeû…ªs»c9Çw›îÛƍͣd0´«¥ö<DyÕÆ Ò;î^sÊBl&h·gÛ±½ÆæÂ3§g8¦Œîá=Ú0¤gÃG#-˜Æ6´ì‡¿áÅÛ!ãaÂ	ÑÈY[GA{¸bûÐPŒI¢êŠ©¶¼xµÕçäUªå$ébT6y†Ý´Ñ¤µ°X¬ÉÎh§ª)Ú8A!gê¦ò»dyüð½Îl÷ÃJÔ<8UBwôVÂubÁTôì©¥ŒÉ QFiÐè"`”–!2’–#Úpæõ׏¿GíÚ¸}yã¬íS­–baþ__»%V2|>¨KU·åÏ~“µïŽÜoÂ.{Â:Ò¯w”S㣭ôtòZëQCBµANÃiÙ#-¯Ó“G¾º©#-'Ž#%zŸ,ª>tY¸L6x+Ü«ê”Ív£„Ÿ#-ò}ü	ePMÅ®#ÌïÉÒ«„Ö¹·âHJÄì¿sëQ’t¾Ù¦üíiySΠ¢UÔÔ¨ÇbI›Hƒ€H-0–(Ցb1fZtÎ=+Z Ý4†éµøÛEÙÃâQ–)]T‹(5ƒ)8±¬%yk¸¦-Hb–/•ï·¿ïƒW@øÔÖ½1‘l=;»¤D0Á{Òì†ÿ¼‹ÅW¹:&1†Èh|" z'}m*šHj‘Rd`;rY~‹ÒӅKÇ]3 ò‘=UȚ}¾¹ócþÇÊ¢9Ú›’ƒAÕÛ®…”y¾Gš•æDuÜ·¿Äf ûҒ˜‹KJm™ËÏÍ(›K“8ÌsMHéºõ&ðÖB·O9ÂÍÐҟ¢…zËõ Årfe‰Ñy{ÄI¼ÍÝÕù¦v] QYõ¦ÎÊCiN«v÷!Ê9։°´Št?#ßÊç2&ð±Ñ*”éˆöa¢æCwxô#`¼ ’×ßFq:&^µ#°û:µÛʺL[$;æ«Å¤SK‹Ó]T–bDD˜©#-Ed¬L;¶*QTºd½FÄÐñ©¸$Cœ¨E˜¤7š#%lbÆ×\aº§ˆVœ‰8¶V·}ûtȒ(&Ï6ýxšP´»LWtr¡'â7Þ2jFX€¡‡pö8ù_Yxòš#%1ðñ¢¶î!{y±’š¦Ñ	Sû‡°B°lÇcÈ1=|ÒÒ:&Ô~—ç ÛµQ&ð“LY‰I‚Hb…zpÕÙUší²ÉR3Y_Pµ· 'Ÿ×ËV_ž ¯å}?lM“éæ;€ˆ˜ûlEF9ÈÉɈžéýŠzĒù„ÃÏ÷ÿtè¨›?</¯žù—âóª†|Nê_(Å.=TU¼¸*‡gT9g—bÓ©Ñ[8Ñ?7&øp¹w€ÛL}Q><xÌÏçT•1;Lݖ0þ3ëå<’ÛÚ™ë#nùV=ñ¦íµ½%›ßïÊv?BI³b‰½°:¦ý€H¼Ra#oVåPL#%&P(ÕT8ú~ÎÊ©ööý&)#%WõQ7L%$‚ÁVͲÓQýÏ>^Ûlª=1åº~]ÉE‰g„,ý±ÝûR¢ëƂò7té:nH$>§ësž˜!¥7óyàøÎ¥ËdS#[×(-þsú	þ	]½º‹k}±#%W2„zþÓû¿¹ÿËþô¹þl'ŸõHöïÿ<DUYz²-C=FkU˜óU'ñçòvç·n/3%ýî¸^Ûï}_yøÃù’í¤4G·v¦$}Jñïü	°–··lè>3€àQ„áîœxvt¤ÒMä $ìãÜÃö}¾ÿ=u.ÊX8‚¦ßžº¯ø÷Ƽ¼~]{Ξ™Õ×ÙjÉÞ¼¹ô¿š×Ük–·ó—.WK&ŽÌŠø²™ýÜËRâÒüòÏäþ{ÇïýFÚ⨈ýΕü”–=þû1¯OÔ¿*)')}Úà.B©Ûª»ÁqÓD8ˆÝîK9K#.ì,«/jÈÝgcU1ëf*ÑÔÓoÒ»[húÂKXÆrÕÏמ;´ì¸Ñþßz«¡ÈÚ¯‡U7VSOk›‡}Têff¶ÿ&f`¼xÛ¾ˆÓ‡àîÒÉh(W^,ÕB(H.ï[éëµÈq‡ÆÝJ©—ûƒÝÃ{Üq$‹¼õ™(T=1IG²W”>8#%2ŠÈtQI$„…¹¶<þ}µSÒQ™TÝc.8|˜“ïhAœh¦#.D„##%)‘(rG‡WêÞÿ/Žï#¼'IR\g‡ÛøóÛbÜfœ!ÅÆؘܘhî6ÏÏ!~ŸÙö¼/¾ƒƒ¯j‡õ2Վ‰H‘bÀÄåÞ_Ñ7½y-)ËjºlÔVïR¦5zàRýå4D«ÓÛØ\~CeÞn>¼Â•ÌÙæÐ 3mÈ䙀˜˜¤|àŽeºR:º8ï<Ü=¯èííî+‚Eh–æf` ±åß/úZd û(N¢Ó&f`Î/Ë=agégêé¾vËï½ÿ¤ÆÄ9ÅJ´f¸ZÄÎ׃ù>Žn¿'xóóMTºBc÷ÝÇpN:úùÀéÞw»u?9P<1ë%Dn­ëñû>â,hîK½üHD#.àb(ùü[öf³Gçd6lO\{vaHŒàEO·v|ý[:7¾G˜—B#-ö¼´äz.üõÛÝ]5'ÜHÑî…¸Ùß»ÛØÇiúœ?„?n˜ÇøæOÝPüÚµ×æ²~I:;á)·æÁÃÞõ)D$™˜ƒ0]Ýò|Óñ¤ÇÏÓɋz9áËÏ'¸¾¨Ñ„i‰ÏI¾s­ç‘g¾t*mvf`¢dQO¯Ý€vû<ùí:½›Ñ/,•HpsÓGåÇF–ÓÂ/´f`”T¥(.,¡(a©5ÎÎÁó¡µër,èþ}²ì7/‹…>Ë~Ÿg:é8–¹çϧg$¡šL{ú2ãÊþu×GGtTç‹ôÀËÚå2QžlÖLƨ’/»ú0Î!3x•k†Ii«÷:κåé©g×Ó]çCéÓ¾yôwj҇ƪ#-bdȐXÃ7¸,×––ÃZÔó×9N4Bj|I+ ²I7ƒ³·2nøLIá<yWmý\)ß>‹’ÎW&+’aï¥Cž:Q™™ƒÍ	ËJ”ëÝ_^6xÄDwÊW2?ñºúæk€‡4îr§9©5‡Hۑæ¹ð̝¾ßŽó6&d„IABF '‡G¡Q:që½æú&˜Ñ3ò¼må°®Š+ŽÏ=Ä	Ñuۍqff%<(OT!Sݓ{D»OYèù9§3۝3ºÏ{`ÌÁ—ê—Þ݆{3ׯ^2ÝsÈ}˜ËªEqªIâFÌÁ#.;m,nªpú¬ô¨Öõ¹]17wŠNM\¯h5û&¿wÙ¹ÎúŽÜŠ|8êº;Ø«ßïñyٙƒ*õùþwgꢮÖf`듍Ñbð‰·Q®NÞ{¨ý–çuŸ"6ï¼`­€Þ›gÕñ`ÞÁŒ¹MgUÚ±ÓW#-»u£vƒòcrn¦¶¼_¥3mÔ3G=¸åºý	}óû>Ÿ–>ҟç®!6SÏÙ_á(ÎÉÑøŞǥ’”}|_êüύµa]›žVÓ;éö"µ<OÊ«b+ד–#.´¾ù5ë4;¡Ò—~ª¼ßª«ãûÒÓòX·•Êvt…å<Çû·p?SüxªMýzðÊ:*B5´AÕWÞÛ$0FÅâõå£Æ Ñ±ý‘Ícm¿§Q)b=i|"aìà„-{²â½vŒU¼Yý¹öUÖì”%ˆ&_x%n˜yÄ=¼7š$…ogjÒôÍ{‰Œ_Åý7þæ›Óᖄ¶3²½R$>oî§HS"¥"÷s‡™KûôÕYXï»ù’ÎdãÉã~ðèCîÇÖVÙ×9íQ½ñ~¹Ôè(héÊÉ!欼Îòϓ¢¥&[^õ·’¬ \/¬°”ͽAõ,mqÉyI(<õA²ª0„æ¬ìñ\ióÔ~ëÊϗ¢wW…éhÙ2*¬™ÝÅ[K[„Í”J™ƒÏöºMïôK_\Ÿñ,rGÐs;Š¿±¦dü“Ði›%òýU5p`Žø­Í1ž01?p¼¯d¿GT;{—1"^˜kqç³÷–	ê}Â#D¾ÛG7½Ôö¬ ñ˝÷}·ÉÑõå¿82{ðÓ±–7¶)V”•ñý÷#-ü£¿Ny/£šöéšÄußr>õßt™ÝÐd×8¢+ݽHM8‡ü¡ýòGnü¶~£.q©óÀ]_³ÞæO&1«Í¾!Amâé)×h´.3Ž˜Ï5™Ìb铩{üJ™NÐDó÷xգލȸ®j.îZŠQ[< ¦†áÇb„øÆ0a'OŽf$$;¡=K·¿˜µ^ˆìó5FA±·‰n¸Ê­Õ“}Û0º”úN‡±)6P¾W­Ûwš4Ó¯¿–YÔñ|P„?/¤ÒÙ,{¿g:¦/¿3"~«JÔ8锃òb©#.ìxòoòæ³ÝßwbP£?t:¦$£þŸÂ#.Þ®R?lÚæèSØêÕ'oœwÊðjçp¿šxgٜ´òð™\›ÉˆúÞsâ¡Ø5;fÐØ~ÓÁq=<#-.³ÆY#$ÜôœüِbÎͨìõ±58–]g„U¢ÄÍ8z|ºFy{ÁGI'Œ³aßÞø‡r„£îÍÞ,ô#wS!>;´zÖ3i™ðÈî+þ/F>·I”1Žda\°¹âtz;´õ¦÷“ÛëŸ.¿£˜‡“G#ÏØ¢ºT#.=œéõOi¿í‡ó$#yÎiÝðWi&yZ_3ãé'-ë	ûy”–¢çf=êr¹ŽÕÒ'݇äÕA…ï4üÖÊ!3¬¿e:Ä^‚ ¥Äº”:>¾ÈIJ~¨ÿrxGËw§Ã› Hæâ¥ÇùôùyçoXÔnk`À¦â‡PB_(ºº	ã¾j­µ.­ß¹zûaáätîîé:{h·ÓSUJ	DÉht¶¸¸†<Š‡ç“åT½³ìÎÜÙ¬WGvK¿Ï.ÛVßfqs¹çá¯z5ñsåNmÎûíTÑ¡cù_¾_FqÞ[';=KÁYœE|(”R*ò9ò©jAþûÀ¹#-:8I[KÓm^vmÙυ¥ùò¼–ãªl{=u„25ÓÚ´ûýžÕ»³ˆûñ0ú~©Óe:%c'Â~ü»jÌçtU¹§tÊ»2„žØˆÕ2!4ºª±×Óáü™\¹dg„í÷Š50#-ûmþH¤Å#⻪÷fÂ;¸C	œ÷1ÝôµQúúÖÂ^±¤¿Ž÷=3#.ÅÎ{)„çßVæˆæ—ûôü,v!ŒGÜϬñf»Î¼zT*ë€þ}¡ƒëô„¦!‰~òGmjÉÇÉñѶ>¯Ä£cwӎýȒxåÍÅÕê7ámäý(8ݙ”½ìáþ>þprTØø¸E•jÚ<2ŒuŽÓ /#ç!Ò:‡BGv#¾æ#-YVw|mžÛÅâaòÔ1¸âýÞÒCJ`ê3¡ÐéÛ¤lIðà÷,Zèùƒ¨‹—ôE¢ñÕæ7Ô	#%²"ºº>×v¬®—m®ºÜՆÛmv£«bŸzMÉ;Øj×gYÏÙ9k¼Ëí¨ÛbÄNXµÞq)àžú͕ļJ£(ºY¢P£sz Õ@QŸUÛ|ۊ)/²´°‹“w†‡4-àňb—`S9…)Ž)ÓJ«¸Àä¡:²a#-PÝsaO姕Ô-ПrXÂvII1U.5Ք…!Õ6zÞ>uÄKìq•¶"Wd[;à)àCÇ	|SÁQl^ŠW=h-oxÐ*ȵŒ†¥Ë¨­×—[mÍ[•ç‚í«îµ±#%-˜[$)MJÉj@Îa#%iÙM\éA¸z£Täî"\ÞiY\臅q‡ƒÂŽ`Byñ‘ÏÑTOgŽ~ÿªgµ=ö?G]¢¥xê*ÛôZ;;Fáßsëš;ìÆ88§}/ydíÉ6f`ùèËOàz¼µÕ©ãþJ;v§™`ºy‡LÂP)wË¢ÐöC¶ç¨·÷a¿\ûþáM˜ç­ &î‰32ÄΐîÝpþÂÎÝÁ7øÒ³Pv¨hXüÂb#%"p×®b#-ññ<bŸ}ZɟÓÊcBþõŸkò°à»þ§:0;#Í ótbùòò#DD™ƒÒ¶â/±eFØâz‚UÐ^©%„|„j".åZR™pliåT)`€°|ãï¼"ÿcmz@É-µ1Dþ—øôiwg|)òãôÁRØvŽÿô QoVÌoÆÆgk Ž¿³k—`Ù¤;‡,EäG,iø\YU4‡?O¨ýtÚ4{È7`µzòŒœ1SŠtGùǒºÜ´ífÒÄ?RÊÝ,Ïaþ–6¿AGÆŸª?›¶M|‚„~èž%:¶ñòŒ‹¾¿ÍՕz£q@ä▍šmί–h²UΎœ©uû”RçHŠX&l}uüì#ñé!0I΃MlQÑ}uKÞ{+£“÷xþ¾£I$eLY#-¿ßwà5?ƒ/‡WËõ–sîïº,PáXü¹§ú˅?6†¬¨+X)ʪj J­è|.SÏwÝeËSöÒ9RHóLüøå?Ÿæ™¯#%ßÚg‘ÃqPƒæBG	¶ß™‡a’@-»«ØõívѲt\\µ¼¢¿Ÿ £,÷Zt},•úr—TmÅEdïS¬!e‘ĽÑÎ~Šö‘Ú¾ï¿e™Î}q÷GFGUÂá Úì.ÞEÁG{‹‰¨ž£»Ÿé˜Ë.îªq'BIºQI7b¼è¾¢còü«÷þ=¿Nümš÷myz…±Š#."’©@IŽ.A$À$Á¹áu£tìl;+÷Ê[Ê0 ¤›³:@’-j徂¢u”âþâ0F:VâF1ºÒl2–ZF9K/:àÀj(-Ù®áñxж~ÇÞMý¬”i#- ìF0HD1âëŠúё#-îó†³ñÚviËþ8xG”#K¸ž sõÂVµ—#ô‹³Qf²›!³Æ6Ύ-]^Õ´r©ÏbÆëÑØÝ>6á+Ol6E(#-3„gc¼-b"sxø]A0ñGJªùÖÖ[0¹Ў…%ÍÔÀgY¾Ë0—HÁ§_“9#¢|lð–Ø}‘zAC¹ùC Ù ]¾¥»S{ùÞuÄÇ@#-zç¡*NÜú)ÜÕ5YuÏC‰)”‹B*FSM^ßYf’åW¡ ٌ#-("D©'ê*ÝÏTª=ݐåoi´èÜ Iy|9õóqØtÑ=fæüo~•­y½–æ7vºãÓ=þýysÁ¿ŸaBO[>ê ÏË	*ñá=“üQíG: !ßJiMÅ¢—²íj{É?EZáÛÑíœÉYiËGCÌ![êã¥n鿔C‡gL?Gâååå0¾&h—õõùþ³väß#±xÁáÕOðýñxHBt$"Z1”§®È”Ø^~MúÄ ƒ7ìX¬~įåk™&…ÞX$ÈöB)™DÝ#ÍyÙHÈø(rïM1©ˆä1a‰]ÞT7¦[J‘ê«9]ö«°’‰‘,эÿz<÷#-»Ï荒'ÝڜîR_¿b…¤lÚø'8ˆ-]¢]3„ ïÖ#.—Ù·Ÿ²”Ù¤cìζñž<´Ê!¥“¼ó#.ü5i‘#-´™Tg´¯Ø˜B>¹Øúüc·«œyܾúìšë0<W5c½Lûþ»5ë֔›¾Ü.‚<¤|œ¶™DÜå[žæ»!øۊb¶:ë‰ãúÐÍÒÖýsñK¥˜Ì§£÷9¢ì‰úºa	Lº†/Õ,º¯ª¹¼#.óõÕL›9Y¨°K÷ÆÑT6q¥YífˆÜL|1|L,ܸFÌ)„¦,¾òy\Ì^b''šèÐ>]:{ 1—Deû³÷õ`£Æ7\9Në³Ü³ŸÎÕRb0ù8–øù£kWo´KÓ¹³ÎÊZiݐUyB<vs‡½’óyŸ5ØÑë½ÁǯxŒñ<ê¹ãÄ7-æQ›×z|/ü.¢%÷¢”:+ PhEÞÝ#.ll­¯¨³$§ã¡ª@`훨­ÊEÖ¦És'K®‚¿L7ÄÄט´²¶!–£Ý#ç¤?’ˆÂº½•:wÎèr#-39±K"UÀýšŸÕ“€òõv–ln‰œ@ÿRÐR˜lRÛÍ_—âö–wa÷Ա᷁‹,¬[Z%Qù2¤ÃvÒ¤:[ÏAÈ©õÏÃt]¹;œÊ´A%GUQãÎóµÒ$	´ãáϖï4œI›®îkçf¥&òM¶Ã†PËgD(ôûè܍":ý{N„“,¹”s½VÓ`Üs¤›b„“ŽÉ vÔ|Ø>#.ííݜ‘†$’:õ)†Ñ‘ò„Øyé<™ºbzážÑ#-¯áOû¬4&þ	N"Ä9BòéÄ52g{M{@x¤É3Zùp=Þ»1«ô}eb[^ÜX',v=h3¥é#.mök岒ú~_§+éU²¬²È`{>Q¸(¢ÜfQ"_ÉIXX•œi&ul¼Už>»íÑXÖAÈŽçuå’†òɟÙsŒ«ÎDZ¨–u#-a²@[®9¦ÊÆö)ÓKÀv>u#-{`ïьH’j”¥QȂrÇbÎé&Íݦ‹òj€¨ð¶€óiª³•ۛƒlC;m¿ëœc ®ÂWéç5Æ!Âêè.ôöcÓޕɫD"TÔ¶’;—>œ¥ƒWc]rÌsl³Ñ¾LÝýµÀEÁMeJJǘwÔ×Ί/ßǧcÛP>Ҟ“d;¨œØr˜1#-/œìÚ®øƳìì™3-Îé•é„÷J#-ϾM±4­Îu )#-Ö¶ðÃfVN;a®²úå#-)T3œýo:bá×)vJ=V´¦ÔO\ê’ь¬ç¶©oå]Íi‰žžåÃ"šô#.¸Xq|„2k_§¼Ïï‹ð8£*âi·Ieõ.3–¡.«ô5;u0lɅ£)Ý{Q|ç)ضÚS¦r‚Ò`|ˬë5\nDmçÜxïÙåÝý]Ü9l¿iö¸ïÆí‰lãJŠˆÃ'óC,4ö®hk¹¼ÚÝð:6@##-ûž´–Ù¡óL˜ÚäªM†Ó	ô‹ii#%Š+¯FÍáÍ|±yfBÿ(°<0¯R+/ÔƖçŒØœ5ÅL´¿¯RÖH¾\ $YBÃ>Ýçã¦~¾Ï®Àüæw–SzL†/L^\èë«UM5fIÛȉWÖ4º­'4Åé}þ…˕êœõÌ%ï8ò:òy7ãñw+Ñ“b0$ó¨Q°-.Ÿ‰t£ÔêAÐÝ]®‡öÐë¿?§ê_Œgy;;ïbŠà«ô§Šƒ^oíc;̒[™Ã%TÇD á6%Ž–ÏbìŸ.¼æöäeZéÉ.ùi‰¾¸óė_¾:'²:©ÛKÐ%ØB7ŽÝÖChñ)‰ýQ“ÆÇd±¿‘8/‰we5né<­yô2ÓxÐMZ3!I§̓Íõ9À³D¬Ê›l‹]ik9û²í¬oÇgú!±Äá¹s°-`øUnó¬@ûl&>…£‰7àçã5¯‘m¹¦¾O.°ÐuÃm}sJ†f'WWMÎJ8 þ:o-Ãh_Š­ý·}÷ñŒÙúb]r즨´ßDÇx#£†Q|º·—{§áÇsv`Èd=Ú7µÍ֔ªLkDü3D”µì(ÊXÃŒ†} ‘Eq„S÷…4HÈ·;ÃBôuqû7j	#»µ_ÐzZOXñ‚7+Ž½¸³ZÉy3q¹“$ûKLQe[ñ4.m8ãVEØMÈd÷ ±2!¢­Œm…Ó-í²ußJ0xg%k¹ß=nL¤¡ÃK"’€¦ù›¯Ó4ôˆ“#%²U#.çXB§Æ™QŽ’zۍufÅÚpâxk¾uèÔe^y(_#.7Éh×±Ùˁì׊zé ÞÞƅƨ"Éíi™Ój\)¡µU.LYÊWä«E%ßmAllm‡;”îÝ8óá:óƒK#*6k¤æÓæ&Öæîíùåm÷’X¤œ¨W=œi"^äPX±ÅÙ®ŠÊ«:­qs¸ö0'ü³±ˆT@øhÏO?^YŅ*¡ˆó[ÎÅó{o×quTTÆ{÷Otü¾Š ³m‰µŒ Ê:'®CÎÔ¼­M4Í¢ˆ”fh-ÿÓñÏWãðøÿßù|Èçc”>È¿ä#WÒ U»0¤ÿèóѦù°±Ií±#.×uÃÎÍÝÑTGåTýÀ•Š¨ª£ºTiäqÉÈÛã¢k{w‹}ýCJ}¾\ÕÜâºÂèÚµA%ú¾6\Þ1ŒE·_PSŸÑQÛÌæòœßV‹J4ãY<ýŸÁú|níáú¿E^e.:¿“U±©=TžåÙ#-6¼"Ö7ì1?b¾û֌	Ù«º›è=•Ë»ô~‚oj±oӏë7D~Mþëˆ3ƕF4»€À°˜0”žbšnoÞ%ÕòÒËû°öŸ£·ôÍÁ?ćõ‡ò‹alæ<ÊÆp$¬ÿãÈ 0?ÈªªýÏíeIJˆ†ªú&Ò#%S	¨pí±(²7#-Cˆ)`¿¹þ¢ÐeÇA§û_à<Úê÷wq.|¨»~íKú·Òj°ÈÿžÖ(? dä=â`sríëÝÓÞo5LÐÚv7*xñ:ÆaߺãcJçZ˜4ÚwlybP¹ª¯/LcT%ùÔ£m+l³Zâ(ó?×Ìl(ƒ¥±îSiØ£ÞaÒ|=އ'è_Yõº*†°õŠm†‘Oô@Bʝááîv© Yi\½ÏßônÃ1\ô­cõ>rTY÷ ÙC«§ñítL§>Åèÿ@‚}¢~„Ôðþî멽<zsi|,x³®ÅVV·Ð­žÒ#%™&š`‚«°3|˜4Ì¥?BéFˆr Õ²oˆuSsXü{|̦:¸hF·RR@è7™0é¨E(ë?oùKßòLæúT?>ƒÌi{¼z¼¼‰rÝ_²÷íP÷væ.Ÿ|äx ¹B*Qb(TûÌÁÜ?A´ÖdŒ vgCtTOïÕX‘¤é~bâ@—÷…†¹~o¯Æºÿatwôq›¥mh!‰@X‹¤R—£¾“dG>@Gð,5#+4©¿¹^)ñÔ3Ì)X¢êI•ä†ȞE®®¼l>U%Ä	?$BBý^zj«.TÞÒ`KIâŽH Ԑlh€M¬/Âý#- ­—ÜIÕ±6w	jø¼îuÅÌ؍¢/›UòbÚjW,¼è!Á1ä;ÞÂເҔÉÔz›f¤bôE̓šó6fHéR¶—v…ŒæL#-ª¸3‚؍Îè~†~Ø$’€}ž>«†´³ê-oäõø[Íà²9Q–w‘PÀxM‰¿>t#.Š:šR!•‚íÍ!‡ý„+®÷°|º¿@ùK•…I/ÉyBh_úÿÝçxÿ§PÞ‘³LÚ^ð…&°ŽA8…é–~×ëëÈÞEÁæù© ˜Œ(Èó&¼)ì`©Ÿ,ÿÁ¯Û¦Ö¹–Q±ý;äÑëEˋËáæàʼn€I!¾O?-Ìi8»ÌșAßÑÜjwï x"!»Ð7‹~UpŠô®ãè9Ðy֌Ywd'–âGy5E¦~ÃQ󿭐1ƒ0b süÛe½êk½ó=lߐÚȃwh#.!4Ž~¯iüUAITHÉ vŽ°Ê¼«j…EÚÑ#÷¯˜áÍÌÚs@ 3üw*©#-áø<„Ëò#.yD!UÐAªXÏÖmnóëw:Â:‘é0ÿšX5s§—nãyðý˜’J1T…Tõ5“À§¹sJ~vô’tI³ÖYÒTaœÝ»¤’BÎb"òįÙéìÍl7<UCoåëÞǞ׍ùa¯§ˆÏ8nzƒµÞ파L“-uËzXu³äs‚Ãn[šlaÙ嬃@L‰‡257›º}0èo#¼ŒT½GÌ|ŠL7ñ?܄µá#%Gò~þ­éy}Õ%CÛ#Ù?Tm(%"sí4§ûçæ1H֛Àr¦¾B˜F÷Û|ÞüiÖ7vkbñ²5wwLBDáøL쏛EU3È	4@Pº’,L‰#%ëþÜ|ߛî/aáar׿R=(êl^„Õ%¢&Ì?;‡Çzïg„Úk#%Æóϱk.yõ€Œ#«Ë2ÝfÍ¡§Kô–LÂJ#-ð¥X^µûôqÛ¸?Œ‹¼ÚWÇÌÒd¹‘Ñ4.:°ù#.QŸÛöÿ¯¡#-¿`}œ|„J¤„¦A::ÔÜoOӒ§pÀÈä‡YÜo†ÄYàtނçŽAØPÂ#.jòàd"è‚Sâ\7,†Ú:J('„¨Ã•5oåRü̲SvHEfAiDÑfv(7È÷kSSxIGc#Üs{»Ê÷†NdÙ>aëó’,bHÔ$4Ïúþ[jªˆB£°ÛÔMŽbCóø=nŽ¢žÐ=¦ÎL‡Š½áp"àåh[M&vD €Ô÷7Èk/4lcóÄ×Ø=þùb;_­¿FE;¿R$T†[ê{Ú¢àhUnǒè-ã}95’i6+uÍNúœïƣֆf“ÆõŽ-dm6g{i¨Ž,Þ¥tenÇÅ*[=2i¾!$×U¾&U3²`ÏÕnæ†Ó.†í›34Md9Z,)J`B» -HR|J6ª.G»J³0ɊËI°„Ö¬Åýf.pÛPqëñþ`^Æ,¨‰ ù ¿_Þf‘àg•”N“±§ö²–ËZÁ~¾8~žˆMÙ]?ž¾ÇêÇÐÌÌѨ–Ò’‰Â~ÉÄ7‡xàÍ~†AUU[¢•ö‡ç0…ï%4vw{SëOo؇xñH„´>ҏЖÉbÁ£´’*[ÃaGvV¯®ß}Wí}T¸äÇõ«g€Sk“icß=çZ¶]ð«äˆ/ù®2mŒà§šá*ƒ}÷Š»ÁCƒ»Ž#%Þ¯*ï'ÒyçI:»‡hPbš©@Ä7Œch‚Ž¯¼µ‘¥e¥U”1eX(˜¬K[knª9ÄÌ!3’4†Ù=¦RÙɹP1C1È? 8Î9q¡¸ŒL Æ68Fü?Jû™P3aߦþ-s†èZI‰ Ä*€~WáÎÇ?„ã8™}kxÈó²k½Ô’*ñÔì1Ç^·#%axAä=NF"úÃßrٌd•#—œ|¶ê?àÔߔô §ÜD¯ søç̹󌞌¤Që“bÈnÜ'”èu*^Á³Ìá#%»VÀ­à€i‰@¼,l”™7ÀߟBW0âP;´ç|¹ª'#%üþ è:$SÀŠµ#•/JDO2ÀþX†#øCŠ—llÂCÒ`a“ådtÜ'Ïto´hƒ©þ†#%~¢|ûxXÏæúl#.HÀ‚2ñfÃЃoŠûHŸ æhç¼æ‡1ü·œÃ a#-¿N}¿žñO„ Œú«,ìAØÚÇ­ìT>šDZ"(—6ˆz#.“ëâX2~ä=}¥ú|¤ù“nÞYÐûF‡ˆ@çójè ¤RŒáÒèxì{ÇÙÉ<òÑƜÃF¯©½ù…[»P!™¬ýð!ó0uY¹y{€Úr1íPì"#-&ÞÃÀA&&kFÑûÄÌ #%9až§Ç€^q1k™Á¤3@æ9ÊlÈz˜#.`ëraÒŐÔä"¸/\³lFá]·•ùQVˆ²	~½ù+|þ7›­Oì:ÖàðPi‘J&ß+Hx'KæüZÞ<ÀÌ-C8öN˜Â#®o({þG4GlТ:uŸ$ö”#%íâ>@…l„Èú=è>©3×Ýk«xžÀïÇÆïvο¦òñ<¾ÒVjhfw6‡Ôj¥f/©MÈ·bùÙ$’{¸#.yÀÐôˆrþ+jk”ä©£dh cŸïú½à€KË{31ÄD›˜´6ÊÂΣð/?ܟۆÀ2¾Ym3”åÙo‹g‰£ð¢³#%ØË3t<ù¡â€ßõú÷£©ƒ#.ç_aò¥¬†OÈ53àúìû_Á°ïF: ‰ôØZ"èBt…•öƒ¯8êã8…'Ìl <ãg°Ü|·ó÷Å¿˜8Î2MˆÁënƒæÅÁFw¢HT'jìÔrG2Rº@‘1¿#.&$hi•{µTN;:šÔ)1ÅC~oÍú-í•/m{oÈJfÊÁ©rï|fë]bÞ;±Š°fô(ÐoǨϤ7>”ןAèƒ?1áÑ3Àaˆ‡Ã˜P’!!^®/A؆#%ˆ’!õr9˜‰óˆÕmRíUeYEÖÜg±'Á‡Â}»ëÈô€øàfË'¼=Jànþ TñUí6‡fÆ‚r<hñ#ET¢Ç·äò`‡³#ógíêjhñ¹#%«¦·º±½I=’[Ùðƒý1#ÿ>ښdSý#.´9p˜iÝ8Ù©LÑ‘ãxz8	ôfÓæsª7bC‹ô&˜O‡›N­«‘µ-kš÷îl‹1“H;yé5·séAyÒÕ{ûªªÙ¬qsúÛìw¯SÆ;}²€O`9}±‰#-ÛM¿‘¸Ú)Ðö’F@$„$JYQZ"|Dà}@\úð‹“6Ý:κS¤úBy´nr4!c• H“xÄÕw;ý±oe”{I¿ÀÞ49õhäì.ÜîQù“øPARˆìI!"¶ÐÇ­ „qq‡"B‚#%\JHZ5]oÀbcáö6ýðè‡Ü{|¬™_z±¢ˆ'¹°pR`±»È»T4„Qb1IŒâêgî6½Qœ*èv¼CS¼?tad™ˆ©ù'®Áv*º‘d3bÙbjXPÕèA| ˆÈEH*8Š3#-‚	™ä‡åÉ „`Õ©kôØ#-¡O培B6s<<qGõù¯‘šf q„XE"7ªÒ”Av°²WÜ¥ÍSЄJvð5S2>†¥’‚“¤ŒìV‚É#%æþ¢¿ãûúS÷#Ÿ0û…Þjˆ)F(ªAÏØ|¬¤ž×[„Ò¡PAb""Ë&RLeñï*øúí§v®jó·ªäٕ#lÛ]מ;l(:I†I’b'èÁ´?§§ÕLx6ο;ƒ˜0&h]ǧ@÷>³‡¹B€ â»î—pý€Ú€A Céñ&ðà	 hf:Ï»E2w]Î#-(ì7- ™U2ˆÈ0ˆ-£À%›2È)tjhÈ%ô£çRÂ槈>kÐH•ßÌ6ð Iå—œ»3è‚7BëE¥Ì9™@Ü6‘lÙ»:÷¿š}”P•q€ÎÐÈ:z¥²!´à:J`[]…lB·,:9Ødy´õÝ~–vÙÌã#%ÜhF’´ƒ ÃÊÚû½øDë!ÝÝc:@¨œnBÞâÔÑÿ‰…áì„¥eK	WR•Šª"#.ÁQþà=üÄÀ—'µèM”Ž7Tš´õrê\¾Íí/?WÆ4¡ØyœãLh!¤ˆŽî'IG-l¢öç¸ÍIôû ÐptéÆ`ˆ¼}©k#-ˆÐj­3@¢ã$…#.'ظŸPü‚,6‘꣧$Ԕ™žYCŒú¿•9Æ@„9#%íÚ¤/b©„1çØð:@ÕOOgÌÍòäj"”ˆIÄðãFõzNÓÀnW[’Bq#.ü!ÞBÁGÐüó3¹__í„ÝMƔñl+Œ>ÜB+@߯‘‘QFtn-E’‚Ϗe®=ÙMê?,O´ûíû›gâæ?*ÝéÇãŠeèÈ~/·ëËY”ˆÓû¾‡ÝØGÂ5®}öâÌ·ï1„!™!Eç7&€†”.hGTÉþn½Ðaé(¯®/&xõൈQE¹HDX114š>ÆBd­IY¹œºU÷¿p".æS—\YÙñ#.<ññ;M3G3š­”°Y:ÀÄqA÷ƒÀànxj“¤S4òUЬÛ>šz7÷àW¸Þ§p}®#%‘F¾¯ªÁu ¢`A3èGˬâaN„õmÐzUèÜ÷Äá	³¢B©·ÏeKˆI¨{<${ìRõ\ß`ÝtㆈW bsâõ‡"¸°’D¹†$lØ=¯ÿƒ^‰7{¾ÿ,tO£¢ªÒƗ¹îáÉ9r	ŒEôúûÏäñÁƒM;µ³øèÇ8šfÖȲî§ñpu¡õ4/DŽ'xíT›âõús± ´:;"@FZSýߖ*¨@Äí£Ee\âÓ¹†?,Lºzƒfg2v_à4ÎV‘´úaݵ…J]ß®ÁαsºPò•æÒ3M‹Ó‡LëdÒC'içð97_h´§ˆwzìt›‡¬öˆ»IÉ~/'.@FƒhI6Ê£pi·%6¢	Q€Äû‡#-ÇՋXÃ%Bq9Odù%úñÔ üêo])UÏn0 ›Ô­–4Çxs7š~]—·LÑ×`Eæ¦j„œ€;#%Ìî^gãJÃ9!za€K@±¡#.;Žx¢ºÁ/!{`¡\Žaóa0â‚AªÁj‹`«[n»Ëòm•š–!µŽ;f1ÐÅdëMñD=Ž¨QÛ֞m/ßÅ8jw'é”>d ²|Hђ‚~¦™?k)‚"hAƒ%Æ-¤º€JÔ0Áo¤[z9pÝ#÷ŠBä›y–ßg÷™‹YŽÎ#.[O\ôèšû``øÑq#%z¿}ôJ5iÔKÑ«znd“t'ôƒ·ÙØçíâ¬7·[C­^Q÷aùÙ÷ŸN\>ýé*^÷«Æ+ÚÔºþ¶u…Ç*ègègeìÀÝPh˜€f¶áWm_?›_6úòv7§ñ‚@;ë\ä£.ÅY4WuhWÖŒéڟvHœý áà#-çR%¦¤x¸BÀ@ézÅ“å}Â!k#´è&ê]Š~¨¬ƒ’€o#$"@)Þ ]PÀÚ<W›Ìçؙö”:aÀ™h¨ø½'FXh*lŸ?á«aôñ'êrr¾#-ðüùX!½Ák@ä(™,Ï¡äO¸N§qoËEl{‡ÃÒ#%ÞÅÂ	N#-ŒтŁ´#-#%õ¼œ ñ!æ3ÂàR?Ÿå÷žßµÞ0Ø´‹‹V#&AŠ" ¬*ä„ü™f>g{lӐ_[É¡CxÒó¾vñ0Ük¶”™4ÇbÌ`vÖq¬—)D<^e	}þ¿£Ãœ~¶!öڊ’5$š§ž5ìÏe® dó¡I,Ûfì“$Xª#.ƒ&‡t§¾¢‘ecvXª0?‰#%ÁüÝÜòûý¿ 뇦y­bËê½)êÓßú›'Ì4_h,ĺ(BBX ;=èvBöKÈäÑØ#%Yâ„ÊÆný½Ñflò@[âÐo·Îõƒ¦±I!]>‹ð‡la=¡#%²¤…gú­Ò{¿¼ë¹Ô^e]ˆÇåBN©Dgl]°V1‰czutrMü{³µ_Ë|}º·÷/"ÖH‚¥#sòíJôÅ57Çé(-07¢#{ýífÏÀp{%mÖÚCaT‘¸8ª/bDí¤À±_Œ‘Kš3¨ý÷ãê³Ñ›»»¾À,ÇOÍ'!¢ÝÄÆìõ½°a­¨d#%꛱œ±U×VkµMÈÜ{#-ÞSÿ61KìpèI¯ÛûZd»f€?rfô…2Ù­óÏLù„Ú#%˜:yjêû(‘£ü°‘‡Öö¢ÀÜOµã×^HŽJ?’³&鞁€) tPìßß=Çíµ½¬Ûý½øA¨©aðŽ~ÞÏpT`>~t¨mdPŒQ¨Â1›ÈÂ,Q/êxæÑ¥ÂâR%ãõ©‰±°E–ÒÈw”YoŠ|è³öÛgøúÀ¦ÆÕxD±÷‘:±¡#˜:y÷þ+~,û®Ù—Cá]ÙÚɧP™ž‡b%•/€G´öÕsæ“hD Ë*œmÂ#½+'cø¯rXý:ú^žgÙöcÕ˜{àÞÔ—›¹EŸ‘ý‡ˆSƏ\ßÁ…GÓHà¾×¯¦yԛvþKk¥ÖZæ¦o.qÓ2Ù<¦yÕ¼´"¯/.ó5韐ÀÊE!‚Š›Áˆ¥iFƒ!l#%ð51‰IÐV˜¨„¨ÁhÒÀ ŠÆ2…¥ƀÀÂI”˜. ‹b!(`V#.0,ƒTÓþ#-©üaŸlfM§úÆg…±–c1(Õ&ÁråÒEíèГ\f,YpPŸÞ²Õ`¶rõÑ&0$‚Ë݋*7¶À»ƒz6`mwv0¨G€o}ÑRP»…4s.M̨ý¶ ä⇻ԯO“dEq¯Û—×a—Î8~vßÞF:³v>1ˆ<¡3˜E–ò»éoÄÁ¿ð¿÷.:oHœb©ÄªnI*ƒF2ªt&SwûëJ=¦tÈù9®•—TJßí2ˆ^¡¹RTûÿ)Bœá •´S-Ҟ\ùXKÍ*ái›ïHIé‘@8™÷qj³œÌǺúg#%„ŒY„ƒçƒ½†*¬°)»P×"´k”Ø\427™ÌxñQøyÊʬï´öGq6"Åæ_YDf@vþ8‡¡2iì ÒöwÍßx®z\fiܐ¡#-R[#%Y#%¦w}Ýӊ„8”D I×ùî^âÂZ«ËæÂý¾j!‹#Ê#”Ç|j&ó=c„@áµ-¼ñ“6Z¶R­n «®úÂ1Áœ¤Éô¢`º䑗uR®Ïò;0oi8cQÔ=š­ÆsVðßpbD _*âI—Žå‘Òòû9út=xxlõqsÄrÖÖa=‹íLfîйú8g3O¿c”Í2nƒ©qC(çà)A€´K)#%MÉNK	/•\ ¼E0r‡ùëíËÞ#-™Bc‚Í×°ïæ†ÓÁmkºÄÍSÍ™'“íP_Ú2iñÅù+V2‡®–ïÄ;ã+t|7vҏ*v\zæ1~''à1ø_XaÁÊËwBô_àpØ»»dȝvJC“$@=‚}VËãæ³Ê©h­kL²SOá:£þßç)ÒÐÕêƒ3EÍÑ'f÷bï«Õ#->MŠoÎ9.2cBHëËãÍrÝÔN¥c%¤N[§Î•ç„ ’DÍ$¦DSañƱ®æ®ßK_#.vðêf-AÁ0íd9âî;Áûa¢ƒð¼Úªî#-B'Ý¡¦Äg6¢…{Fš'G,\ï Ýμàg63‘227ê£Uû „æß2‚÷æn8|%þŠõÚo•ÒÛŒ£,Ÿ¨Xq4¢š®f5¼=#-vüגƒ~¸Ôuî¾ãæŠ<¥UÏܒþfÚf¾—@4–}Vmá£è«é½KAFD#.2)¾?•4ªó^_µtßÈ+ù&#.€×E‚eƒœòŽÙdš pêc¶©|ÁW#¶ú§Ôýûmë—íýÞ¾zêY+#-C“Ö[…ß«žåûN}'ŸÂ3þqãßå´lmgõܵ.|õ#-ꂓ{-Ðxóò†GGëÆ´7ˆÖü㦯˿ێf.2<-sÓM›òÞaZvZƋQ‰j¡\›Å&4˜2‰CãÚòyìyj§F¿¶•,Û¯1ڄlîºEÚQ¯k—ÙË{Âc¶¥žº#.äs¾¸™Õÿ…Iûq²¿–gÒ°›®·:Èt¹Šæ[ÑÑi?W÷G—iÚ\_ñ>-؛ñ¶ºd„¼	ÛÝTBÙ3©æ ÝÍ*‘¹‡FñéÔÆÏ;ä3¬jx[ù앓¸ÐèÒ]2ò¬Énèî°PĂ1ŒJŠ™£A©ISRTdåÒæ“Ñ8òÔäè½õºÔ©×·RÂb!J¸µ_ÅTàÐý.3ÃMqhéÖ8bªÇXòYÓgú¸T5˜Ÿõ~ÓÏóbþŸ…_=»Ú3 CGŽ—‰;£Çk„'¬6CQCWµY#²4Ë#•0ü+説²Ù=Ô×qæ¦#.´Q®s{xvØüIÏfÙº#îݦލÿ,VæñµOžQ-8r/eþN:Ãë&³õŸ›­ðØÌ`S¢›ÇÝÒi¿ÚwàöÁÏ#-²,ã¤Bïq#šš+¼#-§•#n#.5Ö)37?£´y}Qãøh:U7Åtì‡Òä¤äÊX‡édÆÔw¡‘Û\Òúõö÷×Lîi©æ›§#-=L#-7H‘Qçò¢û…/Û¸ïûV¸~Vû¾öèíÞ´}¾Dm'ïÙn¾ŒuTDWrázK½[?\ÒQ^Ð\ó8?DbnÀÉg;Èèü`é)KÙ fµnÀ}c‹G©Lôª£ÒïT‡f;n€&¤!W+Ÿ®PXñ¦¤W{ÕFTÛl@w~2B)¼¾x³¼Ù í çß0:WyäùH,Éj!Ћ!VÂ8D÷:“°é¥'d±Cy”Xe8q=¶D8AË0‚pæPœ*haŒKôX+Œ-©p¤MO¾†¢(èM )¾'àªqӀZÜ"#uÀÚmÁ±žY0ÆÒr˜Ú[ö‘Ò÷/fsÁbŃøøúíÖ¯ÇòÏ/D0»#%·1RքÌÁÆ„ð嬯«7åóãOàÑ{&CGn¯¯ƒxþ™ڎVµºÍ6îë†UŨÆ\ŽÛ>=¬LqÝ0¹X‰M±:£ Î4O©çxììÈ‚TRëüw½ÿúçBXå:–Qq=_‹?;ôô79ð…4ÞՂ*‡f~ëÖÄ(_áiþ)(Åh“L‰“™þQ4„V ^w?Ãöy~ƺ:CD?Oï¡_¬ÄÄkñ{­Ôå‘&‚ƒÆÍOàÛû;°oí|ŸÓþå|ÃtYÅ3ó§òÁËv#.óÕU[G÷Çø¿x@±´wP¾¶±‹SuâØL)3?@Z6E	$VmÚ?¤£,9dq8„”!F@ýî'밈ØÚՍXL㵓ð5 OIQ„℈j”ȹ¯#-Z±žÉ$ÜIܧRvÔP$A—‰Æ½³gčsïwM†˜m†7oÜZ◿"«½£üÇ7 ·‚>Y¼aµìuõâƒÑ!G®"‘DŠ#.Üä4#-‹1ûÎGy¿úFÀhaUUUyÕ7$q’ªx‡âl9‹ÔsÊä)¾ß.–ãBn#.NGñ?e?§í?‘.m)@¸ÉHÝL=çtâœ<â‹ûŒOŽNt-Œðlt Â6$+#-/k»ê·ñ +µ„üuu’y³I¿ÄO]Jå(¨ËX˜ºp›ºvÉûмÝ#I‚1ˆ¨5•†ª00ÐÖ0ÐjÒ¦C“AöIŽÊ)œu°ƒˆ©֘l†˜Å¯´wr_"æÑ|8;È#Ó¼užŸ][C²‚ÌÂJ0 d+aM­#%®ýZ£ûQÚÜx·¥XþJ–ÿWé—>í1IömïzéYgñ뺍­üe9|™Õ¦“IÃë§í²ÓÃ5gÍÞÃòC¯œ¦Ð„ŸY½ ;nÑÙªmI«#.ÌÜd¼–©S7rЌ‘‰•#kÖ¾=¢·0Ð~Ba–ÝËq&Û!‘]_»;ÖÞ¦k)`Ú?±Þ×7•Y]MÜG]^ÅQp*oófÓï•$øHtbª*µwmÙ÷ò8†ká? #bçNìûY’·*8M¿ÓÀÒßå°åËÕ¢ˆ¯Í#üó·bΒÕ	ÒF93GÏôÉFÇ'3SPÖÀ·’	WÚ·‘³Ñz¤•i%éÅ!EâPÐúû#.bóØDÚuš.偖t’ l!¼Ç#.*¹š‹bÆÂ&‚ØxûcUd„øa6ÉÑàLÈÇ%¸d÷EeÉDˆÒQí}#-Fú„ɐ&]ý}]ÞÏ_ŽìÆ3ãw‡À䚗ƒ°-Æ96·vÛ°\ûÎm"·»nƒƒ×Ë	HAæs;"¥¿"Ùé»Ì#%ôÝG¿®7x“$¹}ŒgFŠ—}%»³ö”u¨‡š\à—šÉ p_—×õ·Rê/ǓØirúµ%À܈Ž#-¸½I´ÍîaÔpԁ.nÏ¿9*¨¯5=·§Çykݔ¢ìdQǍÑÏ<ל³‡&7vÞ9•Ìȳ‹¼OZâê9HœV[5mÜH…M¦oòšp‘êh”Ù^¦N7Ø\³tm|Ömäó#-g-TØdò$Ci,ÿQÐY„T½fW#-‹Ó<‹®#-Œ)	<˹žðÑDþ‰b¾ßvÃ>ªß#؝ŠuH³3Òq@ª¿VQ·}6×pî3’°ƒ$ÐCd‰Úª¨_¼{|9:né·Ó„s›Î&h4µ#-¹+—‹‡'Šêlߊ‰ÖÔúêˆ$˜u¸Î3šÓ©²ÄM€óâC@ց2K/_(ìؘ!ããìý›úᆜ€ó]ÎË}ÁÅÉ!žP¾zÞØޅ÷y±¨pa]æä¹¾Ê96G¸ qC€}»	ìúËöˆêv^±ˆ‚bGÀôB…ž7æë¹s2,XN쪈 {ƒ<I¬MI‡ÔqžSÈ9yn’} ÝÉ¥FÀñÏ¿ƒL ²ýº{::/ÅYЗ(Ó¬aD8¶n|“"鵁§+îŠ2å'L(€]ÁAR¹†£€ßÁÒÛUù±zvÁÒw–›#-ÛÉ°£¹à&ÇuÒ¥èP,;“!|å#-›ˆŠ”!Õ‚!‰“fmP=>ÓÞºšö1…©wkÂp0röq”ñžA&å†2.ìe»V=¦¥Ïw²yƒ—#%RF"ÁB˜Cš¦4ªv’ݶÎsfU6å2Òët‰äb Ɨï_/41ûђH€#.H°‚¬#,=Hëq·´i¨»J…0£˜r‰Ëlœ™Ìè”]8ïôÑ8`u¡CТxq8—+¢p€²’Ut¹+	”1$åôxÒé`°ªÔ,õëß.¡Ì€È›†zýÝõ™Le¹V9™qæfL¹™™–7—1bș” %LÌrÍƋŸ¹BM^*Á&tÑKœ„Ä"°XAbD<*–KÁáWBÒe’^g–;½C™ã"cÌ°FO£ï¨xú{:ðםsç¾EÓ®’ÄHÆ#.ÝŠDÁoä0ã.þíê¹ém"ÝtãmâµlÝ¡Ï4ΰL.³:ÐØ­jeb¾*AaALär¶ÃçañÍg³Q¹¿†` 8êrÑcªP;zƒMrwd©äUC·tªŒAcKT ¢ÐÕ4"1‹°\Ä·ŸÇo©‡;I\ž[H<f)¡ÇFäԌØÌ@°9´>6՚ç¯k­)W³(”]¬iØl¤-Dž;MSG .#-Î‰'#-T!oÞª¬ë9jŠŠ¼‹Ô¯19m!5D{°zwÜÏ·ü×î6±@Ô©;Ý£q:ŠJ #-ÛÂF껵.¦‰çßé—µ“›Ð'ZÛì)Пd¨*#‡$ìËXRf„MÅE;û¾ñì£MèâBM°ûI°KlŽpŸ4¨Äës=M›ažÝš¦ðÖ¤	~ðªyx¼ZW’îÄÀ0Q£ž–8¬–XF©ðääb{æ¬pø#.!î7)	¡Â5xI61ýLoÀJgv`Ú½^ÌHB×E‰e&ß×ø‡`;÷…Kª1hegpà„Åb˜!Ö*gh`Ñ>5àLN®˜7å.XÉ,78óف”C#E„ƒ¤#.E¾#.+q{洝Q,;HöD›†f“Ctن$¡§!p ®þw¬µõÝ2=ã{1¹6ùlª™MiíâƒÃSeùíÆ*ÕqCÁ†û֏#~…î!Œ[a‹7#%Œl¼†Ak‚ žÒ–âRSÔTg&	Ž[hÄ„ kµÅ!ŒdȘ¢VE:¥¡Whëq²Â[Ë%5X8ʊ#-âŒL¸¼ø¦Ç`x+#-¸S72—)°0ŠE™ΞÆÈ÷Õ¶‰{šv¡¬y=Ø­Š’%<ÕCinŒ"	€0™ YäRc pg$[جÉ’yúŒÏiÑ\ÊkÒUz#9Y€o#N¾ãtјÜ΂Ƌ̂W\l#-¡F×q[–*/jt™ì*J&/ÅÈoÛá :_±UJ|³8ã‰åId²6Û<eÚªªª×æ÷¹p,¤{§C>ïJnxDF¨‹Ûr…—=ž¼[iÄê҆0ã‘Ú¶Øï¿Ú¢ßϽ²ÀX™Û܀b½Á€ØöÒº’$‰a¡´Ú²Ä€dɳ3#.ɶ*ɉ	_÷ú²Ý’j¶C5GÁÞÍö1£+•HiŸ˜Ç0™’c„n>Ó?©ÚTÏ)£;e6P¸Lí÷f,\&úǒŸã„µæO§•±ŒëgÿJ?ä ьˆàé#-ž—Åq]~ïFm낿É$e¥V«‹ïÿ­¬K&çvÚm1™ÁÁ‡ŽÞ6ʌ¹EºqNrL¸‘À‰ÈaÑ©Äb)VC¶€éڞJ‚T+wóNDòrpQú€mà@ª„#%`z»­U£–d-‹.€FAý‘þ§ûÙ²ÿÿWýVÅY®U¼óü¦¢#Ø­y¼ê+<ÌÁ¦0!"ý–{;<»Ç¹;©I7}ÞvƒÀõ܀zΔJtéç<á1##²Úb©A‰·ŸØyy#-5”‹ˆ¼’ŽäÊG{g-®K„*³u¯áY1I$‘`'´E[JUQV=qu!o²Ë;û¹àîaÌ”“Ò.3½QãeOÕö‰û¤b]Š)CQ)QNý´€!™Ìx=KßG; t/cáb¯õ‚ëDƒ	°à‡Tê•‘pùÅû9‘8hA´˜&B#%ü4<ä€È™¿4,}Íò€F*YA4zÐaðõÊPÚ1VDݺª¿å¨ `)™pýNZT£Y$2ðé1yç^l¦-˜-˜5*QDd/®.ú$Bá’3ƒýía‚,ëâ`Ž)æMÎðë	֙™«,è¢ùqíÅTä“ôT¡§ËÜT–À`ƒÌ#.úN’…ûµ}Q“ÞuQh`E·Ž°±¨:Ž’Æzk`#-„g€DkcËt(Ý¿`uŸÊªy˜:t"½Ñ€GÃ[ïžûëµ¥*¬V*š’Ê–•>ƒ¸à q@㈠Â(0€¢Â*1ŠƒDˆ‚°(ñ2øÂîÐ_ó¾v#-ÔÄK\û…Dm¥©DZQý@0¬­µÃÅ%±:Ô#-a¬)¤¹E!€ˆ7 j‹™IgÒCü¡þmÞo%Û»oH¼oÌI¢Þºï•¹z‡©s’nk¤yÝ\×oæ^y¯;®›ºãšJÍÝbå>S¯;ëÞÚKFøDÉçßµn·½šÓW˿¾’fHØP*LLX²‡Ìõ‚7.,Q=S\LÿžRظ÷ÈÿZ*ÄcÐ>|O„öZþ^éýyßjäÑE!#-´àQ¡¦VÔò³pîì…H&æ"µÊBµÎ5’P`+¸íÍDÑNYè9õYa‘¤¸ùċÇ`wND‘KWÞUE,wÜ©šØ€ˆ™ÅRAœ.Ôc1R)Š3ù³9PýZðÝJ¡ä	T{u‰áó¯Õ³!/ŽÉoÀÑWVÒœ¤yJœ!²äжH© ËÉK#.J[Ã=ԃ½¹‹#.Jƒ#%QïdÃA1Êè#-	ÂÓ‹1ÃÊ{X†”{ȓDM&}Jßõ\•ØÉH“Þ8A56³T+x3eºÓÖ}^ˆŸ€XmÞlaÉ@öPZ¬ÏöÂ\ð¿a9ð§Ÿèi~+±Ð„@S¿Ýéì‡7·uE¿ö·ô`ß¿¼ºï³nCœÖäyT^6ŽVy­Pz¶(OÎQBŠ…(¤êìã¼8÷,£­D؞zM)|Bê"Â(ˆÐöÉøƒ34dP/E*>u‡^ÁV˜veT¢Î‚yᄝyu–ÐÉH˜\Ÿ¹)֘°÷¿9üZ\»LÍÉs[,q#-þ;òß[ƒ¿O‡·°ýÖlµ ÑE€ð7‡:Ò	QOº {I(H#.ÆÛF)U(“[CeµfB›d³[Ém¡˜$B°E ‚>sŠIÆ|'+|¡Rs‡¨> "Šƒ!D£Ú¡BŽ$áÚ'Ý¥Œbq/®#.^º4-c#-"4çáz<2•:ÞÖ.q(^¡©åÞ u‚,¤vÀPÕ91e:äšg™s“wÃäzlQLқÄ4ŽÇR#-S&#-%@z#-l´€¯˜Xg2;ë0__Õ½²(ðEwn W×w*œ£³ á¥B'š•°i7Y˜‡ Yúaé¡=^)à@¾J#.Bª€Ø‰Ñ¸"s~Þ#%âGÕ¹9(¢HÈHU_{9¬l”–Ú幤®jí)›hÛ_j×4m«Åt­lÉúŸ)WÊH¹ÙÈÁš†ñ90ƒ$@‘3E|T:ìé|ýcknôþÌ[•4ѾZCþS½êêÔ°ž§ªμç™_ŸÆäf>TÈðB‡ÄênÏöß«äô}¿o?øÿk,C›áD>o~iI#%û„DðÃê/É·	)2›X¬-„Ë ¤¤$Œ7š‰¢˜#."¾UC™èÙj¶Ó°çύŒÝCWFJšÅlU¢?ŒžTVï5öUÕSX|Ÿä¥èŒˆŸ„:'Õ¥¦1T& šFÞÊS–ê¿E';½^ÓûÔēòR#¹†p#-ÐR €âå°ø{	Hî7ïÈSÄïN¦ÝļÂÃiBR†ªq½¾Ö·Ag©´S™f@)zÆx	b³a´"±»«›lº»aÍ:ýý‡Oʎâ!»Kº:C’K’tA`ҍuæZ|²§þMha#.ñtzý'³€}Ð9!ý4w/ú^±47Kªs¾-¼dؚ‡ˆâu±EkUÖõ7DµMˆÜümÐB	ýð×Ãä~£Ñ¨yåD¦h?*;Ϝž0Ì#-÷øù’å_EŽ‘…ýˆ/üQÙÕÒEsCœRD6š÷ÞèK°h6™}<YA!¦¨k#.ÈÜüG(6æ-¼8óÉ­íÉ#%Û9xÁH@ªDØ#’”)AŸÑ?~ë§<æ5€XYV!dݱ2ÔSš«ZKbg°ÁWMq•Œ…º+ßÂ$%žÀ_&‘"¬ $¾Ò’¢¡è|ÁT;Ÿz¦`|Ô؃·«ŸEf«òîþç(‰à·„x ßõþzÜ,#]†B+iSc_«ðéÔóǨ¤FE=ATP$¨‚ #.0ƒ H½^Ì8@S0C(°6f<û;Ìvߣ—DÁA–tØ#:—䨐6…bûš‘±aõ³€n6x<#°3¡žÀú¢”VÒ²	œC%b#%ⓠ¥«ÕÉß±þ0t†Õ·¦6å	onǪ=ØZ»'ê%D„J{ìžÏ¤Ú6ÀãúÁZ7!þþþ:pÞšpL¤ø<Î	}ÑÁ±*D#YldAVÌ- e³ËžÞz*ôîTo.÷ø\q2ŽqüŸ¡B`Ùº_ê"zQ©î˜\tLAⵁÑáø–ß´u\x×1Ó;´äô¾ÜE§å»¸¶ÈQ0&í½øÅ·ÛpNÊãsÉR÷ÙyK̽^¡GÔ±gML$VÈÃ®·ÝZZ¦ÉÏ3DÔAțßåMÍõàí]º¶u£V‡Õ³?¹δۑÒéŒêÞóðÞa-Þ´Dq¬«é…1£v;T¶Ž•-•# Ô̬̊!Œ!ª}ñ+i°ÜÓÏtW#.àb<d÷ûñ›ÝÝý!­å¦#`g!«4¬ÙM¦5>Í/Fº©1}xDpYaZØ6£­rB:Ž“¯Š¾UV`†æ¬­¡]iªUYw®Ò/£&ÍÝÒ˕2'’ß½›RLL,Þã5c^#%	J0#.Dfwlp9PÔHH½à¬p>BHì¼l6mƒYáob~¦·¾‹êÛwÚ"Ã#%¡‚ÐÈÜQE(/LÛüøçºà¤½/1fï?#%À;N·¼hWCÑz«œöE`ž&X2ۍףtlí}í!DZ' HÞæW³POi™ËŠ6ð¯O1­ñ!º¤úáÂOL7`ð6™¸ Üj~C±ÜD’ÊáN|:#-í¸¥@èh0jîSŽá’ªšl1Œ2»yÉËlbŒæWÒ¼‘‚MR©J#.Âû¾ÿ®ž¿b°g·mò2"âBýÊ÷Àúñå9VŶÉ’M<ãx31#†ŠFî“ݧXLßV‘ÌM\lÄɈ;‚}Û‡vu÷˜úÅM| y{@Ԍ…TR´ê™´Ð{ªª¤nÿ{#ÁŽ„	8¢öoۜ&îku2¤ÓØ·#.§’åËfŒªÌÂâÊí#-§&@þ/OÇz„D5ñ嗫³y”`Án&´	jëØõä^0Ç¾Æ Í¿ƒ°i7(€ù¨0ÛÃ|»jñ¬Õo*æ4ŠFJM]+²w[©ewV®ÔÖ»¾ÖœÝw]«ÅÍÒ5-x(µ,pnãÚ\À¸JÏ¦N!²»Žó}¯’]@á"°U°7Cw(DDQ1€Ïߧ.¡ê„ê͉ŽèN/(6ªž7é­®þ€\^èoíxqñ­›[‰œmwž^JbÌÉùÒÊeexQLžAªïµYJX¥)Ld¡ï£‚!EQï†ÿÀÁßGπ²dꮑ#-é?ËE‘d$4â<VŒ¦œDÈVYÚ«ˆiešy$Ñõ¥[ºXsZ)à¢saXm¢+ä©OOÂQ¶ºuðñJ}À#.(AÌÈ`#%~œVó³$wùQÍì#.µg*4S§#.Æ6‚ɁyH̼ݹ8¦!#%éSvêëE·6íËu»Wkw[ÈÁ”’1Äè€$P#%bIQ–.|ÍÚJçB”™„×À‡cï <&#%¶Å›‡3 ŒBDjÑD‚„ðÄ>ŒËgœÀh˜ Õr0´ütqØù“]8#-䐘ï©}ß׊«nϚŸ™ºÙèÚrÒËm±m¦¨“Ä„‡c*Ï+—8ßKôdkÀÝyd¡™†ŒKÖ{’ܚLö#.æz	ƒ±^~EßtßG¾¢¢2víD*D	í'#-3kzíÃ4ª¡Hg%'3a©¨c£n¨…â?e}ºš$ÙWɝð¹ôûüûÍ{{	™˜pÒC:Վý#A\(*çÑ#-Ïa»LŠЗ²0vBdK)¤CËT£»5ÄY$cïj“\ Ïd»üqzØqJIñáSd¤¿·3+#%“œÜSF~ÒФYbrE¡+ž¬K±˜dŠ:t}Å»x竓M¾ |¹œ»/àtí”lúa˜£¡,à†â&Ü}ø”-ÜùÿUrØ̇CòÙpLöÉ$‘<Á峜Rû[Öd@á¯6ÚJW#-›K¸l¢õp%M—P¢)pº¸K¡òΕÈ"‘„†N@ûBÊ`º89åæA…@Õì€ÏD$$$àT”#Ê@–@Ȝ^\ïvR¿s>4diÈÅöRa™e¥Šó&–zÕJˆQ¨4Þ¢³h$Ñ(!R£G#B Äxƒ fP+°ÆGd eó1f&x°îÖmFÈqFJ˜ÈP€Q¿ŠšºN„Õ(Ûq°âà½lÛ~öØ©*ÅVñK#.M¡•·Ç\ÊêÚûíԘj¾·Õû¿[³¶öèzډêè¸½q-õÐ9ó$§yzΆQ#žT7¦|¹Ð؃™¢kÊȅEÛÝë>&ì“k19)˜>àÁˆŒ—¡ôEŠúÏYh6•*†0¦/CWjI{v1ÚF…A1f  •Ðù¦´YäŒDJĔ=áÜ}³™,2YŽãKûü<=}ªz…Âør{#-#ÊÁÛȓyàQÔ[ۚ@†¥TmѲ qüzs']¦ô"s-“™E°E*4»=çø’	$ ’!ª 'J•ïóý»÷ÛQàoÓè-zÄ©g×ÍøVQT-#òõ›p'ޙ¹RŸUÁœš ¥ˆˆ¢ÑvÕ(‘bëX%‰Š•ÄÃpã'³aÏÃÇóÇéEª³Æ#%¡<Pغ–†Cõ]X¡š¤V,paù"ãA‚#.˜Ú„Ì#-…"d>#(Ìp€:|,raˆÁ •lw`o	#%Ò-$	6¤t8ò:íæ˜W¤aT°29'ÕÁ4zGˆ±Q™É?79ƒh ÃÙ½Â'HÔ>öšCûÖû¡¦%Á„4€éÌqd1Yehx8MP{Ä)9BO1q 2'^´[#-ÄD	Îln’V¡œ’˜í#rãÃ& ùb_‹œx[–<­»ÙlÚ6ø,çםØfI"À‡åØt“#%‡Je­p¢ o‹%	Цé­ËÀõ]:äP“ ¦‰DKt¬>Ñþ	!ÝSÑ+k½¢ì“c­MHœ²é“R0l“V3¡N„¸Qœ)öñq6hÔ1•Xc0ª(KÀ}yâêÓ&ù¨#-Odi*© „8ɺðD5j¯DBQ„éhU…býLŒîê½sÏ5êfÆ؍¬Ñe™l‹¬Æë]C®zOžöº7dæîK§%Íâ+0ÚÕ¶IÚ©…µfA’q&åÿ¯wjGv,Ûy§S{zÀöþ£†Hî&^™*SrýÉNmý­£3d6÷*¶m)sUpqß_…áàtªKÔQV†“Uƒ+íý‘þ¨ÞûЛsIW°k¾/°@Mó«u»4QœÔ՗ejo½4`ã„5#.8À…D4“4=0Â{½ª#%¶84ä`xœ÷xh]bã'U+Ž+Ô¶ù*÷kF·“)[C0ZØAIT‘#-#-NIˆ4ÆY0íé*{Îfòk´½úí.šô¼FÀÉL˳$Àŀ¡¡³Bۋ¡›ð¯Aà7L½ñß÷âQ‰FÙpŒ;¢ã£7A#.ŸjI‹…)Œçƒh•\í2c,`ˌßݐDA­4>Ç'˜ô–sçE½ðî#-ãpm8yË)shP»=9àØèÓ¶pŠhá…ÄïÏ>cœlæAŠ^E8jœ¼ÄC2DøZ;3<	¡Ò'(6‚_ZõÁ˜ÜêãOí1 @z˜ÆWDèòz?›òÑ™Óԟ^e­ë%%öPõéyQ„ŒòPÐ۟sIŒAb«¦å-ay®G!é&	e°i‹>Ó-xpÛó†Ù”¶G>0ò`÷̸'ƒzɽ¸cÞߜ敻a Ùið$¥˜*]0r‚tšå„OCäPð'—oևá¸|Žj:Ä1QÅ1ZN‡KB#-Œ+x¯a¦ï‡«¨™ƒéÜkm›KS0)T@|Á`•LúzádL‹˜nP#eºÆ±×$‘ÌM4hBJ¤O.”\ÜßbØ0Bh#.Â"!(¾ý0`×!‰V3‘ ŠB*EÔ.‹ƒ#.#wsÙ†Aô‘ ¼Ô+L‹ÄÐ!ëË_sÓ`ª‡É•2¸¿=1eü`ÐÓSȾ°ƒþmyߢ86Mö\û6¨œh¶<7—²›˜9'÷žäŒ^Îàle¢´ï+˜™ùúL–fÕ¬¬Uû¦‡÷ùØꈊ€‚\ðÖ#%Ÿ^éú:¿&­ûlFšK¯áõÛÆ×)%"+E[¯Ü„‚¤"ŠÈ¢)"?Ö-[EPˆ,()w½Áèï¢àöX!ã_¤ðŬ&Õ¡íY[¢X7ºy´í’­äh€R&þ¾¤ªy˜='¤â€øä¤(Ã$˜ ³jC2I%˜¤Û“*™+i‘FÓJ„$¦™%‰+2F¾}ºbdړFÍ)J²Êbe#2( ¤M&…|»´Ab”)E$’Ê#j2M£CII`)Š3&-¥-d&YA“HÉdlÔf$&#-	QEHÆDÎ^'d#-véS¡ÔÊ_¸([8^™!¹íUP£	j&䙎#-«ä¢dÄıL`8îãŽ:B(‡?3£Ô•‘`¦~¯€Û‘ÚÁtŸ^Q,Ŋ1½%‡ôã#%äVêc¤¬5Þmã¦=뙹œ#‰uÌ®”AË¡¸¹˜ó™á9ê¤ç}/½lm×®U’84iO喽#ÄNX#ÇÓK6%ý1a~öö“ÏèQ1Ù*mm†8`aQÒ #-%³Ó¨¾ô¶÷Û}Ÿ¢2±6–R´Ö’Åši#-iš’fÌ"*ÅU€ÍŽ¾R¶_DÂJBj5¬fžFã+[¼çpÈ·¯ˆÍ-2U¥¾ÜpÒI,!ÎÌ}Ùþž6Á±ï–—Q˜wo"19{áÝ@Ë	ÜÏnÓÓ֟C½gؔpã¢ÁD“†näL>dDDÜ(—Ïãv÷ÞuÜzÛéA,cÓ#%ۑó·Ø/f†Àƒ¾S²@Áµ„HD4Ú&F«ØÓéêƒ:oÅתºá=ï;ÞZ°y˜<J‡6|ëšØ·wœÉÚ|N›æ¸ÅK§G}9H}–Ð9òÒ{~p¦NJ†÷¬SÉs!aUwn`£õ%<{ºX¼@ÕzWÆ/Þ.oÏ#%ý¦k{fÛé»ß;yñÂ)yó.F°ü›í$×£™­ sHÞcDô¼™Ì˜.¤˜D	”/ª`ßu=÷k£ÓÆ¥Æ|òºã¹†1ºgŽ\¶á©ïjê·î—Vƒà’nÛ^#-»”ÕÑÇat©UTpnù×D-­ÇÒjV3Ã~˜+QŸZ#.x/ëۈBw.Ÿ«ËÐJ&`Q±¦Ù2H±<Y£‰,mêȽò1G·u$#%M¨ù§RnX?ƒÕ8ØTý:óÖ¼·qï¸Nþ‘z#-´‘@FWx`ðóÔÕt¿FÒðÕ®ÉÐ4懟×éÌB©B#-9ÞÖ¡\Ì;²#%r Òl«ÑqåqE¤ýNzô8Þ#%§ÜÃ"h#.ªÇÓ|mÁãPÀlÓT¬wäíñ#.#%g»ˆé_«|:¦¨w¤II”)>m ܬ!¹Ï‘Ѝ3¯Z3b2øî,fbïEQÐه™”%š*™êcZRn[N’eãWÆ8!%p1$ÂC5Ž†bêº_ðc^ëk 4uúIÚïBÅ×S#Pù@šdCÉò#X3N9%ciêŽÖˆáx©ËHaøfµ'ՑÞãT›âÃy¡³&MHFN&r`â‡Y‹ÍH”¤ƒ(Šü\!¦›ªÃÑoñ1BšEà”¶)r]~}Jô¥1š1ìq—*à–‘>ڙ¡éÒR‚ŽÙD˜—¤Ù —ßw‚¬.ÒÆ£u†f`Á™iŒ¬DÎÓ«‹ü¡CÖ%ÉÔ¾pbf.8`S#ã#-„B`”è	<ʞ–n.'…(ÔîŸöí欭So.üLɉu—bs<ÍÓÀŠF#-ë͓´ìY…0˜#-Tì¼E£\­²:a©t®8©›%¹Š“oØ-Ì¸Û£…D8ƒ6ñP˜„uÙZ:ÝœÒ|ƒíž!›s¯0ø2Ðś…²è;Uo¢6S’5o%>.86aå°Ÿ±rĪé™#.ûڍB	¡¦f®Þaçc;=—~sS'\ⳝˆ>.¯7ÅÚ?££·U¶Ì“›˜Î·|à2ø]³*ÜÄèì1¡	Þ¦B¾®u»#-yo¿UƬŸ|;\ l¥¢=GZ.œ1]¢ÄÛ-#-º”ø’'ÙIŠ1÷öŒBÄuóÿ¢t8Ãç}¶ƒKg79ήXð/-ö©Ú$úï¾K¸Š©Ì¼`¬^{¼ó£‘d’m:‡ZDB7Ô\r]ãpäiŸÊ‡mіxŠº›ËgQ¨ÁÍõ6›pBÎ{q'¶:<9	.ɍohã–ì½v˜w~€íÆÄìûŽû–ä¦0õÂsZ6êdè¡Èá¢o"ۋTåŽ)§ŒtÌ1­LCº}‹šKm#-´QŒfÍZúôZµa׌T1V ‚I{!ʼn˜΀ÔBÖ©ÀäÉõó6uhÃ|R´zDj‡,‡7wÁV¡&šºóä¦";spprdwss	#-Þ·0©˜‰´s9LkNh2˜I„gXmI–Ò¶öï³5՛Påm©5“Ë)ØRñ©PӜcCt$.436è3«Ó¿(Oâ33]2"dÜ®7˜î)°È¢.Q¾öVÆÏ#-Æ©\`‚9G(uȎ)Î#-SËÌ>ÎÆ+Ct7Éf,ΠKmFÉ¡VÂG#±ªè½‚åËTµ´D7‡N›Þóf´¢ïáAl“8ûà×*‹ÆîsBâIcdM²6´ó¼•3I±#%[N( ÓáNt¥ë–Žrõœ£f½Qi¦›Œd†6"ÈÝA”BÈ¡bÓ<»T.6BÅ¢IʎšmÞyː¨äKá¹S}ó¥Ó©Xß­µÉ€7dµ(’œp–3Ž!:¬ViåmËĘXÁ-dðçã2\$d!ãÆ®£q#.;Íêï㋳IÉ#-ç?H8i÷…½ñšlc®6æ9ñ¸„#.ÄL]Ê4‚IAqLîò8³QÊÞ1×Ց6¸â#-âLÌpw™Gh,¬Ta‘jÃRÃÂÂõ¾ãuÜÌ3e֙LoÓ	¤>’q’¦æíqÁÞ´qèÈú¬v(û²j>=tŸOKä]»äñãäéu.d$݉¹|[†¡r@÷ÈøßJ±ŽN‘yf^%Ülâð®ÙMzózÓÆãn4Êâd‘¥­ÀÆ#-‹Z‰¨9½XäÀcpd·Ì„qè±´Î8㧽Y–6ÛáìÃO… •’ë™GØÊôcrK¼Ë¹ŽëEvn̙¦c+%ËZ#‘„f-Ì֖µÛ{hѕjpë¬kG¤dÓGV†Ö‡¯eG-Œ,]pÃk:#%­NöçFÀìU½ Ïz#.:e­”…	øƒKO ֒Þ#.š†ÓÞ]kœ•vÈٖåÚk|Õɕ…:ðVÓÛàgEâÔkžhy´r˜¨l„Ýä.ciŠ	53S• ¦£ÐãTa%33‚ê#j‚SE¦ HÎoNKJ¢‘è§FjÝ|t0â†q™šgFÛґ¶øӕU\¼$šÖJÅÍ¢Ý#.²#Qkpz0ëћäàH8±#%Š Q¡øQ1Û(‡KÇÊúôðs»¨hjX—•#%õM±,…ÝÔh8€ˆš@»êx4×	ÈCEíáÁ²(Ž°ÛÃpãnñ'®æ3ÇnBŠpJ)#-ÄßV9”$Ë#-…džI;*‘…´…±x≁ØIhgR YF{±BF e’væTÐC#«WT„:Lxö8ô00Z›EÉαÄi£Ãˆ…Ú¬lQ$#-M5†#-°fœY¦÷d`m­Ž¥y‡,«¥a…0X)5OÖ¦&n†él˜rÌ%3d™@ݚ''ŠjȳSªŽ;;j#.Ã2äÔré3Lr?H0¤F¨]%KÁâ]™F£^íRjUD“v¹\ДÑ}´†¢#-#..™,VkAÃ“m:(˙BPnˆ‡ÒÞ#-¡mœhÚY<¶Äא2ýë¤r´‡4;¨¶‘ÕÑp"Xs‘AóJ‚Dø#-…8k4Éï2½rëàÑÅǶ]«XmpñLÍd2rH‰¡!!(·—Ù12Y§—Å.W~Aæ]zŒTÖԀIÚdÕJ0„Ç5U¿=¡œ]GÑ9Ł#Pùdƒ€ÝñïØ ¿Ó²œé#.,u ŒK”H "x'FT”Í»d/¡ÃrFs‰0p©ß¤”áAˆ¦ðãÖïÅîÈê,ÊD£‡ù*%;@‰¶Ø4ùœz3.Ýõ¡#%ozc~sAȑ,„((Ôhå‚âaJ&«2²IÍ4Y¼Î¬|9´¸¼¦>†ÀG.é&ˆÐœC{G›3n,®ÀÚ¼P]üàå'ݍˆá2ªŽHz”„ ­˜¤]aµÚæp£x»‘I#8ÊZSʂ›ºšc#i·f0 @‚q5‡8`¡0J6MŒÍ$áPÎQUÂèP8£¤Æ’òlr è›MàXÔvŽ¡»#%áØ86&©Nˆ¦zÝ7nÊLïÈw¶nMÚÐÛHÎۙ²9á¬	3$K­<H6uGÙ)€q#%€&0cJA#%þ¶	H'èÞP¾,ˆ‰²#.À–ˆ6¦ ;R€F )_ÝìÈóWêñõqTM‰Ü)ÞR4ÄIfµš/ª¿oyí^öZ~R=e(9DH	Дj]"•_¡iMWŧSf&T^þ«ßk{m±P.¤ÙiZö|CÝÒþnÛXÓ1“Ï+R‰”„ÃÛ>Ê#-µ´NG:<ÿ#’nß7È·áëdù‡{©´"êzªiËVï°¢Ö°äN.u&±iZ§äf––j`$m™™ÔXŒ†®GHrô:‡0Ò:ô.®rD!ä›uíUøÜÍ´­üqGç).P¤IÜý\¨#%¸ÓD¡“µË2Úüi5m&ó)6ÕKY±š€X‡”‡/"!…‹¨—§ÏZ4#¡êâ#ˆ ¥EµF<åëÈH¶É°ew»¼„Éå÷ÇÊq.H¿ € "ìûöi /â‰h6-!#.„FcI]wfstKÝ/å¯5?x%ØH	¤Z÷(ˆ@ð'ÂÒ ¶YàíØ ›Å#-ÈӁù°¢!"8Œr2äqcì"qãK¾5#%:ˆÞ/°€þ”æbÆ~¿$*ÅÏǔ›¿“úÌÔ¢ÿ“ô¶GÕöäq?Õï÷ž›Õ‰Ázó3¬¦Í1¡.‡VúY$Ë)S4·’æÛÇ7|^y¤6£Do!,¡xøAnEzþ¦ÌMvd6cê‚.ؔFŒz# Tï%Ì`‘ÑÆ°0Ü«RiH9—[©„S£°‡æÏvi{#.PJ†Á§¼ûØ¢êò°,¶–1¡ç=”|ð:Hª‘I)[dÑ´¥hÚ±¢JŠZfj#dÆÚ,Êù_#.Á"҂×xûÓw¨Æs4ÓÔ %ºöíèí\“ ÉxG¯h©õn6v#.zçZBˆümm.F>ÃAV	¨ Uˆ+)MÒّ<¾u$Hmï:ފ-'|ÑM߁w»J"~dhÂ"‡ñ¥0‚ªæ`¥´=*¡ÏE8ê’Û¿K2ZªK4aŒÎº¨ºŠÉ#-»k®êJ²™!–HX0Ù…¤ƒt°TÕKo?1Ž#.D	ñ7Úàpaö…KOç–fžÎ¢wsøõèi¥«õ_Û©CM\AĹیcÕâA7¶ªÞ|“XÈM®ÞœqxMH"´ìŽF¹}ÚÜR“»p¬E#%²k(¦á³«œ©*é@¸¬XZ%*,Rˆò#-Ê¢òQYܮȖšWÀÌÍdUÔÆ2-QBªÒQEùžö5¬¡ÀGj4ÍÓKØxÔb7ŠÈ-â™E@³€]4¿Ñåï|·É|Ðhðò¢å\$$aE±4].z}N‚B#-×"ëGÚEµ„ ²^*¾û!º"jˆ0`«¡ÄÆi?s$÷îß±ÏX£RŒ/·­äÁfœ+¨U~WAj0fP¯Ê€ÚjÑ#-7£aÍ[ÁÅ܈¬Œ9kŸÅ#-bülê6±7x^»ºB³X†Ûš"3‰›ùâX”UZ-²h%°R!½R²k¬Ã™2.…Š,ÈÌýށ‹žŒS8zPÎUaa5„#-Úï<f6]s0RÊ´<l<5†½(h  F]ÝN˜À+tü´Ó‚«ù„µ‚Ñù|¹9êΤ<ù,’ê»MŒ7VÒºpªpLØ!Íã¬0i`§l3Ž2Ý‡ÀmPn„4¥”Ì碅Ãh7Œ8§§MF‹$¢6‹§gë†r¤l @òݘØh4ŽYO6CTš¸ê´a]fh$0N‚¥†€8…ÂFS#Y#.h]BÈÂú•#%„EA&€hê‰06{Hc¨7ç´äÃý9p˜"ÄP‰Ïw#%²ëéîôÚAý>«U½íÍ`á‘`]ªQýÇífoXTZç¤ÒŒâXÓåÔк&;B«J¾èº~ræèx1%ƒádçñÔcX÷×y‚AšóGÙæH @aEUUT* SÁ~êQ‘T„DI@Qòõ¾šP1ƒésó6‡xKE¼‡Õ8P™çïjŠœÔo÷ 7Æ)N.6¸têŊãü6ó%-uC¼6¥À×UÔJåA“w,é§nàïÓ´ÉiµN”’Âԫ¬V™vÊaå8-§Pî!	º‚ªjo© \Åúٽ¨GPš)D1›¾ëpÝsE¸'q¾qCK:ËJ!LCÕÔU(kã®1·AÍŠiÖ,Ï8Uhë¨,°ÞÈ%°±cgCƒÃ“•y”LJÚ ;¡kafKbñ$iœ¥dáÍú;ZÓ}å÷FӆX"xéâƒdnN찚ÉwÌZ)é‹C7J×T¬C™ÕKÌéöÞc.Ô2d±–:C:IS؂2Ì柒éõ´¦åŽõ}]Ççf&@bÔÊHâé®ÌJºm°tt5dã8<W°ha¹Mú¾f~.uׄ‘Ôw°ˆóÜ»(¨#.)	Q"H’*$dD2H¥OiÎ:{K–µ¢Æ¨¨D‰b&³YÎ$Y#%»)` ÑD¡ŠÀ’5#.s@*eO²e›Òƒx³¿Ÿãeiò½7›—vêFÛkâouÉu¬°»¹.ÝqšÎv½NuΓ¹ØwLuÜe^QšºTÖ®ÒV#-Êî»wvÕçt&jvž·^^kx©\­Í·iQl”ñª?~™)8pÚ6j@À”’6le4Ҕ™f¶+5(¦k²ÕÒ´³KM%eLÙkcKóþoªú}•íî›Ó5£R«IQ­†•dß~õýwœÙˆu£¨t¶¤ZTæÔ˜4c&AÙd°Ø(P*'#œ!hÅ@º ÝTé3Cm“„¢ˆ/ ð=¶+ÏIç«Có0¥‡o-D,¦§¸ÛõdòÕW°sϑT(±WÒ+òBa‹“8ŒÇw»3&s4C#.ɣMI±EP KÌïN™$Žãg¿¡ˆn`)Ÿd·(pÁ~Ãñ~;€dLF^‘¬¸±i·ðX#%´Kƈ$0RCˆ¨¡J„ˆìÛ#-ôn¶éŠ+]å	œ†kGíØÛ¦ö_ìÖl!g*?3†þu#%¢%4Ëin©¦‘Cj•Ù¼—#. æ¸ZÔÊf/”˜D°˜ª1dm®Î³ö³o=ÔCÂ¥ƒiÏ#M­^£E˅NYºþ7ly¯Æzë#-¶[2CŸœ¤”ËSˆ/ëä]œ’i{% ^*A.Av¥~@ÁSéu#-².Ӄ=Á÷(]j902­ÊÈdrpÌØk$аÉ?†(€Ôë5856j:Õä§èwZ­VKäPæM’mãÞ¿`?©F $#%`¤"xzþ‚Ô{þ͞j£S„~Œíå0v#%B˜ûN4ގ?è5?veŠšTB[ÏÉí«W‹Ó²3Xµ#ÒY”M“×vØ"Fñ­®h%Cyv¶»Kf[IfԈ”Ë%JT¬eVIL°š¬³T“"¦$ÔQkf­KÅ6Ù»ºjȟ=³­*õÕØ¢¥Œ¤«ST›bÖ*i1RÛ÷·UòrF¨ÒMjƤ¬Z«d‚U5¶½ÕÕ-F©&¡myזh2ËM”dÙ«#-VU5½¶¬Ûb--ÑiSo:ºx¹¥¶a®UÚÍRo0ºÍf¤Äµ¡*ÜMq¡‚!#-‚û>‰)ۃ:ó_*JÂèÇwêÖ=0j3]AååâϦ¬Ê먼h%·rܔÉ@÷tÊeÝèzQÀÖìYn~>Zû“C)L¨Ñ	jòÍPG.”‹J·žÝ~¢Ú­ïµ ¯N™›M‰¦–V™hŒkJKlß7“ø>ÞÚüK[ݶB"Ö¯e­nƒÂÄ"BÍ#-#-EÙT%˜DD]bµÐ$VAÚXáe#.€…Јƒ©A6Qa_\ԈŽH@SbnjÛ6Ô¶j&ŠZJM«Õ§1i[)Z´Û6Ml›i¥4RɬY‘bŠ%¶jÄÚR˜JJR•&l¦eŠÆÙ(’¤ShԛIdÛdµ)¥h%’•1Lj$µ,Ò6ZÆÒ2QHm–bRÁ²ZÊ#-”©$¡”e%&Rf#$̚)eª[Û+AªI©Mi¶Vµ,¤ÅššS%J{j´Ûn³jƪ£keeZm&›kî6ÖºT¦Ûe+m%ª·³W›5FÛÌÛhªÑl¥±¾m¶åª¤D	ɔhpt#.î3²pvi|±XÀ“W§®‘ìÏnãi¶f›vã¿TTý#-w¤»#%äd:´9•p8B“ÒúéPi}ÁësÒD|!$I|nxx_¼Af[Ûr¨zå êEªÄhBD kkC˜"Ð(—w&§¢œ+b`Pãkfƒ2û23Ít*o¹7 vëEIàî¢ÃVÞmìÒÐÚí¬!«ùT èœ4DÑ†ÁÄ¿‘¨Å‘H¤æYªÔÀC¸#.y;…V*©e>À÷€{H×ó€.†¸@µ™ƒ¤­²+¹À{ÔÁ.ê2æ×0ùf(‚›ÿ/®¦@	i'Ÿ]ËÎ&òfqš‡Ì>)ºÁ"Ý@â†1*4Mf¦´ùË×,eñ§Y¾Bé[³]œNº¥ÃÁõóìV!Åp£vã}¢„H]Ü}¢lIçÝòÔ»\Lv•&C‹ê¨}U–E?*4D$ëñ„(ÀOW~©Í`Û$‘za‚Äjhhêr8¸SF”Y*¼’‹#%8YáØd·‘òØÆCDlª8Q‘vgH¡¿Ì¸0ÜgPêlh˜vú]†h#%è&` /Å¥«úþ—ÉïêÛÛ¶— 	˸#%Tj£[c#%[}w][S‚·Õ¶¨|T†€1ÐVcV&" Æ6âóÀÌÛkïÞ´*Áˆƒô}N;{ûÄ!#Ãa$wÜq"v6"Y6íh'b±ÂX`ªk¥ê#.¼JK9÷é²ÞЃ®Ä‹_Ÿob£#-<ìÖ	1ÖÒ7> à„É‚&°º}XT$A\³¯¬ôÏd	4Š#-ÇûÞåp*°ñ(QAdOÒïrf °ÃDYH¯']э\ÃÚëÒþCRVJ!ùð4B%,ˆÌ¢È›m²lȕC$šh££@D""lÚ@¶TG*ä©l2~ú4j&™#A©„hé‘.F±Á§	$#9½iPA¤À*ÅY£	×!¨âli†0µÅZ-‚mpQùØÄfÔI«&àbãšÃÁ¥o×@eƒ]@#-Ž—âw&Ǻ@ñ’‘¤ô´³qêÈ@ÿWz&nøùãƨ5"ÑJØL©ª‰‹5b®<.wÀMäR)ßÓÂ=}´~åä•Óí]XQ2%vªCqÉ­ñ´ÔºÜqD´–#Ù#%€¤"°Á	/LÐëé/Ý°?«½[@Ä63ÆZHøòl¤Ydhã%]%Ïv(JhÞÀ£§Íç#-G¢Ÿ=4UdÝ8±Æ…7èW$†ÚižK­¥–éR¸¦ñ­b»æøZŒ3㋤08Xˆ‹Zꆖ8«‚¬]š#.#-kÝಶð·eÊs>6×m·½U¼ö1’`ÒFí}JRqÜ[„*“ÊͅЊ¡¿qR¤Ä:üÜP(-#-Pr҄YõQ‘’Û—K|²¿t‰$FóT“«’M΅~©Ç%ˆüR™{ÕÛ©Z˜dj5!„&K ÓL@”B`X¤Zƒ‹#%e”q*&i4ÛÕEC²%X3—°Ì8[‹™ÐÌëÓ^ÊØ®i™`"Ü"Ú吲B‹Ú†G"¹×3	ƒN¬7|âóâ.Z«TódÑ-	:1ETR 4'HÂë&¸SJÐîSraªƒ:ÊS–KC‚,qãPë¨`jta߉½»}DϨÝD‘‘$Œ#-M#.*„§™ 6©Ã2ÍU-L™¥œELQAë^ÍÛ²‰ù~]j‘ñJ!³Ý<|ȼlžèh”Èzô¢•&“~³ÖF0EJ8õ¢Áºä‹×Ä0ÅhžÜñÂA§™Z¤;ñZÔXÃNÂwÑV6iX,&Ë#.*#¶öÖ;]ÃNÿnVð!˗nHC-ÕöfrÂÙ´ÏøãfFÁÁË5É j3 dužTI˚±_…«Â{8Òõ¹B–æZ’#%vý&ìdík8ë$,ʝ"ûÀÒç3qÄ$S")J j¬jfSÖí¢ˆ“Ž¥^êd@8QK«A¼G-&ljàØ·Ÿ/l~#.u#Èjñ7€<®T‹I#.TCêkëú^\±[f>ü¹|n‹ºãÞӑ„§½w#S^ÞÔUÖc0°sŠA¼ÑìÌ­fH±TU€W»—åù^jö^šǹïW(4ùªì÷oo5ޜ“,"~Âêó´îF"çzèçWAW&StºTn¹Ÿ¡y—®õ¼»šjËb%*N¨˜ÓLí!î™Z4›Ú–¶¶ÔÝö0#%*ø1cÅärO8‹¡ßž—‡9-FGÎANýˆì¶3ܽÈ:w_t7çß9urêí­w®ÎNڀ	+ Þ'$›ËGÅ®œä	qªñÁÇ&‘DŽ¢GQþËíG1_Vå5O\“‡¢üš¨<O>Að¾Ä®¯ÎÙâõˆnAC¯‹Nì¤)CqºÐ!~¶ÞTÃk6ßsÕ×äF¯V¢-çpA‘ƒ'#‰¿Fw7JJ…óÄÀˆ|Vôõ×ÙÚ£Y5iíÚ¢îë±Ò¥1Ki»²ÌH2‰ .RÖE±mS׫·G²ó<sºé3Dh†«j¡)¡FM€úôí­…Ü$CÒ#%¢ÊrêÏjìâò™—×»3Š17¼GS[’wõ»øÇ¢HY•+j΃ŒÅ÷çY½ýyxyÝ&½8)…Aƒ‰I„,Wì֕ThTÿ5¢‚,Ë9Y4ÔL_<Ñ$‹ªñ³LZ‚ÚÕÊ66m–Í×-;®”Ú5|&’µÊߕÍb1bMW’×-^ЂÈJÎl,PB¡HIýïóªØ$‚#%€H!„R„cz–Ä(s@y²5¦{lzPm~•MÑøæѱ-h‹‘˜H) Œƒ´âgMtÌROÅƒ @²PsèÑKŽ±ðÆ3D2¨Pà…#-¥"YCƒ¬;LÇÝ°äCî>F¡àØDC¤ú1° –ÓCÖxõZ)6€ú€‡^#.ƒ^TR ÍÙ$í±^»¾£[ÑÛVŒÒôYƒMì•5†qCÌmۛÙúµ¯î>œ»5F¦kºêL5"B)"„Œ‹)PiT7û	ä9#.àEDÇÃ<MZ%ÜO1|c<_pª#.¬AaÑÐ3²o£æ¿ØM†îT9êŠH?% ¤Š67^KÙæ§á»ˆšDÈð¿Ù°¸‹°ÎmŽÀÂ`‹h`Q	ëø›/uRŒ(­AT(þH•¢V½6~ëôlߩݺ(–õPd$â‚Ád	ùýÐ>Ÿvãi#%3d†áút6¹6g’|¶O³éӕî~ëÑ>¾×ÔF»cÝ„=Y½W2¿·~Âߪm“eÔXnæìÔdDo’¿!æ&wÙí)#-mû¸úÑÖ8;;†#%PTU|F#8fôLÛ0ZÐÝz‚ƒYŠóÁˆg8¦©Gîé놌ƒX1Bo GQ#%æ:›Ï”)ª)±§ÍøÉèÂç™_”õ‡­þsuNïb–€xPAd;É­ªY\Úë-¶·Jª¤®P	!˜¼A±f…à•	#%h‰BÈ.j+)ÆQð·HSm.Úýh`ýJ0bŠ8´Ä`1‚#.$9®:˜˜TÓ7±™êÒÚٍŸ»žÐaÆJ~“¡„Méè}­½A9¼ƒÎÎEeþ8ô¾ÓRH H©Ì"	ÑGx[#%ð0Ï}‰¶Š‹|ßTdŒ¡Þ}mdAdO{-cM–“åÓ£)PŒ ȵ°9È?Sc¼Ü¼+£†[üèeÔUuO”·Âž©íH÷g/×Äõ§Þ±„C»œ¡@ÀvR.©æ#-ëÎÈQ–ÕfX-–ÉJ–•úh)/慨­([¢(¨ªR_óÝÃ(™ÉTÒRÀ%ÔÞK^/ÖkÙ¿=·y%o€Ò\d)… Ì#.RƒùLŽjíŠ#®XlBÆ6ÚlÑ9ª4’ˆ.›¤)›íYtE¡I&èR	ŒšD8qY¤ÇR)TcŒ…Œ›2„ΐP.™Tš8m‘î­\Ú-½—Jø*å%¨ÚôѦ’ÛƖqkKX\Äéƒ(©”Áe$±Í—RXR¹§ÿ—­H@Üvabh¹#-JR˜ÁjȀŒêñ·“#e¤ÙDÑXa› UÅ̀¹ÅFñbÒJbÉiwÖzòóÁºs‘lsl&Ôɐc1ŠÃ…ˆàJ#%Ôd¡˜1ÀŒÜƒfs ´Î´ë­ —Pd]¿³¬ÃL°‘ƒG††Šk*:Â7¬„Ö0Æ,fÚ;9­»­Dôƒ#.¢`Ña™‚Ý+<θ±QSj!Lˆ’#-¿?Äw€Øu¥LdD	Ïå,v9?ä„KRääʙ¬bö+ØÍÅ#Š&%]ƒlÓ2Õ£2lÈHÚP©VªKĤ¦˜7F%¿«ó¥#-ÃTzo[?™å,ÜÕÞ 0©¨Uõ‡=ÇñËñPÑ-"B€ý@Å%Y|ÿ_³+ZuÅoV²ZY‰6‹5¼Ú¢¼êädÚŒ+¹kn•`ª¹»VM ÄÉ¢i[EDØD #‘AcÚý)€.lÎQhH%“§q¼úž®E‡_Õ Aá,˜4ú#ڝ^Îì­©M79}>“Tôæ&¡ã°2ˆB*´U#%4-ÈT¨µ&´X#jV×ÒP™¨&¬¶îþû/U¦ª—[sßÍÄæ*ŠÐy<âO҆Œ—Š)‚‚„!h˗ÁyV*‹^v¹¦Û•=ûxÛzZúÚהÞδI¬›¬Ù•±t¬lWUÝQZø|/oS·k³bÕñ–·im¼ÝÑE&ƔµI[Q–|ZÞíá-¶À4Ò`SE®ï„j°—Go³?ÆSŒ’âb%Ò÷⬂Ͻ°Z¡*u"'¢9 @Á‘,	‘&`ØÃ"Ë!±'Ii^x`㟖¤Ê€G¹˜p~ڎáL``D¸z@þ0ÎáÑ4Þ&(ã"pX”‡±}²E`fqçÚjxwSnúÐ^Š'ç=‰„Ï&¡;º:¨+€£§§šöŸ<ÝAÒ»KÖ]Hz~¯€¼Ìrz†¶ÇÁŠ¦ƒÁoÍ›9™̶gP±-Ÿ`¨=±R ©úöC[€q‰õtDàéÆ6ÜÉÖ£ ]Ë«x‡=aá 	öSȯp¶š#.’©QE’Ò)›Z6Êif+i¦²žJé5%Xˆ£Q	Qš}pPïgNœä#.ú!æËuŸ„åRE#.°—ÛSéï]çÓ­êï(FèüÎåèyâñn&%ôgö¼hGɁ›D{õ*“T€E×45£O8ݟ¦Uá0“iPP2ðÒÞ5ßL¨ôÚ¯rD‚QTEŠˆ‹"†ÛR؄ bR³jl"¨]°jª Œš·ƒ%A°b9rð÷ 'íí`u’$’M#%A¢íßW£]ùxe½|P¾ºÍG*·.ðÞ´`†ïž¨°’TtŠ?»h«á¸×=N$~Ûf›Qӕ­Ç+¸›}9”…Òé¶#"PøD։Í*Òih“©£"CÂۂ¾ÓŽ»mi¶~f±%ÈDi™DÒ&8a _X\’T(ó*/ÇMŸ§.SÝÐk=.ÑÉ°ŽÿG4*ǦkÍÅ?慁`íÅ¢±lì¿Ãý™)%†ÆðãpdLz&“Õ¦&‡-™è{J3±IôMŒ]@ü“Ö"Çޚè=ׁ Cçà#.Švã.{â„TRE‘„¡jM$¦EjjÓTmF´dc3_ě±&„¨©gì«\ÛfeSe“mS)Rµ1¬Ä¶–Ök6ҚkIµbM´[#-fÚZÒ)šËM›kb±¨2³å~þþªùöMC~ÓIË~l¶4HDѦH/Ö"¥-E«]—*ª-E¶+vVÁQ"”2Aü E&à‰Ô=wNüÅÞ"Ù$BF@‘„Nô#q^˜HŸƒÙüeÊ	¿••ô"æUF¨J„-çißE>“%0I=Ü€é‚Ü£vÒí‚#rœüè+݄7øÝLQ㐠5}P¹Ó]èzS’Yý„ AÏÔ¿Y!Šª¥€<ÐJˆ"TZ€~Ø ¡{RÝ ET¯¤'ˆ^Îw€‘,Ý|§î̕¸ÞmّM쪜#%½Óµ_; 8"¨š;B$†ã#.6t &0Z`Áâ~}ÙÜQÏñ­CEK!íì>ãðõ¢ž’'j@kÐᒐ='bQän:eU6âhœ#-¥Ã‚ˆñz»#%Íáy#%"Ÿ#%n@°Æu®Ý§Ç”–5œL’¨HPÅÀù}aÁ#-“ø:#Ó,¹v6ÔEbG#1(~úϳGW!E¸±±x<Ïïí³å£Ú‡ßùK€}ÑËLyjÚlÔ(ü±óvÍß碃¥Bb!‹¥néÇDê?ŸX«hË"H†˜¶1Û¹á P¶¿“=›q¶Öü(õåMô §™Ï{¿t“)&Í߈Ñt×Äùo#.m®á´Qm ˆŽ((-)>¨ÆC%Ÿ/KïØÖ}ۆþ¬IHf#.#.w%,"Őñ´Üû·½ý™³Z=¡ÓC£¡'	êÿvìI¡P™;“ym–\ˆ ¢É0‘6Ï)Än)i#"i¢¦XˆAÆ)u+ÝRýT·T°Qaâ„€±qÎÒº#-6{dÈbAPÒ,iê00@†#˜FÍîá'>²ÚXd®NŽa,…ÁGgQd±ˆ‘ ükO˝¶ƒ_ã(ۂ„xЄH13¥,èC’¨i•åé’Uœ%Í×>݃7Äe@ÒgÔé…:ç8_MŠŒ†„9ƤF˜5,jÚ÷N¡Ft''Œ¡/\8;2Ëß©V<ûÃîÓ]MR&ɦ㳒4Aˆ=$G@€Àf ‰G2›–+…SBRu4pR«æ=GG+ ž	Ý#%CÓKnTrÈ~.Ã%.´=.÷Æ3ÆT‘‘d<BR8*¢ÊxÒt'åLü3Ü#-†-ìNAô#.÷ó†ºæ‚óÌÊÙpž`òq†ša&X²Š1€"Ì%" e56Ä}#ôÌ ùB¿kêm*)_]Õll›»^¿§lÜòMçAsÏ:šIKÊêCõcÙgٙ@ÊõO[XÑïLÐQB´ÝL©Öhc¹kJ6Ó[ÅM\59.Íllm'w3M¨ánFE#.ímžà“éE"ëPÅÌ£cÌãªvOÒ _>ßë‰ù‰÷«ElûDΔ†¹ ù`*àÌ%†¼’&–hÈf1ÈNÊt{Ø÷­ä5"#%ÃïfqƒÊsúæ×®ëˆå'¤’{fóü¾u¾¡ñ~½×Ne#.²^¼¹BBj©U4mÈl–ªC HŒÝoD‘ci6›l½í­¨6ï¯R¶¯Í›ãºÏ{¸H.\Òé¯@Gph|à4öât‡Z°he8hŒ#.pÁt\³À‰Ra9ôØ1'"SôñÓªŒH3Kg[uÖKI]êq|6of6áÉP´èÊ?–”Â'7$wcåé®yƒœb)Œí0Ù!žS(‘™óþÏîe¹'ŸŽãFCAÔk©#.bUCÀł`Æ4#1¡‘*Ò¥h‚àŠQQ!„:` Ýó÷Ó#ï"6"ªŽÞ©×õ¨Ìá»yIâwš6UÄÎ%È0ÈõØefËèð9´t1Á¿§ÐÝE?¦ ˆ›N0æ§NäfE:öà¬Â‚ÕUÁÀ²b€–ÆQ'àÑÇÙÂ5vy×ÝÙ#%=²ÖO_AÕ¶¬Cî ’Y¤¢˜ŠÚC	c¬,£a+‰açV»U%V£VË.òêK˜’ƒ(…J‹cB Lü?G´øeÁ“þJCwUlbú 9¶ܛè-Ts»ºj´»¿‘/·×‹+¥¦kzīfP%¡)‘fjTAÙǁ‰bøïVµœ®?¦­¼µV6"´Çz72W©y›ÅAjóÊM|QMã#%ǦHÂɦ‰"N¸Â0SBªE ¤L2oDÚä2Ď©Œ¥gÕ$A¼5¡Vn%—‚ÐuØ1§a.¡N¯IdQ¼Š6¤H‰‘¦Û,Ø`E¶±ø¶­46iôô#-QŠ¨ªÑ)o«ÃdpŠC(ç¹O(	ýDí8	–äñY	Cl@/È&{ŽÞºžïW×Yç€ÿx6bKü?~ÄÄëùO•ÛOê|*§# “ƒÙ1‰EðK|e…š¦%jr€ôt	B<æ½Ù*¿#.­uiI¶fÔ¥£L©šÚ*”Ú¿*¿2Öüh•×kNí\±®ktÑ®W6ĘçÒÆðAºá‘ä#4Ð7ă3‘-Í êG‡À9n#%nëY«!PöMH§£—»—´£Ñ¯·M9ª¹s’ÉåÆÝN°þ@#˜‚@«p±0Dâ1ºœ'Ï¥ÅæÝâÿçi°ë›á#-·Ì‹R’4‘wrõO²«$Ív¾½¸•%¶S5Ýß9w½Û¦»ìL&ì}fØî+®~c‡;[}ƒd[u#%rô&qG`ò½TDM@¹#-·M÷p–^PãNé¦ç6áӍÃú‚S‹<ª7¾3¦))Š•i³2ƒ¥&ãLdêX—¾Îœ?E_Q\›aš—ñpíÕyo×#-áå°ú—ø5½7_¸ŽÔn9܆ŸuØdñÃÈìa¡„#-	ždïH|üóÈcÀ‚‚_²aF&½ß öž#.çé@<çˆ#%?Vaq£cêí°}y0¨d=ž¨ÍQ¬J²(Ü­(+î¹%LûÓ3Ʉaƒ©<#a}´ëFÃR1±¢Äq„Ë™ÈûØ,Ÿ*Cš»qÙõښlÃA+}Pª‰íU³¢¼P4k˜}ÂSç&Ùà f­ðJy0aX¦I÷$…íBnx®œ{º©³*æÐߊøÁ=ŽÒÜǬø·ž]_ckbúwFÆ×¥µÂú5-#.8´‰(ŠRP‚/ÚT‡H<þzߖýPÞ mÜí]Ž+gG ²äÏó|ÔKwس,F1#-³½m"Œ;eJFèÈ	ØB9€T’ƒ_X cð€%” è„êniŠï"m5KyɌ™#A›sԐ&¾#3@!¿çý0i8òQA%VUk°½ë‚·¹n+ê=~ìÒ!ߍ˜çÊz•M¨¶f×Á ØœO$ï°QlX²¤ã?™#.Lµœô®‘9ä™Ã¡F˜xŽƒiÅ‹±åªØ‹õӕõ0ŠÃLw‡<ÕG4N¤qîTg˜îõüےEF^ŸIÜ$Ã{ê8Ó)B*ˆT3£myo<׊ºµ-Ýjë–cn×Ym4ÛLÖɵ2ZUlʶê¶4n™KÅÉ5ÛjøH#*ƒ"ž«\˜Ã„ëˆu!çõ~#-#-?T.¥I‡™ˆØ‹)€‘ÇÊ¢Élš¥"À×Ú`ú41f¢RU.¿KsR{¶Ö·>CŒÓ0|}û<Åà¯c’mœ©Û£P2ÕԔˆÂLɖ_ðÒà¶0Ý%+UP™Í±7‘feݝŒmš¡ôK1;ð@!	–B±¹Aéý\ŸbðqµãÊÜ	»qFFí+÷ðº¶vq|z™2²WÚ¥š‰êœ=ÕØnÙ⢰#%OÕê· È7%Ûú=kc'i:^Äèêò¯ºÆÂêÙ!;WÄõp6á^•})¯¨××ÙÀÆÊÆ0T.¤î§<@ÆÚ¬ý‹×iphÀo:J›#%‘çLL˜’yV"º,Ö¢Ô»L¥¶Q)}·÷ÿ_âÿƶ´þôÆïãRû±~I‹é}pÙ2‘@<؇¥It²ÜBã|“bìF!¨†AŠÖؘqp)#?1«{@#-YùBö›Ü5¬¥+Éo`Pg™SPÕ‰ƒÎ5ÐS坙V¼J¢;}ÈñUw< =ïÃmϤgwP~kÞúiŽ”LšÛ€È•#-ÆF2#%€ì⟼'›ÚÔ¤˜#p«éƒ¥â]#.çÐ͐ õ†2-9ß[¥ÄÁÄ7Šwo¾U *y„<20»Ò*íØl:PJe	“ÄyI2«Y‘i,…æL„Ã#ñƒ<E类¥øx¥…÷wŽ¹`Üt„ŽÉJ‡I&aozƒÍB€O]ÓQaðð)G´Hˆv±ä:Œ¸;¥?ËX,)CÁ3Ùû›u—¸ò†Àe»5 ¤ù­˜9/ʏÉmO¤¢9(hßö>Àe3bXFÄsYàÞ'o{›&=¨Ðű‘¡SC…ØÃáFßµ‚Ñ0'ʟÕÀàÆv°­î¶àäb	V±<ž°ófDéòÚùôãæ\Eù EN˜ Ԑ„0öÝãt¶:u¹2C«#%ŠÝ#.HPõH° [#%m‹[U©•i+mxæ$¨ˆš“)w…;LöÕôó·)áTHŸ“„±UBï6· @›jpêëg6TnYì=AE#-€ë+Új«vHˆéY—*˜é/•¤†S–[jn¿”på8 äŸx]4ô>a€ßËz0…¶G0I¢¶4Ɛw·@s”DÐ&G¿`w¡‚…Yµ3·û¯Î݀*ªFŠ6ž=\5Bˆp7Þʍ…àÃ*ð¡(ñ³Ð¢n0'€‡òËDýDÃ¥pëSƒãÛw›œ&”úÏÚrŒcÛf<ÌeÞYQ[ŠKœ0[æ]k9‘&#¶­ìÁ´6Vðxø«¯R×q(óW#.ëœFqz	ÒÃ!dÇI{#%@àTÜ^TٍsIˆ¬;°”Rz›’7Ö¾¦þ¯±ŸZžx¶!‚g1‰V‚0éŠý2Ñ-#-R¬ʄ4± AHŽ÷9û‹¡J²(ˆP$¢¶°Öµ Ççú̵ d¨º±Dð²ÄÒ$ÑH“ˆ;3ðúýž¹‡Ï9÷#-ü<ÉS?™6Ý]gWwm×v_/{6 Ê#-1‰#–Ïâþª©5$rÊÕy¬Ñ‡“ÁUsF>¸:ãq×Ù­Tnž{Ì„ý_ÂíÐÐåU¬9Ä04õòOeG»ÜÌgǖ¶[#%Á›¢#%BÀ›ŒBN;»1›As±Eíp¨þþo_k3zü#%Œl;ª»hM6+ùë;˜rîË#.ä#-«éí]8_•„žö­¶VÚ6Âk#.؂°Â6šIæãzΙE¼†|ѧ³CÞãÝwNÅ5Ýzó´ñÉNxU¼QQÃA”I¡ŒhDc4™´d‘QuÝFÛ®ýw½ëoZÚ2™pÀÆ4žÜMj¥B±¦6&ž8bdjX,•œØ8”‚%A‘R™«hܚ…Ê5¢ªJ‰¨)‘D0„SQAù!Cز‹Ùr½rg×VµH}?§@±€ª	‘d®Í¾’¼‹5Y•s¤^uÔ»wSS)c-ÝÙtžM¾/^›51`(*Ûr“J,+6!J5­Öy¼í¼ÙSe2˜£5%¥i¥±%1´›aBM™l¨ËQ‰…¶KKÛ¸õ;YN¸·&ƛ®Ü‹r‰í׊óÎó/Mr†Ól2¯4L¹ÍDˆ‘‚·ª%Ò²äT4¦Ì¸›#-*Î*¦¤Ø£N›.¬4„ÀÑM‘R—*r‘‘­ÕN/6ô=¦C*…la û"Ž°‘n1]±‰›Šë0I§„@Ã=Ô[è-71c\>26Ž˜ˆVØÇcô"¨Qf¦¤Áa€"±`æB‘`£&*„#ãT°«Z‹Á–®°Š¥[I·eÖXÝ#¦Aéˆ(ÂdA"#0DÈ%[\4Bd¦†ÈJÐÂTBÑi©bÈ¥`刬(ؚƒ#¸À¶—V#.h´–•¤#-‰•ÑÍi±¦ÅƆ31ÛXÃ7ë˛ÃoˆeÆ ÊLa_#-haqÈÆÕª(M&•hÝÌ3×Ký#-Ú´þ×Zz½̈́U…=Dx#-7&ÈxE×èɚØJÓÃ2‰“׋Æc<|f0Ï‚¶•ÂªÃ.‡}‹Á–šñÌ<D*ôšі´ˆÖ†%¤oÃI/‚Ö;`ž—E¶dTûMl¦FRT+_+%í0^T:ϳˆoȵõ¬Ù#%bCB6ó~T“(3š©]áèqK{êX¡wp[@ц-\$¡¦J²ª0¥b\¶„ôQ´šD!›I,D´^¨ ««¡Ç¦åý¨a§,BvÅ6`Ê°·)‘Ã,P'€è·®‰±ðø8á£ÑÛÕZC\öê¢J¡k#úïH†ˆá¦uµ­A:;p,eZ‹JF7䇸µmˆÁ‚¤Bì²P "`fàS  PÂ#-—R¥zµš×ž*õ»òl»Id²#c4ºQ	%ÐÃül’)ÛÏW =Ž¨H¿Gú~ò(êïçÂ/¾n¾¶Þá¬F¬8Gâ1aäÔöÈlü$há4Fx}Ÿ‰o6ÌëÚ¶ú÷£]ÅP«dþ4”1"$žóäGY6Q ¶&H>~ß/,zÒ¹ìÕ~ÍÞÌÓâMnÉmßoXàë!©…qìá„%ªáðt|¬>j%å(•ºR¹©¦ªx2'%›Ó¶‡²}«c_¹n¶--áAò‰$B{ˆËΝFíçEvÏ;›pÂll;Go:zÞ0ó5Ï-šXM, ȳì	àw3N›H¤Ê¦yӕ ^Ì½´ö×c¡ÇEʎ…vͳ2G“è2Á¡0£øR?tÉ¿CÄJäõ¸ôF'5ò]Y£ÕñÄB¼¼¬ØÍ’Y—…¼6ì{êãÙëÁbª°)¢@²š~\×£®•Ÿf	ϧp–¸\Þ±?ïö›æJ#-j—jKïšKñ³T¶90ÐrJe:þD'È> >?NÊÏÐÌzœ‡ÐÈ#-â’)"²B#%AØ>Õ	aŒ(…¤º#%}d[(@ù©lÂ:Kí­áaK¸Ò£Rî[d-¦	¶f­à­sÒUÞ:KQ·—RZí­Ò®íÈÌÝ׊¢º¹¥–XÚbÊBÆ͚ç#.Õh­&Ùl­\Úç´Z ¡X€4´BÖZŠH#.Ú 8A,#.Ãà28dEaòkÝÄ44Ý™HÔ<ÆZ©Ms=ØN¸Cœœ¤…ËI& KÚ¶—­Z]­®Í­•yæÖ~*’"bCPÕ—"p(#.ÐR#-O3®VkÛW’h–ÞºÛ^«E…>/=ðhšÅaHÔ#%eBe•FÚ-x·S6Äþƒª†Qk‚̦b´F-2£hت*ٚŒÍ’³)$…³F©4›#.-Y©T‹ì¸Úìã݇Ã#$ëù™“b#%—.IH*1TD	r}8ýOìöcÕîžýõŠ>e۟äíÜ^‹‡zg¦Ìe”õöA‚§Œ)¦Ö’™j?ž)³F¶û[_‰Z®%mx®šý–ìD¬Rž]tšÝԛ]»IJÚì±[b0H@jšHÀDˆ¬ÅP¡H$  ¤Zh§ûä9&ÛÑô3#%|åxTždŠ¡’fÁÊ"–‰$œŠ²Mä㐐µb€¤5£ƒjéFÎΎ-¶%&(7•ßŠuU7Ä`#.©‰äy5º&§	-ó>¼%=ÃRÜp~jøÄsʹ“IИ’Ö&H<#%Ÿƒ­*p4{lŽ¶ÌŋÇ![ÃéeR@cUàÆ=1² 44 .PjՆR=²º	4ÃÉOØeëÅr2>–n)§Y·9t™ˆÃ2OØ`ŒùøœeÙĒmIw§U?–õZ„mjk†C©ž‹Â÷Œ±3oÕò8/€¼Ì(N8g}´ÚêŒ)oªB@š^p¯Œ‚r/˜¶Ã̄~¦´X6э"—ÕۭՁ¡•Æ­œ¾Ï«6÷‘éSlû§•ëÝØïàV3NÃU³s«/N´m¥ØGí/¨~C®‰øUþ%è#-Б„a×ÉɹSC+j^¥ª¤‘Ϭðy¶'ƒçCèؚ6¾Åm¿aY5µ¨«	­ñ¥øjýÞJ1oߕîÖ¬—ÁZ¾#-²onê£m´UEW5Zòºóé×»Ü@ˏܜ~~¢ã |ðAp@×ãfáóêT¯›L`½ŸY.Å,@aQö,)†Œ#%¡0…Œ NÈ@kA¤A£F¡Ç0°v”‚?´_D#%È0*D.¨ÕÅS„’A™IˆÅ¶Ûͱo—¬m^wnÀôÉZlc-$bõ¼ÆZ&#-$×mB½ÙX÷¢•µ^ Q¤µ„ËY«IFȂ¶â5jÖ3r	D 0¢¢DCLˆP"¼H˜t$ˆ@…Ð-Mƒí¥¤µ\HæXD4.lðž`ú­Ü£$‰#Äv”"Ý?»šKÞ¬:°wR]}O¦T#41Š>‡Ð8]®t×ȌœbË*,\‹BcM2dÉYg‰eĘ#-F 8#%!Ă#%½¶!!HD u7L$€—Ko¢~€;ÔÁëwdÒ=Ú¾Å\Ø)G²9Ï¡ÿG‹gX÷*‡¸„vïq÷AȄ4•"}Îä9‡ný°c¹?‚|Ó¶}ò4¢gÑüdµeg'›ÏZûµèۜì¥Æ?Ëó:n«a™2*œ8ñ³›èDÐpÂãÛ~M“M1ÉÃôLÌ©¢gƒ …ã!Ã+uï„4Fº¯mHŸL#-Ká °F¨¥©¤¶KèP9&ԁĺ^`ˆÆ*¡¶²Â+aɱãðD@û‚"ë3s+Ëg{ê}iç÷y‹wù^Å%Uã횟;¬¯MRÄá·«F#%,RJÔ¿#./èpéœ33JY’‰TQ)¢TT"”!€t"a°ºç}+Q*	Þw%f#%’rüúÆŽ#.»bUH@ P#Ã6–·F¼Þmo®ýßÔú ÆËÔa,¶¡§J6ÐÈKULCl-uç!³-‘XRÕãnYi¶‹E–4lðWJÒmί7“´tºÃ»‹›wvéÒñ¯¯sSMååÖ¹Ífh²]mn¶±µyªÓgvµÔji©Úê“%´Xµâî2]w[»+®·F›Në¶å]C—e¢Žm±·ij¨#%Cûhx6AK /©=P†Ó	´ˆ½›½<ôY£ív„€ØΏáò sC½OìïBÐc˜¾„g±)º#.ìPº ¸:>µ%:³1/¾;S¸o+餂>0	#% ±fuçÒûÙø¦‹õ蕥½°ŒŠîôàˆÚÀzsñDŸe“ß½?'sÔ;ŽÀó6]ò#%cY˜#-µDÌÍ/¥^®U´öÅB¦rP‚R¨»þ’å“ü0Q#Ϗ׵„eEHˆHŒ„RDD’A$r‰‘ÔxBñ}*¡ΡL›ÊçU:ë®êl±´fîµL’„O+–**"‘Y¾uR®¡«$Ã'_¸ lš²#%ÝHeTQ‹PU"’Ç`(¤d%Ã6‘ô¬VKf2£^/^WU±ÚºëWjYó^Tö’¶k]ÀŒPj`!Õ=¼8&†aB|´¢O߼¸úÊPŒ#%@S(T´(ŠÀ)±ƒÞ~Ï᚞ªÀn@Ó¤5zˆ+Â#.¥Km-¥škY¦µ+m `Á!ÀÅrÙó—KDDÔLÐ~6Ù¶JÊ£dSRdÖ6°D$z<Nj#%ó '6ª†óã±Î@Ɣ¤©*Ìҙ-«ür6¨¦´-ªT½^«ë¶ÖßÀ¶3›mLø×9¬v!ꊜà%ˆ	˜»LÏìñC#xuèH„¬ ëîÕ#%µµ—•õs÷áuÿ6#%~uû‰¦H@È TýaÞÿ4ü–çxª9/€{‘™0ƒù3¸p¢#-Î’`_¿šu#-ä@›+!!öãyDÇIA]H=¿_TiÞv#%ZÐÈÚôakáR4…†àĚ²FÆI¬ÁT1'”"lR(܂µePi	µQÁÕZ`A!Hm’(4 –Ý)PL‹( L"NjÂMŽÖZ#.6Ä6µ*¹bÑFÞ¶Vµ½%zW0Ï>EÁDæeð¨Åõi=F®ÕŽîUjqÚ4Š)˜V4dᰎÞ,’×ì#.­j‹Fž›i¡#%ã	hÈTJ°°4,^éB£VE‘@¢5MF%ÍB(ƒ©¦Ãd	Å@Ԥݻrm„ÑÛÁHž:¥vLw>ÿ-W…Ù(YT#-L1@Œ%((#.² CX&½Œú»hØÃò"d¨Ÿq#I/FÈ2‘¨@"#.DŒ—ª#.©ð†pTøÁB ²$#-„(¸’ÑJ€%)!«@Vš¢¼Îü½ô)<CP÷ó9#%ùÿž(‰µãÌù±?T½b×%d‘F—ÂIQbj”8øÊ|Ù¤Ó9k‘É‚9$#ãR&Õdl’Y1À„'ß#M3ÁŒZx8ÞHÌÆ䐊•ÿS.œL£ÆÌŒ/?¶v?¹*´ƒÞÚ<ƒ ŠÑk亴ù(uK÷ÄÉm©Ÿä9o?1¼Û»·چ=CBy"Déž'£`n=5!ˆTó`OžjÐ<¡PYøUTÞsވ&õI~ø¨!I#%žÊ *1Š	d“˜w…6:k%ór0}”Ø:߶âߧª		kn£;iÔ<?³gÚη >LBh±¤Ғ%?M¨ß±MíŽQà€†¡ñCP·æG(Nÿ£©ö“íörûê’/ϙ¥|K`‰Š £å¯%¦[òúÙ ±[ì›ä-ƒ–cN4J€¡éwՌA7œ5ûËÕ2˜xRB­­Æñ¿#.D‡€üQț\ò¨y¤è•á›Ø©7&DoÎÅ-•õBfEhQkLÚ7->4_4>þñWq¿³{sŸ‚ýŸãJ·ë@ø.—oý\L¬ˆ+žùðáÞgG¾›©ü{]4¦™~6ˆïJúEøǺùÍÁ¼åUQƒë‘øÈ¢ãø%슇y§ ýú†?žÃ昁¾ñÏZØ©Hðо@­ÝOÝÖ`Î@` €ÀdksAc.îZ4Ö@K„b±T±/#-ᆚÅð—‘qa0—óM•U„°á‘1)yÉ¥¤Åç¾*›´gbašPõqçќ×7O뗡C„0X·©\ÎÒÁ}` åk,ß'f)2>•4ìŽí‡ß}p–¶Ø)Êjäj¦¯>›GŽÄvwê‰H”ÏÙ2Ÿ_‚~lc.£I¬‚:<¶XÁÈY™†ö¶PÂ&,lvh8sO'â{ÏOY,ÜÑëÑ²q˜¯>#-ݱª”Xã¦HðQ b‡*%Ÿ)d¹l»ˆsÂÎ`iéØù„ò>³à8yh„“ã[³Õ«ÇíuÏÖõy¤»é<}BS›ßÙÕÕ»-ÀJžòÏD"½\³‚Ò`—8ž³µýqÐù©Ö½i áO	"¥öÐ!GðiL×ÌâÏbaOQN ïù^œ7‚Dr9Ú[øð?†‹¸§ÂßÉÉ#.—!„½)Ô¥B›²ìÂZ„[*³AÏwPðÝfÄ#-£#Öõ“©‘ýU¨?È×ÇÓZ‡¨MQQËCZ_]i©HI®|~­l?(ÐpÂHØ¿#¬8VäU¯&¹r¬;¶ž·6™ïç¯T**#Í÷]OB°‹‘:uÑ55IEÑ5_4àåerDßõaϜÓ@ÞÌ«cצü¦wÏmØ÷$d;ï#-&MènmÌñy!‡#-ÁÇ)Ìlç«l%˜Y1^’˜hEWDJ„‰ÒhZ#.…î”ëDàvÄm[Šæ#¥ßn1‡C'á6‹ ƒ²À-¨®ü½)ëe£˜§ã¬¸bc¢fo(ôǁZÝ$Å#-¹Æñ@¼¹U-c÷3f;Q‹­#-¦hÆ˘ç$=Sé°¢ªîzºVÀœ{÷Bo^œz™ÒÞH¶ì#Â;#.ç¯Ø3÷Ö[~ž?y-.½IÀE¡w±š,†L&´’ECÉOؐøƒÐüpù àƒw¸ˆ’H€2RPîÜ^®(m÷ù®p‘ŸY÷Óç|遐ܽ\	ÄæžÓëÇÔ{S²]þãçé8;x‡Žn#.1AÚiÈ`Þ6¶‡°¤!y¬ÛFìžB„3%•#.Ÿs]8I)SÑ{5aa:AGëimş{‘‚¼j(³¬8‡ÀÈd“Â'¹	NŸÐý÷¡ð¶â[o:Ó0i±ÎV30ع×júiÙSÂ3Àôm6-Sz|ãôZLyL(‰;ò(€¶øUgËP‘PaD!HÄv22BŌùšs8îå"ãÈ(rŽÏ|þš‘•4B7”+žT92}5V_·ù>µ:3Þ5ê‹úE1…:DRÑ#.'¢%M%àät'¿vß0d"ƒB…T€0U°¦©Äå†Cß@`ëëÚ0ôþÀ×SµÕ#.ëú¤°m¹ïüóáM³3ñ:fvÅÍMŸ“à<‰ðhzq| Ü_ΦÁ®üŠÔÝÝ#.Ä-ؐ¢_>à;_ê‘ÎÅn€»Â(Gžöˆö”ò‚?ãÏ#.3V…s&?¼Ñ£	Í'šT#%ñ™Øe”ŒÈ%(´¢—BGӝnCpäV”Þ>ü=>ö‡Ò~çOŽ÷³!OõʤU¦Ün(ùŽdGÏWX”Çr}Ÿ²qëÙ#-›\'#-yù÷bP ¥lP³¡IDžü†<іÐ÷&. îñºØawá`}™Käq¢[&ˆHbegaŒ{®7E‘AˆNmXpSÝP‘Œ_£.ŽeÐϕ¬,¨qPßZ	çêÓPpH©,P£k/åKl”kµfÚSJ" 2=ü¸\9N•#%Ŭ[(îæy ր@;°Ìp­9‡éûn¯¦™†ZH4)(E6Rmš™˜šlÉ%6l ”›5)SHR¿ook뾕Zý†¾_|’¡	˜êM†nttÎZ0’‰¶±©”M¦ÎTs†×<EÎ#.1®uÁÂ@#MwUÊ#-;úž#-U½‡˜Õ¦WKŽïÊWy‚Iê‡9S@OÖYö8ˆr69	G%–q,,DÏ|ä?Yë2´›<ÙÅؚÒŪˡ[¡D,ÒÅÔ:‡¬!a‡4C°`óÁÌn4`Áq.-Ýç´è‚$$zx‰FyÄØ·&Æû(¬½C#%:2Âqu¼)è9›y¦ÿyññæâÒðµÉ#Df}vµû3týoz‹Z‡›Â.pŒaûr!×Ïõçn‘ìëPÄYli$ý„ÑY-VÚ*º\ŽV’æºuscWª•à*†°H†RgL#€ÚA•×U%·g%Í×[²]íuÞJ’É%Fƒ%íP(3FBËTÊ!$K›hªÚ"57\¡B\­ì‰SúÔ#¹iShF†¯é˜ÄUb¦mLÛÅ\“\éÍ:–ˆª-õ%CÆøCZ‹ÜÄf¶bH#Z ¬\´¢OupÍ1úZܐµxUdÍŸá7#.ß´ÈB>ΰ돈‡EtT Öƒ»x•üEà¨é#.Ù#-f•…–8¡¢‘Š	ͲSÚÐ6“Íiók±Á²¢Òm4mÆÕë5SÖU˲Š]tîymÝ,ÇnÛÆ«ï@·^ۍ4)jÐÓQ6Aì$+#%ˆ†è&6°p‚dKdj)"‡E„QÀQc-¨¢ŠTA2#-LP@c)²¨™\*­:Xó ɕ˜7#Á$!³q±`˜TˆÊ4ä@ª²°ŽªãiV6Cp#-½e¥©v-J’†e ÂQCrÝUÊcjµcsfÇ©v‰ïWyšµLÛÌXÅAâm’f0Lbó+3è9Sg©²X”š¶íŠ2…\µ\`îJÞ#-j§Âå#Ã!KÀ­F@zÄ^€V™æ¨¤SBCwÏÛnÙ*K"`”0ΐG#7R Æ5¶L¬éTi@jêîÖ±²Ø²°qƒ3v†HSÙ×Z³p-†öÍkÁ¸spŽ9t;¨À‘ê#“kI+†À¤f#-ò2"Ôi8Õ#%b¢Ý#.hc[-Q@Ñ#-±6.é›|KÀɖ(Î#-Œ3ëú³AÏ"Ù݅¢"€ù•‰#-€é#±°Ê!ȋ2êÈe€²ÜÁšf¡”,˜@#Òi€F‰ ™…”Æ‘ÁØ(%:!hÉÖ#ò+†Ž–j1äÌÕg #^†6َ*–Á&„ÆiA4ŠA–¯U^m(ÑîC824ö»DTMôÀ\¹U²²,f½)540 ÑÐCä*5‹M0)ªclWlµ¸Öé:ƒfÙçcÓH爰æÓEÎQ—€ÖšûaìbÊØWW"#.M|ôiØ‹‘:˜Ûl„ô”Cm+žKm¥£± Ü7Í	™SKFîó1Ô5!"¨2iPîïвl	®M•, hQR†â‡#	H˜\cpa@1-ÀcB(i*ŒTPE"¥Á€4ten¥Œ`m€)£b}ŠÒ¼y'L©P?4*Ÿ¾ª%A\Ç*¬J#-±„È~§IPcµ.¹zk›Ï•ó¯ÃhŠ#-j6Ö4-M‰i›%µóµuk綣ñ'³¤åÔ?Jæ¼sU¸9:“Çòo¿H2";JvdÀ$˜@u>¯å3Ê÷¹M@_iŠÑ<h£aò!#.(Ì7˜#%Þ>0VUA0ZMAS¹`Új^Ç°>ˆPÑÔ;Êò¦C¼uÓëg†•Š	©øê~Q(”¸ä—‚i±”Pa‹¼@({M’’£ýÖ*ôíœëb#-®®®šÖöÜu)Ò&ª 3Ô¤+‚jZ«I:†	ë¯<”l[ò`åÎÖrµü¢Yç »Q%ÃsSv[†FÃfðˆâiN¹‡oõ}KAn—»­ÒŽäRbØ·RàG­Úê|î%¥÷`bLï+¶Á(xål»”"Agçk«Fbù–F¼9Ëè@Šà“àá͸ž„Úp:ÄþAþã+¿q&³YԼá‡ࡆŒXC½—2s$¬ýÇb5LF¸ü+«sÛ Öµ5ЌDB"ÁZ¯v~ƒ'^שƒíñf‹Ez¾?[ӎà;£yIÀókÞÍßõxì0m}ƒGh~²S?Žg‹p^I)À®;¼ùcDlšâ¼\"| 2$‘+£èN±2ô#.’º¢u°áŽ¸_5_Ð#%V\r,¢vô¹]©¶ô#%¨«½¾¶n=Yt;ùÏ ,/F’1'8°9m9›òõ®’¯‰]{lЖ¤ŠýuoÌÂ`4-U;F}Ì3§ÜûÏ×NJŽ¬Õ¹iT"pb†›ba#%´)#-™H„»±•† 5ȍ΀)lM^¿–Ý0©9Œ¶MTþA”ª¦t Ëo¹mïçxÇ]nƒi=.Qog5¼`d@™I&"ˆa´XS$-$¦*,oͼZ²c¥Pr·#- ¬#.Ò­#%ÚC`(24¬Ê#üń¢è"1€S0š©†2 a#.4 ÜîBâtÎHO‹}€Ä>/=!æ0¶²4b€,ȄS(¨žVÑR”V¯@—øð9Rí$bnîÛÙUËðÍ<Miâp”+òˆsDöD(@ù‘3ûÁÚ@	ªû§í€RU™N¤L&ùJlš¦)Ùôû{ÍôåqkvibFÄ¡l"hN#-ðø˜å*ðA‘ªƒ!‚©""­¨ªÝV‰m\–#-J×Î׈–l,)0#-Û'#wD€#%ó	 2BÑà!Dhˆš‡M'þ5Póª†Å磑Ãσ#%ùà™"\¢˜b¼ð:ø tĔ¼”TLÁíəyíì6%_­/Îr2z>E	Η™éÚ±{¢#%á}¶©j¿›f[&ZQh£l¦ÊQb‹4“h‰¡fÓ,L¤É3Xֆmª6¶µSSlmš¢©­¢"’#`ÉâÇëº V&1AjP`91 •È“a>¼)pLÆ ò†XFEˆÇH,È#-#.ÃXGq$+DIÆ,n‘d(¥€¼%ÚñÚ)ÞgšÛ²í<•½—¶W¶·[¦¦ÑEk–ÚVÝ)ŒT"×^Eò#% P‘òþÞ·ˆ@™õPKФ)"U(Ù?kŒ0D`…C0ÔB¶ q¸(Zn)QîÈw³Û“Ÿd‘;*yº[üþ†}U¥Ï-RšUêÎF"D#%=¡“o«&P…ƶMõ$'	aD%Å«4›9ô8M¶LP0IX’JÈÈ7ÐÞG[¯iˆõ´¬s“@ñ£s#.T¸Í·q‡„)!Ú ¢ð¤§s¼w‡In¯-.TŒeá셰£QQZˆR®XY]¹éïpXæ}Q3ˆiú•’\g~¬wٛڦ·‹X¡1E!ïýxž†få#%“l†í sä¾pÀî}Λ\OôbdÆ£CòéÍ0²ý~0çÓ¶·ã Ùäí¾¦¿ÚßÏ×Ó7‘ú&Ûgzå=93ŠƒÏK;h6âu&Èë>pFõÕÜ۞—\•³¦N4¸Ð8•Ä$[K!0‚".&i:]IÒ[o;uGrot#¾fSý®Ô·@ôžQ‘~¿šnxÉ[„p‡'7k‘p éM;\Á`ˆ"°Ñ;‚Pb’Ò1´Dyù;F]η!Ù».ɟº%#%èÅÄ*çyoÅk9×TM0T1a¯i9éƒ&[cŒbÝ7v}o\,33n'b¥:3ƒë]iðJÞSÎË…Ԧb;L.ۛ¾tØ²†‰Ê„Ç(™Œfîܟîz3Û@¡ñŸ&ãFè”ènÚv¢@×Cšò|5ÚÆ0DzÑnr8öýѵWŽä¾[† BÞ^w'@Tüe¥ørfœ¨Ô®¹¡0ÑC3Øñ-Ueاm#Àj·oRÀh€ÃÓNjò„»ÆÑFDÁ$}R))X¸ŠȲ_…(qŠ–¼ÒQ]½ß·ÔÅ/doE[Êðz»l„“ø؝,QÜ^“#.dwÉ£š…ñuØ™gôÉ®=ډ>­‡µ:¶:%'ŸO§B´›iãºMŽ9~ÊUØý®WÔݍrVüÀú#-oG·sÒʧLðŒÇR1=UIÕÇX¸‡~ð:ëéFó|(èc¶–"¢²T–éxëï秫ãOäô›„F°L¤ó½Ët‡Õ›ÓZ®]ƒƒfdã56þUÜ­£Œb5)ÙWû|°Œê©™Á0’c„FÈo”ïRÝ`Ê#.ÉÇ¿Çf1³Ž!—áo0@éǘ!ӜJ°ƒšÌáY¿åD‡-°›~Å!áá↪™Œ³†·;Á ”áŒn‰A-»¡1	¢]C	™C捚Á‰#.Óº|3¬t<)uɹ:ќhÄq£ÄÓµ…A؎8¾™ÿ'­lî5&Ý7#¨òK̒±#.&6àÒÎk®Æú\Iу´îŒ˜‹£]¦wÆ£<[—C@×Ü-—ãº=ÍRÉp_±hvÝ°=›wƒ¹ÁÇBoÒû`ÓÞÒíØñëēÙÛÝËsµý׶ò`“¼¿.îHñíֈõU‘úÇTAވÙvX󹗏oÛ#*“NÃõM¸Ül9ÈþmàŠgµx!F8^=¢…Ñ7ˆ3*iëJ®Ño¿¤Ï!®‡]\µéÅÌDŽ×Yöÿ#%6ÊÑäƒ)ˆL»4┌§ ÆA\Zu ”u<ð–0צUƒÔ²,‹hC#-xÃGŒÑÆHQG®’9#n¹	܎ɵ¶šƈÂ(̊{Ž3X<„‡¬ÏRCc%ÆÝoQgviÈpG›U1½#%ÐÔ±ƒÅIqÄ tb%L‰+¹Åƒnæ25î7fkŽ<Ù|ö§õDƒmd*Èñdšˆý•)˜ÜÃ3g;±œ!ú®å88Ï,AçÔ¾$Í㧆MLï|±)Xøi{%#DÞÔêu©±–dDsJ+£ÊáßÍ!šS‘Š^;IHX°êäBÜó ¤Í##.P‘oëõ̀Ž. d;C=„H”Ã@o¸˜ã—ÊxvØ=wm–5n¼09$凹f€ÅðôÃaô×w¨”´É ፙ2–YIÖà±½ZJNº#.sUj\,‚H" ‚‘–ó„ÈÕÛsã]—Ýٖšaiåß©ØR´K<²Ȥ掼ŒgÂ#.øy€hH8HK#² =Öm½ðݛYEYñ­p¨iaÌ#-٘t9Gn´jXúíXÕ¨L ôÅ#.™!±ÕT Z7]U¡…Ïܖ6˚ʹªÄ´BY»©Æ1QMf'd {Ù>dlòf̃|ã>3:®ù[6j6ÌgN*ñPä®1Ю+²!.»æz#Jp>îæ2„ý­D¼C&tÛÏAë‚ûïÞ#-¦ ÂTýß…Ãag´Ñ:LT–h™n×ä4¦å„äxÚö~†ÿ-N_œ%Ž'I‡#èå_1ž´ |PxCËâXî·\OVm¶óãÉ¢áÌ-ꦶ–S½#0Ȩ„yFK\œ],fÞ(ÀI«RÍÇN%/]ÙËÃùnSÎe¡«‡göïQ| MC·`…ë5Òq¸cNŽÑöÝ퓜9„8™Ó4g¢Ì²bò}p:S«ˆl˜ÉW:hèïsÞõ+³mÁëãÏ|uÇ(l—קpëÁž”ìaµRêyÏFÉ'dÚÃvÆëbË74D.*m>éè ßô³W{+Ž,ñËôGˆ}uÌ$’|mß4µD4¼»'Çc÷÷ó‘=G§YË˧ãânéÈÙ­	#-n¾äzÏ@3óÜݙ¢šDêYÔ=V{ç•wÃT#.KB˜[)<8¢†þéZ¦¦i©™Ä»UÒIí,¼¹à#›J2‰F	),bhc0g	ÁU8îCˆ)#.¯CÐÓeh­aô#Ö핺õ;÷4zr~glÉqà˙yÞd“¯hfú˜±㢾¬»h>´€ðëȤƒÏ0ôÁi†œK–˜X³lfq:ÐÃ;\=ÎË	Ó¡¦4:Íö-Á*Dc8í=J­ì.죕÷bc0Àwˆ.Qè"y@1/¼*À*DMâô¥P›a$ÝÊM—y‡î/°Ä,`ù!!Š£")œßÔFú±¦Çg#­”#-ª>`×éúwú#ðø·É«ZÇðÙ©xß½œ‡ ï¿~)æ5¦¢ù™â å̤øÐe–ÝäeHfõM¥³%’Ž®‹-‹ëð‰ÚŸ³tM\@¼:Pðõ‡­{K`ä†g´,0£Lý@t§JlóÁÔ:£ÓÙ.nøʧH1"±ƒu} ¨+L3Õ©˜<¸&EÊdi’¬[&d´ªD¦4ö*î³·mÞº¼Þ·oMh Ö5Êç6¹Z=.ºx*óVôµ±‹kóµ¹k2-[zk•F¨°"MóI=@Ú+Hùˆ‹0E¨Š*Š2( =‰³¾ùËƾGú.†%#%:šCÕ8·L±»m—Ñ"ˆxi-¦’>¦Ç‹xµÓ\Ýån²´Ûa(¡"H­0TJr‰–ä[êââÆ[H®»?3_]Ö<rÙ!ÃJPüæ‘	ûì¬ëÇ^TbÁòÜ4܄ˆú:7ý?ÂQ³KdŠÎS)ôš]I£¾cU#.2RDØƓ\<­wcP¥/>6¼š	H(á"¤ŒŠ5\Lªh\¾\iêá™Åm"T'†+¶ÁÍQmSd-T`²ÕLz†±&0dUC•›ÌWË6ΞºÕ1ÃR‘Wc;Öú̕ζ֣½…‹h°l´ª†—(‰ª–ŒÉe¨r6YC»z½j‡“Šc˘G!\¬$-Ǘƒxs#ƒÅÁÐåڛ[‘¨ˆ3fCm®u†µ:›Ä›‘77»L‘¶ÔM¢”­X˜HXK.åºÕÌàËԑ$uËN³€±ó(œRm@l0ÂÂS¶à”Øj #-±¦.’#-”5 cí»µjH‰5\½ŒL8Y®#-\KujうK³[2™u*M¬m¥¢&ôùŠ×4)vÔ­°»jm¶ôi¦€ªh˜RCCÆ,éVæ©¢=¡¦¶v©¶A¶°”#-)TTT*ÃÞ Òi¦ÆŒmæ¢Ì!„ËÏKG.äF20f1p2P¬â«I©ƒ«hiºHd=Ži»…lÂZ¶R	JÜ#-ÁãZÏúÎ,¹¸,6ó‘q¦"*Úao÷òÁ͹#cšŽáÔÒEã.â'#.–ân̺ÓR‘\âèBÐJQ•KML*PÊ-5¸Xa”‡SR´¨Ä±šhسz;æ˜ìŒä¤ðÖVÁÍZáèÍǤQ¤õÈôºèÐëd»,mJ8UUMªFf'øõEŽ V§*¼¹¸¨¾P¬DŒ÷"×{UqNé±S¿x¸8 >¤·´äxÐ{šÛ­†¶ôalÊS†iÔØBø&Ú0¸»#.ՙR4ÎÎá!’²›#-¦é&˜TDIX6EXbaFñ—D+ÓÆ´ˆ´‡À*b(×MZ·Þ(CØÌZ6!ðɵ »D“C˜,îª0᫕ÇØ@!ècíô}püŠ Á"¬!KØ«£c6¿@Ûàt2S É #M>ryÁô©E*šJRIùõš‡BTï”xÓ@}† œ©ÙTò©ÞkYp#-3)‰iv!È ÂEUTd£$=Þ¢§½%}ƚðl™zcôºpU¬ìZ¦/„Ûw	î'¹ª|@D4úûƒt$î%¢‰r¯ªròéЁà¾<0¶òڷۚ׽˜B2-Q…"jZw÷ùæzöÅJ;]¼ï3xééàz»‘¦î“»¸’¨­TÃxõkŒi]tk#.‹)j¥F¬k<ƒ3ш¶y½Üg^†Ruí=©ïF«äwœ@ӡÝJr#.‚8M¬Ëe5PF{®êýGOÛž„“´zøHy‰í…@-#%žJ¡Ò¨¸^¡#x•$X@#%@c–µ^M·*«›Æµ^eEH#%óM_ªa<â½Sòž=~2gºŒT¬¨ÙI­h­(Ô!B’ÊL-©›YfԛSM‹jÆÍ)6ĖLY“&4²Ø¥)¤Ô4Ò¥"† ¥h-d£cM’”Ñf¦”°T‹&X˜i‰f„¤a#%FFDý…úϽƒsØ𭣁}mƒÝÊv3–ãî›ÕÕ#-·4»z£ò{“Sf©¿¼EÏr9™‡Í7‚w§¢#%î‚ޝ@÷áv_ÀhI$lüL½‰fæ3šE Î3 ›“@\x÷$HLÌ¿aÌâWqß¿Œ;hÃM“ÝÎKñ5eïâ{<¼4PfΣ‚ušÃ°‰&‘»pòC?V­~+åÔÑMh›|™™	ΒÓoÅæ’(2(H	"$'(#%ܶEaIÄkIšú§bH+„Œ@e‘ô%°.{ƒH>4“4OɈˆÉó€ÕaõÒf;mß̸jDÔLˆÁdÇï7¡ÏèeÑ¢°j&rÊÎb£(èËEóv9Iˆ‘³cxé¤XŹ›¨eÙ&#	„2ÈC#%Ò8Åa’RB,"‚«=­M*´Jb¨e†¢`£ÍDÒcXù¤K_\0hƇ­ª±Õbb¬´ïzJT–4ƒˆQđÈȬH¤çÃâ~£Z~nY,?s	ŋxˆ9f11¨	"Ìë"v6#%ØÂTbÄcB”¥ƒ=VCY‰‹Ž¬‰íè3Á—R4FÜdW×#-‹z"%ÙÂ7‡$ºmn	¡Š‘µòhm”#.¶,ECHÃHö²þ‚ª³0!ç˯š÷Àí$¶Á)EHŠÏOY`| yϪ²‡Þe·è.xdÞÄ7©bsïÓ¡©?c¢Ìî	öÊ=2€Ú>:„+CóeTўÊ0\5TÓ}H{èP”­Y‚0Ï¥I.åò#.:˜ñev½¢0¸EQˆiéÐ~DŽªôn7RŠTQn­ß‹¬üü³å^W®†¥HFß<=ƒöùÔÔgŠú]ø#.i4°u>,ˆÐ‘»†#%ð0³žGc'Ô}Ðt”~À°§ÌérWJñÆìc²*¸5Ï`¹Á¬#.ˆ¤šÀ(ÐTs²ë^*ó´äihAô¿]ƒX>`á郴µô'Á9ÞQ¿Ãð©"„iïÉ£Êz…‚X{MJMw|½s5¬&™"k£^~€¹—sBFQÚc ßè1Gœ˜ûàL¾sÒ=ۏ¢€@;gªt¢ƒFF^z±5»)5ò<ˆQ_±ºk4#-õPòҌŒŸ~ÿ©§ª*¦Q;ú›ÛÕ#%A‘@X ÆóõRöÕ(´bñü³ÐlM4¸$#%øÊF¬…ý|-¼á‘#.Ÿ>toàÍ.†âޚ,1CA$EZ¯`08"äýYMÓº»ŽÐ½ÎèæÜz‰$wàÌ{ª©÷§º±OàÅÅkxLé•ã­¯èn§­»£"m:`pf±Ö«Y¸°mG¶mÞa8Ô£1ú׌F6×6þ¹5Á¾îQ&$IK-˜‰6T(¨U‹Šœ}¦nÞ6̵ÔÝ.ÃUAÌqBŒ¨Dûà³"d‰:Ù¶§í–•¡haý¥*Ù,˜ˆ5­éÎç©«(™l¾X2.øc	vB!#º8!!dB°X´@ÖTfm*¡ ¶ÖŒ¨Æ—ÁXµ"a™rà5-{â:ô³r#-­™‰A3‚–eÒôcZ›÷˜.ñÜBŒáÂ_e#.eÑ0ç#%o}.Ž,J#.Ûv€–¨³D¤€èQ¼ð>ã#-Â$€\HQ1ÅPƐ·!Ê4í#ÓÅ£šµ°H¤-Ø+*5zB”€b›T #-ôsæa×#cLM´˜›ªsס£#-ä#-g%,44!²Ù¶ #-œmf³Uƒi.¶›I êå™Fµ8¯êóò}q²Ègn—Ín¹äD¬4Ò¬UjYìî‹a-“—3õÿ½¿EÇ0ޞtrWª‘·\#%›®]º^Ðb­ñ~šÜ9à¦b\SmÚt…!»n‚]±†·°X&éûìJ°F͋Š4WI1ò9CÓB˜²]bK‚Ȫ„™J…£S2¤%\ªu.é+Ÿ*¢°éðêcÊ^ŸîÃJj—8ޏMîÌ®;`Æ1ÉÖòÎX%ïN[ ”'éˆC;¡².6d›3Õ¨CNT„8ç²+°`Æu»Û0´±“*)ž ft‡´ÚT!©0DåÎeÑ#.D`Z™!†u–Àiˆò=Á‹NƱ‘ Ú#-#-NˤATL:R¨É9Ðg‹ñë;WÁ®Ý'DÄ>Á’vÚÍÍjœÈ£+cNSâ‰kО]ØE#-¸údÝ8”Õ¸ªMŒÃ>‡%²H­D¥o#.Ùå]#.¦6«QAF@Û®6¿ž#.±ëÎJºыJº—%ñ×1²Ïg¬½	Ó%tlä)g(XW»”í؝r×k+”·}ɌÈ@lÓOÜM枣SIaÜITA³é…M-ÝF3#-ÊKjNl‡œŠ~¤b#.@NœÂžŽ\N+R]Xùq/6Es. r”ϪddÉà>nŠ<°ì±e=™Ç•òk¦¹;KŽç€Øé4„§À¥FÑ»1!ºl‡í|ÙÁð%ÚÖYš#¤ë",`æ“®f“ÉÏI‘¥Ù†3±Ž‰ôLsñØ®ÇÄ÷ÀÃ#--V',ÔØ4€ (wG¬ƒ®†a‚ŠcbÙé¦ÐÎÒMV"’„*2EƒÁ2pÔçñű£sŠ0…€tÌf$1hV è¡"„9ôáSc–y£iæ[̲%ÊÊ9@ckq¦•ŠÉàu;}]Û4֍kh—	·†7a‡"R˜l¬lšUWXh"ÉzmnU±j&a´:#%anÐêÁ”l‹?+ýÿcL[g)›"‡)¬EÄ·åö¼{m¿ÌðÐRB	0’uMWÀïæeÚ^¡†¾;«HåŦ¶ÈՋwO’šª®rü†j—©F’Ž6¬¯øƒ	fpìÖ\ ܱ;ØE5¶ò͕§X´ã	ƒäx8?«Œ£KlƒDibÜJR, qqLÒ|ÄJk·jdÑðt8	ètÍD[oå"ìùL^QO‘`!Þ÷PgmՋ[ôÑÂÞ̽j"±d(ÁŽ4†ÑZ.ÝMl×maÙ,ÆΛҡ³{£šE>¹ƒ e‚lá†Û£¹2;‚iR±‰|ÃU»”Ì•_RB2ëÌt“	¨Ã³Ba	µÀøó7beB´$p¥Èíhh]	MSÂ*º»¸»±ö½ðˆì†(|i4#-l™'BÄ ÌnEñd±¹Z:“¥û¯#ºq€n0fßjh(Õ¤A#.D1uM¼è(ÃIWJº“SÂM}œtÖêø¡¢v#.לš!²7f•qÙ¶i<"35’^ì4D] ÐÉ-gNš&·[% 0† fLMÌ"ª ÇQªdÉ5ÜäÍ&ˆ"«S`aFD‰T²×V“Ò6ê-ymuÅÚmï×Ö©”ê	v£(ТFÔS¢#-hvd2›Ðè(Bäf‚¡#-ÜZ…Bª¡#.ªs5Kƒœ1ڔ‘R	s`ÄÈÔºîhª‰PLÒAÈØB㡤DÑÈdH©`C½#.líÔoi#-¦¥9Á#.¢•ÜlA)‘¹’X,Án\¸pPàˆƒUêOW¯~“îϺÊ]„*Ša$Îüæ»Ôv&üüýrzÆÁž=ÜȪì#-QF! ¦Á**/2+öpþßFÛaT<Ž³¢^¼ª¹T-Ù3È1ß£¸«Ýt_N˜Úè;mcüåà1rJo)¬§¼égiJdVù%´v…ß\Ü&ÞÝÏXї#-õPL8¢tõ7³¾5“Ür±E(¡¬ðÛ¨†ƒStSª¬µ?!#%åî¢Ò"ôH™žÊ°žTR#.C›cÞÎt5и~-Í0v.ŽAu)ŽÈʔ	¿Ɂ5IÀM‘Uª}bfb·ð ³¡T"V(òà·¢;›K“žã®9'ëkJèGwx)ãKG„ց	eB-û ¡51¾Ù.X†–I{¬“±K¦Y„Óë	Úï3dEMÝa›3Rҋ‘:ÄSú/­}~#.*E}”eÈùˆ'AÇäg3µÛÔ=ÐQ,¤ûb”.ã!žóð×@ð#%û²v*¡ðJˆiŽ#.lƒ$!‡OaÝ*	߉¼1˜Ñ‹0¥‘cB©bS£}&¯4‘“#-]kÎ𗛻#-#-ãi1±ä!	c%È𠐢ŒA¨4Ê ‚#%Ș„¨´ FÁûªŒ=ÐõM‚»!ºSÓJ3›Þox[Í%¡0ÑÀ,ÙI0aÂ>]¡ÙڞÎïžé—ß®ÍÀÒ ª#.žh{6|XÆ~s5+œ#-?†tJª8Ä©H¥¹˜ÆZŠ*Ð]ƒ@å2¼÷ÅòØTͯž&e’º¹	AÀ =!6‰ÞwuÒ0â¨6÷OD^g´¨«G\scšQqç‰ü¼r´Ç|4zûÊÉ(>Áaà‡ziáåÅa¿a tôX¶i'¯)Lªå³#%¬bÎ×è†g¼…7]7?)©Ø©ÙÇlT#.‡B‚[£;ž bD©H£ÙÍS…ïóJO³ãX.e»2›º^È{ጃj1¶“Kâp]®4rn5¹Ù÷|ôT_\@=°FÈ!T	e¶Rß©KdµIµ'»k–‘ȀŠ–‚˜ÀÒ( h@A7¥€Ő.	!ˆˆ‘É‚$H‹¸õPž¬±#-´!ÙF3'ùòQ_xª¶vO~•âutQU(Ӄ¶-,É¢#TP›káçÃíü~Œ™¨3ßLãÒc1OÌ)¬ˆ,€Œ$ÀÍ_Œ»G¿vNÍ‘+|FkY¸éb0»FŽñµŒÍhoÔš¤4!O80Üß*Mªœ¤B+.@ˆ°v¡§gtªë^6®h«¤¹µՔQ#0J!,Ъ2(.ƒ]5,5Ú H4:mµc#%A‚#%¤#-·2,Å4¬­_r‚{:;G :ܨ¢0¯×BóýÇÞã½à©‹ÙØtB·ÂË¥i.— IžÃbýÙÒÙ;MWiLʁ‰‰'W]ö†]ð…hv!ø8¼¿8ò÷½m|ìŠæÛdžým4ÄÌi"]aXh/\ž<:C²	™3³\¢#%L€Š±Ê@ÑfLâ;¾9×*’Tpº#-ʱÂZxsÁKNAxµ§ƒ³‰-¯Q¶è9êÚ6ÝÈG$¸åãfvG»³ĜŽ‘µC¯ãI¢ù¡_[ˆ©‡jY#-½‰µn¦OaPØkÚX€Þ	!AÍ4Djªƒï„&»É{¢eø4|séO ó¨'kïÞŠzTÈ<-”"F	,ÔÊS-‚#-IC-mdf¡•#-6¥ûMÖ鮖MZã:n†å®ÔÚá¯#.ÖððĘm©™®f`/8hKyyiÀr¶ÚÚ#%xž 8õëë\üâAÃÇwNËd	º	"(ø‘²dtÁïçÖ[|z´À`{½ØD#%ê#%‘9»ú÷Š§‰çíéÝ­OŽ÷î5#.Æg»çY¦m3#.•uF ñ\}Ž{±aF-?!ø–(„ŽmÈÞ¦ÌNè"‚i¢1X=Hñ&Qd;î%Ã…ÄÓJô•£¯ê–ÐJm˜Êúk…[¸;q®L-;>‡M#%•Ár v³ŒµÌ8}̍4Û¤NÂq3žï¦ÙQ®›šåBȀ’,‚KMK#.oMH×Ó¼	Ðñöâ0ûU#%+@&º”MB¨œ3T¦jT0ÛÖiíµ†£‚Àe¾ê¯Ø&îJJ†RS,ü,#-¢j9J¤2:zú¤¥G¬ëmڒºú#%¤È[⠗TüÀ+z3åÓñœoí!ãÑ×Å3Ös:‚i™ìN#%ø‘ @T0ª¢DWq×®XO˜ð£Dù¼åµÖr:x¶U	JcTᛢ™D¯ŸO(vîÁ#[¢š˜˜ðöxl=õÅ8V)RŸÊ¹Âéó¢‚p.`fLuÅ¿´ý¥áXvöù¶[Ӕ*¥H Îy™”„U.¿q›?¿¬ïáø"æö¥Ÿ/Vö†¸e–²gâïPkL;0“¿®‹tÞ%½ÇöÒѹÍ|ŠûJ¨xƒzTøÀÚENÿŽ×`»`‰ÙË絶W—ÜÆÅy×1#X¶C" îåõyÍå-…a1#.ò–…Ë@h#-‰4–Ä-^µÛ°…¼£%£j)˜ÆÌ©¶™µ®ÉµûÚ»k©EAí?BE6„TL¬›¶ü¾ct<|ÒA€AöÃæ0aøXx’j#‡ÐkôÜ/›Öñó3ÌYA@BDR$#¦&ׯÏ}µµ{þ(Ú%J“$–,›X,Ó%³I-_—ø±±}u_Ü¥"‹ÆʋcI¨ÚRšZ×ä­þ^ï!½é¯Ümªä&Ÿd”µ×í Ü!p|ä[o€;ʯ»2ázÕ×:ȕTf¬Ûª–™ëÎòаˆe#%€„^P5ÌA*ÿNEžÑw7/7ä$ÕÌIoàbºÚöø›˜éôXffID6¢ŸfË°´B˜2ö"Ä€@‰­Ç‚9N@¦yÌ)"z0>ûÑ_Ãe£@£M¶.î?£ÇTøL5Šƒ­—DŒ`7'ïփ„:"å	ŲunÁ۞YÆ·“Ò)Àäˆz#.d(t'­hŠ­#%(U#.4MÔݳZ’®%U*Ѳ›*¡­%P  @ÁÀ¾\ú{8f8Hª&ÏñW€E…`6.%%SGŠ,	ò¢PCžœzœÏ?¥OKÖ$í¿K¿QIrÓm1àìèжufå¥#b•ì°T͘AÙ•6Ôñ%!7f鶔3Ù-L•þ,xx5ÏóԆ§#.6a~Ã`\,~#.úoÑýõo÷6Úº¿=¯Íó:0Y”XV)£F¢ƒcV2mQ­öµ¿W‰aEm*~k?%#-BÂŁøÀXÂTŒL˜ÑåE4M9xì±*…ÃvÑO9ß>ˆáwm…£¾î‚@ýÀBAP,! !“jR°&ÔÙF¶5­ ’ñ6¾]¹›jÎÔ*©D¦<~³3ë-#%_cÛ_ˆB2Fð*[ £®ôsIªpøQ”ŸUxž»²î…”Â’jÉxŖ`»b€ÉB°y¡ÉÁ%%#%ãý‹’L0’)7DH‘»J‹S¶×ÏΪÞ56bfV·ë=5u½8§ó«!Á!l“°›´A8yԚ‡2N*b\™ÛøMi6ƛm3h8ˆ€Y	Oß¡Aõ£7’êRPP®%Li¾pCtÔ©ː´±XuIDdPˆ,@¸Q‚ïÉ®RÑ»»¥zkÍæÝi–-Ù©™•]ζšTÛ(më»\悄@@`(,‹	uRX°º=U箯O<»²æ”‚6”[e6¥4ËfZé·nêÜår‚#.!9Ê!jê¡ÄðC¼Ó{…ÂÑ]ŸÌnÏöaWf2ŽýÏ\ÊPØ£Ž¸.0­CÇ$G` Û¿pí;¸#-öÅÚEôø~cåù‹O=#-R”qt/èô½YÚ.0Sc4Z1…>ʬ3íŸA#.)†#-/M:p0™G÷\	8ê©G8Ȥôò)80z³$©$¾Â6‡óŠÎßÊ%Õ+0œO3‡-¡>ɤÄârAàPŒ¶PÒvA׳n¶UW¶#-ÞÍr|`-JŠTp½&M¤^¨j‡•%YŽÅqÐYfa=òìŽÄH†<&õk¹“·¢Š‰Z£ñd\”+œE³˜5á——Á‘pÏ#%äJôÌ#-Žbv	ª«™¡°5ԗ(ùoÕ2æ–2ç6y§Àfâé²ØH0½+‚ñ-.EÉbQ$2	H\‘ûyž;=	•òþLQzʊÁ9‘ð” ”B—sKÛ@þÎxÀ¡Œ«÷lå!H©3´1¹°÷ŸH½áGÈèš7þꤖ#S4{ÿ‡<ÎÉ@g­Ù["Y˜R4?²•[î4^1FÛ±~¨îîWÒ­gF–8“ŠT'Le·3ƒXšñƒPn†ÙžµmÑߪª&A‘¦l,¥“Sö#µÛd5ù°l0ÏÀ$P5LÀØY3Ë¡:O±ÆW#3§€Ï¥‡1»Ç,xCÈ¿jce™	Ӌ~HœA™ÎäH‘¨áÝ©¦&¹¨gb,§á§¿®#-FéÔ?]‡#.OÙ²a@ü3öä7M%jS,P»Ð:òdéúōÕÞb^ª*„´«–ënwËx*‡³».í›=WÓMpªۘ@Sw«f–±1ùâ.ø iŸîÿçÿOÇýŸ?ýŸû¿×ÿ_ù?üÿ¿ý߇þ¾_ó[þßþß÷qÿgýéÓþ?7ûþ'ûþßßÿü¾[:¿úÿôþŸöôÿ³ýßÓþÏú¾ï×þïúÿáÿýÿ¯ýŸö·þï£ýßÿ¿Ûÿ'ü¿÷ÿ¿ÿ—ÿø£ÿ§ü=¿Ó?íþ¯úÿ?§ú¯ü5@ÿOî6ô¼ýÙ¨i4?´!²	¢jÕÃûÓ3ý4	½ Y‚4ýuýÏüH¨M‘ÌHBDMʼnêèé{ÿGÏÝ2d&S/®×ὴІèŒ[XM!ÎôU	Æ;h¡ÝqârB¦¢œ#%1|ïߋù¿ž!€‘ïúœ4ܟÞ&|CZâƒÔþ–BY¡fèëƤäˆi¤5è#-ËÖӝs)ÜNàcšž?Öp¢xMy~GKþiÿVcìîðð/õâiQ`öLROÝ¡/	ñŠ‚Å èi$$€G;{°þ¶jŽ#-À:^Ý}ùè×<5ÆaZc„PÆ£:•f¥ÅØ÷Y\˜Òmz´±¶5­MƒiY+¼ÌLa†ÏãÁ­B,â]®™Æ˜”1ê$UŠ»úÌîà´Ê±i'Ð{Zd2˜ãTš¦Y»-Ñě’ðåâ¢0³ˆNkFõ´ÀÓ:öÇ&¶·oF1n¬×¶]#-ð×kŒæI璩¥ÐƄÆVB•Ž £’ÔtÌå7ûĸÄô~ˆ\±ì½³.ÊbW)Ñ‹ÇÂfæ5b#-d=ÖåtM´aˆÇƌV:·…ÔFIkØw3¬|2Šc#%@öÃòŸ&õoø`¾ªŒ@|Ѳõí׶63©y²ý¹q䨎¹#‚ƒ¿lša(Õql˜(À&óúz½{Ÿ#-¸bf²¢®ÉµÈ?ŸŸNŸ«N+SñÒ`x±3Dc¢C#-UH,§¶qÝqNÝÛ€ºFÈHț7;åÃ$â;V*#%÷«")é[¢ÍÉ@Œ$!1Ô2âï¡ßšå,€æ$ŒKz>Ϥı34ÿà¼¬nü}»6æÀ39l¤GvZ'"$"’¤"ÓBT,F­&JÖKRmI%˜¨Å7Æä#.#%SŒT±#%K¾àös‚Yýä’`î¢Ë*Ó±ç(PA0Å=Èȁ£p•)X#.߂¨|ÇʺaÿžF2H'è'¤ì£c͏#àœ?bºsY˜‡ŒùøFx~éÛ#-šz¶÷eL3ÆtÛ®ãD±œ9üõ–ëÇÁ	JÍÐkVåoešÝ]½k5ì#-pl!PaÛx/'öÏçv÷ìÈ/¼ªéE!e`ofL¤ÄaÓuőŒŠ)’R|¨°hZÚn“j.ùsg+|‹a·÷øì{(Öl¶’^6+]«*"F8‹Î)¾)­ËÏ:Æ¢®ZôÖñjXlbҕµã}mâԖ6ŨÄHX, HN݁˜Ó&7€Ó-`ÜMßò/ÐЋ™Ÿý4‡à\x‘’@hv—w3wUŽ¡³`B™R+‚}˜ÿïŸAGTxJ®|Ù*s#.`ÃåÿÈýWæ4Cu’B@œG̺ßù^㼇–oFôs}|„äBëÿp0#.à!Å>F£ÿ<$@`DSkµÇ\Ô”!!B©	mH×#-®Úºjù?ˆ¡²™¯o#%Ê ’@€>ß_¿#Ãèÿï҂v¡¯(SÃ|£Ýê™eÄÃm¶´ü#Áëº%à:Ê%gÌRx}‰þ¥Q	;>Ø»&EÌÏ<T$CÿÇJÕê4þÞ¹ËÿQUèüÿûs$%?a-#%•<?á#=çþ-·òVé-ðsÿ‰aYÿËʎÿýt5zŸêõýËW6¦«¯.(èZëåõҏG¦'Ä>tèP-õû=<Mé|Ô·œÎñ´óóÿ÷*oÚáìMZ(@…ò¦kÓ†i!ϔ±3$ÝÚ¦SÿåéS9:3”\xÖÛµËÚQ·Äº Î5Úÿê¡m6¨@›·ùó„ÿ3&¦£¥vñ‰’©œ|µ\p嚈wÀ8!ìù蜻l@Î&2²S˜?“™Â7¬µ‰g~1FÛb€µÜñòç†`Ea’„lºAóC‹ÚэЋ„}07õÀƒ>Û©)Öd7#.O«¯üÎH›jocº:{žö¤’1„žÏùó¶oÚ~S#wêýj*ÿrE8PZ˜"ñ
+#<==
diff --git a/wscript b/wscript
new file mode 100644
index 0000000..31e5c0e
--- /dev/null
+++ b/wscript
@@ -0,0 +1,207 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+"""
+Copyright (c) 2014,  Regents of the University of California
+
+This file is part of NSL (NDN Signature Logger).
+See AUTHORS.md for complete list of NSL authors and contributors.
+
+NSL is free software: you can redistribute it and/or modify it under the terms
+of the GNU General Public License as published by the Free Software Foundation,
+either version 3 of the License, or (at your option) any later version.
+
+NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+NSL, e.g., in COPYING.md file.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
+from waflib import Logs, Utils, Context
+import os
+
+VERSION = "0.1.0"
+APPNAME = "nsl"
+
+def options(opt):
+    opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
+    opt.load(['default-compiler-flags', 'boost', 'cryptopp',
+              'sqlite3', 'doxygen', 'sphinx_build'],
+             tooldir=['.waf-tools'])
+
+    opt = opt.add_option_group('NSL Options')
+
+    opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
+                   help='''build unit tests''')
+
+    opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
+                   help='''Do not build tools''')
+
+    opt.add_option('--without-sqlite-locking', action='store_false', default=True,
+                   dest='with_sqlite_locking',
+                   help='''Disable filesystem locking in sqlite3 database '''
+                        '''(use unix-dot locking mechanism instead). '''
+                        '''This option may be necessary if home directory is hosted on NFS.''')
+
+def configure(conf):
+    conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
+               'default-compiler-flags', 'boost', 'cryptopp',
+               'sqlite3', 'doxygen', 'sphinx_build'])
+
+    conf.env['WITH_TESTS'] = conf.options.with_tests
+    conf.env['WITH_TOOLS'] = conf.options.with_tools
+
+    conf.find_program('sh', var='SH', mandatory=True)
+
+    conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD',
+                   mandatory=False)
+    conf.check_sqlite3(mandatory=True)
+    conf.check_cryptopp(mandatory=True, use='PTHREAD')
+
+    conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
+                   uselib_store='NDN_CXX', mandatory=True)
+
+    USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
+                       'program_options', 'chrono']
+    if conf.env['WITH_TESTS']:
+        USED_BOOST_LIBS += ['unit_test_framework']
+        conf.define('HAVE_TESTS', 1)
+
+    conf.check_boost(lib=USED_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
+
+    if not conf.options.with_sqlite_locking:
+        conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
+
+    conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nsl.conf' % conf.env['SYSCONFDIR'])
+
+    conf.write_config_header('config.hpp')
+
+def build(bld):
+    version(bld)
+
+    bld(features="subst",
+        name='version',
+        source='version.hpp.in',
+        target='version.hpp',
+        install_path=None,
+        VERSION_STRING=VERSION_BASE,
+        VERSION_BUILD=VERSION,
+        VERSION=int(VERSION_SPLIT[0]) * 1000000 +
+                int(VERSION_SPLIT[1]) * 1000 +
+                int(VERSION_SPLIT[2]),
+        VERSION_MAJOR=VERSION_SPLIT[0],
+        VERSION_MINOR=VERSION_SPLIT[1],
+        VERSION_PATCH=VERSION_SPLIT[2],
+        )
+
+    core = bld(
+        target='core-objects',
+        name='core-objects',
+        features='cxx',
+        source=bld.path.ant_glob(['core/**/*.cpp']),
+        use='version BOOST NDN_CXX CRYPTOPP SQLITE3',
+        includes='. core',
+        export_includes='. core',
+        headers='common.hpp',
+        )
+
+    logger_objects = bld(
+        target='daemon-objects',
+        name='daemon-objects',
+        features='cxx',
+        source=bld.path.ant_glob(['daemon/**/*.cpp'],
+                                 excl=['daemon/main.cpp']),
+        use='core-objects',
+        includes='daemon',
+        export_includes='daemon',
+        )
+
+    bld(target='bin/nsl',
+        features='cxx cxxprogram',
+        source='daemon/main.cpp',
+        use='daemon-objects',
+        )
+
+    if bld.env['WITH_TESTS']:
+        bld.recurse('tests')
+
+    if bld.env['WITH_TOOLS']:
+        bld.recurse("tools")
+
+    bld(features="subst",
+        source='nsl.conf.sample.in',
+        target='nsl.conf.sample',
+        install_path="${SYSCONFDIR}/ndn",
+        )
+
+    if bld.env['SPHINX_BUILD']:
+        bld(features="sphinx",
+            builder="man",
+            outdir="docs/manpages",
+            config="docs/conf.py",
+            source=bld.path.ant_glob('docs/manpages/**/*.rst'),
+            install_path="${MANDIR}/",
+            VERSION=VERSION)
+
+def docs(bld):
+    from waflib import Options
+    Options.commands = ['doxygen', 'sphinx'] + Options.commands
+
+def doxygen(bld):
+    version(bld)
+
+    if not bld.env.DOXYGEN:
+        Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
+    else:
+        bld(features="subst",
+            name="doxygen-conf",
+            source=["docs/doxygen.conf.in",
+                    "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
+            target=["docs/doxygen.conf",
+                    "docs/named_data_theme/named_data_footer-with-analytics.html"],
+            VERSION=VERSION,
+            HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
+                          if os.getenv('GOOGLE_ANALYTICS', None) \
+                          else "../docs/named_data_theme/named_data_footer.html",
+            GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
+            )
+
+        bld(features="doxygen",
+            doxyfile='docs/doxygen.conf',
+            use="doxygen-conf")
+
+def sphinx(bld):
+    version(bld)
+
+    if not bld.env.SPHINX_BUILD:
+        bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
+    else:
+        bld(features="sphinx",
+            outdir="docs",
+            source=bld.path.ant_glob("docs/**/*.rst"),
+            config="docs/conf.py",
+            VERSION=VERSION)
+
+
+def version(ctx):
+    if getattr(Context.g_module, 'VERSION_BASE', None):
+        return
+
+    Context.g_module.VERSION_BASE = Context.g_module.VERSION
+    Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
+
+    try:
+        cmd = ['git', 'describe', '--match', 'nsl-*']
+        p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
+                                   stderr=None, stdin=None)
+        out = p.communicate()[0].strip()
+        if p.returncode == 0 and out != "":
+            Context.g_module.VERSION = out[8:]
+    except:
+        pass