summaryrefslogtreecommitdiff
path: root/usrp/doc
diff options
context:
space:
mode:
Diffstat (limited to 'usrp/doc')
-rw-r--r--usrp/doc/.gitignore14
-rw-r--r--usrp/doc/Doxyfile.in1158
-rw-r--r--usrp/doc/Makefile.am71
-rw-r--r--usrp/doc/ddc.eps3105
-rw-r--r--usrp/doc/ddc.pngbin42199 -> 0 bytes
-rw-r--r--usrp/doc/inband-signaling-gigethernet34
-rw-r--r--usrp/doc/inband-signaling-usb314
-rw-r--r--usrp/doc/inband-signaling-usb-host23
-rw-r--r--usrp/doc/other/.gitignore2
-rw-r--r--usrp/doc/other/Makefile.am25
-rw-r--r--usrp/doc/other/mainpage.dox9
-rw-r--r--usrp/doc/traffic-cop-dma137
-rw-r--r--usrp/doc/usrp-block-diagram.eps2785
-rw-r--r--usrp/doc/usrp-block-diagram.pngbin35729 -> 0 bytes
-rw-r--r--usrp/doc/usrp.jpgbin114386 -> 0 bytes
-rw-r--r--usrp/doc/usrp_guide.xml399
-rw-r--r--usrp/doc/usrp_rfx_diagrams.odpbin22226 -> 0 bytes
17 files changed, 0 insertions, 8076 deletions
diff --git a/usrp/doc/.gitignore b/usrp/doc/.gitignore
deleted file mode 100644
index fdf7036a8..000000000
--- a/usrp/doc/.gitignore
+++ /dev/null
@@ -1,14 +0,0 @@
-/Makefile
-/Makefile.in
-/html
-/latex
-/man
-/Doxyfile
-/.la
-/.lo
-/.deps
-/.libs
-/*.la
-/*.lo
-/xml
-/usrp_guide.html
diff --git a/usrp/doc/Doxyfile.in b/usrp/doc/Doxyfile.in
deleted file mode 100644
index 33c5bcf03..000000000
--- a/usrp/doc/Doxyfile.in
+++ /dev/null
@@ -1,1158 +0,0 @@
-#
-# Copyright 2001,2004,2005 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# GNU Radio is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# GNU Radio is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Radio; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street,
-# Boston, MA 02110-1301, USA.
-#
-
-# Doxyfile 1.3.7
-
-# This file describes the settings to be used by the documentation system
-# doxygen (www.doxygen.org) for a project
-#
-# All text after a hash (#) is considered a comment and will be ignored
-# The format is:
-# TAG = value [value, ...]
-# For lists items can also be appended using:
-# TAG += value [value, ...]
-# Values that contain spaces should be placed between quotes (" ")
-
-#---------------------------------------------------------------------------
-# Project related configuration options
-#---------------------------------------------------------------------------
-
-# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
-# by quotes) that should identify the project.
-
-PROJECT_NAME = "Universal Software Radio Peripheral"
-
-# 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 =
-
-# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
-# base path where the generated documentation will be put.
-# If a relative path is entered, it will be relative to the location
-# where doxygen was started. If left blank the current directory will be used.
-
-OUTPUT_DIRECTORY =
-
-# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
-# 2 levels of 10 sub-directories under the output directory of each output
-# format and will distribute the generated files over these directories.
-# Enabling this option can be useful when feeding doxygen a huge amount of source
-# files, where putting all generated files in the same directory would otherwise
-# cause performance problems for the file system.
-
-CREATE_SUBDIRS = NO
-
-# The OUTPUT_LANGUAGE tag is used to specify the language in which all
-# documentation generated by doxygen is written. Doxygen will use this
-# information to generate all constant output in the proper language.
-# The default language is English, other supported languages are:
-# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,
-# Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en
-# (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese,
-# Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
-
-OUTPUT_LANGUAGE = English
-
-# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
-# include brief member descriptions after the members that are listed in
-# the file and class documentation (similar to JavaDoc).
-# Set to NO to disable this.
-
-BRIEF_MEMBER_DESC = YES
-
-# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
-# the brief description of a member or function before the detailed description.
-# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
-# brief descriptions will be completely suppressed.
-
-REPEAT_BRIEF = YES
-
-# This tag implements a quasi-intelligent brief description abbreviator
-# that is used to form the text in various listings. Each string
-# in this list, if found as the leading text of the brief description, will be
-# stripped from the text and the result after processing the whole list, is used
-# as the annotated text. Otherwise, the brief description is used as-is. If left
-# blank, the following values are used ("$name" is automatically replaced with the
-# name of the entity): "The $name class" "The $name widget" "The $name file"
-# "is" "provides" "specifies" "contains" "represents" "a" "an" "the"
-
-ABBREVIATE_BRIEF =
-
-# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
-# Doxygen will generate a detailed section even if there is only a brief
-# description.
-
-ALWAYS_DETAILED_SEC = NO
-
-# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
-# members of a class in the documentation of that class as if those members were
-# ordinary class members. Constructors, destructors and assignment operators of
-# the base classes will not be shown.
-
-INLINE_INHERITED_MEMB = NO
-
-# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
-# path before files name in the file list and in the header files. If set
-# to NO the shortest path that makes the file name unique will be used.
-
-FULL_PATH_NAMES = NO
-
-# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
-# can be used to strip a user-defined part of the path. Stripping is
-# only done if one of the specified strings matches the left-hand part of
-# the path. The tag can be used to show relative paths in the file list.
-# If left blank the directory from which doxygen is run is used as the
-# path to strip.
-
-STRIP_FROM_PATH =
-
-# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
-# the path mentioned in the documentation of a class, which tells
-# the reader which header file to include in order to use a class.
-# If left blank only the name of the header file containing the class
-# definition is used. Otherwise one should specify the include paths that
-# are normally passed to the compiler using the -I flag.
-
-STRIP_FROM_INC_PATH =
-
-# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
-# (but less readable) file names. This can be useful is your file systems
-# doesn't support long names like on DOS, Mac, or CD-ROM.
-
-SHORT_NAMES = NO
-
-# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
-# will interpret the first line (until the first dot) of a JavaDoc-style
-# comment as the brief description. If set to NO, the JavaDoc
-# comments will behave just like the Qt-style comments (thus requiring an
-# explicit @brief command for a brief description.
-
-JAVADOC_AUTOBRIEF = NO
-
-# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
-# treat a multi-line C++ special comment block (i.e. a block of //! or ///
-# comments) as a brief description. This used to be the default behaviour.
-# The new default is to treat a multi-line C++ comment block as a detailed
-# description. Set this tag to YES if you prefer the old behaviour instead.
-
-MULTILINE_CPP_IS_BRIEF = NO
-
-# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
-# member inherits the documentation from any documented member that it
-# re-implements.
-
-INHERIT_DOCS = YES
-
-# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
-# tag is set to YES, then doxygen will reuse the documentation of the first
-# member in the group (if any) for the other members of the group. By default
-# all members of a group must be documented explicitly.
-
-DISTRIBUTE_GROUP_DOC = NO
-
-# The TAB_SIZE tag can be used to set the number of spaces in a tab.
-# Doxygen uses this value to replace tabs by spaces in code fragments.
-
-TAB_SIZE = 8
-
-# This tag can be used to specify a number of aliases that acts
-# as commands in the documentation. An alias has the form "name=value".
-# For example adding "sideeffect=\par Side Effects:\n" will allow you to
-# put the command \sideeffect (or @sideeffect) in the documentation, which
-# will result in a user-defined paragraph with heading "Side Effects:".
-# You can put \n's in the value part of an alias to insert newlines.
-
-ALIASES =
-
-# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
-# only. Doxygen will then generate output that is more tailored for C.
-# For instance, some of the names that are used will be different. The list
-# of all members will be omitted, etc.
-
-OPTIMIZE_OUTPUT_FOR_C = NO
-
-# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
-# only. Doxygen will then generate output that is more tailored for Java.
-# For instance, namespaces will be presented as packages, qualified scopes
-# will look different, etc.
-
-OPTIMIZE_OUTPUT_JAVA = NO
-
-# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
-# the same type (for instance a group of public functions) to be put as a
-# subgroup of that type (e.g. under the Public Functions section). Set it to
-# NO to prevent subgrouping. Alternatively, this can be done per class using
-# the \nosubgrouping command.
-
-SUBGROUPING = YES
-
-#---------------------------------------------------------------------------
-# Build related configuration options
-#---------------------------------------------------------------------------
-
-# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
-# documentation are documented, even if no documentation was available.
-# Private class members and static file members will be hidden unless
-# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
-
-EXTRACT_ALL = YES
-
-# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
-# will be included in the documentation.
-
-EXTRACT_PRIVATE = NO
-
-# If the EXTRACT_STATIC tag is set to YES all static members of a file
-# will be included in the documentation.
-
-EXTRACT_STATIC = NO
-
-# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
-# defined locally in source files will be included in the documentation.
-# If set to NO only classes defined in header files are included.
-
-EXTRACT_LOCAL_CLASSES = YES
-
-# This flag is only useful for Objective-C code. When set to YES local
-# methods, which are defined in the implementation section but not in
-# the interface are included in the documentation.
-# If set to NO (the default) only methods in the interface are included.
-
-EXTRACT_LOCAL_METHODS = NO
-
-# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
-# undocumented members of documented classes, files or namespaces.
-# If set to NO (the default) these members will be included in the
-# various overviews, but no documentation section is generated.
-# This option has no effect if EXTRACT_ALL is enabled.
-
-HIDE_UNDOC_MEMBERS = NO
-
-# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
-# undocumented classes that are normally visible in the class hierarchy.
-# If set to NO (the default) these classes will be included in the various
-# overviews. This option has no effect if EXTRACT_ALL is enabled.
-
-HIDE_UNDOC_CLASSES = NO
-
-# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
-# friend (class|struct|union) declarations.
-# If set to NO (the default) these declarations will be included in the
-# documentation.
-
-HIDE_FRIEND_COMPOUNDS = NO
-
-# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
-# documentation blocks found inside the body of a function.
-# If set to NO (the default) these blocks will be appended to the
-# function's detailed documentation block.
-
-HIDE_IN_BODY_DOCS = NO
-
-# The INTERNAL_DOCS tag determines if documentation
-# that is typed after a \internal command is included. If the tag is set
-# to NO (the default) then the documentation will be excluded.
-# Set it to YES to include the internal documentation.
-
-INTERNAL_DOCS = NO
-
-# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
-# file names in lower-case letters. If set to YES upper-case letters are also
-# allowed. This is useful if you have classes or files whose names only differ
-# in case and if your file system supports case sensitive file names. Windows
-# users are advised to set this option to NO.
-
-CASE_SENSE_NAMES = YES
-
-# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
-# will show members with their full class and namespace scopes in the
-# documentation. If set to YES the scope will be hidden.
-
-HIDE_SCOPE_NAMES = NO
-
-# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
-# will put a list of the files that are included by a file in the documentation
-# of that file.
-
-SHOW_INCLUDE_FILES = YES
-
-# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
-# is inserted in the documentation for inline members.
-
-INLINE_INFO = YES
-
-# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
-# will sort the (detailed) documentation of file and class members
-# alphabetically by member name. If set to NO the members will appear in
-# declaration order.
-
-SORT_MEMBER_DOCS = YES
-
-# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
-# brief documentation of file, namespace and class members alphabetically
-# by member name. If set to NO (the default) the members will appear in
-# declaration order.
-
-SORT_BRIEF_DOCS = NO
-
-# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
-# sorted by fully-qualified names, including namespaces. If set to
-# NO (the default), the class list will be sorted only by class name,
-# not including the namespace part.
-# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
-# Note: This option applies only to the class list, not to the
-# alphabetical list.
-
-SORT_BY_SCOPE_NAME = NO
-
-# The GENERATE_TODOLIST tag can be used to enable (YES) or
-# disable (NO) the todo list. This list is created by putting \todo
-# commands in the documentation.
-
-GENERATE_TODOLIST = YES
-
-# The GENERATE_TESTLIST tag can be used to enable (YES) or
-# disable (NO) the test list. This list is created by putting \test
-# commands in the documentation.
-
-GENERATE_TESTLIST = YES
-
-# The GENERATE_BUGLIST tag can be used to enable (YES) or
-# disable (NO) the bug list. This list is created by putting \bug
-# commands in the documentation.
-
-GENERATE_BUGLIST = YES
-
-# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
-# disable (NO) the deprecated list. This list is created by putting
-# \deprecated commands in the documentation.
-
-GENERATE_DEPRECATEDLIST= YES
-
-# The ENABLED_SECTIONS tag can be used to enable conditional
-# documentation sections, marked by \if sectionname ... \endif.
-
-ENABLED_SECTIONS =
-
-# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
-# the initial value of a variable or define consists of for it to appear in
-# the documentation. If the initializer consists of more lines than specified
-# here it will be hidden. Use a value of 0 to hide initializers completely.
-# The appearance of the initializer of individual variables and defines in the
-# documentation can be controlled using \showinitializer or \hideinitializer
-# command in the documentation regardless of this setting.
-
-MAX_INITIALIZER_LINES = 30
-
-# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
-# at the bottom of the documentation of classes and structs. If set to YES the
-# list will mention the files that were used to generate the documentation.
-
-SHOW_USED_FILES = YES
-
-#---------------------------------------------------------------------------
-# configuration options related to warning and progress messages
-#---------------------------------------------------------------------------
-
-# The QUIET tag can be used to turn on/off the messages that are generated
-# by doxygen. Possible values are YES and NO. If left blank NO is used.
-
-QUIET = NO
-
-# The WARNINGS tag can be used to turn on/off the warning messages that are
-# generated by doxygen. Possible values are YES and NO. If left blank
-# NO is used.
-
-WARNINGS = YES
-
-# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
-# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
-# automatically be disabled.
-
-WARN_IF_UNDOCUMENTED = YES
-
-# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
-# potential errors in the documentation, such as not documenting some
-# parameters in a documented function, or documenting parameters that
-# don't exist or using markup commands wrongly.
-
-WARN_IF_DOC_ERROR = YES
-
-# The WARN_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.
-
-WARN_FORMAT = "$file:$line: $text"
-
-# The WARN_LOGFILE tag can be used to specify a file to which warning
-# and error messages should be written. If left blank the output is written
-# to stderr.
-
-WARN_LOGFILE =
-
-#---------------------------------------------------------------------------
-# configuration options related to the input files
-#---------------------------------------------------------------------------
-
-# The INPUT tag can be used to specify the files and/or directories that contain
-# documented source files. You may enter file names like "myfile.cpp" or
-# directories like "/usr/src/myproject". Separate the files or directories
-# with spaces.
-
-INPUT = @top_srcdir@/usrp/host \
- @top_srcdir@/usrp/doc/other
-
-# If the value of the INPUT tag contains directories, you can use the
-# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
-# and *.h) to filter out the source-files in the directories. If left
-# blank the following patterns are tested:
-# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
-# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
-
-FILE_PATTERNS = *.h \
- *.cc \
- *.dox
-
-# The RECURSIVE tag can be used to turn specify whether or not subdirectories
-# should be searched for input files as well. Possible values are YES and NO.
-# If left blank NO is used.
-
-RECURSIVE = YES
-
-# The EXCLUDE tag can be used to specify files and/or directories that should
-# excluded from the INPUT source files. This way you can easily exclude a
-# subdirectory from a directory tree whose root is specified with the INPUT tag.
-
-EXCLUDE = CVS \
- @top_srcdir@/usrp/host/swig
-
-# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
-# that are symbolic links (a Unix filesystem feature) are excluded from the input.
-
-EXCLUDE_SYMLINKS = NO
-
-# If the value of the INPUT tag contains directories, you can use the
-# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
-# certain files from those directories.
-
-EXCLUDE_PATTERNS = moc_*.cc
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or
-# directories that contain example code fragments that are included (see
-# the \include command).
-
-EXAMPLE_PATH =
-
-# If the value of the EXAMPLE_PATH tag contains directories, you can use the
-# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
-# and *.h) to filter out the source-files in the directories. If left
-# blank all files are included.
-
-EXAMPLE_PATTERNS =
-
-# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
-# searched for input files to be used with the \include or \dontinclude
-# commands irrespective of the value of the RECURSIVE tag.
-# Possible values are YES and NO. If left blank NO is used.
-
-EXAMPLE_RECURSIVE = NO
-
-# The IMAGE_PATH tag can be used to specify one or more files or
-# directories that contain image that are included in the documentation (see
-# the \image command).
-
-IMAGE_PATH =
-
-# The INPUT_FILTER tag can be used to specify a program that doxygen should
-# invoke to filter for each input file. Doxygen will invoke the filter program
-# by executing (via popen()) the command <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.
-
-INPUT_FILTER =
-
-# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
-# INPUT_FILTER) will be used to filter the input files when producing source
-# files to browse (i.e. when SOURCE_BROWSER is set to YES).
-
-FILTER_SOURCE_FILES = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to source browsing
-#---------------------------------------------------------------------------
-
-# If the SOURCE_BROWSER tag is set to YES then a list of source files will
-# be generated. Documented entities will be cross-referenced with these sources.
-# Note: To get rid of all source code in the generated output, make sure also
-# VERBATIM_HEADERS is set to NO.
-
-SOURCE_BROWSER = NO
-
-# Setting the INLINE_SOURCES tag to YES will include the body
-# of functions and classes directly in the documentation.
-
-INLINE_SOURCES = NO
-
-# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
-# doxygen to hide any special comment blocks from generated source code
-# fragments. Normal C and C++ comments will always remain visible.
-
-STRIP_CODE_COMMENTS = YES
-
-# If the REFERENCED_BY_RELATION tag is set to YES (the default)
-# then for each documented function all documented
-# functions referencing it will be listed.
-
-REFERENCED_BY_RELATION = YES
-
-# If the REFERENCES_RELATION tag is set to YES (the default)
-# then for each documented function all documented entities
-# called/used by that function will be listed.
-
-REFERENCES_RELATION = YES
-
-# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
-# will generate a verbatim copy of the header file for each class for
-# which an include is specified. Set to NO to disable this.
-
-VERBATIM_HEADERS = YES
-
-#---------------------------------------------------------------------------
-# configuration options related to the alphabetical class index
-#---------------------------------------------------------------------------
-
-# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
-# of all compounds will be generated. Enable this if the project
-# contains a lot of classes, structs, unions or interfaces.
-
-ALPHABETICAL_INDEX = NO
-
-# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
-# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
-# in which this list will be split (can be a number in the range [1..20])
-
-COLS_IN_ALPHA_INDEX = 5
-
-# In case all classes in a project start with a common prefix, all
-# classes will be put under the same header in the alphabetical index.
-# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
-# should be ignored while generating the index headers.
-
-IGNORE_PREFIX =
-
-#---------------------------------------------------------------------------
-# configuration options related to the HTML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
-# generate HTML output.
-
-GENERATE_HTML = @enable_html_docs@
-
-# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `html' will be used as the default path.
-
-HTML_OUTPUT = html
-
-# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
-# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
-# doxygen will generate files with .html extension.
-
-HTML_FILE_EXTENSION = .html
-
-# The HTML_HEADER tag can be used to specify a personal HTML header for
-# each generated HTML page. If it is left blank doxygen will generate a
-# standard header.
-
-HTML_HEADER =
-
-# The HTML_FOOTER tag can be used to specify a personal HTML footer for
-# each generated HTML page. If it is left blank doxygen will generate a
-# standard footer.
-
-HTML_FOOTER =
-
-# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
-# style sheet that is used by each HTML page. It can be used to
-# fine-tune the look of the HTML output. If the tag is left blank doxygen
-# will generate a default style sheet. Note that doxygen will try to copy
-# the style sheet file to the HTML output directory, so don't put your own
-# stylesheet in the HTML output directory as well, or it will be erased!
-
-HTML_STYLESHEET =
-
-# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
-# files or namespaces will be aligned in HTML using tables. If set to
-# NO a bullet list will be used.
-
-HTML_ALIGN_MEMBERS = YES
-
-# If the GENERATE_HTMLHELP tag is set to YES, additional index files
-# will be generated that can be used as input for tools like the
-# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
-# of the generated HTML documentation.
-
-GENERATE_HTMLHELP = NO
-
-# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
-# be used to specify the file name of the resulting .chm file. You
-# can add a path in front of the file if the result should not be
-# written to the html output directory.
-
-CHM_FILE =
-
-# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
-# be used to specify the location (absolute path including file name) of
-# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
-# the HTML help compiler on the generated index.hhp.
-
-HHC_LOCATION =
-
-# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
-# controls if a separate .chi index file is generated (YES) or that
-# it should be included in the master .chm file (NO).
-
-GENERATE_CHI = NO
-
-# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
-# controls whether a binary table of contents is generated (YES) or a
-# normal table of contents (NO) in the .chm file.
-
-BINARY_TOC = NO
-
-# The TOC_EXPAND flag can be set to YES to add extra items for group members
-# to the contents of the HTML help documentation and to the tree view.
-
-TOC_EXPAND = NO
-
-# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
-# top of each HTML page. The value NO (the default) enables the index and
-# the value YES disables it.
-
-DISABLE_INDEX = NO
-
-# This tag can be used to set the number of enum values (range [1..20])
-# that doxygen will group on one line in the generated HTML documentation.
-
-ENUM_VALUES_PER_LINE = 4
-
-# If the GENERATE_TREEVIEW tag 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 (for instance Mozilla 1.0+,
-# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
-# probably better off using the HTML help feature.
-
-GENERATE_TREEVIEW = NO
-
-# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
-# used to set the initial width (in pixels) of the frame in which the tree
-# is shown.
-
-TREEVIEW_WIDTH = 250
-
-#---------------------------------------------------------------------------
-# configuration options related to the LaTeX output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
-# generate Latex output.
-
-GENERATE_LATEX = @enable_latex_docs@
-
-# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `latex' will be used as the default path.
-
-LATEX_OUTPUT = latex
-
-# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
-# invoked. If left blank `latex' will be used as the default command name.
-
-LATEX_CMD_NAME = latex
-
-# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
-# generate index for LaTeX. If left blank `makeindex' will be used as the
-# default command name.
-
-MAKEINDEX_CMD_NAME = makeindex
-
-# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
-# LaTeX documents. This may be useful for small projects and may help to
-# save some trees in general.
-
-COMPACT_LATEX = NO
-
-# The PAPER_TYPE tag can be used to set the paper type that is used
-# by the printer. Possible values are: a4, a4wide, letter, legal and
-# executive. If left blank a4wide will be used.
-
-PAPER_TYPE = letter
-
-# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
-# packages that should be included in the LaTeX output.
-
-EXTRA_PACKAGES =
-
-# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
-# the generated latex document. The header should contain everything until
-# the first chapter. If it is left blank doxygen will generate a
-# standard header. Notice: only use this tag if you know what you are doing!
-
-LATEX_HEADER =
-
-# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
-# is prepared for conversion to pdf (using ps2pdf). The pdf file will
-# contain links (just like the HTML output) instead of page references
-# This makes the output suitable for online browsing using a pdf viewer.
-
-PDF_HYPERLINKS = YES
-
-# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
-# plain latex in the generated Makefile. Set this option to YES to get a
-# higher quality PDF documentation.
-
-USE_PDFLATEX = NO
-
-# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
-# command to the generated LaTeX files. This will instruct LaTeX to keep
-# running if errors occur, instead of asking the user for help.
-# This option is also used when generating formulas in HTML.
-
-LATEX_BATCHMODE = NO
-
-# If LATEX_HIDE_INDICES is set to YES then doxygen will not
-# include the index chapters (such as File Index, Compound Index, etc.)
-# in the output.
-
-LATEX_HIDE_INDICES = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the RTF output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
-# The RTF output is optimized for Word 97 and may not look very pretty with
-# other RTF readers or editors.
-
-GENERATE_RTF = NO
-
-# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `rtf' will be used as the default path.
-
-RTF_OUTPUT = rtf
-
-# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
-# RTF documents. This may be useful for small projects and may help to
-# save some trees in general.
-
-COMPACT_RTF = NO
-
-# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
-# will contain hyperlink fields. The RTF file will
-# contain links (just like the HTML output) instead of page references.
-# This makes the output suitable for online browsing using WORD or other
-# programs which support those fields.
-# Note: wordpad (write) and others do not support links.
-
-RTF_HYPERLINKS = NO
-
-# Load stylesheet definitions from file. Syntax is similar to doxygen's
-# config file, i.e. a series of assignments. You only have to provide
-# replacements, missing definitions are set to their default value.
-
-RTF_STYLESHEET_FILE =
-
-# Set optional variables used in the generation of an rtf document.
-# Syntax is similar to doxygen's config file.
-
-RTF_EXTENSIONS_FILE =
-
-#---------------------------------------------------------------------------
-# configuration options related to the man page output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
-# generate man pages
-
-GENERATE_MAN = NO
-
-# The MAN_OUTPUT tag is used to specify where the man pages will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `man' will be used as the default path.
-
-MAN_OUTPUT = man
-
-# The MAN_EXTENSION tag determines the extension that is added to
-# the generated man pages (default is the subroutine's section .3)
-
-MAN_EXTENSION = .3
-
-# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
-# then it will generate one additional man file for each entity
-# documented in the real man page(s). These additional files
-# only source the real man page, but without them the man command
-# would be unable to find the correct page. The default is NO.
-
-MAN_LINKS = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the XML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_XML tag is set to YES Doxygen will
-# generate an XML file that captures the structure of
-# the code including all documentation.
-
-GENERATE_XML = @enable_xml_docs@
-
-# The XML_OUTPUT tag is used to specify where the XML pages will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `xml' will be used as the default path.
-
-XML_OUTPUT = xml
-
-# The XML_SCHEMA tag can be used to specify an XML schema,
-# which can be used by a validating XML parser to check the
-# syntax of the XML files.
-
-XML_SCHEMA =
-
-# The XML_DTD tag can be used to specify an XML DTD,
-# which can be used by a validating XML parser to check the
-# syntax of the XML files.
-
-XML_DTD =
-
-# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
-# dump the program listings (including syntax highlighting
-# and cross-referencing information) to the XML output. Note that
-# enabling this will significantly increase the size of the XML output.
-
-XML_PROGRAMLISTING = YES
-
-#---------------------------------------------------------------------------
-# configuration options for the AutoGen Definitions output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
-# generate an AutoGen Definitions (see autogen.sf.net) file
-# that captures the structure of the code including all
-# documentation. Note that this feature is still experimental
-# and incomplete at the moment.
-
-GENERATE_AUTOGEN_DEF = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the Perl module output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_PERLMOD tag is set to YES Doxygen will
-# generate a Perl module file that captures the structure of
-# the code including all documentation. Note that this
-# feature is still experimental and incomplete at the
-# moment.
-
-GENERATE_PERLMOD = NO
-
-# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
-# the necessary Makefile rules, Perl scripts and LaTeX code to be able
-# to generate PDF and DVI output from the Perl module output.
-
-PERLMOD_LATEX = NO
-
-# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
-# nicely formatted so it can be parsed by a human reader. This is useful
-# if you want to understand what is going on. On the other hand, if this
-# tag is set to NO the size of the Perl module output will be much smaller
-# and Perl will parse it just the same.
-
-PERLMOD_PRETTY = YES
-
-# The names of the make variables in the generated doxyrules.make file
-# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
-# This is useful so different doxyrules.make files included by the same
-# Makefile don't overwrite each other's variables.
-
-PERLMOD_MAKEVAR_PREFIX =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the preprocessor
-#---------------------------------------------------------------------------
-
-# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
-# evaluate all C-preprocessor directives found in the sources and include
-# files.
-
-ENABLE_PREPROCESSING = YES
-
-# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
-# names in the source code. If set to NO (the default) only conditional
-# compilation will be performed. Macro expansion can be done in a controlled
-# way by setting EXPAND_ONLY_PREDEF to YES.
-
-MACRO_EXPANSION = NO
-
-# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
-# then the macro expansion is limited to the macros specified with the
-# PREDEFINED and EXPAND_AS_PREDEFINED tags.
-
-EXPAND_ONLY_PREDEF = NO
-
-# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
-# in the INCLUDE_PATH (see below) will be search if a #include is found.
-
-SEARCH_INCLUDES = YES
-
-# The INCLUDE_PATH tag can be used to specify one or more directories that
-# contain include files that are not input files but should be processed by
-# the preprocessor.
-
-INCLUDE_PATH =
-
-# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
-# patterns (like *.h and *.hpp) to filter out the header-files in the
-# directories. If left blank, the patterns specified with FILE_PATTERNS will
-# be used.
-
-INCLUDE_FILE_PATTERNS =
-
-# The PREDEFINED tag can be used to specify one or more macro names that
-# are defined before the preprocessor is started (similar to the -D option of
-# gcc). The argument of the tag is a list of macros of the form: name
-# or name=definition (no spaces). If the definition and the = are
-# omitted =1 is assumed.
-
-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.
-
-EXPAND_AS_DEFINED =
-
-# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
-# doxygen's preprocessor will remove all 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.
-
-SKIP_FUNCTION_MACROS = YES
-
-#---------------------------------------------------------------------------
-# Configuration::additions related to external references
-#---------------------------------------------------------------------------
-
-# The TAGFILES option can be used to specify one or more tagfiles.
-# Optionally an initial location of the external documentation
-# can be added for each tagfile. The format of a tag file without
-# this location is as follows:
-# TAGFILES = file1 file2 ...
-# Adding location for the tag files is done as follows:
-# TAGFILES = file1=loc1 "file2 = loc2" ...
-# where "loc1" and "loc2" can be relative or absolute paths or
-# URLs. If a location is present for each tag, the installdox tool
-# does not have to be run to correct the links.
-# Note that each tag file must have a unique name
-# (where the name does NOT include the path)
-# If a tag file is not located in the directory in which doxygen
-# is run, you must also specify the path to the tagfile here.
-
-TAGFILES =
-
-# When a file name is specified after GENERATE_TAGFILE, doxygen will create
-# a tag file that is based on the input files it reads.
-
-GENERATE_TAGFILE =
-
-# If the ALLEXTERNALS tag is set to YES all external classes will be listed
-# in the class index. If set to NO only the inherited external classes
-# will be listed.
-
-ALLEXTERNALS = NO
-
-# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
-# in the modules index. If set to NO, only the current project's groups will
-# be listed.
-
-EXTERNAL_GROUPS = YES
-
-# The PERL_PATH should be the absolute path and name of the perl script
-# interpreter (i.e. the result of `which perl').
-
-PERL_PATH = /usr/bin/perl
-
-#---------------------------------------------------------------------------
-# Configuration options related to the dot tool
-#---------------------------------------------------------------------------
-
-# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
-# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or
-# super classes. Setting the tag to NO turns the diagrams off. Note that this
-# option is superseded by the HAVE_DOT option below. This is only a fallback. It is
-# recommended to install and use dot, since it yields more powerful graphs.
-
-CLASS_DIAGRAMS = YES
-
-# If set to YES, the inheritance and collaboration graphs will hide
-# inheritance and usage relations if the target is undocumented
-# or is not a class.
-
-HIDE_UNDOC_RELATIONS = YES
-
-# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
-# available from the path. This tool is part of Graphviz, a graph visualization
-# toolkit from AT&T and Lucent Bell Labs. The other options in this section
-# have no effect if this option is set to NO (the default)
-
-HAVE_DOT = @HAVE_DOT@
-
-# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
-# will generate a graph for each documented class showing the direct and
-# indirect inheritance relations. Setting this tag to YES will force the
-# the CLASS_DIAGRAMS tag to NO.
-
-CLASS_GRAPH = YES
-
-# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
-# will generate a graph for each documented class showing the direct and
-# indirect implementation dependencies (inheritance, containment, and
-# class references variables) of the class with other documented classes.
-
-COLLABORATION_GRAPH = YES
-
-# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
-# collaboration diagrams in a style similar to the OMG's Unified Modeling
-# Language.
-
-UML_LOOK = NO
-
-# If set to YES, the inheritance and collaboration graphs will show the
-# relations between templates and their instances.
-
-TEMPLATE_RELATIONS = NO
-
-# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
-# tags are set to YES then doxygen will generate a graph for each documented
-# file showing the direct and indirect include dependencies of the file with
-# other documented files.
-
-INCLUDE_GRAPH = YES
-
-# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
-# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
-# documented header file showing the documented files that directly or
-# indirectly include this file.
-
-INCLUDED_BY_GRAPH = YES
-
-# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
-# generate a call dependency graph for every global function or class method.
-# Note that enabling this option will significantly increase the time of a run.
-# So in most cases it will be better to enable call graphs for selected
-# functions only using the \callgraph command.
-
-CALL_GRAPH = NO
-
-# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
-# will graphical hierarchy of all classes instead of a textual one.
-
-GRAPHICAL_HIERARCHY = YES
-
-# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
-# generated by dot. Possible values are png, jpg, or gif
-# If left blank png will be used.
-
-DOT_IMAGE_FORMAT = png
-
-# The tag DOT_PATH can be used to specify the path where the dot tool can be
-# found. If left blank, it is assumed the dot tool can be found on the path.
-
-DOT_PATH =
-
-# The DOTFILE_DIRS tag can be used to specify one or more directories that
-# contain dot files that are included in the documentation (see the
-# \dotfile command).
-
-DOTFILE_DIRS =
-
-# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
-# nodes that will be shown in the graph. If the number of nodes in a graph
-# becomes larger than this value, doxygen will truncate the graph, which is
-# visualized by representing a node as a red box. Note that doxygen if the
-# number of direct children of the root node in a graph is already larger than
-# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
-# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
-
-DOT_GRAPH_MAX_NODES = 50
-
-# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
-# graphs generated by dot. A depth value of 3 means that only nodes reachable
-# from the root by following a path via at most 3 edges will be shown. Nodes
-# that lay further from the root node will be omitted. Note that setting this
-# option to 1 or 2 may greatly reduce the computation time needed for large
-# code bases. Also note that the size of a graph can be further restricted by
-# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
-
-MAX_DOT_GRAPH_DEPTH = 0
-
-# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
-# background. This is disabled by default, because dot on Windows does not
-# seem to support this out of the box. Warning: Depending on the platform used,
-# enabling this option may lead to badly anti-aliased labels on the edges of
-# a graph (i.e. they become hard to read).
-
-DOT_TRANSPARENT = NO
-
-# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
-# files in one run (i.e. multiple -o and -T options on the command line). This
-# makes dot run faster, but since only newer versions of dot (>1.8.10)
-# support this, this feature is disabled by default.
-
-DOT_MULTI_TARGETS = YES
-
-# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
-# generate a legend page explaining the meaning of the various boxes and
-# arrows in the dot generated graphs.
-
-GENERATE_LEGEND = YES
-
-# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
-# remove the intermediate dot files that are used to generate
-# the various graphs.
-
-DOT_CLEANUP = YES
-
-#---------------------------------------------------------------------------
-# Configuration::additions related to the search engine
-#---------------------------------------------------------------------------
-
-# The SEARCHENGINE tag specifies whether or not a search engine should be
-# used. If set to NO the values of all tags below this one will be ignored.
-
-SEARCHENGINE = NO
diff --git a/usrp/doc/Makefile.am b/usrp/doc/Makefile.am
deleted file mode 100644
index 0eddc623a..000000000
--- a/usrp/doc/Makefile.am
+++ /dev/null
@@ -1,71 +0,0 @@
-#
-# Copyright 2001,2005,2009 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# GNU Radio is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# GNU Radio is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Radio; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street,
-# Boston, MA 02110-1301, USA.
-#
-
-include $(top_srcdir)/Makefile.common
-
-
-SUBDIRS = other
-
-man3dir = $(mandir)/man3
-usrp_docdir = $(prefix)/share/doc/usrp-$(DOCVER)
-
-EXTRA_DIST += \
- Doxyfile.in \
- ddc.eps \
- ddc.png \
- usrp-block-diagram.eps \
- usrp-block-diagram.png \
- usrp.jpg \
- usrp_guide.xml
-
-if HAS_XMLTO
-DOCBOOK_HTML_FILES=usrp_guide.html
-all-local: dox docbook-html
-else
-DOCBOOK_HTML_FILES=
-all-local: dox
-endif
-
-dist_usrp_doc_DATA = $(top_srcdir)/usrp/README
-
-dox: html/index.html
-html/index.html:
- $(MKDIR_P) html
- @DOXYGEN@
-
-docbook-html: usrp_guide.html
-
-usrp_guide.html: usrp_guide.xml
- xmlto html-nochunks $(top_srcdir)/usrp/doc/usrp_guide.xml
-
-install-data-local:
- $(MKDIR_P) $(DESTDIR)$(usrp_docdir)/html
- @for i in $(DOCBOOK_HTML_FILES); do \
- echo "$(INSTALL_DATA) $$i $(DESTDIR)$(usrp_docdir)/html"; \
- $(INSTALL_DATA) $$i $(DESTDIR)$(usrp_docdir)/html; \
- done
- cp -r html $(DESTDIR)$(usrp_docdir)
-
-uninstall-local:
- $(RM) -fr $(DESTDIR)$(usrp_docdir)/html
-
-clean-local:
- $(RM) -fr latex html man xml $(DOCBOOK_HTML_FILES)
diff --git a/usrp/doc/ddc.eps b/usrp/doc/ddc.eps
deleted file mode 100644
index 8931a16a4..000000000
--- a/usrp/doc/ddc.eps
+++ /dev/null
@@ -1,3105 +0,0 @@
-%!PS-Adobe-3.0 EPSF-3.0
-%%BoundingBox: 0 0 755 575
-%%Pages: 0
-%%Creator: Sun Microsystems, Inc.
-%%Title: none
-%%CreationDate: none
-%%LanguageLevel: 2
-%%EndComments
-%%BeginPreview: 760 575 1 1725
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000010008000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000300FE001800C100000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000701CF001800C300000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000F03830018000300000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000003F03000018000300000000000
-%00000000000000001F800000000000031800000000000000000000000000780000000000000000
-%000000000000000000000000000000000000000000F00019C03000000000000000000000000000
-%0000000007303000019E0CFC0000000000
-%00000000000000007FE00000000000031800000000000000C00000000000F80000000000000000
-%000000000000000000000000000000000000000001E00019C03000000000000000000000000000
-%000000000030638001FF0C7C0000000000
-%000000000000000060700000000000030000000000000000C00000000000C00000000000000000
-%000000000000000000000000000000000000000003000019E03000000000000000000000000000
-%0000000000307FE001C38C300000000000
-%0000000000000000E0380000000000030000000000000000C00000000000C00000000000000000
-%000000000000000000000000000000000000000003000031F03000000000000000000000000000
-%000000000030787001C18C300000000000
-%0000000000000000E0000C04202002030842002100110181F01000000001F02000000000000000
-%000000000000000000000000000000000000000007C08031B03000000000000000000000000000
-%000000000030703001818C300000000000
-%0000000000000000E0007F86FDF87FC3187FC0FF803F8FF1F8FE001FFC03F9FC00000000000000
-%00000000000000000000000000000000000000000FE7F031B83000000000000000000000000000
-%0000000000307033F181CC300000000000
-%00000000000000007C00E3879FBC78C31879C1CF803F9C70E1C7001FFC00C38E00000000000000
-%0000000000000000000000000000000000000000030E38219C3000000000000000000000000000
-%0000000000307033F981CC300000000000
-%00000000000000003FC0C1C70E0C70631860E30780381838C38300000000C30600000000000000
-%0000000000000000000000000000000000000000030C18618C3000000000000000000000000000
-%00000000003070300181CC300000000000
-%000000000000000007E000C60E0C60631860630380380038C30180000000C30000000000000000
-%0000000000000000000000000000000000000000030C00618E3000000000000000000000000000
-%000000000030303001818C300000000000
-%000000000000000000F001C60E0C60731860670380380038C30380000000C3C000000000000000
-%0000000000000000000000000000000000000000030F804187300001B6DBFFFB6DB00000000000
-%000000000030303001C18C300000000000
-%000000000000000000383FC60E0C60331860670380380FF8C3FF801FFC00C1FC00000000000000
-%00000000000000000000000000000000000000000307F041833000000000000000000000000000
-%0000000000301C6001E30C300000000000
-%0000000000000001C018F8C60E0C60731860670380381E38C300001FFC00C03E00000000000000
-%00000000000000000000000000000000000000000300F8C183B000000000000000000000000000
-%0000000000300FC001FF0C3C0000000000
-%0000000000000001C019C0C60E0C60731860670380383838C30000000000C00700000000000000
-%000000000000000000000000000000000000000003001CC181F000000000000000000000000000
-%0000000000300780019C0C1C0000000000
-%0000000000000000E039C1C60E0C70631860630380383038C30180000000C30700000000000000
-%0000000000000000000000000000000000000000030C0C8180F000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000F071C1C60E0C70E31860638780383078E38380000000C30600000000000000
-%0000000000000000000000000000000000000000030C1D8180F000000000000000080000000000
-%0000000000000000000000000000000000
-%00000000000000007FE0E7C60E0C7FC3186061FF80381CF8F9FF00000000C3DE00000000000000
-%00000000000000000000000000000000000000000307F981807000000000000000040000000000
-%0000000000000000000000000000000000
-%00000000000000001FC07CC60E0C7F83186060FB80380F98787C00000000C0FC00000000000000
-%00000000000000000000000000000000000000000303F181803000000000000000020000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000060000000000300000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000060000000030300000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000060000000038700000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000006000000001FE00000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000060000000007800000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000008000000000
-%0008000000000000000018000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000004000000000
-%000C000180000060000018000000001000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000C000380000060000018000000003000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000004000000000
-%000C000380000060000018000000003000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000C000380000060000018000000003000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%03DC1F87E1F001F87E0019E01F00F87E00
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000001000000000
-%0FFC7FC7C7FC00F0FF001FF83FC3FC7C00
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%1C3C60C38E0C0061C3801C1870E30E3000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000001000000000
-%181C60E38C0C006181801C1CE063043000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000800000000
-%181C00E3800C006300C0181CC033803000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%381C0FE381FC006300C0181CC033F03000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000400000000
-%380C7FE387FC006300C0181CC030FC3000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%181C60E38E0C006300C0181CC0300E3000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%181CC0E38C0C006381C0181CC072063000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%1C1CC0E38C1C00618180181C6067063800
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0E3CE1E38E3C0071C380181C70E38E3800
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000100000000
-%07FC7F61E7EC0078FF00181C3FC1FC1E00
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000100000000
-%01881C60E3C600383C0018080F00F00E00
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000080000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000080000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000040000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000040000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000020000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000020000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000003000000C01803C03FC00000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000003000000C0180FF03FF00000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000003000000C0181E7C38F80000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000C018301C301C0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000008000000
-%000000000000000C018300C301C0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000004000000
-%00000603307E000C0183000301C0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000070330FF800C0183C0030180000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000002000000
-%0000030631C1800C0181FC030380000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000002000000
-%000003063181800C01807F03FF00000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000001863001800C018007C3FF80000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000001000000
-%0000018C303F800C018001C301C0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000018C30FD800C018000E300C0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000800000
-%000000DC31C1800C018600E300E0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000800000
-%000000D83181800E038700E300E0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000F83183800E038380C300C0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000400000
-%0000007031C78007FF03FF83FFC0000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000007030FD8003FE00FF03FF80000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000203070800070003C03FC00000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000200000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000100000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000040000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000020000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000010000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000010000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000004000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000004000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000002600
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000003E00
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000000000003FE00
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000001FE00
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%00000000000000000000020000000000000000000000000000000000000000000010000000FE00
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000007E00
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000003E00
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000001E00
-%0000000000000000000000000000000000
-%000007000000000004003C00000000000000000000000000000000000F00000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000001E00
-%0000000000000000000000000000000000
-%00000700000000000C007C00000000000000000000000000000000007FE0000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000E00
-%0000000000000000000000000000000000
-%00000700000000000C00600000000000000000000000000000000007FFFE000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000600
-%0000000000000000000000000000000000
-%00000700000000000C0060000000000000000000000000000000001F801F800000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000200
-%0000000000000000000000000000000000
-%00000719E06F03033F01FCDC1E06787800000000000000000000007C0003E00000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071FF87FC3031F01F8FC7F87FDFC0000000000000000000000F80001F00000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071E1870E3030C0060E0E1C78F0C0000000000000000000001C00000380000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071C1C6063030C0060C0C0E7060E00000000000000000000038000001C0000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071C0C6063030C0060C18067060E00000000000000000000078000000E0000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063030C0060C18067060E000000000000000000000CC000001B0000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063030C0060C18067060E0000000000000000000018600000318000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063030C0060C18067060E0000000000000000000018300000618000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063070C0060C1C067060E0000000000000000000030180000C0C000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%000007180C60E3070C0060C0C0C7060E00000000000000000000300C000180C000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%000007180C71C38F0C0060C0E1C7060E0000000000000000000060060003006000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%000007180C7F81FB0F0060C07F87060E0000000000000000000040030006002000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%000006180C6700F3070060C01E07060600000000000000000000C001800C003000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%0000000000600000000000000000000000000000000000000000C000C01C003000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%0000000000600000000000000000000000000000000000000001C0006038003800000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000001800000000000000000
-%0000000000600000000000000000000000000000000000000601C0003070003800000000000000
-%000000000000000000700200000000000000000000000000000000000000000000100000000000
-%0000000060000001800000000000000000
-%00000000006000000000000000000000000000000000000007E1800018E0001800000000000000
-%0000000000000000007F0200000000000000000000000000000000000000000000100000000000
-%000000007E000001800000000000000000
-%00000000000000000000000000000000000000000000000007FD80000DC0001800000000000000
-%0000000000000000007FC200000000000000000000000000000000000000000000100000000000
-%000000007FC00001800000000000000000
-%00000000000000000000000000000000000000000000000007FF80000780001800000000000000
-%0000000000000000007FFA00000003FF0000000060000000000300000000000000100000000000
-%000000007FF00001800000000000000000
-%0000000000000000000000000000000000000000000000000FFF80000700001C00000000000000
-%0000000000000000007FFA00000003FF800000006000000000C300000000000000100000000000
-%00000000FFF00001800000000000000000
-%00000000000000000000000000000000000000000000000007FD80000780001800000000000000
-%0000000000000000007FC20000000301C00000000000000000C000000000000000100000000000
-%000000007FC00001800000000000000000
-%00000000000000000000000000000000000000000000000007F180000DC0001800000000000000
-%0000000000000000007F020000000300E00000000000000000C000000000000000100000000000
-%000000007E000001800000000000000000
-%00000000000001007F0000200000000000000000000000000601800018E0001800000000000000
-%00000000000000000070020000000300601800404210100301E200400420000000100000000000
-%0000000060000001800000000000000000
-%00000000000003807FF003FC0000000000000000000000000001C0003070003800000000000000
-%00000000000000000000020000000300707F03F8637EFC1FE3F31BF03F60000000100000000000
-%0000000000000001800000000000000000
-%00000000000007807FF807FF0000000000000000000000000001C0006038003800000000000000
-%0000000000000000000002000000030030E7871C63CFDE1CF0C31F3879E0000000100000000000
-%0000000000000001800000000000000000
-%00000000000006C0601C0E070000000000000000000000000000C000C018003000000000000000
-%000000000000000000000200000003003181860C6387063030C31C1C60E0000000100000000000
-%0000000000000000000000000000000000
-%00000000000006C0600C1C038000000000000000000000000000C001800C003000000000000000
-%000000000000000000000200000003003181CC006307060030C31C1CE060000000100000000000
-%0000000000000000000000000000000000
-%0000000000000C60600E18018000000000000000000000000000C0030006003000000000000000
-%000000000000000000000200000003003381CC006303060070C3181CC060000000100000000000
-%0000000000000000000000000000000000
-%0000000000000C6060063800000000000000000000000000000040060003002000000000000000
-%0000000000000000000002000000030033FFCC006303060FF0C3181CC060000000100000000000
-%0000000000000000000000000000000000
-%0000000000001C70600638000000000000000000000000000000600C0001806000000000000000
-%0000000000000000000002000000030073800C006303063E30C3181CC060000000100000000000
-%0000000000000000000000000000000000
-%000000000000183060063800000000000000000000000000000020180000C04000000000000000
-%0000000000000000000002000000030063800C006303063030C3181CC060000000100000000000
-%0000000000000000000000000000000000
-%00000000000018306006380000000000000000000000000000003070000060C000000000000000
-%00000000000000000000020000000300E1818E0E6303063030C3181C60E0000000100000000000
-%0000000000000000000000000000000000
-%000000000000383860063800000000000000000000000000000038E0000031C000000000000000
-%00000000000000000000020000000301C1C1860C6303063070C3181C60E0000000100000000000
-%0000000000000000000000000000000000
-%0000000000003FF86006180000000000000000000000000000001CC000001B8000000000000000
-%000000000000000000000200000003FFC0FF87BC63030639F0F3181C3FE0000000100000000000
-%0000000000000000000000000000000000
-%000000000000301C600E180180000000000000000000000000000F8000000F0000000000000000
-%000000000000000000000200000003FF007E01F06303061FB873181C1F60000000100000000000
-%0000000000000000000000000000000000
-%000000000000600C600C1C038000000000000000000000000000070000000E0000000000000000
-%000000000000000000000200000000000000000000000000000000000060000000100000000000
-%0000000000000000000000000000000000
-%000000000000600C601C0E038000000000000000000000000000038000001C0000000000000000
-%000000000000000000000200000000000000000000000000000000004060000000100000000000
-%0000000000000000000000000000000000
-%000000000000E00E6078078F000000000000000000000000000001E00000780000000000000000
-%0000000000000000000002000000000000000000000000000000000061C0000000100000000000
-%0000000000000000000000000000000000
-%000000000000C0067FF003FE000000000000000000000000000000F80001F00000000000000000
-%000000000000000000000200000000000000000000000000000000003F80000000100000000000
-%0000000000000000000000000000000000
-%000000000000C0067FC000F00000000000000000000000000000003E0007C00000000000000000
-%000000000000000000000200000000000000000000000000000000000F00000000100000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000007F07E000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000003FFFC000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000007FE0000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000600000000000000000000
-%00000000000000000000020000000000C000000000007FE0000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000600000000000000000000
-%00000000000000000000020000000000C000000000007FF8000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000600000000000000000000
-%00000000000000000000020000000000C00000000000701C000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000F00000000000000000000
-%00000000000000000000020000000000C00000000000701C000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000F00000000000000000000
-%00000000000000000000020000000000C000E040C080700C0700E00C0000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000F00000000000000000000
-%00000000000000000000020000000000C003F860C180700C3FC3F83F8000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000001F00000000000000000000
-%00000000000000000000020000000000C0071C61E180700C71E31C738000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000001F80000000000000000000
-%00000000000000000000020000000000C00E0E61E180701C60660C61C000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000003F80000000000000000000
-%00000000000000000000020000000000C00C0631E3007FF8006700600000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000003FC0000000000000000000
-%00000000000000000000020000000000C00C0731B3007FF000E3C0780000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000C00C0733330070003FE1F83F8000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000C00C071B360070007C607C07C000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000C00C061B3600700060600E01C000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000C00C061E1E007000E0E606C0C000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000C00E0E1E1E007000E0E70E60C000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000FFC7FC0E1C00700077E3FC7F8000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000020000000000FFC1F00E1C0070003E61F83F0000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000003
-%C00000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000007000000000000003C0000000000000000000000000000000000040000000000000000001F
-%FC0000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000700000000000C007C000000000000000000000000000000000004000000000000000001FC
-%7FC000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000700000000000C0060000000000000000000000000000000000004000000000000000007E0
-%07E000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000700000000000C006000000000000000000000000000000000000400000000000000001F00
-%00F80000000000000000020000000000000000FFE3180000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000718E04703021F01F89C1E0238700000000000000000000000000400000000000000007800
-%001C0000000000000000020000000000000000FFE3186000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071BF07F83033F01FCFC7F87FCFC000000000000000000000000040000000000000000E000
-%000E0000000000000000020000000000000000C000186000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071F3879C3030C0060FCF1C7CF9C000000000000000000000000040000000000000000E000
-%00070000000000000000020000000000000000C000186000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071C1C70E3030C0060C0C0C7070E000000000000000000000000040000000000000001E000
-%00038000000000000000020000000000000000C00318F81C046000000000000000100000000000
-%0000000000000000000000000000000000
-%0000071C0C6063030C0060C1C067060E0000000000000000000000000400000000000000033000
-%0007C000000000000000020000000000000000C00318FC7F07F000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063030C0060C18067060E0000000000000000000000000400000000000000061800
-%000CE000000000000000020000000000000000C0031870E387E000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063030C0060C18067060E0000000000000000000000000400000000000000061C00
-%00187000000000000000020000000000000000FFC3186181870000000000000000100000000000
-%0000000000000000000000000000000000
-%000007180C6063030C0060C18067060E0000000000000000000000000400000000000000040E00
-%00307000000000000000020000000000000000FFC3186180C60000000000000000100000000000
-%0000000000000007C00000000000000000
-%000007180C6063030C0060C18067060E00000000000000000000000004000000000000000C0700
-%00603800000000000000020000000000000000C0031861FFC60000000000000000100000000000
-%000000000000001FF00000000000000000
-%000007180C6063070C0060C0C0E7060E0000000000000000000000000400000000000000180380
-%00C03800000000000000020000000000000000C0031861FFC60000000000000000100000000000
-%00000000000000383C0000000000000000
-%000007180C70C3070C0060C0E1C7060E00000000000000000000000004000000000000001801C0
-%01801800000000000000020000000000000000C003186180060000000000000000100000000000
-%00000000000000701C0000000000000000
-%000007180C7FC3FF0F0060C07F87060E00000000000000000000000004000000000000003000E0
-%03001C00000000000000020000000000000000C003186180060000000000000000100000000000
-%00000000000000E00E0000000000000000
-%000007180C6F00F3070060C03F07060E0000000000000000000000000400000000000000300060
-%06000C00000000000000020000000000000000C003186180C60000000000000000100000000000
-%00000000000000C0060000000000000000
-%000000000060000000000000000000000000000000000000000000000400000000000000300030
-%0C000C00000000000000020000000000000000C0031871C1860000000000000000100000000000
-%00000000000001C0070000000000000000
-%000000000060000000000000000000000000000000000000000000000400000000000C00300018
-%18000400000000000070020000000000000000C003187CFF860000000000000000100000000000
-%00000000600001C0070000000000000000
-%000000000060000000000000000000000000000000000000000000000400000000000FE060000E
-%3000060000000000007F020000000000000000C003183C3E060000000000000000100000000000
-%000000007E0001C0070000000000000000
-%000000000060000000000000000000000000000000000000000000000400000000000FF8600006
-%6000060000000000007FC200000000000000000000000000000000000000000000100000000000
-%000000007FC001C0070000000000000000
-%000000000060000000000000000000000000000000000000000000000400000000000FFF600003
-%C000060000000000007FFA00000000000000000000000000000000000000000000100000000000
-%00000000FFF001C0070000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000FFE600001
-%C000060000000000007FFA00000000000000000000000000000000000000000000100000000000
-%00000000FFF000C0060000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000FF8600003
-%C000060000000000007FC200000000000000000000000000000000000000000000100000000000
-%000000007FC000C0060000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000FE0600006
-%6000060000000000007F0200000000000000000000000000000000000000000000100000000000
-%000000007E000060EC0000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000C0060000C
-%380006000000000000700200000000000000000000000000000000000000000000100000000000
-%00000000600000707C0000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000700018
-%180006000000000000000200000000000000000000000000000000000000000000100000000000
-%000000000000003FFC0000000000000000
-%00000000000003807FE001FC000000000000000000000000000000000400000000000000300030
-%0C000C000000000000000200000000000000000000000000000000000000000000100000000000
-%000000000000000FEE0000000000000000
-%00000000000003807FF807FE000000000000000000000000000000000400000000000000300070
-%07000C000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000030000000000000000
-%00000000000006C0603C0E070000000000000000000000000000000004000000000000003000E0
-%03000C000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000000000006C0600C0C038000000000000000000000000000000004000000000000003001C0
-%01801C000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000000EE0600E1801800000000000000000000000000000000400000000000000180380
-%00E018000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000000C60600E1800000000000000000000000000000000000400000000000000180700
-%007038000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000000C60600638000000000000000000000000000000000004000000000000000C0E00
-%003838000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000001C70600638000000000000000000000000000000000004000000000000000C1C00
-%001C70000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000183060063800000000000000000000000000000000000400000000000000061800
-%000E70000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000183860063800000000000000000000000000000000000400000000000000033000
-%0007E0000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000003FF86006380000000000000000000000000000000000040000000000000001A000
-%000380000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000003FF8600E180180000000000000000000000000000000040000000000000000C000
-%000300000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000701C600E1C0180000000000000000000000000000000040000000000000000E000
-%000700000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000600C601C0C03800000000000000000000000000000000400000000000000007C00
-%003E00000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000E00E603C0F07000000000000000000000000000000000400000000000000003E00
-%00FC00000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000E00E7FF807FE000000000000000000000000000000000400000000000000000F80
-%01F000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000C0067FE001F80000000000000000000000000000000004000000000000000003FC
-%3F8000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000000004000000000000000000FF
-%FF0000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000001F
-%F80000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000001
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000200000000000000000000000000000000000000000000100000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000003
-%0000000000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000003
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000007
-%00000000000000000000000000000000000000000000C000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000007
-%80000000000000000000000000000000000000000000C000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000000F
-%80000000000000000000000000000000000000000001E000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000000F
-%80000000000000000000000000000000000000000001E000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000000F
-%C0000000000000000000000000000000000000000001E000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000000F
-%C0000000000000000000000000000000000000000003F000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000000F
-%C0000000000000000000000000000000000000000003F000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000040000000000000000001F
-%C0000000000000000000000000000000000000000003F000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000000000000000000000000003F000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000000000000000000000000007F800000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%00000000000000000000000000000000000000000000C000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000C00000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000C00000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000800000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000007E0C6FC00400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000E70C7FE00400000000000000000000
-%0007807807C0000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000C38C70600400000000000000000000
-%001FC1FE0FE0000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000C00C60600400000000000000000000
-%003863871870000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000F00C60600400000000000000000000
-%003033039830000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000007E0C60600400000000000000000000
-%007007019800000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000001F8C60600400000000000000000000
-%006007019F80000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000038C60600400000000000000000000
-%0060060187E0000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000818C60600400000000000000000000
-%0060070180F0000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000C18C60600400000000000000000000
-%007037018038000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000E38C60600400000000000000000000
-%003033039838000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000007F0C60600400000000000000000000
-%003863871830000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%001FE1FE0FF0000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%0007807C07C0000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000400000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
-%FFFFFFFFFFFFFFFFC0000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000000000001803003E000F800000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000000000001C0300FF803FE00000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000000000001E0303C1C070780000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000000000001E030300C0E0380000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000000000001F030700E1C01C0000
-%00000000000000004000000000000001FF00000000006000018006086000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000000000001B83060001800C0000
-%00000000000000004000000000000001FFC0000000006000018006186000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000000000019C30E0003800E0000
-%0000000000000000400000000000000180C0000000006000000006186000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000000000019C30E0003800E0000
-%0000000000000000400000000000000180E0000000006000000006186000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000000000018E30C0003800E0000
-%0000000000000000400000000000000180603C08E00E66060D80C67E6700000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000000000018630E0003800E0000
-%000000000000000040000000000000018060FF1FF83FE30E0D83F67E6FC0000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000000000018330E0003800E0000
-%0000000000000000400000000000000180C1C71F3871E30E0D871E1878E0000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000183B060061800C0000
-%00000000000000004000000000000001FF83831C1C60E30F198E0E187060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000181B060061800C0000
-%00000000000000004000000000000001FF80031C0CE0630B198C0E186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000181F0700E0C01C0000
-%0000000000000000400000000000000181E0071C0CE0619B198C06186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000180F0381C0E0380000
-%000000000000000040000000000000018060FF1C0CC0619B318C06186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000180701FF807FF00000
-%000000000000000040000000000000018071E31C0CC06199B18C06186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000180700FF001FC00000
-%000000000000000040000000000000018073831C0CE060F1B18C06186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000018073031C0C6060F1E18E0E186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%0000000000000000400000000000000180E3071C0C70E0F0E1861E186060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%00000000000000004000000000000001FFC1FF9C0C3FE070E187FE1E6060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%00000000000000004000000000000001FF80F99C0C0F6060E181E60E6060000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000003E0300000000006000FC00000003
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000FF830000000000C003FF00000003
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000001C1C00000000000C0070780000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000380E00000000000C00E0180000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000380400000000000800C01C0000000
-%000000000000000040000000000000000C000000180000000010C0000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000380031BF81F8001801C0001FC1FC3
-%1BF03F800000000040000000000000000C000000180000000030C0000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000001F0031F3839C001801800039E38E3
-%1F3879C00000000040000000000000000C00000000000000003000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000FE031C1C60600100180007073063
-%1C1860E00000000040000000000000000C00000000000000003000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000001FC31C0C60700300180006033003
-%1C1CC060000000004000000000000001CC07001C18CF0E01F07CC07819E0000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000003C31C0CE070030018000E033C03
-%181CE060000000004000000000000007EC1FC07F18FFBF83FC7CC0FE1BF0000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000E31C0CFFF0030018000E031FC3
-%181CFFE000000000400000000000000E3C38E0E398F1F3861C30C1C71E38000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000300631C0CE00006001C00CE0303E3
-%181CC00000000000400000000000000C1C6070C198E0C18E0C30C3839C18000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000300631C0CE00006000C01CE030073
-%181CC0000000000040000000000000180C60318018E0C1800C30C3019818000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000380631C0C606006000E0186073073
-%181CE0600000000040000000000000180C7FF18018C0C1803C30C301981C000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000003C0C31C0C70600400070387063073
-%181C70E00000000040000000000000180C7FF18018C0C183FC30C701981C000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000001FFC31C0C3DE00C0003FF03DE3DE3
-%181C3BC00000000040000000000000180C60018018C0C1878C30C701981C000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000007F031C0C1F800C0001FC01F80FC3
-%181C1F800000000040000000000000180C60018098C0C18C0C30C301981C000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%0000000000000000400000000000000C1C7031C1D8C0C18C0C30C301981C000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%0000000000000000400000000000000E1C7060C198C0C18C1C30C383981C000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%00000000000000004000000000000007FC3FE07F18C0C187FE3EC1FF181C000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%00000000000000004000000000000003CC0F803E18C0C183E61EC07C181C000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000007E000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000001FF800000000000000006000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000381C00000000000000006000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000700E00000000000000006000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000060060300860030110180F818
-%088000000000000040000000000000001E00000010000000000000380700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000E0001FC0DF81FC3F8FF0F8FE
-%0FE000000000000040000000000000003E000000300000000000003C0700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000C0003CE0F9C38E3F9C7061C7
-%0FC0000000000000400000000000000030000000300000000000003C0700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000C0003030E0C3073818386383
-%8E00000000000000400000000000000030000000300000000000003E0700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000C0FE6030C0E6033800386301
-%8C000000000000004000000000000000FE1F00F07E1F037007FF00360700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000C0FF7030C0E7033800386301
-%CC000000000000004000000000000000FE7FC1FC7C3F83F007FF00330700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000C0077FF0C0E7FF380FF86301
-%CC0000000000000040000000000000003061C38E3071C3D0000000338700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000E0076000C0E600381E386301
-%CC00000000000000400000000000000030E0C70630C0E38000000031C700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000E0076000C0E6003838386301
-%CC0000000000000040000000000000003000C60030C0630000000030C700000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000070077030C0E7033830386301
-%8C0000000000000040000000000000003007C60030C0630000000030E700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000381E3870C0E3073830786383
-%8C000000000000004000000000000000303FC60031C0730007FF00307700000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000800000000000001FFC1FE0C0E3FE381CF879FF
-%0C0000000000000040000000000000003070C60030C0630007FF00303700000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000008000000000000007F00FC0C0E0FC380F983C7C
-%0C00000000000000400000000000000030C0C60230C06300000000303F00000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%0000000000000000400000000000000030C0C60630C06300000000301F00000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%0000000000000000400000000000000030E1C30E38E0E300000000300F00000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%00000000000000004000000000000000307FE3FC3E7FC300000000300F00000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%00000000000000004000000000000000303C60F01E1F0300000000300700000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000080000000000000000000000000000000000000
-%000000000000000040000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
-%FFFFFFFFFFFFFFFFC0000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000018000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000018000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000003C000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000003C000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000003C000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000007C000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000007C000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000000000000000000FE000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000000000000000000FE000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000000000000000000FF000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000000000000000000FF000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000010000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000001F800000000000000000F000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000007FE00000000C00000001F000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000E0F00000000C000000018000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000001C0300000000C000000018000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000180380000000E000000038000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000380003F837E3F0FC0FC07F7F1FC07EC606
-%0FE0DF81FC60700000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000003800073C3CF0C1CE0FC0187F3CE0E7C606
-%1C70FBC38E70600000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000030000C0C3870C3030E0018703071C1C606
-%3830E0C30630600000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000030000C0E3030C3038C001870603181C606
-%3018C0C60030E00000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000030001C0E3030C7038C001870703181C606
-%3038C0C60038C00000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000030001FFE3030C7FF8C0018707FF180C606
-%3FF8C0C60018C00000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000038019C003030C7000C001870600180C606
-%3000C0C60019800000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000018019C003030C7000C001870600181C606
-%3000C0C6000D800000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000001C030C0C3030C3030C001870703181C606
-%3018C0C6060D000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000E070E0C3030C3830C0018703871C3C70E
-%3838C0C3060F000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000007FE07BC3030F1EF0C0018703FE0F7C3FE
-%1EF0C0C3DE07000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000003F803F0303070FC0C0018700FC07DC1F6
-%07E0C0C0F806000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000000000001C000
-%000000000006000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000000000001C000
-%000000000006000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000000000001C000
-%00000000001C000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000000000000000000000001C000
-%000000000038000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000008000
-%000000000030000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000001E000187C00000000000003C0
-%0060F8000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000003E00011FF000C0000000007C0
-%0063FC000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000300003183001C000000000E00
-%00670E000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000300003303801C000000380C00
-%004606000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000FC1802301803E030000381F03
-%00C607000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000FC7F06001803F1FC000381F9F
-%C0C006000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000070E706003801C38E000380C18
-%E08006000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000031C386007001C707003FF8C30
-%60800E000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000031C00C00E001C603003FF8C38
-%01801C000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000030F00C01C001C603800380C1E
-%018038000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000FE307E0C038001C603800380C0F
-%C10070000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000FE300F88070001C603800380C03
-%E300E0000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000003003980E0001C603800380C00
-%7303C0000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000003181981C0001C703000380C30
-%330300000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000031C190380001C307000000C38
-%760600000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%0000000000000000000000000000000000000000000000000000030FF103FF800F3FE000000C1F
-%E60FFE000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%00000000000000000000000000000000000000000000000000000307E303FF800F0FC000000C0F
-%C60FFF000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%%EndPreview
-%%BeginProlog
-%%BeginResource: SDRes
-/b4_inc_state save def
-/dict_count countdictstack def
-/op_count count 1 sub def
-userdict begin
-0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 10 setmiterlimit[] 0 setdash newpath
-/languagelevel where {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
-/bdef {bind def} bind def
-/c {setgray} bdef
-/l {neg lineto} bdef
-/rl {neg rlineto} bdef
-/lc {setlinecap} bdef
-/lj {setlinejoin} bdef
-/lw {setlinewidth} bdef
-/ml {setmiterlimit} bdef
-/ld {setdash} bdef
-/m {neg moveto} bdef
-/ct {6 2 roll neg 6 2 roll neg 6 2 roll neg curveto} bdef
-/r {rotate} bdef
-/t {neg translate} bdef
-/s {scale} bdef
-/sw {show} bdef
-/gs {gsave} bdef
-/gr {grestore} bdef
-/f {findfont dup length dict begin
-{1 index /FID ne {def} {pop pop} ifelse} forall /Encoding ISOLatin1Encoding def
-currentdict end /NFont exch definefont pop /NFont findfont} bdef
-/p {closepath} bdef
-/sf {scalefont setfont} bdef
-/ef {eofill}bdef
-/pc {closepath stroke}bdef
-/ps {stroke}bdef
-/pum {matrix currentmatrix}bdef
-/pom {setmatrix}bdef
-/bs {/aString exch def /nXOfs exch def /nWidth exch def currentpoint nXOfs 0 rmoveto pum nWidth aString stringwidth pop div 1 scale aString show pom moveto} bdef
-%%EndResource
-%%EndProlog
-%%BeginSetup
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-pum
-0.02834 0.02833 s
-0 -20290 t
-/tm matrix currentmatrix def
-gs
-tm setmatrix
--635 -635 t
-1 1 s
-635 635 m 27274 635 l 27274 20924 l 635 20924 l 635 635 l eoclip newpath
-0 lw 1 lj 0.000 c 17781 10461 m 14606 10461 l 14606 6016 l 20956 6016 l
-20956 10461 l 17781 10461 l pc
-gs
-pum
-15663 7567 t
-65 0 m 65 -606 l 274 -606 l 321 -606 357 -603 382 -597 ct 416 -589 446 -575 471 -554 ct
-503 -527 526 -492 542 -450 ct 558 -408 566 -360 566 -306 ct 566 -260 561 -219 550 -184 ct
-539 -148 525 -119 509 -95 ct 492 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-353 -3 320 0 284 0 ct p
-145 -71 m 275 -71 l 315 -71 346 -75 369 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 457 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -371 473 -419 452 -453 ct
-431 -487 406 -510 376 -522 ct 355 -530 320 -534 272 -534 ct 145 -534 l p ef
-965 -141 m 1042 -131 l 1030 -86 1007 -52 975 -27 ct 942 -2 900 9 849 9 ct
-785 9 734 -9 696 -49 ct 658 -88 640 -144 640 -215 ct 640 -289 659 -347 697 -387 ct
-735 -428 784 -449 845 -449 ct 903 -449 951 -429 989 -389 ct 1026 -349 1044 -292 1044 -220 ct
-1044 -216 1044 -209 1044 -200 ct 716 -200 l 719 -152 733 -115 757 -89 ct 782 -64 813 -51 849 -51 ct
-877 -51 900 -58 919 -72 ct 938 -87 l 954 -110 l p
-721 -261 m 966 -261 l 963 -298 953 -326 938 -344 ct 914 -373 883 -387 845 -387 ct
-811 -387 783 -376 759 -353 ct 736 -330 l 723 -300 l p ef
-1427 -160 m 1500 -151 l 1492 -100 1472 -61 1439 -32 ct 1406 -4 1365 9 1317 9 ct
-1257 9 1209 -9 1172 -49 ct 1136 -88 1118 -144 1118 -217 ct 1118 -265 1125 -306 1141 -342 ct
-1157 -378 1181 -404 1213 -422 ct 1245 -440 1280 -449 1318 -449 ct 1365 -449 1404 -437 1435 -412 ct
-1465 -388 1485 -354 1493 -310 ct 1421 -299 l 1414 -328 1402 -350 1384 -365 ct
-1367 -380 1345 -387 1321 -387 ct 1283 -387 1253 -374 1229 -347 ct 1206 -320 1194 -278 1194 -220 ct
-1194 -161 1205 -118 1228 -91 ct 1251 -64 1280 -51 1317 -51 ct 1346 -51 1370 -60 1390 -78 ct
-1409 -96 l 1422 -123 l p ef
-1564 -520 m 1564 -606 l 1638 -606 l 1638 -520 l p
-1564 0 m 1564 -439 l 1638 -439 l 1638 0 l p ef
-1748 0 m 1748 -439 l 1815 -439 l 1815 -377 l 1829 -399 1847 -416 1870 -429 ct
-1893 -442 1919 -449 1948 -449 ct 1981 -449 2007 -442 2028 -428 ct 2049 -415 2064 -396 2072 -372 ct
-2107 -423 2152 -449 2208 -449 ct 2251 -449 2285 -437 2308 -412 ct 2332 -388 2343 -351 2343 -301 ct
-2343 0 l 2269 0 l 2269 -276 l 2269 -306 2267 -327 2262 -340 ct 2257 -354 2249 -364 2236 -372 ct
-2223 -380 2208 -384 2191 -384 ct 2160 -384 2135 -374 2114 -353 ct 2094 -333 2084 -300 2084 -255 ct
-2084 0 l 2009 0 l 2009 -285 l 2009 -318 2003 -343 1991 -359 ct 1979 -376 1959 -384 1932 -384 ct
-1911 -384 1891 -379 1873 -368 ct 1856 -357 1843 -340 1835 -319 ct 1827 -298 1823 -267 1823 -227 ct
-1823 0 l p ef
-2750 -54 m 2722 -30 2696 -14 2670 -4 ct 2645 5 2617 9 2588 9 ct 2540 9 2503 -1 2477 -25 ct
-2451 -49 2438 -79 2438 -115 ct 2438 -137 2443 -156 2453 -174 ct 2463 -192 2475 -206 2491 -217 ct
-2507 -228 2525 -236 2545 -241 ct 2559 -245 2581 -249 2611 -253 ct 2671 -260 2715 -268 2744 -278 ct
-2744 -288 2744 -295 2744 -298 ct 2744 -328 2737 -349 2723 -362 ct 2704 -379 2676 -387 2638 -387 ct
-2603 -387 2577 -381 2561 -369 ct 2544 -356 2532 -335 2524 -303 ct 2451 -313 l
-2458 -345 2468 -370 2484 -389 ct 2499 -408 2521 -423 2549 -433 ct 2578 -443 2611 -449 2649 -449 ct
-2687 -449 2717 -444 2740 -435 ct 2764 -427 2781 -415 2792 -402 ct 2803 -389 2811 -372 2815 -351 ct
-2818 -339 2819 -316 2819 -283 ct 2819 -184 l 2819 -114 2821 -71 2824 -52 ct
-2827 -34 2833 -16 2843 0 ct 2765 0 l 2757 -15 l 2752 -33 l p
-2744 -220 m 2717 -209 2676 -200 2622 -192 ct 2592 -187 2570 -182 2557 -177 ct
-2545 -171 2535 -163 2528 -153 ct 2521 -142 2518 -130 2518 -117 ct 2518 -98 2525 -81 2540 -68 ct
-2555 -55 2577 -48 2606 -48 ct 2635 -48 2660 -54 2683 -67 ct 2705 -79 2721 -96 2732 -118 ct
-2740 -135 2744 -160 2744 -193 ct p ef
-3076 -66 m 3087 0 l 3066 3 3047 5 3030 5 ct 3003 5 2982 1 2968 -7 ct 2953 -15 2942 -26 2936 -40 ct
-2930 -54 2927 -83 2927 -128 ct 2927 -381 l 2872 -381 l 2872 -439 l 2927 -439 l
-2927 -547 l 3001 -592 l 3001 -439 l 3076 -439 l 3076 -381 l 3001 -381 l
-3001 -124 l 3001 -103 3002 -89 3005 -83 ct 3008 -77 3012 -72 3018 -69 ct 3024 -65 3032 -63 3043 -63 ct
-3051 -63 l 3062 -64 l p ef
-3152 -520 m 3152 -606 l 3226 -606 l 3226 -520 l p
-3152 0 m 3152 -439 l 3226 -439 l 3226 0 l p ef
-3336 0 m 3336 -439 l 3403 -439 l 3403 -376 l 3436 -425 3482 -449 3543 -449 ct
-3570 -449 3594 -444 3616 -434 ct 3638 -425 3655 -412 3666 -397 ct 3677 -382 3685 -363 3689 -342 ct
-3692 -328 3693 -304 3693 -270 ct 3693 0 l 3619 0 l 3619 -267 l 3619 -297 3616 -320 3610 -335 ct
-3604 -350 3594 -362 3579 -371 ct 3565 -380 3547 -384 3527 -384 ct 3496 -384 3468 -374 3445 -354 ct
-3422 -334 3411 -296 3411 -239 ct 3411 0 l p ef
-3799 36 m 3871 47 l 3874 69 3883 85 3896 95 ct 3915 109 3940 116 3972 116 ct
-4006 116 4033 109 4052 95 ct 4071 82 4083 62 4090 38 ct 4094 22 4095 -8 4095 -57 ct
-4063 -19 4022 0 3974 0 ct 3913 0 3867 -21 3833 -65 ct 3800 -108 3784 -161 3784 -222 ct
-3784 -264 3791 -302 3807 -338 ct 3822 -373 3844 -400 3873 -420 ct 3901 -439 3935 -449 3974 -449 ct
-4026 -449 4069 -428 4102 -386 ct 4102 -439 l 4171 -439 l 4171 -59 l 4171 8 4164 57 4150 85 ct
-4136 114 4114 136 4084 153 ct 4054 169 4017 178 3972 178 ct 3920 178 3878 166 3845 142 ct
-3813 119 l 3798 83 l p
-3860 -227 m 3860 -169 3872 -127 3895 -101 ct 3918 -74 3946 -61 3981 -61 ct
-4015 -61 4044 -74 4067 -101 ct 4090 -127 4101 -168 4101 -224 ct 4101 -278 4090 -319 4066 -346 ct
-4042 -373 4013 -387 3979 -387 ct 3946 -387 3918 -374 3895 -347 ct 3872 -320 l
-3860 -280 l p ef
-pom
-pum
-16007 8520 t
-62 0 m 62 -606 l 142 -606 l 142 -71 l 440 -71 l 440 0 l p ef
-478 -219 m 478 -300 500 -361 545 -400 ct 583 -432 629 -449 684 -449 ct 744 -449 793 -429 832 -389 ct
-870 -350 889 -295 889 -225 ct 889 -169 881 -124 864 -92 ct 847 -60 822 -34 790 -16 ct
-757 0 722 9 684 9 ct 622 9 572 -9 534 -49 ct 497 -88 l 478 -145 l p
-554 -219 m 554 -163 566 -121 591 -93 ct 615 -65 646 -51 684 -51 ct 721 -51 751 -65 776 -93 ct
-800 -121 813 -164 813 -222 ct 813 -276 800 -317 776 -345 ct 751 -373 720 -387 684 -387 ct
-646 -387 615 -373 591 -345 ct 566 -317 l 554 -275 l p ef
-1062 0 m 928 -439 l 1005 -439 l 1075 -185 l 1101 -91 l 1102 -96 1110 -126 1124 -181 ct
-1194 -439 l 1270 -439 l 1336 -184 l 1358 -100 l 1383 -185 l 1458 -439 l
-1531 -439 l 1393 0 l 1316 0 l 1246 -263 l 1229 -337 l 1140 0 l p ef
-1811 0 m 1811 -606 l 2040 -606 l 2080 -606 2111 -604 2132 -600 ct 2162 -595 2187 -586 2207 -572 ct
-2227 -558 2243 -538 2255 -513 ct 2268 -488 2274 -461 2274 -430 ct 2274 -379 2257 -335 2224 -300 ct
-2192 -264 2132 -246 2047 -246 ct 1891 -246 l 1891 0 l p
-1891 -318 m 2048 -318 l 2100 -318 2136 -327 2158 -346 ct 2180 -366 2191 -393 2191 -428 ct
-2191 -453 2185 -475 2172 -493 ct 2159 -511 2142 -523 2121 -529 ct 2108 -532 2083 -534 2046 -534 ct
-1891 -534 l p ef
-2644 -54 m 2616 -30 2590 -14 2564 -4 ct 2539 5 2511 9 2482 9 ct 2434 9 2397 -1 2371 -25 ct
-2345 -49 2332 -79 2332 -115 ct 2332 -137 2337 -156 2347 -174 ct 2357 -192 2369 -206 2385 -217 ct
-2401 -228 2419 -236 2439 -241 ct 2453 -245 2475 -249 2505 -253 ct 2565 -260 2609 -268 2638 -278 ct
-2638 -288 2638 -295 2638 -298 ct 2638 -328 2631 -349 2617 -362 ct 2598 -379 2570 -387 2532 -387 ct
-2497 -387 2471 -381 2455 -369 ct 2438 -356 2426 -335 2418 -303 ct 2345 -313 l
-2352 -345 2362 -370 2378 -389 ct 2393 -408 2415 -423 2443 -433 ct 2472 -443 2505 -449 2543 -449 ct
-2581 -449 2611 -444 2634 -435 ct 2658 -427 2675 -415 2686 -402 ct 2697 -389 2705 -372 2709 -351 ct
-2712 -339 2713 -316 2713 -283 ct 2713 -184 l 2713 -114 2715 -71 2718 -52 ct
-2721 -34 2727 -16 2737 0 ct 2659 0 l 2651 -15 l 2646 -33 l p
-2638 -220 m 2611 -209 2570 -200 2516 -192 ct 2486 -187 2464 -182 2451 -177 ct
-2439 -171 2429 -163 2422 -153 ct 2415 -142 2412 -130 2412 -117 ct 2412 -98 2419 -81 2434 -68 ct
-2449 -55 2471 -48 2500 -48 ct 2529 -48 2554 -54 2577 -67 ct 2599 -79 2615 -96 2626 -118 ct
-2634 -135 2638 -160 2638 -193 ct p ef
-2778 -131 m 2851 -142 l 2855 -113 2867 -90 2886 -74 ct 2905 -59 2931 -51 2965 -51 ct
-2999 -51 3024 -58 3041 -72 ct 3058 -86 3066 -102 3066 -121 ct 3066 -138 3059 -151 3044 -160 ct
-3034 -167 3008 -175 2968 -186 ct 2913 -199 2875 -211 2854 -221 ct 2833 -231 2817 -245 2806 -263 ct
-2795 -281 2790 -301 2790 -322 ct 2790 -342 2794 -360 2803 -376 ct 2812 -393 2825 -407 2840 -418 ct
-2852 -427 2867 -434 2887 -440 ct 2907 -446 2929 -449 2952 -449 ct 2986 -449 3016 -444 3042 -434 ct
-3069 -424 3088 -410 3100 -393 ct 3113 -376 3121 -354 3126 -325 ct 3053 -315 l
-3050 -338 3040 -356 3024 -368 ct 3008 -381 2986 -387 2957 -387 ct 2923 -387 2898 -382 2884 -370 ct
-2869 -359 2862 -346 2862 -331 ct 2862 -321 2865 -312 2871 -305 ct 2877 -297 2887 -290 2900 -285 ct
-2907 -282 2929 -276 2965 -266 ct 3018 -252 3055 -240 3076 -231 ct 3096 -222 3113 -209 3125 -192 ct
-3136 -175 3142 -154 3142 -129 ct 3142 -104 3135 -80 3121 -58 ct 3106 -37 3085 -20 3058 -8 ct
-3031 3 3000 9 2965 9 ct 2908 9 2865 -1 2835 -25 ct 2805 -49 l 2786 -84 l p ef
-3175 -131 m 3248 -142 l 3252 -113 3264 -90 3283 -74 ct 3302 -59 3328 -51 3362 -51 ct
-3396 -51 3421 -58 3438 -72 ct 3455 -86 3463 -102 3463 -121 ct 3463 -138 3456 -151 3441 -160 ct
-3431 -167 3405 -175 3365 -186 ct 3310 -199 3272 -211 3251 -221 ct 3230 -231 3214 -245 3203 -263 ct
-3192 -281 3187 -301 3187 -322 ct 3187 -342 3191 -360 3200 -376 ct 3209 -393 3222 -407 3237 -418 ct
-3249 -427 3264 -434 3284 -440 ct 3304 -446 3326 -449 3349 -449 ct 3383 -449 3413 -444 3439 -434 ct
-3466 -424 3485 -410 3497 -393 ct 3510 -376 3518 -354 3523 -325 ct 3450 -315 l
-3447 -338 3437 -356 3421 -368 ct 3405 -381 3383 -387 3354 -387 ct 3320 -387 3295 -382 3281 -370 ct
-3266 -359 3259 -346 3259 -331 ct 3259 -321 3262 -312 3268 -305 ct 3274 -297 3284 -290 3297 -285 ct
-3304 -282 3326 -276 3362 -266 ct 3415 -252 3452 -240 3473 -231 ct 3493 -222 3510 -209 3522 -192 ct
-3533 -175 3539 -154 3539 -129 ct 3539 -104 3532 -80 3518 -58 ct 3503 -37 3482 -20 3455 -8 ct
-3428 3 3397 9 3362 9 ct 3305 9 3262 -1 3232 -25 ct 3202 -49 l 3183 -84 l p ef
-pom
-pum
-16827 9473 t
-69 0 m 69 -606 l 478 -606 l 478 -534 l 149 -534 l 149 -346 l 434 -346 l
-434 -275 l 149 -275 l 149 0 l p ef
-585 -520 m 585 -606 l 659 -606 l 659 -520 l p
-585 0 m 585 -439 l 659 -439 l 659 0 l p ef
-768 0 m 768 -606 l 842 -606 l 842 0 l p ef
-1118 -66 m 1129 0 l 1108 3 1089 5 1072 5 ct 1045 5 1024 1 1010 -7 ct 995 -15 984 -26 978 -40 ct
-972 -54 969 -83 969 -128 ct 969 -381 l 914 -381 l 914 -439 l 969 -439 l
-969 -547 l 1043 -592 l 1043 -439 l 1118 -439 l 1118 -381 l 1043 -381 l
-1043 -124 l 1043 -103 1044 -89 1047 -83 ct 1050 -77 1054 -72 1060 -69 ct 1066 -65 1074 -63 1085 -63 ct
-1093 -63 l 1104 -64 l p ef
-1494 -141 m 1571 -131 l 1559 -86 1536 -52 1504 -27 ct 1471 -2 1429 9 1378 9 ct
-1314 9 1263 -9 1225 -49 ct 1187 -88 1169 -144 1169 -215 ct 1169 -289 1188 -347 1226 -387 ct
-1264 -428 1313 -449 1374 -449 ct 1432 -449 1480 -429 1518 -389 ct 1555 -349 1573 -292 1573 -220 ct
-1573 -216 1573 -209 1573 -200 ct 1245 -200 l 1248 -152 1262 -115 1286 -89 ct
-1311 -64 1342 -51 1378 -51 ct 1406 -51 1429 -58 1448 -72 ct 1467 -87 l 1483 -110 l
-p
-1250 -261 m 1495 -261 l 1492 -298 1482 -326 1467 -344 ct 1443 -373 1412 -387 1374 -387 ct
-1340 -387 1312 -376 1288 -353 ct 1265 -330 l 1252 -300 l p ef
-1669 0 m 1669 -439 l 1736 -439 l 1736 -372 l 1753 -403 1768 -424 1783 -434 ct
-1797 -444 1813 -449 1831 -449 ct 1856 -449 1881 -441 1907 -425 ct 1882 -356 l
-1863 -366 1845 -372 1827 -372 ct 1811 -372 1796 -367 1783 -357 ct 1770 -347 1761 -334 1755 -316 ct
-1747 -290 1743 -261 1743 -229 ct 1743 0 l p ef
-pom
-gr
-11317 10321 m 11312 10318 l 11099 10206 l 11093 10203 l 10924 10032 l
-10921 10026 l 10811 9811 l 10808 9805 l 10769 9556 l 10769 9549 l
-10808 9299 l 10811 9293 l 10921 9078 l 10924 9072 l 11093 8901 l 11099 8898 l
-11312 8786 l 11317 8784 l 11564 8744 l 11571 8744 l 11817 8784 l 11823 8786 l
-12036 8898 l 12041 8901 l 12210 9072 l 12213 9078 l 12324 9293 l 12326 9299 l
-12366 9549 l 12366 9556 l 12326 9805 l 12324 9811 l 12213 10026 l
-12210 10032 l 12041 10203 l 12036 10206 l 11823 10318 l 11817 10321 l
-11571 10361 l 11564 10361 l 11317 10321 l p
-11567 10319 m 11806 10279 l 12013 10171 l 12178 10004 l 12285 9794 l
-12324 9552 l 12285 9310 l 12178 9100 l 12013 8933 l 11806 8825 l 11567 8786 l
-11328 8825 l 11121 8933 l 10956 9100 l 10849 9310 l 10811 9552 l 10849 9794 l
-10956 10004 l 11121 10171 l 11328 10279 l 11567 10319 l p
-11049 9029 m 11079 8998 l 11286 9208 l 11493 9417 l 11700 9627 l 11907 9837 l
-12115 10048 l 12085 10078 l 11877 9868 l 11670 9658 l 11463 9448 l
-11255 9238 l 11049 9029 l p
-11079 10078 m 11049 10049 l 11255 9838 l 11463 9628 l 11670 9418 l
-11878 9208 l 12086 8998 l 12115 9029 l 11907 9239 l 11700 9449 l 11493 9659 l
-11286 9869 l 11079 10078 l p ef
-1 lw 0 lj 11317 10321 m 11312 10318 l 11099 10206 l 11093 10203 l 10924 10032 l
-10921 10026 l 10811 9811 l 10808 9805 l 10769 9556 l 10769 9549 l
-10808 9299 l 10811 9293 l 10921 9078 l 10924 9072 l 11093 8901 l 11099 8898 l
-11312 8786 l 11317 8784 l 11564 8744 l 11571 8744 l 11817 8784 l 11823 8786 l
-12036 8898 l 12041 8901 l 12210 9072 l 12213 9078 l 12324 9293 l 12326 9299 l
-12366 9549 l 12366 9556 l 12326 9805 l 12324 9811 l 12213 10026 l
-12210 10032 l 12041 10203 l 12036 10206 l 11823 10318 l 11817 10321 l
-11571 10361 l 11564 10361 l 11317 10321 l pc
-11567 10319 m 11806 10279 l 12013 10171 l 12178 10004 l 12285 9794 l
-12324 9552 l 12285 9310 l 12178 9100 l 12013 8933 l 11806 8825 l 11567 8786 l
-11328 8825 l 11121 8933 l 10956 9100 l 10849 9310 l 10811 9552 l 10849 9794 l
-10956 10004 l 11121 10171 l 11328 10279 l 11567 10319 l pc
-11049 9029 m 11079 8998 l 11286 9208 l 11493 9417 l 11700 9627 l 11907 9837 l
-12115 10048 l 12085 10078 l 11877 9868 l 11670 9658 l 11463 9448 l
-11255 9238 l 11049 9029 l pc
-11079 10078 m 11049 10049 l 11255 9838 l 11463 9628 l 11670 9418 l
-11878 9208 l 12086 8998 l 12115 9029 l 11907 9239 l 11700 9449 l 11493 9659 l
-11286 9869 l 11079 10078 l pc
-7989 6986 m 7538 6836 l 7539 7136 l 7989 6986 l p ef
-5716 6986 m 7629 6986 l ps
-14606 6986 m 14155 6836 l 14156 7136 l 14606 6986 l p ef
-9526 6986 m 14246 6986 l ps
-10769 9526 m 10318 9376 l 10319 9676 l 10769 9526 l p ef
-5716 9526 m 10409 9526 l ps
-14606 9526 m 14155 9376 l 14156 9676 l 14606 9526 l p ef
-12426 9526 m 14246 9526 l ps
-0 lw 1 lj 10061 16546 m 6251 16546 l 6251 12736 l 13871 12736 l 13871 16546 l
-10061 16546 l pc
-gs
-pum
-9102 13970 t
-64 0 m 64 -606 l 146 -606 l 465 -130 l 465 -606 l 542 -606 l 542 0 l
-459 0 l 141 -476 l 141 0 l p ef
-1106 -212 m 1187 -192 l 1170 -126 1140 -76 1096 -41 ct 1052 -6 999 10 936 10 ct
-870 10 817 -2 776 -29 ct 735 -56 704 -94 683 -145 ct 661 -195 651 -249 651 -307 ct
-651 -370 663 -425 687 -472 ct 711 -519 745 -555 790 -580 ct 834 -604 883 -616 937 -616 ct
-998 -616 1049 -601 1090 -570 ct 1131 -539 1160 -496 1176 -440 ct 1097 -421 l
-1083 -465 1063 -497 1036 -517 ct 1009 -537 976 -547 935 -547 ct 889 -547 850 -536 818 -514 ct
-787 -492 765 -462 752 -424 ct 740 -386 733 -348 733 -308 ct 733 -256 741 -211 756 -173 ct
-771 -134 794 -105 826 -86 ct 858 -67 892 -58 929 -58 ct 974 -58 1012 -71 1043 -97 ct
-1074 -123 l 1095 -161 l p ef
-1284 -295 m 1284 -395 1311 -474 1366 -531 ct 1420 -588 1489 -617 1575 -617 ct
-1631 -617 1681 -603 1726 -576 ct 1771 -550 1805 -512 1829 -465 ct 1852 -417 1864 -362 1864 -302 ct
-1864 -240 1852 -185 1827 -137 ct 1802 -88 1767 -52 1722 -27 ct 1676 -2 1627 10 1574 10 ct
-1517 10 1466 -3 1421 -31 ct 1376 -58 1342 -96 1319 -143 ct 1296 -191 l 1284 -242 l
-p
-1367 -294 m 1367 -220 1387 -163 1426 -121 ct 1465 -79 1515 -58 1574 -58 ct
-1634 -58 1684 -79 1723 -122 ct 1762 -164 1782 -224 1782 -302 ct 1782 -352 1773 -395 1757 -431 ct
-1740 -468 1715 -497 1683 -517 ct 1651 -537 1615 -547 1575 -547 ct 1518 -547 1470 -528 1429 -489 ct
-1388 -450 l 1367 -385 l p ef
-pom
-pum
-7514 14923 t
-38 -194 m 113 -201 l 117 -171 125 -146 138 -126 ct 151 -107 172 -91 199 -79 ct
-227 -67 258 -61 292 -61 ct 323 -61 350 -66 373 -75 ct 397 -84 414 -96 426 -112 ct
-437 -128 443 -145 443 -164 ct 443 -183 437 -200 426 -214 ct 415 -228 397 -240 372 -250 ct
-355 -256 319 -266 264 -279 ct 208 -293 169 -305 147 -317 ct 118 -332 96 -351 82 -374 ct
-68 -396 61 -421 61 -449 ct 61 -480 69 -508 87 -535 ct 104 -561 130 -582 163 -595 ct
-196 -609 233 -616 274 -616 ct 319 -616 359 -609 393 -594 ct 427 -580 454 -559 472 -531 ct
-491 -502 501 -471 502 -435 ct 425 -429 l 421 -468 407 -496 383 -516 ct 359 -536 324 -545 277 -545 ct
-229 -545 194 -537 171 -519 ct 149 -501 138 -480 138 -454 ct 138 -433 146 -415 162 -401 ct
-177 -387 217 -372 283 -357 ct 348 -343 393 -330 417 -319 ct 452 -303 478 -282 495 -257 ct
-512 -232 520 -203 520 -171 ct 520 -138 511 -108 492 -80 ct 474 -51 447 -29 413 -13 ct
-378 2 339 10 296 10 ct 241 10 195 2 158 -13 ct 121 -29 92 -53 71 -85 ct 50 -117 l
-39 -154 l p ef
-638 -520 m 638 -606 l 712 -606 l 712 -520 l p
-638 0 m 638 -439 l 712 -439 l 712 0 l p ef
-822 0 m 822 -439 l 889 -439 l 889 -376 l 922 -425 968 -449 1029 -449 ct
-1056 -449 1080 -444 1102 -434 ct 1124 -425 1141 -412 1152 -397 ct 1163 -382 1171 -363 1175 -342 ct
-1178 -328 1179 -304 1179 -270 ct 1179 0 l 1105 0 l 1105 -267 l 1105 -297 1102 -320 1096 -335 ct
-1090 -350 1080 -362 1065 -371 ct 1051 -380 1033 -384 1013 -384 ct 982 -384 954 -374 931 -354 ct
-908 -334 897 -296 897 -239 ct 897 0 l p ef
-1600 -141 m 1677 -131 l 1665 -86 1642 -52 1610 -27 ct 1577 -2 1535 9 1484 9 ct
-1420 9 1369 -9 1331 -49 ct 1293 -88 1275 -144 1275 -215 ct 1275 -289 1294 -347 1332 -387 ct
-1370 -428 1419 -449 1480 -449 ct 1538 -449 1586 -429 1624 -389 ct 1661 -349 1679 -292 1679 -220 ct
-1679 -216 1679 -209 1679 -200 ct 1351 -200 l 1354 -152 1368 -115 1392 -89 ct
-1417 -64 1448 -51 1484 -51 ct 1512 -51 1535 -58 1554 -72 ct 1573 -87 l 1589 -110 l
-p
-1356 -261 m 1601 -261 l 1598 -298 1588 -326 1573 -344 ct 1549 -373 1518 -387 1480 -387 ct
-1446 -387 1418 -376 1394 -353 ct 1371 -330 l 1358 -300 l p ef
-1958 10 m 2133 -616 l 2193 -616 l 2017 10 l p ef
-2931 -212 m 3012 -192 l 2995 -126 2965 -76 2921 -41 ct 2877 -6 2824 10 2761 10 ct
-2695 10 2642 -2 2601 -29 ct 2560 -56 2529 -94 2508 -145 ct 2486 -195 2476 -249 2476 -307 ct
-2476 -370 2488 -425 2512 -472 ct 2536 -519 2570 -555 2615 -580 ct 2659 -604 2708 -616 2762 -616 ct
-2823 -616 2874 -601 2915 -570 ct 2956 -539 2985 -496 3001 -440 ct 2922 -421 l
-2908 -465 2888 -497 2861 -517 ct 2834 -537 2801 -547 2760 -547 ct 2714 -547 2675 -536 2643 -514 ct
-2612 -492 2590 -462 2577 -424 ct 2565 -386 2558 -348 2558 -308 ct 2558 -256 2566 -211 2581 -173 ct
-2596 -134 2619 -105 2651 -86 ct 2683 -67 2717 -58 2754 -58 ct 2799 -58 2837 -71 2868 -97 ct
-2899 -123 l 2920 -161 l p ef
-3097 -219 m 3097 -300 3119 -361 3164 -400 ct 3202 -432 3248 -449 3303 -449 ct
-3363 -449 3412 -429 3451 -389 ct 3489 -350 3508 -295 3508 -225 ct 3508 -169 3500 -124 3483 -92 ct
-3466 -60 3441 -34 3409 -16 ct 3376 0 3341 9 3303 9 ct 3241 9 3191 -9 3153 -49 ct
-3116 -88 l 3097 -145 l p
-3173 -219 m 3173 -163 3185 -121 3210 -93 ct 3234 -65 3265 -51 3303 -51 ct 3340 -51 3370 -65 3395 -93 ct
-3419 -121 3432 -164 3432 -222 ct 3432 -276 3419 -317 3395 -345 ct 3370 -373 3339 -387 3303 -387 ct
-3265 -387 3234 -373 3210 -345 ct 3185 -317 l 3173 -275 l p ef
-3571 -131 m 3644 -142 l 3648 -113 3660 -90 3679 -74 ct 3698 -59 3724 -51 3758 -51 ct
-3792 -51 3817 -58 3834 -72 ct 3851 -86 3859 -102 3859 -121 ct 3859 -138 3852 -151 3837 -160 ct
-3827 -167 3801 -175 3761 -186 ct 3706 -199 3668 -211 3647 -221 ct 3626 -231 3610 -245 3599 -263 ct
-3588 -281 3583 -301 3583 -322 ct 3583 -342 3587 -360 3596 -376 ct 3605 -393 3618 -407 3633 -418 ct
-3645 -427 3660 -434 3680 -440 ct 3700 -446 3722 -449 3745 -449 ct 3779 -449 3809 -444 3835 -434 ct
-3862 -424 3881 -410 3893 -393 ct 3906 -376 3914 -354 3919 -325 ct 3846 -315 l
-3843 -338 3833 -356 3817 -368 ct 3801 -381 3779 -387 3750 -387 ct 3716 -387 3691 -382 3677 -370 ct
-3662 -359 3655 -346 3655 -331 ct 3655 -321 3658 -312 3664 -305 ct 3670 -297 3680 -290 3693 -285 ct
-3700 -282 3722 -276 3758 -266 ct 3811 -252 3848 -240 3869 -231 ct 3889 -222 3906 -209 3918 -192 ct
-3929 -175 3935 -154 3935 -129 ct 3935 -104 3928 -80 3914 -58 ct 3899 -37 3878 -20 3851 -8 ct
-3824 3 3793 9 3758 9 ct 3701 9 3658 -1 3628 -25 ct 3598 -49 l 3579 -84 l p ef
-3998 -520 m 3998 -606 l 4072 -606 l 4072 -520 l p
-3998 0 m 3998 -439 l 4072 -439 l 4072 0 l p ef
-4183 0 m 4183 -439 l 4250 -439 l 4250 -376 l 4283 -425 4329 -449 4390 -449 ct
-4417 -449 4441 -444 4463 -434 ct 4485 -425 4502 -412 4513 -397 ct 4524 -382 4532 -363 4536 -342 ct
-4539 -328 4540 -304 4540 -270 ct 4540 0 l 4466 0 l 4466 -267 l 4466 -297 4463 -320 4457 -335 ct
-4451 -350 4441 -362 4426 -371 ct 4412 -380 4394 -384 4374 -384 ct 4343 -384 4315 -374 4292 -354 ct
-4269 -334 4258 -296 4258 -239 ct 4258 0 l p ef
-4960 -141 m 5037 -131 l 5025 -86 5002 -52 4970 -27 ct 4937 -2 4895 9 4844 9 ct
-4780 9 4729 -9 4691 -49 ct 4653 -88 4635 -144 4635 -215 ct 4635 -289 4654 -347 4692 -387 ct
-4730 -428 4779 -449 4840 -449 ct 4898 -449 4946 -429 4984 -389 ct 5021 -349 5039 -292 5039 -220 ct
-5039 -216 5039 -209 5039 -200 ct 4711 -200 l 4714 -152 4728 -115 4752 -89 ct
-4777 -64 4808 -51 4844 -51 ct 4872 -51 4895 -58 4914 -72 ct 4933 -87 l 4949 -110 l
-p
-4716 -261 m 4961 -261 l 4958 -298 4948 -326 4933 -344 ct 4909 -373 4878 -387 4840 -387 ct
-4806 -387 4778 -376 4754 -353 ct 4731 -330 l 4718 -300 l p ef
-pom
-pum
-8136 15876 t
-349 -237 m 349 -308 l 605 -309 l 605 -84 l 566 -52 525 -29 483 -13 ct
-441 2 398 10 354 10 ct 295 10 241 -2 192 -27 ct 143 -53 107 -90 82 -138 ct 57 -186 45 -240 45 -300 ct
-45 -359 57 -414 82 -465 ct 106 -516 142 -554 188 -579 ct 234 -604 288 -616 348 -616 ct
-392 -616 432 -609 467 -595 ct 502 -581 530 -561 550 -535 ct 571 -510 586 -477 596 -436 ct
-524 -416 l 515 -447 504 -472 490 -489 ct 476 -507 457 -521 432 -532 ct 407 -542 379 -547 349 -547 ct
-312 -547 280 -542 253 -531 ct 227 -520 205 -505 189 -487 ct 172 -468 160 -449 150 -427 ct
-135 -389 127 -349 127 -305 ct 127 -251 137 -205 155 -169 ct 174 -133 201 -106 236 -88 ct
-272 -70 310 -62 350 -62 ct 385 -62 418 -68 452 -82 ct 485 -95 510 -109 527 -124 ct
-527 -237 l p ef
-1017 -141 m 1094 -131 l 1082 -86 1059 -52 1027 -27 ct 994 -2 952 9 901 9 ct
-837 9 786 -9 748 -49 ct 710 -88 692 -144 692 -215 ct 692 -289 711 -347 749 -387 ct
-787 -428 836 -449 897 -449 ct 955 -449 1003 -429 1041 -389 ct 1078 -349 1096 -292 1096 -220 ct
-1096 -216 1096 -209 1096 -200 ct 768 -200 l 771 -152 785 -115 809 -89 ct 834 -64 865 -51 901 -51 ct
-929 -51 952 -58 971 -72 ct 990 -87 l 1006 -110 l p
-773 -261 m 1018 -261 l 1015 -298 1005 -326 990 -344 ct 966 -373 935 -387 897 -387 ct
-863 -387 835 -376 811 -353 ct 788 -330 l 775 -300 l p ef
-1193 0 m 1193 -439 l 1260 -439 l 1260 -376 l 1293 -425 1339 -449 1400 -449 ct
-1427 -449 1451 -444 1473 -434 ct 1495 -425 1512 -412 1523 -397 ct 1534 -382 1542 -363 1546 -342 ct
-1549 -328 1550 -304 1550 -270 ct 1550 0 l 1476 0 l 1476 -267 l 1476 -297 1473 -320 1467 -335 ct
-1461 -350 1451 -362 1436 -371 ct 1422 -380 1404 -384 1384 -384 ct 1353 -384 1325 -374 1302 -354 ct
-1279 -334 1268 -296 1268 -239 ct 1268 0 l p ef
-1970 -141 m 2047 -131 l 2035 -86 2012 -52 1980 -27 ct 1947 -2 1905 9 1854 9 ct
-1790 9 1739 -9 1701 -49 ct 1663 -88 1645 -144 1645 -215 ct 1645 -289 1664 -347 1702 -387 ct
-1740 -428 1789 -449 1850 -449 ct 1908 -449 1956 -429 1994 -389 ct 2031 -349 2049 -292 2049 -220 ct
-2049 -216 2049 -209 2049 -200 ct 1721 -200 l 1724 -152 1738 -115 1762 -89 ct
-1787 -64 1818 -51 1854 -51 ct 1882 -51 1905 -58 1924 -72 ct 1943 -87 l 1959 -110 l
-p
-1726 -261 m 1971 -261 l 1968 -298 1958 -326 1943 -344 ct 1919 -373 1888 -387 1850 -387 ct
-1816 -387 1788 -376 1764 -353 ct 1741 -330 l 1728 -300 l p ef
-2145 0 m 2145 -439 l 2212 -439 l 2212 -372 l 2229 -403 2244 -424 2259 -434 ct
-2273 -444 2289 -449 2307 -449 ct 2332 -449 2357 -441 2383 -425 ct 2358 -356 l
-2339 -366 2321 -372 2303 -372 ct 2287 -372 2272 -367 2259 -357 ct 2246 -347 2237 -334 2231 -316 ct
-2223 -290 2219 -261 2219 -229 ct 2219 0 l p ef
-2723 -54 m 2695 -30 2669 -14 2643 -4 ct 2618 5 2590 9 2561 9 ct 2513 9 2476 -1 2450 -25 ct
-2424 -49 2411 -79 2411 -115 ct 2411 -137 2416 -156 2426 -174 ct 2436 -192 2448 -206 2464 -217 ct
-2480 -228 2498 -236 2518 -241 ct 2532 -245 2554 -249 2584 -253 ct 2644 -260 2688 -268 2717 -278 ct
-2717 -288 2717 -295 2717 -298 ct 2717 -328 2710 -349 2696 -362 ct 2677 -379 2649 -387 2611 -387 ct
-2576 -387 2550 -381 2534 -369 ct 2517 -356 2505 -335 2497 -303 ct 2424 -313 l
-2431 -345 2441 -370 2457 -389 ct 2472 -408 2494 -423 2522 -433 ct 2551 -443 2584 -449 2622 -449 ct
-2660 -449 2690 -444 2713 -435 ct 2737 -427 2754 -415 2765 -402 ct 2776 -389 2784 -372 2788 -351 ct
-2791 -339 2792 -316 2792 -283 ct 2792 -184 l 2792 -114 2794 -71 2797 -52 ct
-2800 -34 2806 -16 2816 0 ct 2738 0 l 2730 -15 l 2725 -33 l p
-2717 -220 m 2690 -209 2649 -200 2595 -192 ct 2565 -187 2543 -182 2530 -177 ct
-2518 -171 2508 -163 2501 -153 ct 2494 -142 2491 -130 2491 -117 ct 2491 -98 2498 -81 2513 -68 ct
-2528 -55 2550 -48 2579 -48 ct 2608 -48 2633 -54 2656 -67 ct 2678 -79 2694 -96 2705 -118 ct
-2713 -135 2717 -160 2717 -193 ct p ef
-3049 -66 m 3060 0 l 3039 3 3020 5 3003 5 ct 2976 5 2955 1 2941 -7 ct 2926 -15 2915 -26 2909 -40 ct
-2903 -54 2900 -83 2900 -128 ct 2900 -381 l 2845 -381 l 2845 -439 l 2900 -439 l
-2900 -547 l 2974 -592 l 2974 -439 l 3049 -439 l 3049 -381 l 2974 -381 l
-2974 -124 l 2974 -103 2975 -89 2978 -83 ct 2981 -77 2985 -72 2991 -69 ct 2997 -65 3005 -63 3016 -63 ct
-3024 -63 l 3035 -64 l p ef
-3097 -219 m 3097 -300 3119 -361 3164 -400 ct 3202 -432 3248 -449 3303 -449 ct
-3363 -449 3412 -429 3451 -389 ct 3489 -350 3508 -295 3508 -225 ct 3508 -169 3500 -124 3483 -92 ct
-3466 -60 3441 -34 3409 -16 ct 3376 0 3341 9 3303 9 ct 3241 9 3191 -9 3153 -49 ct
-3116 -88 l 3097 -145 l p
-3173 -219 m 3173 -163 3185 -121 3210 -93 ct 3234 -65 3265 -51 3303 -51 ct 3340 -51 3370 -65 3395 -93 ct
-3419 -121 3432 -164 3432 -222 ct 3432 -276 3419 -317 3395 -345 ct 3370 -373 3339 -387 3303 -387 ct
-3265 -387 3234 -373 3210 -345 ct 3185 -317 l 3173 -275 l p ef
-3600 0 m 3600 -439 l 3667 -439 l 3667 -372 l 3684 -403 3699 -424 3714 -434 ct
-3728 -444 3744 -449 3762 -449 ct 3787 -449 3812 -441 3838 -425 ct 3813 -356 l
-3794 -366 3776 -372 3758 -372 ct 3742 -372 3727 -367 3714 -357 ct 3701 -347 3692 -334 3686 -316 ct
-3678 -290 3674 -261 3674 -229 ct 3674 0 l p ef
-pom
-gr
-gs
-pum
-1284 9366 t
-79 0 m 79 -606 l 159 -606 l 159 0 l p ef
-293 0 m 293 -439 l 360 -439 l 360 -376 l 393 -425 439 -449 500 -449 ct
-527 -449 551 -444 573 -434 ct 595 -425 612 -412 623 -397 ct 634 -382 642 -363 646 -342 ct
-649 -328 650 -304 650 -270 ct 650 0 l 576 0 l 576 -267 l 576 -297 573 -320 567 -335 ct
-561 -350 551 -362 536 -371 ct 522 -380 504 -384 484 -384 ct 453 -384 425 -374 402 -354 ct
-379 -334 368 -296 368 -239 ct 368 0 l p ef
-769 168 m 769 -439 l 837 -439 l 837 -382 l 853 -404 871 -421 891 -432 ct
-911 -443 936 -449 965 -449 ct 1002 -449 1035 -439 1064 -420 ct 1092 -400 1114 -373 1129 -338 ct
-1143 -303 1151 -264 1151 -222 ct 1151 -177 1143 -137 1126 -101 ct 1110 -65 1087 -37 1056 -18 ct
-1025 0 993 9 959 9 ct 934 9 912 4 892 -5 ct 873 -16 856 -29 844 -45 ct 844 168 l
-p
-837 -217 m 837 -160 848 -118 871 -91 ct 894 -64 922 -51 954 -51 ct 987 -51 1016 -65 1039 -93 ct
-1063 -121 1075 -164 1075 -223 ct 1075 -279 1063 -321 1040 -349 ct 1017 -376 990 -390 958 -390 ct
-926 -390 898 -376 873 -346 ct 849 -316 l 837 -273 l p ef
-1507 0 m 1507 -64 l 1473 -14 1427 9 1368 9 ct 1342 9 1318 4 1295 -4 ct 1273 -14 1256 -27 1245 -42 ct
-1234 -57 1227 -75 1222 -97 ct 1219 -112 1218 -135 1218 -167 ct 1218 -439 l 1292 -439 l
-1292 -195 l 1292 -156 1294 -130 1297 -117 ct 1301 -97 1311 -82 1326 -70 ct
-1342 -59 1360 -54 1383 -54 ct 1405 -54 1426 -59 1446 -71 ct 1465 -82 1479 -98 1487 -118 ct
-1495 -137 1499 -166 1499 -203 ct 1499 -439 l 1574 -439 l 1574 0 l p ef
-1858 -66 m 1869 0 l 1848 3 1829 5 1812 5 ct 1785 5 1764 1 1750 -7 ct 1735 -15 1724 -26 1718 -40 ct
-1712 -54 1709 -83 1709 -128 ct 1709 -381 l 1654 -381 l 1654 -439 l 1709 -439 l
-1709 -547 l 1783 -592 l 1783 -439 l 1858 -439 l 1858 -381 l 1783 -381 l
-1783 -124 l 1783 -103 1784 -89 1787 -83 ct 1790 -77 1794 -72 1800 -69 ct 1806 -65 1814 -63 1825 -63 ct
-1833 -63 l 1844 -64 l p ef
-2190 0 m 2190 -381 l 2124 -381 l 2124 -439 l 2190 -439 l 2190 -485 l
-2190 -515 2193 -537 2198 -551 ct 2205 -571 2218 -586 2236 -598 ct 2254 -610 2279 -616 2312 -616 ct
-2333 -616 2356 -614 2381 -609 ct 2370 -544 l 2355 -547 2340 -548 2326 -548 ct
-2304 -548 2288 -543 2278 -533 ct 2269 -524 2264 -506 2264 -479 ct 2264 -439 l
-2350 -439 l 2350 -381 l 2264 -381 l 2264 0 l p ef
-2410 0 m 2410 -439 l 2477 -439 l 2477 -372 l 2494 -403 2509 -424 2524 -434 ct
-2538 -444 2554 -449 2572 -449 ct 2597 -449 2622 -441 2648 -425 ct 2623 -356 l
-2604 -366 2586 -372 2568 -372 ct 2552 -372 2537 -367 2524 -357 ct 2511 -347 2502 -334 2496 -316 ct
-2488 -290 2484 -261 2484 -229 ct 2484 0 l p ef
-2674 -219 m 2674 -300 2696 -361 2741 -400 ct 2779 -432 2825 -449 2880 -449 ct
-2940 -449 2989 -429 3028 -389 ct 3066 -350 3085 -295 3085 -225 ct 3085 -169 3077 -124 3060 -92 ct
-3043 -60 3018 -34 2986 -16 ct 2953 0 2918 9 2880 9 ct 2818 9 2768 -9 2730 -49 ct
-2693 -88 l 2674 -145 l p
-2750 -219 m 2750 -163 2762 -121 2787 -93 ct 2811 -65 2842 -51 2880 -51 ct 2917 -51 2947 -65 2972 -93 ct
-2996 -121 3009 -164 3009 -222 ct 3009 -276 2996 -317 2972 -345 ct 2947 -373 2916 -387 2880 -387 ct
-2842 -387 2811 -373 2787 -345 ct 2762 -317 l 2750 -275 l p ef
-3177 0 m 3177 -439 l 3244 -439 l 3244 -377 l 3258 -399 3276 -416 3299 -429 ct
-3322 -442 3348 -449 3377 -449 ct 3410 -449 3436 -442 3457 -428 ct 3478 -415 3493 -396 3501 -372 ct
-3536 -423 3581 -449 3637 -449 ct 3680 -449 3714 -437 3737 -412 ct 3761 -388 3772 -351 3772 -301 ct
-3772 0 l 3698 0 l 3698 -276 l 3698 -306 3696 -327 3691 -340 ct 3686 -354 3678 -364 3665 -372 ct
-3652 -380 3637 -384 3620 -384 ct 3589 -384 3564 -374 3543 -353 ct 3523 -333 3513 -300 3513 -255 ct
-3513 0 l 3438 0 l 3438 -285 l 3438 -318 3432 -343 3420 -359 ct 3408 -376 3388 -384 3361 -384 ct
-3340 -384 3320 -379 3302 -368 ct 3285 -357 3272 -340 3264 -319 ct 3256 -298 3252 -267 3252 -227 ct
-3252 0 l p ef
-pom
-pum
-2302 10319 t
--1 0 m 231 -606 l 318 -606 l 566 0 l 474 0 l 404 -183 l 150 -183 l
-83 0 l p
-173 -248 m 379 -248 l 315 -416 l 296 -467 282 -509 272 -542 ct 265 -503 254 -465 240 -426 ct
-p ef
-621 0 m 621 -606 l 830 -606 l 877 -606 913 -603 938 -597 ct 972 -589 1002 -575 1027 -554 ct
-1059 -527 1082 -492 1098 -450 ct 1114 -408 1122 -360 1122 -306 ct 1122 -260 1117 -219 1106 -184 ct
-1095 -148 1081 -119 1065 -95 ct 1048 -72 1029 -54 1009 -40 ct 989 -27 965 -17 937 -10 ct
-909 -3 876 0 840 0 ct p
-701 -71 m 831 -71 l 871 -71 902 -75 925 -82 ct 947 -90 965 -100 979 -114 ct
-998 -133 1013 -158 1023 -190 ct 1034 -222 1039 -261 1039 -307 ct 1039 -371 1029 -419 1008 -453 ct
-987 -487 962 -510 932 -522 ct 911 -530 876 -534 828 -534 ct 701 -534 l p ef
-1661 -212 m 1742 -192 l 1725 -126 1695 -76 1651 -41 ct 1607 -6 1554 10 1491 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -555 1345 -580 ct 1389 -604 1438 -616 1492 -616 ct
-1553 -616 1604 -601 1645 -570 ct 1686 -539 1715 -496 1731 -440 ct 1652 -421 l
-1638 -465 1618 -497 1591 -517 ct 1564 -537 1531 -547 1490 -547 ct 1444 -547 1405 -536 1373 -514 ct
-1342 -492 1320 -462 1307 -424 ct 1295 -386 1288 -348 1288 -308 ct 1288 -256 1296 -211 1311 -173 ct
-1326 -134 1349 -105 1381 -86 ct 1413 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -123 l 1650 -161 l p ef
-pom
-gr
-gs
-pum
-1284 6773 t
-79 0 m 79 -606 l 159 -606 l 159 0 l p ef
-293 0 m 293 -439 l 360 -439 l 360 -376 l 393 -425 439 -449 500 -449 ct
-527 -449 551 -444 573 -434 ct 595 -425 612 -412 623 -397 ct 634 -382 642 -363 646 -342 ct
-649 -328 650 -304 650 -270 ct 650 0 l 576 0 l 576 -267 l 576 -297 573 -320 567 -335 ct
-561 -350 551 -362 536 -371 ct 522 -380 504 -384 484 -384 ct 453 -384 425 -374 402 -354 ct
-379 -334 368 -296 368 -239 ct 368 0 l p ef
-769 168 m 769 -439 l 837 -439 l 837 -382 l 853 -404 871 -421 891 -432 ct
-911 -443 936 -449 965 -449 ct 1002 -449 1035 -439 1064 -420 ct 1092 -400 1114 -373 1129 -338 ct
-1143 -303 1151 -264 1151 -222 ct 1151 -177 1143 -137 1126 -101 ct 1110 -65 1087 -37 1056 -18 ct
-1025 0 993 9 959 9 ct 934 9 912 4 892 -5 ct 873 -16 856 -29 844 -45 ct 844 168 l
-p
-837 -217 m 837 -160 848 -118 871 -91 ct 894 -64 922 -51 954 -51 ct 987 -51 1016 -65 1039 -93 ct
-1063 -121 1075 -164 1075 -223 ct 1075 -279 1063 -321 1040 -349 ct 1017 -376 990 -390 958 -390 ct
-926 -390 898 -376 873 -346 ct 849 -316 l 837 -273 l p ef
-1507 0 m 1507 -64 l 1473 -14 1427 9 1368 9 ct 1342 9 1318 4 1295 -4 ct 1273 -14 1256 -27 1245 -42 ct
-1234 -57 1227 -75 1222 -97 ct 1219 -112 1218 -135 1218 -167 ct 1218 -439 l 1292 -439 l
-1292 -195 l 1292 -156 1294 -130 1297 -117 ct 1301 -97 1311 -82 1326 -70 ct
-1342 -59 1360 -54 1383 -54 ct 1405 -54 1426 -59 1446 -71 ct 1465 -82 1479 -98 1487 -118 ct
-1495 -137 1499 -166 1499 -203 ct 1499 -439 l 1574 -439 l 1574 0 l p ef
-1858 -66 m 1869 0 l 1848 3 1829 5 1812 5 ct 1785 5 1764 1 1750 -7 ct 1735 -15 1724 -26 1718 -40 ct
-1712 -54 1709 -83 1709 -128 ct 1709 -381 l 1654 -381 l 1654 -439 l 1709 -439 l
-1709 -547 l 1783 -592 l 1783 -439 l 1858 -439 l 1858 -381 l 1783 -381 l
-1783 -124 l 1783 -103 1784 -89 1787 -83 ct 1790 -77 1794 -72 1800 -69 ct 1806 -65 1814 -63 1825 -63 ct
-1833 -63 l 1844 -64 l p ef
-2190 0 m 2190 -381 l 2124 -381 l 2124 -439 l 2190 -439 l 2190 -485 l
-2190 -515 2193 -537 2198 -551 ct 2205 -571 2218 -586 2236 -598 ct 2254 -610 2279 -616 2312 -616 ct
-2333 -616 2356 -614 2381 -609 ct 2370 -544 l 2355 -547 2340 -548 2326 -548 ct
-2304 -548 2288 -543 2278 -533 ct 2269 -524 2264 -506 2264 -479 ct 2264 -439 l
-2350 -439 l 2350 -381 l 2264 -381 l 2264 0 l p ef
-2410 0 m 2410 -439 l 2477 -439 l 2477 -372 l 2494 -403 2509 -424 2524 -434 ct
-2538 -444 2554 -449 2572 -449 ct 2597 -449 2622 -441 2648 -425 ct 2623 -356 l
-2604 -366 2586 -372 2568 -372 ct 2552 -372 2537 -367 2524 -357 ct 2511 -347 2502 -334 2496 -316 ct
-2488 -290 2484 -261 2484 -229 ct 2484 0 l p ef
-2674 -219 m 2674 -300 2696 -361 2741 -400 ct 2779 -432 2825 -449 2880 -449 ct
-2940 -449 2989 -429 3028 -389 ct 3066 -350 3085 -295 3085 -225 ct 3085 -169 3077 -124 3060 -92 ct
-3043 -60 3018 -34 2986 -16 ct 2953 0 2918 9 2880 9 ct 2818 9 2768 -9 2730 -49 ct
-2693 -88 l 2674 -145 l p
-2750 -219 m 2750 -163 2762 -121 2787 -93 ct 2811 -65 2842 -51 2880 -51 ct 2917 -51 2947 -65 2972 -93 ct
-2996 -121 3009 -164 3009 -222 ct 3009 -276 2996 -317 2972 -345 ct 2947 -373 2916 -387 2880 -387 ct
-2842 -387 2811 -373 2787 -345 ct 2762 -317 l 2750 -275 l p ef
-3177 0 m 3177 -439 l 3244 -439 l 3244 -377 l 3258 -399 3276 -416 3299 -429 ct
-3322 -442 3348 -449 3377 -449 ct 3410 -449 3436 -442 3457 -428 ct 3478 -415 3493 -396 3501 -372 ct
-3536 -423 3581 -449 3637 -449 ct 3680 -449 3714 -437 3737 -412 ct 3761 -388 3772 -351 3772 -301 ct
-3772 0 l 3698 0 l 3698 -276 l 3698 -306 3696 -327 3691 -340 ct 3686 -354 3678 -364 3665 -372 ct
-3652 -380 3637 -384 3620 -384 ct 3589 -384 3564 -374 3543 -353 ct 3523 -333 3513 -300 3513 -255 ct
-3513 0 l 3438 0 l 3438 -285 l 3438 -318 3432 -343 3420 -359 ct 3408 -376 3388 -384 3361 -384 ct
-3340 -384 3320 -379 3302 -368 ct 3285 -357 3272 -340 3264 -319 ct 3256 -298 3252 -267 3252 -227 ct
-3252 0 l p ef
-pom
-pum
-2302 7726 t
--1 0 m 231 -606 l 318 -606 l 566 0 l 474 0 l 404 -183 l 150 -183 l
-83 0 l p
-173 -248 m 379 -248 l 315 -416 l 296 -467 282 -509 272 -542 ct 265 -503 254 -465 240 -426 ct
-p ef
-621 0 m 621 -606 l 830 -606 l 877 -606 913 -603 938 -597 ct 972 -589 1002 -575 1027 -554 ct
-1059 -527 1082 -492 1098 -450 ct 1114 -408 1122 -360 1122 -306 ct 1122 -260 1117 -219 1106 -184 ct
-1095 -148 1081 -119 1065 -95 ct 1048 -72 1029 -54 1009 -40 ct 989 -27 965 -17 937 -10 ct
-909 -3 876 0 840 0 ct p
-701 -71 m 831 -71 l 871 -71 902 -75 925 -82 ct 947 -90 965 -100 979 -114 ct
-998 -133 1013 -158 1023 -190 ct 1034 -222 1039 -261 1039 -307 ct 1039 -371 1029 -419 1008 -453 ct
-987 -487 962 -510 932 -522 ct 911 -530 876 -534 828 -534 ct 701 -534 l p ef
-1661 -212 m 1742 -192 l 1725 -126 1695 -76 1651 -41 ct 1607 -6 1554 10 1491 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -555 1345 -580 ct 1389 -604 1438 -616 1492 -616 ct
-1553 -616 1604 -601 1645 -570 ct 1686 -539 1715 -496 1731 -440 ct 1652 -421 l
-1638 -465 1618 -497 1591 -517 ct 1564 -537 1531 -547 1490 -547 ct 1444 -547 1405 -536 1373 -514 ct
-1342 -492 1320 -462 1307 -424 ct 1295 -386 1288 -348 1288 -308 ct 1288 -256 1296 -211 1311 -173 ct
-1326 -134 1349 -105 1381 -86 ct 1413 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -123 l 1650 -161 l p ef
-pom
-gr
-8442 7781 m 8437 7778 l 8224 7666 l 8218 7663 l 8049 7492 l 8046 7486 l
-7936 7271 l 7933 7265 l 7894 7016 l 7894 7009 l 7933 6759 l 7936 6753 l
-8046 6538 l 8049 6532 l 8218 6361 l 8224 6358 l 8437 6246 l 8442 6244 l
-8689 6204 l 8696 6204 l 8942 6244 l 8948 6246 l 9161 6358 l 9166 6361 l
-9335 6532 l 9338 6538 l 9449 6753 l 9451 6759 l 9491 7009 l 9491 7016 l
-9451 7265 l 9449 7271 l 9338 7486 l 9335 7492 l 9166 7663 l 9161 7666 l
-8948 7778 l 8942 7781 l 8696 7821 l 8689 7821 l 8442 7781 l p
-8692 7779 m 8931 7739 l 9138 7631 l 9303 7464 l 9410 7254 l 9449 7012 l
-9410 6770 l 9303 6560 l 9138 6393 l 8931 6285 l 8692 6246 l 8453 6285 l
-8246 6393 l 8081 6560 l 7974 6770 l 7936 7012 l 7974 7254 l 8081 7464 l
-8246 7631 l 8453 7739 l 8692 7779 l p
-8174 6489 m 8204 6458 l 8411 6668 l 8618 6877 l 8825 7087 l 9032 7297 l
-9240 7508 l 9210 7538 l 9002 7328 l 8795 7118 l 8588 6908 l 8380 6698 l
-8174 6489 l p
-8204 7538 m 8174 7509 l 8380 7298 l 8588 7088 l 8795 6878 l 9003 6668 l
-9211 6458 l 9240 6489 l 9032 6699 l 8825 6909 l 8618 7119 l 8411 7329 l
-8204 7538 l p ef
-1 lw 0 lj 8442 7781 m 8437 7778 l 8224 7666 l 8218 7663 l 8049 7492 l
-8046 7486 l 7936 7271 l 7933 7265 l 7894 7016 l 7894 7009 l 7933 6759 l
-7936 6753 l 8046 6538 l 8049 6532 l 8218 6361 l 8224 6358 l 8437 6246 l
-8442 6244 l 8689 6204 l 8696 6204 l 8942 6244 l 8948 6246 l 9161 6358 l
-9166 6361 l 9335 6532 l 9338 6538 l 9449 6753 l 9451 6759 l 9491 7009 l
-9491 7016 l 9451 7265 l 9449 7271 l 9338 7486 l 9335 7492 l 9166 7663 l
-9161 7666 l 8948 7778 l 8942 7781 l 8696 7821 l 8689 7821 l 8442 7781 l
-pc
-8692 7779 m 8931 7739 l 9138 7631 l 9303 7464 l 9410 7254 l 9449 7012 l
-9410 6770 l 9303 6560 l 9138 6393 l 8931 6285 l 8692 6246 l 8453 6285 l
-8246 6393 l 8081 6560 l 7974 6770 l 7936 7012 l 7974 7254 l 8081 7464 l
-8246 7631 l 8453 7739 l 8692 7779 l pc
-8174 6489 m 8204 6458 l 8411 6668 l 8618 6877 l 8825 7087 l 9032 7297 l
-9240 7508 l 9210 7538 l 9002 7328 l 8795 7118 l 8588 6908 l 8380 6698 l
-8174 6489 l pc
-8204 7538 m 8174 7509 l 8380 7298 l 8588 7088 l 8795 6878 l 9003 6668 l
-9211 6458 l 9240 6489 l 9032 6699 l 8825 6909 l 8618 7119 l 8411 7329 l
-8204 7538 l pc
-8691 7821 m 8541 8271 l 8841 8270 l 8691 7821 l p ef
-8691 8181 m 8691 12701 l ps
-11531 10361 m 11381 10811 l 11681 10810 l 11531 10361 l p ef
-11531 10721 m 11531 12701 l ps
-gs
-pum
-7329 12171 t
-26 -131 m 99 -142 l 103 -113 115 -90 134 -74 ct 153 -59 179 -51 213 -51 ct
-247 -51 272 -58 289 -72 ct 306 -86 314 -102 314 -121 ct 314 -138 307 -151 292 -160 ct
-282 -167 256 -175 216 -186 ct 161 -199 123 -211 102 -221 ct 81 -231 65 -245 54 -263 ct
-43 -281 38 -301 38 -322 ct 38 -342 42 -360 51 -376 ct 60 -393 73 -407 88 -418 ct
-100 -427 115 -434 135 -440 ct 155 -446 177 -449 200 -449 ct 234 -449 264 -444 290 -434 ct
-317 -424 336 -410 348 -393 ct 361 -376 369 -354 374 -325 ct 301 -315 l 298 -338 288 -356 272 -368 ct
-256 -381 234 -387 205 -387 ct 171 -387 146 -382 132 -370 ct 117 -359 110 -346 110 -331 ct
-110 -321 113 -312 119 -305 ct 125 -297 135 -290 148 -285 ct 155 -282 177 -276 213 -266 ct
-266 -252 303 -240 324 -231 ct 344 -222 361 -209 373 -192 ct 384 -175 390 -154 390 -129 ct
-390 -104 383 -80 369 -58 ct 354 -37 333 -20 306 -8 ct 279 3 248 9 213 9 ct 156 9 113 -1 83 -25 ct
-53 -49 l 34 -84 l p ef
-453 -520 m 453 -606 l 527 -606 l 527 -520 l p
-453 0 m 453 -439 l 527 -439 l 527 0 l p ef
-637 0 m 637 -439 l 704 -439 l 704 -376 l 737 -425 783 -449 844 -449 ct
-871 -449 895 -444 917 -434 ct 939 -425 956 -412 967 -397 ct 978 -382 986 -363 990 -342 ct
-993 -328 994 -304 994 -270 ct 994 0 l 920 0 l 920 -267 l 920 -297 917 -320 911 -335 ct
-905 -350 895 -362 880 -371 ct 866 -380 848 -384 828 -384 ct 797 -384 769 -374 746 -354 ct
-723 -334 712 -296 712 -239 ct 712 0 l p ef
-pom
-gr
-gs
-pum
-11880 12223 t
-342 -160 m 415 -151 l 407 -100 387 -61 354 -32 ct 321 -4 280 9 232 9 ct 172 9 124 -9 87 -49 ct
-51 -88 33 -144 33 -217 ct 33 -265 40 -306 56 -342 ct 72 -378 96 -404 128 -422 ct
-160 -440 195 -449 233 -449 ct 280 -449 319 -437 350 -412 ct 380 -388 400 -354 408 -310 ct
-336 -299 l 329 -328 317 -350 299 -365 ct 282 -380 260 -387 236 -387 ct 198 -387 168 -374 144 -347 ct
-121 -320 109 -278 109 -220 ct 109 -161 120 -118 143 -91 ct 166 -64 195 -51 232 -51 ct
-261 -51 285 -60 305 -78 ct 324 -96 l 337 -123 l p ef
-451 -219 m 451 -300 473 -361 518 -400 ct 556 -432 602 -449 657 -449 ct 717 -449 766 -429 805 -389 ct
-843 -350 862 -295 862 -225 ct 862 -169 854 -124 837 -92 ct 820 -60 795 -34 763 -16 ct
-730 0 695 9 657 9 ct 595 9 545 -9 507 -49 ct 470 -88 l 451 -145 l p
-527 -219 m 527 -163 539 -121 564 -93 ct 588 -65 619 -51 657 -51 ct 694 -51 724 -65 749 -93 ct
-773 -121 786 -164 786 -222 ct 786 -276 773 -317 749 -345 ct 724 -373 693 -387 657 -387 ct
-619 -387 588 -373 564 -345 ct 539 -317 l 527 -275 l p ef
-926 -131 m 999 -142 l 1003 -113 1015 -90 1034 -74 ct 1053 -59 1079 -51 1113 -51 ct
-1147 -51 1172 -58 1189 -72 ct 1206 -86 1214 -102 1214 -121 ct 1214 -138 1207 -151 1192 -160 ct
-1182 -167 1156 -175 1116 -186 ct 1061 -199 1023 -211 1002 -221 ct 981 -231 965 -245 954 -263 ct
-943 -281 938 -301 938 -322 ct 938 -342 942 -360 951 -376 ct 960 -393 973 -407 988 -418 ct
-1000 -427 1015 -434 1035 -440 ct 1055 -446 1077 -449 1100 -449 ct 1134 -449 1164 -444 1190 -434 ct
-1217 -424 1236 -410 1248 -393 ct 1261 -376 1269 -354 1274 -325 ct 1201 -315 l
-1198 -338 1188 -356 1172 -368 ct 1156 -381 1134 -387 1105 -387 ct 1071 -387 1046 -382 1032 -370 ct
-1017 -359 1010 -346 1010 -331 ct 1010 -321 1013 -312 1019 -305 ct 1025 -297 1035 -290 1048 -285 ct
-1055 -282 1077 -276 1113 -266 ct 1166 -252 1203 -240 1224 -231 ct 1244 -222 1261 -209 1273 -192 ct
-1284 -175 1290 -154 1290 -129 ct 1290 -104 1283 -80 1269 -58 ct 1254 -37 1233 -20 1206 -8 ct
-1179 3 1148 9 1113 9 ct 1056 9 1013 -1 983 -25 ct 953 -49 l 934 -84 l p ef
-pom
-gr
-24131 6986 m 23680 6836 l 23681 7136 l 24131 6986 l p ef
-20956 6986 m 23771 6986 l ps
-24131 9526 m 23680 9376 l 23681 9676 l 24131 9526 l p ef
-20956 9526 m 23771 9526 l ps
-gs
-pum
-24646 7223 t
-79 0 m 79 -606 l 159 -606 l 159 0 l p ef
-pom
-gr
-gs
-pum
-24435 9763 t
-524 -64 m 562 -39 596 -20 627 -8 ct 604 47 l 560 31 517 6 473 -27 ct 429 -2 379 10 325 10 ct
-270 10 220 -2 175 -29 ct 131 -55 96 -93 72 -141 ct 48 -189 36 -243 36 -303 ct 36 -362 48 -417 72 -466 ct
-97 -515 131 -552 176 -578 ct 221 -604 271 -617 326 -617 ct 382 -617 433 -603 478 -577 ct
-523 -550 557 -513 580 -465 ct 604 -417 616 -363 616 -303 ct 616 -253 608 -208 593 -168 ct
-578 -129 l 555 -94 l p
-348 -167 m 394 -154 432 -135 462 -109 ct 509 -152 533 -217 533 -303 ct 533 -352 525 -395 508 -432 ct
-491 -468 467 -497 435 -517 ct 403 -537 367 -547 327 -547 ct 267 -547 217 -527 178 -486 ct
-138 -445 119 -384 119 -303 ct 119 -224 138 -163 177 -121 ct 216 -79 266 -58 327 -58 ct
-355 -58 382 -63 408 -74 ct 383 -90 356 -102 328 -109 ct p ef
-pom
-gr
-gs
-pum
-23747 3307 t
-315 0 m 241 0 l 241 -474 l 223 -457 199 -440 170 -423 ct 141 -405 115 -393 92 -384 ct
-92 -456 l 133 -476 170 -499 201 -527 ct 232 -555 254 -582 267 -608 ct 315 -608 l
-p ef
-897 -457 m 823 -452 l 816 -481 807 -502 795 -515 ct 775 -536 750 -547 720 -547 ct
-697 -547 676 -540 658 -527 ct 634 -510 616 -485 602 -452 ct 589 -420 582 -373 581 -312 ct
-599 -339 621 -360 647 -373 ct 673 -386 700 -393 729 -393 ct 778 -393 820 -375 855 -338 ct
-890 -301 908 -254 908 -196 ct 908 -158 899 -123 883 -90 ct 867 -58 844 -33 815 -15 ct
-787 1 754 10 718 10 ct 656 10 605 -12 566 -58 ct 527 -103 507 -178 507 -283 ct
-507 -400 529 -486 572 -539 ct 610 -585 661 -608 725 -608 ct 773 -608 812 -595 842 -568 ct
-873 -541 l 891 -504 l p
-593 -196 m 593 -170 598 -146 609 -122 ct 620 -99 635 -81 655 -69 ct 675 -57 695 -50 717 -50 ct
-748 -50 775 -63 798 -88 ct 820 -114 832 -148 832 -192 ct 832 -234 820 -267 798 -291 ct
-776 -315 748 -327 714 -327 ct 680 -327 652 -315 628 -291 ct 605 -267 l 593 -235 l
-p ef
-952 -181 m 952 -256 l 1181 -256 l 1181 -181 l p ef
-1341 0 m 1272 0 l 1272 -606 l 1346 -606 l 1346 -390 l 1378 -429 1418 -449 1467 -449 ct
-1494 -449 1519 -443 1543 -432 ct 1568 -421 1587 -406 1603 -386 ct 1619 -367 1631 -343 1640 -315 ct
-1648 -287 1653 -257 1653 -226 ct 1653 -150 1634 -92 1597 -51 ct 1560 -10 1515 9 1463 9 ct
-1411 9 1370 -11 1341 -55 ct p
-1340 -222 m 1340 -170 1347 -132 1362 -108 ct 1385 -70 1417 -51 1457 -51 ct
-1489 -51 1517 -65 1541 -93 ct 1565 -121 1577 -164 1577 -220 ct 1577 -277 1565 -319 1543 -346 ct
-1520 -374 1492 -387 1460 -387 ct 1428 -387 1399 -373 1376 -345 ct 1352 -317 l
-1340 -276 l p ef
-1723 -520 m 1723 -606 l 1797 -606 l 1797 -520 l p
-1723 0 m 1723 -439 l 1797 -439 l 1797 0 l p ef
-2070 -66 m 2081 0 l 2060 3 2041 5 2024 5 ct 1997 5 1976 1 1962 -7 ct 1947 -15 1936 -26 1930 -40 ct
-1924 -54 1921 -83 1921 -128 ct 1921 -381 l 1866 -381 l 1866 -439 l 1921 -439 l
-1921 -547 l 1995 -592 l 1995 -439 l 2070 -439 l 2070 -381 l 1995 -381 l
-1995 -124 l 1995 -103 1996 -89 1999 -83 ct 2002 -77 2006 -72 2012 -69 ct 2018 -65 2026 -63 2037 -63 ct
-2045 -63 l 2056 -64 l p ef
-pom
-pum
-22596 4260 t
-340 0 m 340 -55 l 312 -11 272 9 217 9 ct 182 9 150 0 121 -19 ct 92 -38 69 -65 53 -99 ct
-37 -134 28 -174 28 -219 ct 28 -263 36 -302 50 -338 ct 65 -374 87 -401 116 -420 ct
-145 -439 178 -449 214 -449 ct 241 -449 264 -443 285 -432 ct 306 -421 322 -406 335 -388 ct
-335 -606 l 409 -606 l 409 0 l p
-105 -219 m 105 -162 117 -120 141 -93 ct 164 -65 192 -51 224 -51 ct 257 -51 285 -64 307 -91 ct
-330 -117 342 -158 342 -212 ct 342 -273 330 -317 307 -345 ct 284 -373 255 -387 221 -387 ct
-188 -387 160 -374 138 -346 ct 116 -319 l 105 -277 l p ef
-818 -54 m 790 -30 764 -14 738 -4 ct 713 5 685 9 656 9 ct 608 9 571 -1 545 -25 ct
-519 -49 506 -79 506 -115 ct 506 -137 511 -156 521 -174 ct 531 -192 543 -206 559 -217 ct
-575 -228 593 -236 613 -241 ct 627 -245 649 -249 679 -253 ct 739 -260 783 -268 812 -278 ct
-812 -288 812 -295 812 -298 ct 812 -328 805 -349 791 -362 ct 772 -379 744 -387 706 -387 ct
-671 -387 645 -381 629 -369 ct 612 -356 600 -335 592 -303 ct 519 -313 l 526 -345 536 -370 552 -389 ct
-567 -408 589 -423 617 -433 ct 646 -443 679 -449 717 -449 ct 755 -449 785 -444 808 -435 ct
-832 -427 849 -415 860 -402 ct 871 -389 879 -372 883 -351 ct 886 -339 887 -316 887 -283 ct
-887 -184 l 887 -114 889 -71 892 -52 ct 895 -34 901 -16 911 0 ct 833 0 l 825 -15 l
-820 -33 l p
-812 -220 m 785 -209 744 -200 690 -192 ct 660 -187 638 -182 625 -177 ct 613 -171 603 -163 596 -153 ct
-589 -142 586 -130 586 -117 ct 586 -98 593 -81 608 -68 ct 623 -55 645 -48 674 -48 ct
-703 -48 728 -54 751 -67 ct 773 -79 789 -96 800 -118 ct 808 -135 812 -160 812 -193 ct
-p ef
-1144 -66 m 1155 0 l 1134 3 1115 5 1098 5 ct 1071 5 1050 1 1036 -7 ct 1021 -15 1010 -26 1004 -40 ct
-998 -54 995 -83 995 -128 ct 995 -381 l 940 -381 l 940 -439 l 995 -439 l
-995 -547 l 1069 -592 l 1069 -439 l 1144 -439 l 1144 -381 l 1069 -381 l
-1069 -124 l 1069 -103 1070 -89 1073 -83 ct 1076 -77 1080 -72 1086 -69 ct 1092 -65 1100 -63 1111 -63 ct
-1119 -63 l 1130 -64 l p ef
-1506 -54 m 1478 -30 1452 -14 1426 -4 ct 1401 5 1373 9 1344 9 ct 1296 9 1259 -1 1233 -25 ct
-1207 -49 1194 -79 1194 -115 ct 1194 -137 1199 -156 1209 -174 ct 1219 -192 1231 -206 1247 -217 ct
-1263 -228 1281 -236 1301 -241 ct 1315 -245 1337 -249 1367 -253 ct 1427 -260 1471 -268 1500 -278 ct
-1500 -288 1500 -295 1500 -298 ct 1500 -328 1493 -349 1479 -362 ct 1460 -379 1432 -387 1394 -387 ct
-1359 -387 1333 -381 1317 -369 ct 1300 -356 1288 -335 1280 -303 ct 1207 -313 l
-1214 -345 1224 -370 1240 -389 ct 1255 -408 1277 -423 1305 -433 ct 1334 -443 1367 -449 1405 -449 ct
-1443 -449 1473 -444 1496 -435 ct 1520 -427 1537 -415 1548 -402 ct 1559 -389 1567 -372 1571 -351 ct
-1574 -339 1575 -316 1575 -283 ct 1575 -184 l 1575 -114 1577 -71 1580 -52 ct
-1583 -34 1589 -16 1599 0 ct 1521 0 l 1513 -15 l 1508 -33 l p
-1500 -220 m 1473 -209 1432 -200 1378 -192 ct 1348 -187 1326 -182 1313 -177 ct
-1301 -171 1291 -163 1284 -153 ct 1277 -142 1274 -130 1274 -117 ct 1274 -98 1281 -81 1296 -68 ct
-1311 -55 1333 -48 1362 -48 ct 1391 -48 1416 -54 1439 -67 ct 1461 -79 1477 -96 1488 -118 ct
-1496 -135 1500 -160 1500 -193 ct p ef
-2070 -66 m 2081 0 l 2060 3 2041 5 2024 5 ct 1997 5 1976 1 1962 -7 ct 1947 -15 1936 -26 1930 -40 ct
-1924 -54 1921 -83 1921 -128 ct 1921 -381 l 1866 -381 l 1866 -439 l 1921 -439 l
-1921 -547 l 1995 -592 l 1995 -439 l 2070 -439 l 2070 -381 l 1995 -381 l
-1995 -124 l 1995 -103 1996 -89 1999 -83 ct 2002 -77 2006 -72 2012 -69 ct 2018 -65 2026 -63 2037 -63 ct
-2045 -63 l 2056 -64 l p ef
-2118 -219 m 2118 -300 2140 -361 2185 -400 ct 2223 -432 2269 -449 2324 -449 ct
-2384 -449 2433 -429 2472 -389 ct 2510 -350 2529 -295 2529 -225 ct 2529 -169 2521 -124 2504 -92 ct
-2487 -60 2462 -34 2430 -16 ct 2397 0 2362 9 2324 9 ct 2262 9 2212 -9 2174 -49 ct
-2137 -88 l 2118 -145 l p
-2194 -219 m 2194 -163 2206 -121 2231 -93 ct 2255 -65 2286 -51 2324 -51 ct 2361 -51 2391 -65 2416 -93 ct
-2440 -121 2453 -164 2453 -222 ct 2453 -276 2440 -317 2416 -345 ct 2391 -373 2360 -387 2324 -387 ct
-2286 -387 2255 -373 2231 -345 ct 2206 -317 l 2194 -275 l p ef
-2860 0 m 2860 -606 l 2935 -606 l 2935 -388 l 2970 -429 3013 -449 3066 -449 ct
-3099 -449 3127 -442 3151 -429 ct 3175 -417 3192 -399 3203 -376 ct 3213 -354 3218 -321 3218 -278 ct
-3218 0 l 3144 0 l 3144 -278 l 3144 -315 3136 -342 3119 -359 ct 3103 -376 3081 -385 3051 -385 ct
-3029 -385 3008 -379 2989 -367 ct 2969 -356 2955 -340 2947 -321 ct 2939 -301 2935 -274 2935 -240 ct
-2935 0 l p ef
-3309 -219 m 3309 -300 3331 -361 3376 -400 ct 3414 -432 3460 -449 3515 -449 ct
-3575 -449 3624 -429 3663 -389 ct 3701 -350 3720 -295 3720 -225 ct 3720 -169 3712 -124 3695 -92 ct
-3678 -60 3653 -34 3621 -16 ct 3588 0 3553 9 3515 9 ct 3453 9 3403 -9 3365 -49 ct
-3328 -88 l 3309 -145 l p
-3385 -219 m 3385 -163 3397 -121 3422 -93 ct 3446 -65 3477 -51 3515 -51 ct 3552 -51 3582 -65 3607 -93 ct
-3631 -121 3644 -164 3644 -222 ct 3644 -276 3631 -317 3607 -345 ct 3582 -373 3551 -387 3515 -387 ct
-3477 -387 3446 -373 3422 -345 ct 3397 -317 l 3385 -275 l p ef
-3783 -131 m 3856 -142 l 3860 -113 3872 -90 3891 -74 ct 3910 -59 3936 -51 3970 -51 ct
-4004 -51 4029 -58 4046 -72 ct 4063 -86 4071 -102 4071 -121 ct 4071 -138 4064 -151 4049 -160 ct
-4039 -167 4013 -175 3973 -186 ct 3918 -199 3880 -211 3859 -221 ct 3838 -231 3822 -245 3811 -263 ct
-3800 -281 3795 -301 3795 -322 ct 3795 -342 3799 -360 3808 -376 ct 3817 -393 3830 -407 3845 -418 ct
-3857 -427 3872 -434 3892 -440 ct 3912 -446 3934 -449 3957 -449 ct 3991 -449 4021 -444 4047 -434 ct
-4074 -424 4093 -410 4105 -393 ct 4118 -376 4126 -354 4131 -325 ct 4058 -315 l
-4055 -338 4045 -356 4029 -368 ct 4013 -381 3991 -387 3962 -387 ct 3928 -387 3903 -382 3889 -370 ct
-3874 -359 3867 -346 3867 -331 ct 3867 -321 3870 -312 3876 -305 ct 3882 -297 3892 -290 3905 -285 ct
-3912 -282 3934 -276 3970 -266 ct 4023 -252 4060 -240 4081 -231 ct 4101 -222 4118 -209 4130 -192 ct
-4141 -175 4147 -154 4147 -129 ct 4147 -104 4140 -80 4126 -58 ct 4111 -37 4090 -20 4063 -8 ct
-4036 3 4005 9 3970 9 ct 3913 9 3870 -1 3840 -25 ct 3810 -49 l 3791 -84 l p ef
-4372 -66 m 4383 0 l 4362 3 4343 5 4326 5 ct 4299 5 4278 1 4264 -7 ct 4249 -15 4238 -26 4232 -40 ct
-4226 -54 4223 -83 4223 -128 ct 4223 -381 l 4168 -381 l 4168 -439 l 4223 -439 l
-4223 -547 l 4297 -592 l 4297 -439 l 4372 -439 l 4372 -381 l 4297 -381 l
-4297 -124 l 4297 -103 4298 -89 4301 -83 ct 4304 -77 4308 -72 4314 -69 ct 4320 -65 4328 -63 4339 -63 ct
-4347 -63 l 4358 -64 l p ef
-pom
-pum
-23257 5213 t
-177 0 m 10 -439 l 89 -439 l 183 -176 l 193 -147 203 -118 211 -87 ct 218 -110 227 -138 239 -171 ct
-337 -439 l 413 -439 l 247 0 l p ef
-479 -520 m 479 -606 l 553 -606 l 553 -520 l p
-479 0 m 479 -439 l 553 -439 l 553 0 l p ef
-951 -54 m 923 -30 897 -14 871 -4 ct 846 5 818 9 789 9 ct 741 9 704 -1 678 -25 ct
-652 -49 639 -79 639 -115 ct 639 -137 644 -156 654 -174 ct 664 -192 676 -206 692 -217 ct
-708 -228 726 -236 746 -241 ct 760 -245 782 -249 812 -253 ct 872 -260 916 -268 945 -278 ct
-945 -288 945 -295 945 -298 ct 945 -328 938 -349 924 -362 ct 905 -379 877 -387 839 -387 ct
-804 -387 778 -381 762 -369 ct 745 -356 733 -335 725 -303 ct 652 -313 l 659 -345 669 -370 685 -389 ct
-700 -408 722 -423 750 -433 ct 779 -443 812 -449 850 -449 ct 888 -449 918 -444 941 -435 ct
-965 -427 982 -415 993 -402 ct 1004 -389 1012 -372 1016 -351 ct 1019 -339 1020 -316 1020 -283 ct
-1020 -184 l 1020 -114 1022 -71 1025 -52 ct 1028 -34 1034 -16 1044 0 ct 966 0 l
-958 -15 l 953 -33 l p
-945 -220 m 918 -209 877 -200 823 -192 ct 793 -187 771 -182 758 -177 ct 746 -171 736 -163 729 -153 ct
-722 -142 719 -130 719 -117 ct 719 -98 726 -81 741 -68 ct 756 -55 778 -48 807 -48 ct
-836 -48 861 -54 884 -67 ct 906 -79 922 -96 933 -118 ct 941 -135 945 -160 945 -193 ct
-p ef
-1759 -606 m 1839 -606 l 1839 -256 l 1839 -195 1832 -146 1818 -110 ct 1804 -75 1780 -45 1744 -23 ct
-1708 0 1660 10 1602 10 ct 1545 10 1499 0 1463 -19 ct 1426 -38 1401 -66 1385 -104 ct
-1370 -141 1362 -191 1362 -256 ct 1362 -606 l 1442 -606 l 1442 -256 l 1442 -203 1447 -164 1457 -139 ct
-1467 -115 1484 -95 1507 -82 ct 1531 -68 1560 -62 1595 -62 ct 1654 -62 1696 -75 1721 -102 ct
-1746 -128 1759 -180 1759 -256 ct p ef
-1969 -194 m 2044 -201 l 2048 -171 2056 -146 2069 -126 ct 2082 -107 2103 -91 2130 -79 ct
-2158 -67 2189 -61 2223 -61 ct 2254 -61 2281 -66 2304 -75 ct 2328 -84 2345 -96 2357 -112 ct
-2368 -128 2374 -145 2374 -164 ct 2374 -183 2368 -200 2357 -214 ct 2346 -228 2328 -240 2303 -250 ct
-2286 -256 2250 -266 2195 -279 ct 2139 -293 2100 -305 2078 -317 ct 2049 -332 2027 -351 2013 -374 ct
-1999 -396 1992 -421 1992 -449 ct 1992 -480 2000 -508 2018 -535 ct 2035 -561 2061 -582 2094 -595 ct
-2127 -609 2164 -616 2205 -616 ct 2250 -616 2290 -609 2324 -594 ct 2358 -580 2385 -559 2403 -531 ct
-2422 -502 2432 -471 2433 -435 ct 2356 -429 l 2352 -468 2338 -496 2314 -516 ct
-2290 -536 2255 -545 2208 -545 ct 2160 -545 2125 -537 2102 -519 ct 2080 -501 2069 -480 2069 -454 ct
-2069 -433 2077 -415 2093 -401 ct 2108 -387 2148 -372 2214 -357 ct 2279 -343 2324 -330 2348 -319 ct
-2383 -303 2409 -282 2426 -257 ct 2443 -232 2451 -203 2451 -171 ct 2451 -138 2442 -108 2423 -80 ct
-2405 -51 2378 -29 2344 -13 ct 2309 2 2270 10 2227 10 ct 2172 10 2126 2 2089 -13 ct
-2052 -29 2023 -53 2002 -85 ct 1981 -117 l 1970 -154 l p ef
-2576 0 m 2576 -606 l 2803 -606 l 2849 -606 2886 -600 2914 -587 ct 2942 -575 2964 -556 2980 -531 ct
-2996 -505 3004 -479 3004 -451 ct 3004 -425 2997 -400 2983 -378 ct 2969 -355 2948 -336 2919 -322 ct
-2956 -311 2984 -293 3004 -267 ct 3024 -241 3033 -211 3033 -175 ct 3033 -147 3027 -120 3015 -96 ct
-3003 -72 2989 -53 2971 -40 ct 2953 -26 2931 -16 2905 -10 ct 2878 -3 2845 0 2807 0 ct
-p
-2656 -351 m 2787 -351 l 2822 -351 2848 -353 2863 -358 ct 2884 -364 2899 -374 2909 -388 ct
-2920 -402 2925 -420 2925 -441 ct 2925 -461 2920 -479 2911 -494 ct 2901 -510 2887 -520 2869 -526 ct
-2851 -531 2821 -534 2777 -534 ct 2656 -534 l p
-2656 -71 m 2807 -71 l 2833 -71 2851 -72 2861 -74 ct 2880 -77 2895 -83 2908 -90 ct
-2920 -98 2930 -109 2938 -124 ct 2946 -139 2950 -156 2950 -175 ct 2950 -198 2944 -218 2933 -234 ct
-2921 -251 2905 -263 2885 -269 ct 2864 -276 2835 -279 2796 -279 ct 2656 -279 l
-p ef
-pom
-gr
-gs
-pum
-6825 19235 t
-497 -212 m 578 -192 l 561 -126 531 -76 487 -41 ct 443 -6 390 10 327 10 ct
-261 10 208 -2 167 -29 ct 126 -56 95 -94 74 -145 ct 52 -195 42 -249 42 -307 ct 42 -370 54 -425 78 -472 ct
-102 -519 136 -555 181 -580 ct 225 -604 274 -616 328 -616 ct 389 -616 440 -601 481 -570 ct
-522 -539 551 -496 567 -440 ct 488 -421 l 474 -465 454 -497 427 -517 ct 400 -537 367 -547 326 -547 ct
-280 -547 241 -536 209 -514 ct 178 -492 156 -462 143 -424 ct 131 -386 124 -348 124 -308 ct
-124 -256 132 -211 147 -173 ct 162 -134 185 -105 217 -86 ct 249 -67 283 -58 320 -58 ct
-365 -58 403 -71 434 -97 ct 465 -123 l 486 -161 l p ef
-991 -141 m 1068 -131 l 1056 -86 1033 -52 1001 -27 ct 968 -2 926 9 875 9 ct
-811 9 760 -9 722 -49 ct 684 -88 666 -144 666 -215 ct 666 -289 685 -347 723 -387 ct
-761 -428 810 -449 871 -449 ct 929 -449 977 -429 1015 -389 ct 1052 -349 1070 -292 1070 -220 ct
-1070 -216 1070 -209 1070 -200 ct 742 -200 l 745 -152 759 -115 783 -89 ct 808 -64 839 -51 875 -51 ct
-903 -51 926 -58 945 -72 ct 964 -87 l 980 -110 l p
-747 -261 m 992 -261 l 989 -298 979 -326 964 -344 ct 940 -373 909 -387 871 -387 ct
-837 -387 809 -376 785 -353 ct 762 -330 l 749 -300 l p ef
-1166 0 m 1166 -439 l 1233 -439 l 1233 -376 l 1266 -425 1312 -449 1373 -449 ct
-1400 -449 1424 -444 1446 -434 ct 1468 -425 1485 -412 1496 -397 ct 1507 -382 1515 -363 1519 -342 ct
-1522 -328 1523 -304 1523 -270 ct 1523 0 l 1449 0 l 1449 -267 l 1449 -297 1446 -320 1440 -335 ct
-1434 -350 1424 -362 1409 -371 ct 1395 -380 1377 -384 1357 -384 ct 1326 -384 1298 -374 1275 -354 ct
-1252 -334 1241 -296 1241 -239 ct 1241 0 l p ef
-1806 -66 m 1817 0 l 1796 3 1777 5 1760 5 ct 1733 5 1712 1 1698 -7 ct 1683 -15 1672 -26 1666 -40 ct
-1660 -54 1657 -83 1657 -128 ct 1657 -381 l 1602 -381 l 1602 -439 l 1657 -439 l
-1657 -547 l 1731 -592 l 1731 -439 l 1806 -439 l 1806 -381 l 1731 -381 l
-1731 -124 l 1731 -103 1732 -89 1735 -83 ct 1738 -77 1742 -72 1748 -69 ct 1754 -65 1762 -63 1773 -63 ct
-1781 -63 l 1792 -64 l p ef
-2182 -141 m 2259 -131 l 2247 -86 2224 -52 2192 -27 ct 2159 -2 2117 9 2066 9 ct
-2002 9 1951 -9 1913 -49 ct 1875 -88 1857 -144 1857 -215 ct 1857 -289 1876 -347 1914 -387 ct
-1952 -428 2001 -449 2062 -449 ct 2120 -449 2168 -429 2206 -389 ct 2243 -349 2261 -292 2261 -220 ct
-2261 -216 2261 -209 2261 -200 ct 1933 -200 l 1936 -152 1950 -115 1974 -89 ct
-1999 -64 2030 -51 2066 -51 ct 2094 -51 2117 -58 2136 -72 ct 2155 -87 l 2171 -110 l
-p
-1938 -261 m 2183 -261 l 2180 -298 2170 -326 2155 -344 ct 2131 -373 2100 -387 2062 -387 ct
-2028 -387 2000 -376 1976 -353 ct 1953 -330 l 1940 -300 l p ef
-2357 0 m 2357 -439 l 2424 -439 l 2424 -372 l 2441 -403 2456 -424 2471 -434 ct
-2485 -444 2501 -449 2519 -449 ct 2544 -449 2569 -441 2595 -425 ct 2570 -356 l
-2551 -366 2533 -372 2515 -372 ct 2499 -372 2484 -367 2471 -357 ct 2458 -347 2449 -334 2443 -316 ct
-2435 -290 2431 -261 2431 -229 ct 2431 0 l p ef
-2904 0 m 2904 -381 l 2838 -381 l 2838 -439 l 2904 -439 l 2904 -485 l
-2904 -515 2907 -537 2912 -551 ct 2919 -571 2932 -586 2950 -598 ct 2968 -610 2993 -616 3026 -616 ct
-3047 -616 3070 -614 3095 -609 ct 3084 -544 l 3069 -547 3054 -548 3040 -548 ct
-3018 -548 3002 -543 2992 -533 ct 2983 -524 2978 -506 2978 -479 ct 2978 -439 l
-3064 -439 l 3064 -381 l 2978 -381 l 2978 0 l p ef
-3124 0 m 3124 -439 l 3191 -439 l 3191 -372 l 3208 -403 3223 -424 3238 -434 ct
-3252 -444 3268 -449 3286 -449 ct 3311 -449 3336 -441 3362 -425 ct 3337 -356 l
-3318 -366 3300 -372 3282 -372 ct 3266 -372 3251 -367 3238 -357 ct 3225 -347 3216 -334 3210 -316 ct
-3202 -290 3198 -261 3198 -229 ct 3198 0 l p ef
-3716 -141 m 3793 -131 l 3781 -86 3758 -52 3726 -27 ct 3693 -2 3651 9 3600 9 ct
-3536 9 3485 -9 3447 -49 ct 3409 -88 3391 -144 3391 -215 ct 3391 -289 3410 -347 3448 -387 ct
-3486 -428 3535 -449 3596 -449 ct 3654 -449 3702 -429 3740 -389 ct 3777 -349 3795 -292 3795 -220 ct
-3795 -216 3795 -209 3795 -200 ct 3467 -200 l 3470 -152 3484 -115 3508 -89 ct
-3533 -64 3564 -51 3600 -51 ct 3628 -51 3651 -58 3670 -72 ct 3689 -87 l 3705 -110 l
-p
-3472 -261 m 3717 -261 l 3714 -298 3704 -326 3689 -344 ct 3665 -373 3634 -387 3596 -387 ct
-3562 -387 3534 -376 3510 -353 ct 3487 -330 l 3474 -300 l p ef
-4171 168 m 4171 -46 l 4160 -30 4144 -16 4123 -6 ct 4102 4 4080 9 4056 9 ct
-4004 9 3959 -10 3922 -52 ct 3884 -94 3865 -151 3865 -223 ct 3865 -267 3873 -307 3888 -342 ct
-3904 -377 3926 -404 3955 -422 ct 3984 -440 4016 -449 4051 -449 ct 4105 -449 4148 -426 4179 -380 ct
-4179 -439 l 4246 -439 l 4246 168 l p
-3942 -220 m 3942 -164 3954 -121 3977 -93 ct 4001 -65 4029 -51 4063 -51 ct 4094 -51 4122 -64 4144 -91 ct
-4167 -118 4179 -159 4179 -214 ct 4179 -272 4167 -316 4143 -346 ct 4118 -375 4090 -390 4058 -390 ct
-4025 -390 3998 -376 3975 -349 ct 3953 -321 l 3942 -279 l p ef
-4656 0 m 4656 -64 l 4622 -14 4576 9 4517 9 ct 4491 9 4467 4 4444 -4 ct 4422 -14 4405 -27 4394 -42 ct
-4383 -57 4376 -75 4371 -97 ct 4368 -112 4367 -135 4367 -167 ct 4367 -439 l 4441 -439 l
-4441 -195 l 4441 -156 4443 -130 4446 -117 ct 4450 -97 4460 -82 4475 -70 ct
-4491 -59 4509 -54 4532 -54 ct 4554 -54 4575 -59 4595 -71 ct 4614 -82 4628 -98 4636 -118 ct
-4644 -137 4648 -166 4648 -203 ct 4648 -439 l 4723 -439 l 4723 0 l p ef
-5145 -141 m 5222 -131 l 5210 -86 5187 -52 5155 -27 ct 5122 -2 5080 9 5029 9 ct
-4965 9 4914 -9 4876 -49 ct 4838 -88 4820 -144 4820 -215 ct 4820 -289 4839 -347 4877 -387 ct
-4915 -428 4964 -449 5025 -449 ct 5083 -449 5131 -429 5169 -389 ct 5206 -349 5224 -292 5224 -220 ct
-5224 -216 5224 -209 5224 -200 ct 4896 -200 l 4899 -152 4913 -115 4937 -89 ct
-4962 -64 4993 -51 5029 -51 ct 5057 -51 5080 -58 5099 -72 ct 5118 -87 l 5134 -110 l
-p
-4901 -261 m 5146 -261 l 5143 -298 5133 -326 5118 -344 ct 5094 -373 5063 -387 5025 -387 ct
-4991 -387 4963 -376 4939 -353 ct 4916 -330 l 4903 -300 l p ef
-5320 0 m 5320 -439 l 5387 -439 l 5387 -376 l 5420 -425 5466 -449 5527 -449 ct
-5554 -449 5578 -444 5600 -434 ct 5622 -425 5639 -412 5650 -397 ct 5661 -382 5669 -363 5673 -342 ct
-5676 -328 5677 -304 5677 -270 ct 5677 0 l 5603 0 l 5603 -267 l 5603 -297 5600 -320 5594 -335 ct
-5588 -350 5578 -362 5563 -371 ct 5549 -380 5531 -384 5511 -384 ct 5480 -384 5452 -374 5429 -354 ct
-5406 -334 5395 -296 5395 -239 ct 5395 0 l p ef
-6083 -160 m 6156 -151 l 6148 -100 6128 -61 6095 -32 ct 6062 -4 6021 9 5973 9 ct
-5913 9 5865 -9 5828 -49 ct 5792 -88 5774 -144 5774 -217 ct 5774 -265 5781 -306 5797 -342 ct
-5813 -378 5837 -404 5869 -422 ct 5901 -440 5936 -449 5974 -449 ct 6021 -449 6060 -437 6091 -412 ct
-6121 -388 6141 -354 6149 -310 ct 6077 -299 l 6070 -328 6058 -350 6040 -365 ct
-6023 -380 6001 -387 5977 -387 ct 5939 -387 5909 -374 5885 -347 ct 5862 -320 5850 -278 5850 -220 ct
-5850 -161 5861 -118 5884 -91 ct 5907 -64 5936 -51 5973 -51 ct 6002 -51 6026 -60 6046 -78 ct
-6065 -96 l 6078 -123 l p ef
-6217 169 m 6209 99 l 6225 103 6239 105 6251 105 ct 6268 105 6281 103 6291 97 ct
-6301 92 6309 84 6315 74 ct 6320 66 6328 48 6338 19 ct 6340 14 6342 8 6345 0 ct
-6178 -439 l 6258 -439 l 6350 -184 l 6362 -152 6372 -118 6382 -83 ct 6390 -117 6400 -150 6412 -183 ct
-6506 -439 l 6581 -439 l 6413 7 l 6396 55 6382 88 6372 107 ct 6358 131 6343 149 6326 161 ct
-6309 172 6289 178 6265 178 ct 6251 178 l 6235 175 l p ef
-pom
-pum
-7778 20188 t
-26 -181 m 26 -256 l 255 -256 l 255 -181 l p ef
-364 0 m 364 -381 l 298 -381 l 298 -439 l 364 -439 l 364 -485 l 364 -515 367 -537 372 -551 ct
-379 -571 392 -586 410 -598 ct 428 -610 453 -616 486 -616 ct 507 -616 530 -614 555 -609 ct
-544 -544 l 529 -547 514 -548 500 -548 ct 478 -548 462 -543 452 -533 ct 443 -524 438 -506 438 -479 ct
-438 -439 l 524 -439 l 524 -381 l 438 -381 l 438 0 l p ef
-555 -131 m 628 -142 l 632 -113 644 -90 663 -74 ct 682 -59 708 -51 742 -51 ct
-776 -51 801 -58 818 -72 ct 835 -86 843 -102 843 -121 ct 843 -138 836 -151 821 -160 ct
-811 -167 785 -175 745 -186 ct 690 -199 652 -211 631 -221 ct 610 -231 594 -245 583 -263 ct
-572 -281 567 -301 567 -322 ct 567 -342 571 -360 580 -376 ct 589 -393 602 -407 617 -418 ct
-629 -427 644 -434 664 -440 ct 684 -446 706 -449 729 -449 ct 763 -449 793 -444 819 -434 ct
-846 -424 865 -410 877 -393 ct 890 -376 898 -354 903 -325 ct 830 -315 l 827 -338 817 -356 801 -368 ct
-785 -381 763 -387 734 -387 ct 700 -387 675 -382 661 -370 ct 646 -359 639 -346 639 -331 ct
-639 -321 642 -312 648 -305 ct 654 -297 664 -290 677 -285 ct 684 -282 706 -276 742 -266 ct
-795 -252 832 -240 853 -231 ct 873 -222 890 -209 902 -192 ct 913 -175 919 -154 919 -129 ct
-919 -104 912 -80 898 -58 ct 883 -37 862 -20 835 -8 ct 808 3 777 9 742 9 ct 685 9 642 -1 612 -25 ct
-582 -49 l 563 -84 l p ef
-926 10 m 1101 -616 l 1161 -616 l 985 10 l p ef
-1590 -71 m 1590 0 l 1189 0 l 1189 -17 1191 -35 1198 -51 ct 1208 -79 1224 -105 1247 -132 ct
-1269 -158 1302 -189 1344 -224 ct 1410 -278 1455 -321 1478 -352 ct 1501 -384 1513 -413 1513 -442 ct
-1513 -471 1502 -496 1481 -516 ct 1460 -537 1432 -547 1398 -547 ct 1363 -547 1334 -536 1312 -514 ct
-1291 -493 1280 -463 1280 -425 ct 1203 -433 l 1208 -490 1228 -533 1262 -563 ct
-1297 -593 1342 -608 1400 -608 ct 1458 -608 1504 -592 1538 -560 ct 1572 -528 1589 -488 1589 -440 ct
-1589 -416 1584 -392 1574 -368 ct 1564 -345 1548 -320 1525 -294 ct 1502 -268 1463 -233 1410 -188 ct
-1365 -150 1337 -125 1324 -111 ct 1311 -98 1301 -85 1293 -71 ct p ef
-2097 -66 m 2108 0 l 2087 3 2068 5 2051 5 ct 2024 5 2003 1 1989 -7 ct 1974 -15 1963 -26 1957 -40 ct
-1951 -54 1948 -83 1948 -128 ct 1948 -381 l 1893 -381 l 1893 -439 l 1948 -439 l
-1948 -547 l 2022 -592 l 2022 -439 l 2097 -439 l 2097 -381 l 2022 -381 l
-2022 -124 l 2022 -103 2023 -89 2026 -83 ct 2029 -77 2033 -72 2039 -69 ct 2045 -65 2053 -63 2064 -63 ct
-2072 -63 l 2083 -64 l p ef
-2145 -219 m 2145 -300 2167 -361 2212 -400 ct 2250 -432 2296 -449 2351 -449 ct
-2411 -449 2460 -429 2499 -389 ct 2537 -350 2556 -295 2556 -225 ct 2556 -169 2548 -124 2531 -92 ct
-2514 -60 2489 -34 2457 -16 ct 2424 0 2389 9 2351 9 ct 2289 9 2239 -9 2201 -49 ct
-2164 -88 l 2145 -145 l p
-2221 -219 m 2221 -163 2233 -121 2258 -93 ct 2282 -65 2313 -51 2351 -51 ct 2388 -51 2418 -65 2443 -93 ct
-2467 -121 2480 -164 2480 -222 ct 2480 -276 2467 -317 2443 -345 ct 2418 -373 2387 -387 2351 -387 ct
-2313 -387 2282 -373 2258 -345 ct 2233 -317 l 2221 -275 l p ef
-3043 -98 m 3043 -264 l 2878 -264 l 2878 -333 l 3043 -333 l 3043 -498 l
-3113 -498 l 3113 -333 l 3278 -333 l 3278 -264 l 3113 -264 l 3113 -98 l
-p ef
-3407 0 m 3407 -381 l 3341 -381 l 3341 -439 l 3407 -439 l 3407 -485 l
-3407 -515 3410 -537 3415 -551 ct 3422 -571 3435 -586 3453 -598 ct 3471 -610 3496 -616 3529 -616 ct
-3550 -616 3573 -614 3598 -609 ct 3587 -544 l 3572 -547 3557 -548 3543 -548 ct
-3521 -548 3505 -543 3495 -533 ct 3486 -524 3481 -506 3481 -479 ct 3481 -439 l
-3567 -439 l 3567 -381 l 3481 -381 l 3481 0 l p ef
-3598 -131 m 3671 -142 l 3675 -113 3687 -90 3706 -74 ct 3725 -59 3751 -51 3785 -51 ct
-3819 -51 3844 -58 3861 -72 ct 3878 -86 3886 -102 3886 -121 ct 3886 -138 3879 -151 3864 -160 ct
-3854 -167 3828 -175 3788 -186 ct 3733 -199 3695 -211 3674 -221 ct 3653 -231 3637 -245 3626 -263 ct
-3615 -281 3610 -301 3610 -322 ct 3610 -342 3614 -360 3623 -376 ct 3632 -393 3645 -407 3660 -418 ct
-3672 -427 3687 -434 3707 -440 ct 3727 -446 3749 -449 3772 -449 ct 3806 -449 3836 -444 3862 -434 ct
-3889 -424 3908 -410 3920 -393 ct 3933 -376 3941 -354 3946 -325 ct 3873 -315 l
-3870 -338 3860 -356 3844 -368 ct 3828 -381 3806 -387 3777 -387 ct 3743 -387 3718 -382 3704 -370 ct
-3689 -359 3682 -346 3682 -331 ct 3682 -321 3685 -312 3691 -305 ct 3697 -297 3707 -290 3720 -285 ct
-3727 -282 3749 -276 3785 -266 ct 3838 -252 3875 -240 3896 -231 ct 3916 -222 3933 -209 3945 -192 ct
-3956 -175 3962 -154 3962 -129 ct 3962 -104 3955 -80 3941 -58 ct 3926 -37 3905 -20 3878 -8 ct
-3851 3 3820 9 3785 9 ct 3728 9 3685 -1 3655 -25 ct 3625 -49 l 3606 -84 l p ef
-3969 10 m 4144 -616 l 4204 -616 l 4028 10 l p ef
-4633 -71 m 4633 0 l 4232 0 l 4232 -17 4234 -35 4241 -51 ct 4251 -79 4267 -105 4290 -132 ct
-4312 -158 4345 -189 4387 -224 ct 4453 -278 4498 -321 4521 -352 ct 4544 -384 4556 -413 4556 -442 ct
-4556 -471 4545 -496 4524 -516 ct 4503 -537 4475 -547 4441 -547 ct 4406 -547 4377 -536 4355 -514 ct
-4334 -493 4323 -463 4323 -425 ct 4246 -433 l 4251 -490 4271 -533 4305 -563 ct
-4340 -593 4385 -608 4443 -608 ct 4501 -608 4547 -592 4581 -560 ct 4615 -528 4632 -488 4632 -440 ct
-4632 -416 4627 -392 4617 -368 ct 4607 -345 4591 -320 4568 -294 ct 4545 -268 4506 -233 4453 -188 ct
-4408 -150 4380 -125 4367 -111 ct 4354 -98 4344 -85 4336 -71 ct p ef
-pom
-gr
-10161 16546 m 10011 16996 l 10311 16995 l 10161 16546 l p ef
-10161 18381 m 10161 16906 l ps
-gs
-pum
-2805 3466 t
-38 -194 m 113 -201 l 117 -171 125 -146 138 -126 ct 151 -107 172 -91 199 -79 ct
-227 -67 258 -61 292 -61 ct 323 -61 350 -66 373 -75 ct 397 -84 414 -96 426 -112 ct
-437 -128 443 -145 443 -164 ct 443 -183 437 -200 426 -214 ct 415 -228 397 -240 372 -250 ct
-355 -256 319 -266 264 -279 ct 208 -293 169 -305 147 -317 ct 118 -332 96 -351 82 -374 ct
-68 -396 61 -421 61 -449 ct 61 -480 69 -508 87 -535 ct 104 -561 130 -582 163 -595 ct
-196 -609 233 -616 274 -616 ct 319 -616 359 -609 393 -594 ct 427 -580 454 -559 472 -531 ct
-491 -502 501 -471 502 -435 ct 425 -429 l 421 -468 407 -496 383 -516 ct 359 -536 324 -545 277 -545 ct
-229 -545 194 -537 171 -519 ct 149 -501 138 -480 138 -454 ct 138 -433 146 -415 162 -401 ct
-177 -387 217 -372 283 -357 ct 348 -343 393 -330 417 -319 ct 452 -303 478 -282 495 -257 ct
-512 -232 520 -203 520 -171 ct 520 -138 511 -108 492 -80 ct 474 -51 447 -29 413 -13 ct
-378 2 339 10 296 10 ct 241 10 195 2 158 -13 ct 121 -29 92 -53 71 -85 ct 50 -117 l
-39 -154 l p ef
-924 -54 m 896 -30 870 -14 844 -4 ct 819 5 791 9 762 9 ct 714 9 677 -1 651 -25 ct
-625 -49 612 -79 612 -115 ct 612 -137 617 -156 627 -174 ct 637 -192 649 -206 665 -217 ct
-681 -228 699 -236 719 -241 ct 733 -245 755 -249 785 -253 ct 845 -260 889 -268 918 -278 ct
-918 -288 918 -295 918 -298 ct 918 -328 911 -349 897 -362 ct 878 -379 850 -387 812 -387 ct
-777 -387 751 -381 735 -369 ct 718 -356 706 -335 698 -303 ct 625 -313 l 632 -345 642 -370 658 -389 ct
-673 -408 695 -423 723 -433 ct 752 -443 785 -449 823 -449 ct 861 -449 891 -444 914 -435 ct
-938 -427 955 -415 966 -402 ct 977 -389 985 -372 989 -351 ct 992 -339 993 -316 993 -283 ct
-993 -184 l 993 -114 995 -71 998 -52 ct 1001 -34 1007 -16 1017 0 ct 939 0 l
-931 -15 l 926 -33 l p
-918 -220 m 891 -209 850 -200 796 -192 ct 766 -187 744 -182 731 -177 ct 719 -171 709 -163 702 -153 ct
-695 -142 692 -130 692 -117 ct 692 -98 699 -81 714 -68 ct 729 -55 751 -48 780 -48 ct
-809 -48 834 -54 857 -67 ct 879 -79 895 -96 906 -118 ct 914 -135 918 -160 918 -193 ct
-p ef
-1087 0 m 1087 -439 l 1154 -439 l 1154 -377 l 1168 -399 1186 -416 1209 -429 ct
-1232 -442 1258 -449 1287 -449 ct 1320 -449 1346 -442 1367 -428 ct 1388 -415 1403 -396 1411 -372 ct
-1446 -423 1491 -449 1547 -449 ct 1590 -449 1624 -437 1647 -412 ct 1671 -388 1682 -351 1682 -301 ct
-1682 0 l 1608 0 l 1608 -276 l 1608 -306 1606 -327 1601 -340 ct 1596 -354 1588 -364 1575 -372 ct
-1562 -380 1547 -384 1530 -384 ct 1499 -384 1474 -374 1453 -353 ct 1433 -333 1423 -300 1423 -255 ct
-1423 0 l 1348 0 l 1348 -285 l 1348 -318 1342 -343 1330 -359 ct 1318 -376 1298 -384 1271 -384 ct
-1250 -384 1230 -379 1212 -368 ct 1195 -357 1182 -340 1174 -319 ct 1166 -298 1162 -267 1162 -227 ct
-1162 0 l p ef
-1801 168 m 1801 -439 l 1869 -439 l 1869 -382 l 1885 -404 1903 -421 1923 -432 ct
-1943 -443 1968 -449 1997 -449 ct 2034 -449 2067 -439 2096 -420 ct 2124 -400 2146 -373 2161 -338 ct
-2175 -303 2183 -264 2183 -222 ct 2183 -177 2175 -137 2158 -101 ct 2142 -65 2119 -37 2088 -18 ct
-2057 0 2025 9 1991 9 ct 1966 9 1944 4 1924 -5 ct 1905 -16 1888 -29 1876 -45 ct
-1876 168 l p
-1869 -217 m 1869 -160 1880 -118 1903 -91 ct 1926 -64 1954 -51 1986 -51 ct 2019 -51 2048 -65 2071 -93 ct
-2095 -121 2107 -164 2107 -223 ct 2107 -279 2095 -321 2072 -349 ct 2049 -376 2022 -390 1990 -390 ct
-1958 -390 1930 -376 1905 -346 ct 1881 -316 l 1869 -273 l p ef
-2250 0 m 2250 -606 l 2324 -606 l 2324 0 l p ef
-2437 -520 m 2437 -606 l 2511 -606 l 2511 -520 l p
-2437 0 m 2437 -439 l 2511 -439 l 2511 0 l p ef
-2621 0 m 2621 -439 l 2688 -439 l 2688 -376 l 2721 -425 2767 -449 2828 -449 ct
-2855 -449 2879 -444 2901 -434 ct 2923 -425 2940 -412 2951 -397 ct 2962 -382 2970 -363 2974 -342 ct
-2977 -328 2978 -304 2978 -270 ct 2978 0 l 2904 0 l 2904 -267 l 2904 -297 2901 -320 2895 -335 ct
-2889 -350 2879 -362 2864 -371 ct 2850 -380 2832 -384 2812 -384 ct 2781 -384 2753 -374 2730 -354 ct
-2707 -334 2696 -296 2696 -239 ct 2696 0 l p ef
-3085 36 m 3157 47 l 3160 69 3169 85 3182 95 ct 3201 109 3226 116 3258 116 ct
-3292 116 3319 109 3338 95 ct 3357 82 3369 62 3376 38 ct 3380 22 3381 -8 3381 -57 ct
-3349 -19 3308 0 3260 0 ct 3199 0 3153 -21 3119 -65 ct 3086 -108 3070 -161 3070 -222 ct
-3070 -264 3077 -302 3093 -338 ct 3108 -373 3130 -400 3159 -420 ct 3187 -439 3221 -449 3260 -449 ct
-3312 -449 3355 -428 3388 -386 ct 3388 -439 l 3457 -439 l 3457 -59 l 3457 8 3450 57 3436 85 ct
-3422 114 3400 136 3370 153 ct 3340 169 3303 178 3258 178 ct 3206 178 3164 166 3131 142 ct
-3099 119 l 3084 83 l p
-3146 -227 m 3146 -169 3158 -127 3181 -101 ct 3204 -74 3232 -61 3267 -61 ct
-3301 -61 3330 -74 3353 -101 ct 3376 -127 3387 -168 3387 -224 ct 3387 -278 3376 -319 3352 -346 ct
-3328 -373 3299 -387 3265 -387 ct 3232 -387 3204 -374 3181 -347 ct 3158 -320 l
-3146 -280 l p ef
-3812 0 m 3812 -439 l 3879 -439 l 3879 -372 l 3896 -403 3911 -424 3926 -434 ct
-3940 -444 3956 -449 3974 -449 ct 3999 -449 4024 -441 4050 -425 ct 4025 -356 l
-4006 -366 3988 -372 3970 -372 ct 3954 -372 3939 -367 3926 -357 ct 3913 -347 3904 -334 3898 -316 ct
-3890 -290 3886 -261 3886 -229 ct 3886 0 l p ef
-4390 -54 m 4362 -30 4336 -14 4310 -4 ct 4285 5 4257 9 4228 9 ct 4180 9 4143 -1 4117 -25 ct
-4091 -49 4078 -79 4078 -115 ct 4078 -137 4083 -156 4093 -174 ct 4103 -192 4115 -206 4131 -217 ct
-4147 -228 4165 -236 4185 -241 ct 4199 -245 4221 -249 4251 -253 ct 4311 -260 4355 -268 4384 -278 ct
-4384 -288 4384 -295 4384 -298 ct 4384 -328 4377 -349 4363 -362 ct 4344 -379 4316 -387 4278 -387 ct
-4243 -387 4217 -381 4201 -369 ct 4184 -356 4172 -335 4164 -303 ct 4091 -313 l
-4098 -345 4108 -370 4124 -389 ct 4139 -408 4161 -423 4189 -433 ct 4218 -443 4251 -449 4289 -449 ct
-4327 -449 4357 -444 4380 -435 ct 4404 -427 4421 -415 4432 -402 ct 4443 -389 4451 -372 4455 -351 ct
-4458 -339 4459 -316 4459 -283 ct 4459 -184 l 4459 -114 4461 -71 4464 -52 ct
-4467 -34 4473 -16 4483 0 ct 4405 0 l 4397 -15 l 4392 -33 l p
-4384 -220 m 4357 -209 4316 -200 4262 -192 ct 4232 -187 4210 -182 4197 -177 ct
-4185 -171 4175 -163 4168 -153 ct 4161 -142 4158 -130 4158 -117 ct 4158 -98 4165 -81 4180 -68 ct
-4195 -55 4217 -48 4246 -48 ct 4275 -48 4300 -54 4323 -67 ct 4345 -79 4361 -96 4372 -118 ct
-4380 -135 4384 -160 4384 -193 ct p ef
-4716 -66 m 4727 0 l 4706 3 4687 5 4670 5 ct 4643 5 4622 1 4608 -7 ct 4593 -15 4582 -26 4576 -40 ct
-4570 -54 4567 -83 4567 -128 ct 4567 -381 l 4512 -381 l 4512 -439 l 4567 -439 l
-4567 -547 l 4641 -592 l 4641 -439 l 4716 -439 l 4716 -381 l 4641 -381 l
-4641 -124 l 4641 -103 4642 -89 4645 -83 ct 4648 -77 4652 -72 4658 -69 ct 4664 -65 4672 -63 4683 -63 ct
-4691 -63 l 4702 -64 l p ef
-5092 -141 m 5169 -131 l 5157 -86 5134 -52 5102 -27 ct 5069 -2 5027 9 4976 9 ct
-4912 9 4861 -9 4823 -49 ct 4785 -88 4767 -144 4767 -215 ct 4767 -289 4786 -347 4824 -387 ct
-4862 -428 4911 -449 4972 -449 ct 5030 -449 5078 -429 5116 -389 ct 5153 -349 5171 -292 5171 -220 ct
-5171 -216 5171 -209 5171 -200 ct 4843 -200 l 4846 -152 4860 -115 4884 -89 ct
-4909 -64 4940 -51 4976 -51 ct 5004 -51 5027 -58 5046 -72 ct 5065 -87 l 5081 -110 l
-p
-4848 -261 m 5093 -261 l 5090 -298 5080 -326 5065 -344 ct 5041 -373 5010 -387 4972 -387 ct
-4938 -387 4910 -376 4886 -353 ct 4863 -330 l 4850 -300 l p ef
-5897 -356 m 5497 -356 l 5497 -425 l 5897 -425 l p
-5897 -172 m 5497 -172 l 5497 -241 l 5897 -241 l p ef
-6264 0 m 6264 -381 l 6198 -381 l 6198 -439 l 6264 -439 l 6264 -485 l
-6264 -515 6267 -537 6272 -551 ct 6279 -571 6292 -586 6310 -598 ct 6328 -610 6353 -616 6386 -616 ct
-6407 -616 6430 -614 6455 -609 ct 6444 -544 l 6429 -547 6414 -548 6400 -548 ct
-6378 -548 6362 -543 6352 -533 ct 6343 -524 6338 -506 6338 -479 ct 6338 -439 l
-6424 -439 l 6424 -381 l 6338 -381 l 6338 0 l p ef
-6455 -131 m 6528 -142 l 6532 -113 6544 -90 6563 -74 ct 6582 -59 6608 -51 6642 -51 ct
-6676 -51 6701 -58 6718 -72 ct 6735 -86 6743 -102 6743 -121 ct 6743 -138 6736 -151 6721 -160 ct
-6711 -167 6685 -175 6645 -186 ct 6590 -199 6552 -211 6531 -221 ct 6510 -231 6494 -245 6483 -263 ct
-6472 -281 6467 -301 6467 -322 ct 6467 -342 6471 -360 6480 -376 ct 6489 -393 6502 -407 6517 -418 ct
-6529 -427 6544 -434 6564 -440 ct 6584 -446 6606 -449 6629 -449 ct 6663 -449 6693 -444 6719 -434 ct
-6746 -424 6765 -410 6777 -393 ct 6790 -376 6798 -354 6803 -325 ct 6730 -315 l
-6727 -338 6717 -356 6701 -368 ct 6685 -381 6663 -387 6634 -387 ct 6600 -387 6575 -382 6561 -370 ct
-6546 -359 6539 -346 6539 -331 ct 6539 -321 6542 -312 6548 -305 ct 6554 -297 6564 -290 6577 -285 ct
-6584 -282 6606 -276 6642 -266 ct 6695 -252 6732 -240 6753 -231 ct 6773 -222 6790 -209 6802 -192 ct
-6813 -175 6819 -154 6819 -129 ct 6819 -104 6812 -80 6798 -58 ct 6783 -37 6762 -20 6735 -8 ct
-6708 3 6677 9 6642 9 ct 6585 9 6542 -1 6512 -25 ct 6482 -49 l 6463 -84 l p ef
-pom
-gr
-gs
-pum
-15981 14102 t
-62 0 m 62 -606 l 289 -606 l 335 -606 372 -600 400 -587 ct 428 -575 450 -556 466 -531 ct
-482 -505 490 -479 490 -451 ct 490 -425 483 -400 469 -378 ct 455 -355 434 -336 405 -322 ct
-442 -311 470 -293 490 -267 ct 510 -241 519 -211 519 -175 ct 519 -147 513 -120 501 -96 ct
-489 -72 475 -53 457 -40 ct 439 -26 417 -16 391 -10 ct 364 -3 331 0 293 0 ct p
-142 -351 m 273 -351 l 308 -351 334 -353 349 -358 ct 370 -364 385 -374 395 -388 ct
-406 -402 411 -420 411 -441 ct 411 -461 406 -479 397 -494 ct 387 -510 373 -520 355 -526 ct
-337 -531 307 -534 263 -534 ct 142 -534 l p
-142 -71 m 293 -71 l 319 -71 337 -72 347 -74 ct 366 -77 381 -83 394 -90 ct
-406 -98 416 -109 424 -124 ct 432 -139 436 -156 436 -175 ct 436 -198 430 -218 419 -234 ct
-407 -251 391 -263 371 -269 ct 350 -276 321 -279 282 -279 ct 142 -279 l p ef
-898 -54 m 870 -30 844 -14 818 -4 ct 793 5 765 9 736 9 ct 688 9 651 -1 625 -25 ct
-599 -49 586 -79 586 -115 ct 586 -137 591 -156 601 -174 ct 611 -192 623 -206 639 -217 ct
-655 -228 673 -236 693 -241 ct 707 -245 729 -249 759 -253 ct 819 -260 863 -268 892 -278 ct
-892 -288 892 -295 892 -298 ct 892 -328 885 -349 871 -362 ct 852 -379 824 -387 786 -387 ct
-751 -387 725 -381 709 -369 ct 692 -356 680 -335 672 -303 ct 599 -313 l 606 -345 616 -370 632 -389 ct
-647 -408 669 -423 697 -433 ct 726 -443 759 -449 797 -449 ct 835 -449 865 -444 888 -435 ct
-912 -427 929 -415 940 -402 ct 951 -389 959 -372 963 -351 ct 966 -339 967 -316 967 -283 ct
-967 -184 l 967 -114 969 -71 972 -52 ct 975 -34 981 -16 991 0 ct 913 0 l 905 -15 l
-900 -33 l p
-892 -220 m 865 -209 824 -200 770 -192 ct 740 -187 718 -182 705 -177 ct 693 -171 683 -163 676 -153 ct
-669 -142 666 -130 666 -117 ct 666 -98 673 -81 688 -68 ct 703 -55 725 -48 754 -48 ct
-783 -48 808 -54 831 -67 ct 853 -79 869 -96 880 -118 ct 888 -135 892 -160 892 -193 ct
-p ef
-1060 0 m 1060 -439 l 1127 -439 l 1127 -376 l 1160 -425 1206 -449 1267 -449 ct
-1294 -449 1318 -444 1340 -434 ct 1362 -425 1379 -412 1390 -397 ct 1401 -382 1409 -363 1413 -342 ct
-1416 -328 1417 -304 1417 -270 ct 1417 0 l 1343 0 l 1343 -267 l 1343 -297 1340 -320 1334 -335 ct
-1328 -350 1318 -362 1303 -371 ct 1289 -380 1271 -384 1251 -384 ct 1220 -384 1192 -374 1169 -354 ct
-1146 -334 1135 -296 1135 -239 ct 1135 0 l p ef
-1822 0 m 1822 -55 l 1794 -11 1754 9 1699 9 ct 1664 9 1632 0 1603 -19 ct 1574 -38 1551 -65 1535 -99 ct
-1519 -134 1510 -174 1510 -219 ct 1510 -263 1518 -302 1532 -338 ct 1547 -374 1569 -401 1598 -420 ct
-1627 -439 1660 -449 1696 -449 ct 1723 -449 1746 -443 1767 -432 ct 1788 -421 1804 -406 1817 -388 ct
-1817 -606 l 1891 -606 l 1891 0 l p
-1587 -219 m 1587 -162 1599 -120 1623 -93 ct 1646 -65 1674 -51 1706 -51 ct 1739 -51 1767 -64 1789 -91 ct
-1812 -117 1824 -158 1824 -212 ct 1824 -273 1812 -317 1789 -345 ct 1766 -373 1737 -387 1703 -387 ct
-1670 -387 1642 -374 1620 -346 ct 1598 -319 l 1587 -277 l p ef
-2094 0 m 1960 -439 l 2037 -439 l 2107 -185 l 2133 -91 l 2134 -96 2142 -126 2156 -181 ct
-2226 -439 l 2302 -439 l 2368 -184 l 2390 -100 l 2415 -185 l 2490 -439 l
-2563 -439 l 2425 0 l 2348 0 l 2278 -263 l 2261 -337 l 2172 0 l p ef
-2596 -520 m 2596 -606 l 2670 -606 l 2670 -520 l p
-2596 0 m 2596 -439 l 2670 -439 l 2670 0 l p ef
-3065 0 m 3065 -55 l 3037 -11 2997 9 2942 9 ct 2907 9 2875 0 2846 -19 ct 2817 -38 2794 -65 2778 -99 ct
-2762 -134 2753 -174 2753 -219 ct 2753 -263 2761 -302 2775 -338 ct 2790 -374 2812 -401 2841 -420 ct
-2870 -439 2903 -449 2939 -449 ct 2966 -449 2989 -443 3010 -432 ct 3031 -421 3047 -406 3060 -388 ct
-3060 -606 l 3134 -606 l 3134 0 l p
-2830 -219 m 2830 -162 2842 -120 2866 -93 ct 2889 -65 2917 -51 2949 -51 ct 2982 -51 3010 -64 3032 -91 ct
-3055 -117 3067 -158 3067 -212 ct 3067 -273 3055 -317 3032 -345 ct 3009 -373 2980 -387 2946 -387 ct
-2913 -387 2885 -374 2863 -346 ct 2841 -319 l 2830 -277 l p ef
-3419 -66 m 3430 0 l 3409 3 3390 5 3373 5 ct 3346 5 3325 1 3311 -7 ct 3296 -15 3285 -26 3279 -40 ct
-3273 -54 3270 -83 3270 -128 ct 3270 -381 l 3215 -381 l 3215 -439 l 3270 -439 l
-3270 -547 l 3344 -592 l 3344 -439 l 3419 -439 l 3419 -381 l 3344 -381 l
-3344 -124 l 3344 -103 3345 -89 3348 -83 ct 3351 -77 3355 -72 3361 -69 ct 3367 -65 3375 -63 3386 -63 ct
-3394 -63 l 3405 -64 l p ef
-3495 0 m 3495 -606 l 3570 -606 l 3570 -388 l 3605 -429 3648 -449 3701 -449 ct
-3734 -449 3762 -442 3786 -429 ct 3810 -417 3827 -399 3838 -376 ct 3848 -354 3853 -321 3853 -278 ct
-3853 0 l 3779 0 l 3779 -278 l 3779 -315 3771 -342 3754 -359 ct 3738 -376 3716 -385 3686 -385 ct
-3664 -385 3643 -379 3624 -367 ct 3604 -356 3590 -340 3582 -321 ct 3574 -301 3570 -274 3570 -240 ct
-3570 0 l p ef
-pom
-pum
-15888 15055 t
-340 0 m 340 -55 l 312 -11 272 9 217 9 ct 182 9 150 0 121 -19 ct 92 -38 69 -65 53 -99 ct
-37 -134 28 -174 28 -219 ct 28 -263 36 -302 50 -338 ct 65 -374 87 -401 116 -420 ct
-145 -439 178 -449 214 -449 ct 241 -449 264 -443 285 -432 ct 306 -421 322 -406 335 -388 ct
-335 -606 l 409 -606 l 409 0 l p
-105 -219 m 105 -162 117 -120 141 -93 ct 164 -65 192 -51 224 -51 ct 257 -51 285 -64 307 -91 ct
-330 -117 342 -158 342 -212 ct 342 -273 330 -317 307 -345 ct 284 -373 255 -387 221 -387 ct
-188 -387 160 -374 138 -346 ct 116 -319 l 105 -277 l p ef
-832 -141 m 909 -131 l 897 -86 874 -52 842 -27 ct 809 -2 767 9 716 9 ct 652 9 601 -9 563 -49 ct
-525 -88 507 -144 507 -215 ct 507 -289 526 -347 564 -387 ct 602 -428 651 -449 712 -449 ct
-770 -449 818 -429 856 -389 ct 893 -349 911 -292 911 -220 ct 911 -216 911 -209 911 -200 ct
-583 -200 l 586 -152 600 -115 624 -89 ct 649 -64 680 -51 716 -51 ct 744 -51 767 -58 786 -72 ct
-805 -87 l 821 -110 l p
-588 -261 m 833 -261 l 830 -298 820 -326 805 -344 ct 781 -373 750 -387 712 -387 ct
-678 -387 650 -376 626 -353 ct 603 -330 l 590 -300 l p ef
-1295 -160 m 1368 -151 l 1360 -100 1340 -61 1307 -32 ct 1274 -4 1233 9 1185 9 ct
-1125 9 1077 -9 1040 -49 ct 1004 -88 986 -144 986 -217 ct 986 -265 993 -306 1009 -342 ct
-1025 -378 1049 -404 1081 -422 ct 1113 -440 1148 -449 1186 -449 ct 1233 -449 1272 -437 1303 -412 ct
-1333 -388 1353 -354 1361 -310 ct 1289 -299 l 1282 -328 1270 -350 1252 -365 ct
-1235 -380 1213 -387 1189 -387 ct 1151 -387 1121 -374 1097 -347 ct 1074 -320 1062 -278 1062 -220 ct
-1062 -161 1073 -118 1096 -91 ct 1119 -64 1148 -51 1185 -51 ct 1214 -51 1238 -60 1258 -78 ct
-1277 -96 l 1290 -123 l p ef
-1432 -520 m 1432 -606 l 1506 -606 l 1506 -520 l p
-1432 0 m 1432 -439 l 1506 -439 l 1506 0 l p ef
-1616 0 m 1616 -439 l 1683 -439 l 1683 -377 l 1697 -399 1715 -416 1738 -429 ct
-1761 -442 1787 -449 1816 -449 ct 1849 -449 1875 -442 1896 -428 ct 1917 -415 1932 -396 1940 -372 ct
-1975 -423 2020 -449 2076 -449 ct 2119 -449 2153 -437 2176 -412 ct 2200 -388 2211 -351 2211 -301 ct
-2211 0 l 2137 0 l 2137 -276 l 2137 -306 2135 -327 2130 -340 ct 2125 -354 2117 -364 2104 -372 ct
-2091 -380 2076 -384 2059 -384 ct 2028 -384 2003 -374 1982 -353 ct 1962 -333 1952 -300 1952 -255 ct
-1952 0 l 1877 0 l 1877 -285 l 1877 -318 1871 -343 1859 -359 ct 1847 -376 1827 -384 1800 -384 ct
-1779 -384 1759 -379 1741 -368 ct 1724 -357 1711 -340 1703 -319 ct 1695 -298 1691 -267 1691 -227 ct
-1691 0 l p ef
-2617 -54 m 2589 -30 2563 -14 2537 -4 ct 2512 5 2484 9 2455 9 ct 2407 9 2370 -1 2344 -25 ct
-2318 -49 2305 -79 2305 -115 ct 2305 -137 2310 -156 2320 -174 ct 2330 -192 2342 -206 2358 -217 ct
-2374 -228 2392 -236 2412 -241 ct 2426 -245 2448 -249 2478 -253 ct 2538 -260 2582 -268 2611 -278 ct
-2611 -288 2611 -295 2611 -298 ct 2611 -328 2604 -349 2590 -362 ct 2571 -379 2543 -387 2505 -387 ct
-2470 -387 2444 -381 2428 -369 ct 2411 -356 2399 -335 2391 -303 ct 2318 -313 l
-2325 -345 2335 -370 2351 -389 ct 2366 -408 2388 -423 2416 -433 ct 2445 -443 2478 -449 2516 -449 ct
-2554 -449 2584 -444 2607 -435 ct 2631 -427 2648 -415 2659 -402 ct 2670 -389 2678 -372 2682 -351 ct
-2685 -339 2686 -316 2686 -283 ct 2686 -184 l 2686 -114 2688 -71 2691 -52 ct
-2694 -34 2700 -16 2710 0 ct 2632 0 l 2624 -15 l 2619 -33 l p
-2611 -220 m 2584 -209 2543 -200 2489 -192 ct 2459 -187 2437 -182 2424 -177 ct
-2412 -171 2402 -163 2395 -153 ct 2388 -142 2385 -130 2385 -117 ct 2385 -98 2392 -81 2407 -68 ct
-2422 -55 2444 -48 2473 -48 ct 2502 -48 2527 -54 2550 -67 ct 2572 -79 2588 -96 2599 -118 ct
-2607 -135 2611 -160 2611 -193 ct p ef
-2943 -66 m 2954 0 l 2933 3 2914 5 2897 5 ct 2870 5 2849 1 2835 -7 ct 2820 -15 2809 -26 2803 -40 ct
-2797 -54 2794 -83 2794 -128 ct 2794 -381 l 2739 -381 l 2739 -439 l 2794 -439 l
-2794 -547 l 2868 -592 l 2868 -439 l 2943 -439 l 2943 -381 l 2868 -381 l
-2868 -124 l 2868 -103 2869 -89 2872 -83 ct 2875 -77 2879 -72 2885 -69 ct 2891 -65 2899 -63 2910 -63 ct
-2918 -63 l 2929 -64 l p ef
-3019 -520 m 3019 -606 l 3093 -606 l 3093 -520 l p
-3019 0 m 3019 -439 l 3093 -439 l 3093 0 l p ef
-3177 -219 m 3177 -300 3199 -361 3244 -400 ct 3282 -432 3328 -449 3383 -449 ct
-3443 -449 3492 -429 3531 -389 ct 3569 -350 3588 -295 3588 -225 ct 3588 -169 3580 -124 3563 -92 ct
-3546 -60 3521 -34 3489 -16 ct 3456 0 3421 9 3383 9 ct 3321 9 3271 -9 3233 -49 ct
-3196 -88 l 3177 -145 l p
-3253 -219 m 3253 -163 3265 -121 3290 -93 ct 3314 -65 3345 -51 3383 -51 ct 3420 -51 3450 -65 3475 -93 ct
-3499 -121 3512 -164 3512 -222 ct 3512 -276 3499 -317 3475 -345 ct 3450 -373 3419 -387 3383 -387 ct
-3345 -387 3314 -373 3290 -345 ct 3265 -317 l 3253 -275 l p ef
-3680 0 m 3680 -439 l 3747 -439 l 3747 -376 l 3780 -425 3826 -449 3887 -449 ct
-3914 -449 3938 -444 3960 -434 ct 3982 -425 3999 -412 4010 -397 ct 4021 -382 4029 -363 4033 -342 ct
-4036 -328 4037 -304 4037 -270 ct 4037 0 l 3963 0 l 3963 -267 l 3963 -297 3960 -320 3954 -335 ct
-3948 -350 3938 -362 3923 -371 ct 3909 -380 3891 -384 3871 -384 ct 3840 -384 3812 -374 3789 -354 ct
-3766 -334 3755 -296 3755 -239 ct 3755 0 l p ef
-pom
-pum
-16087 16008 t
-73 0 m 73 -381 l 7 -381 l 7 -439 l 73 -439 l 73 -485 l 73 -515 76 -537 81 -551 ct
-88 -571 101 -586 119 -598 ct 137 -610 162 -616 195 -616 ct 216 -616 239 -614 264 -609 ct
-253 -544 l 238 -547 223 -548 209 -548 ct 187 -548 171 -543 161 -533 ct 152 -524 147 -506 147 -479 ct
-147 -439 l 233 -439 l 233 -381 l 147 -381 l 147 0 l p ef
-580 -54 m 552 -30 526 -14 500 -4 ct 475 5 447 9 418 9 ct 370 9 333 -1 307 -25 ct
-281 -49 268 -79 268 -115 ct 268 -137 273 -156 283 -174 ct 293 -192 305 -206 321 -217 ct
-337 -228 355 -236 375 -241 ct 389 -245 411 -249 441 -253 ct 501 -260 545 -268 574 -278 ct
-574 -288 574 -295 574 -298 ct 574 -328 567 -349 553 -362 ct 534 -379 506 -387 468 -387 ct
-433 -387 407 -381 391 -369 ct 374 -356 362 -335 354 -303 ct 281 -313 l 288 -345 298 -370 314 -389 ct
-329 -408 351 -423 379 -433 ct 408 -443 441 -449 479 -449 ct 517 -449 547 -444 570 -435 ct
-594 -427 611 -415 622 -402 ct 633 -389 641 -372 645 -351 ct 648 -339 649 -316 649 -283 ct
-649 -184 l 649 -114 651 -71 654 -52 ct 657 -34 663 -16 673 0 ct 595 0 l 587 -15 l
-582 -33 l p
-574 -220 m 547 -209 506 -200 452 -192 ct 422 -187 400 -182 387 -177 ct 375 -171 365 -163 358 -153 ct
-351 -142 348 -130 348 -117 ct 348 -98 355 -81 370 -68 ct 385 -55 407 -48 436 -48 ct
-465 -48 490 -54 513 -67 ct 535 -79 551 -96 562 -118 ct 570 -135 574 -160 574 -193 ct
-p ef
-1030 -160 m 1103 -151 l 1095 -100 1075 -61 1042 -32 ct 1009 -4 968 9 920 9 ct
-860 9 812 -9 775 -49 ct 739 -88 721 -144 721 -217 ct 721 -265 728 -306 744 -342 ct
-760 -378 784 -404 816 -422 ct 848 -440 883 -449 921 -449 ct 968 -449 1007 -437 1038 -412 ct
-1068 -388 1088 -354 1096 -310 ct 1024 -299 l 1017 -328 1005 -350 987 -365 ct
-970 -380 948 -387 924 -387 ct 886 -387 856 -374 832 -347 ct 809 -320 797 -278 797 -220 ct
-797 -161 808 -118 831 -91 ct 854 -64 883 -51 920 -51 ct 949 -51 973 -60 993 -78 ct
-1012 -96 l 1025 -123 l p ef
-1329 -66 m 1340 0 l 1319 3 1300 5 1283 5 ct 1256 5 1235 1 1221 -7 ct 1206 -15 1195 -26 1189 -40 ct
-1183 -54 1180 -83 1180 -128 ct 1180 -381 l 1125 -381 l 1125 -439 l 1180 -439 l
-1180 -547 l 1254 -592 l 1254 -439 l 1329 -439 l 1329 -381 l 1254 -381 l
-1254 -124 l 1254 -103 1255 -89 1258 -83 ct 1261 -77 1265 -72 1271 -69 ct 1277 -65 1285 -63 1296 -63 ct
-1304 -63 l 1315 -64 l p ef
-1377 -219 m 1377 -300 1399 -361 1444 -400 ct 1482 -432 1528 -449 1583 -449 ct
-1643 -449 1692 -429 1731 -389 ct 1769 -350 1788 -295 1788 -225 ct 1788 -169 1780 -124 1763 -92 ct
-1746 -60 1721 -34 1689 -16 ct 1656 0 1621 9 1583 9 ct 1521 9 1471 -9 1433 -49 ct
-1396 -88 l 1377 -145 l p
-1453 -219 m 1453 -163 1465 -121 1490 -93 ct 1514 -65 1545 -51 1583 -51 ct 1620 -51 1650 -65 1675 -93 ct
-1699 -121 1712 -164 1712 -222 ct 1712 -276 1699 -317 1675 -345 ct 1650 -373 1619 -387 1583 -387 ct
-1545 -387 1514 -373 1490 -345 ct 1465 -317 l 1453 -275 l p ef
-1881 0 m 1881 -439 l 1948 -439 l 1948 -372 l 1965 -403 1980 -424 1995 -434 ct
-2009 -444 2025 -449 2043 -449 ct 2068 -449 2093 -441 2119 -425 ct 2094 -356 l
-2075 -366 2057 -372 2039 -372 ct 2023 -372 2008 -367 1995 -357 ct 1982 -347 1973 -334 1967 -316 ct
-1959 -290 1955 -261 1955 -229 ct 1955 0 l p ef
-2802 -356 m 2402 -356 l 2402 -425 l 2802 -425 l p
-2802 -172 m 2402 -172 l 2402 -241 l 2802 -241 l p ef
-3160 0 m 3160 -606 l 3242 -606 l 3561 -130 l 3561 -606 l 3638 -606 l
-3638 0 l 3555 0 l 3237 -476 l 3237 0 l p ef
-pom
-gr
-17781 10461 m 17631 10911 l 17931 10910 l 17781 10461 l p ef
-17781 13336 m 17781 10821 l ps
-gs
-pum
-17357 3466 t
-73 0 m 73 -381 l 7 -381 l 7 -439 l 73 -439 l 73 -485 l 73 -515 76 -537 81 -551 ct
-88 -571 101 -586 119 -598 ct 137 -610 162 -616 195 -616 ct 216 -616 239 -614 264 -609 ct
-253 -544 l 238 -547 223 -548 209 -548 ct 187 -548 171 -543 161 -533 ct 152 -524 147 -506 147 -479 ct
-147 -439 l 233 -439 l 233 -381 l 147 -381 l 147 0 l p ef
-264 -131 m 337 -142 l 341 -113 353 -90 372 -74 ct 391 -59 417 -51 451 -51 ct
-485 -51 510 -58 527 -72 ct 544 -86 552 -102 552 -121 ct 552 -138 545 -151 530 -160 ct
-520 -167 494 -175 454 -186 ct 399 -199 361 -211 340 -221 ct 319 -231 303 -245 292 -263 ct
-281 -281 276 -301 276 -322 ct 276 -342 280 -360 289 -376 ct 298 -393 311 -407 326 -418 ct
-338 -427 353 -434 373 -440 ct 393 -446 415 -449 438 -449 ct 472 -449 502 -444 528 -434 ct
-555 -424 574 -410 586 -393 ct 599 -376 607 -354 612 -325 ct 539 -315 l 536 -338 526 -356 510 -368 ct
-494 -381 472 -387 443 -387 ct 409 -387 384 -382 370 -370 ct 355 -359 348 -346 348 -331 ct
-348 -321 351 -312 357 -305 ct 363 -297 373 -290 386 -285 ct 393 -282 415 -276 451 -266 ct
-504 -252 541 -240 562 -231 ct 582 -222 599 -209 611 -192 ct 622 -175 628 -154 628 -129 ct
-628 -104 621 -80 607 -58 ct 592 -37 571 -20 544 -8 ct 517 3 486 9 451 9 ct 394 9 351 -1 321 -25 ct
-291 -49 l 272 -84 l p ef
-635 10 m 810 -616 l 870 -616 l 694 10 l p ef
-937 0 m 937 -606 l 1019 -606 l 1338 -130 l 1338 -606 l 1415 -606 l
-1415 0 l 1332 0 l 1014 -476 l 1014 0 l p ef
-pom
-gr
-22227 6350 m 22199 5876 l 21920 5987 l 22227 6350 l p ef
-19422 3175 m 19475 3175 l ps
-19528 3175 m 19581 3175 l ps
-19634 3175 m 19687 3175 l ps
-19740 3175 m 19793 3175 l ps
-19846 3175 m 19899 3175 l ps
-19952 3175 m 20006 3175 l ps
-20059 3175 m 20112 3175 l ps
-20165 3175 m 20218 3175 l ps
-20271 3175 m 20324 3175 l ps
-20377 3175 m 20430 3175 l ps
-20483 3175 m 20536 3175 l ps
-20590 3175 m 20643 3175 l ps
-20696 3175 m 20749 3175 l ps
-20802 3175 m 20855 3175 l ps
-20908 3175 m 20956 3175 l ps
-20956 3175 m 20958 3180 l ps
-20977 3229 m 20997 3278 l ps
-21017 3328 m 21037 3377 l ps
-21056 3426 m 21076 3475 l ps
-21096 3525 m 21115 3574 l ps
-21135 3623 m 21155 3673 l ps
-21175 3722 m 21194 3771 l ps
-21214 3821 m 21234 3870 l ps
-21254 3919 m 21273 3968 l ps
-21293 4018 m 21313 4067 l ps
-21332 4116 m 21352 4166 l ps
-21372 4215 m 21392 4264 l ps
-21411 4313 m 21431 4363 l ps
-21451 4412 m 21471 4461 l ps
-21490 4511 m 21510 4560 l ps
-21530 4609 m 21550 4658 l ps
-21569 4708 m 21589 4757 l ps
-21609 4806 m 21628 4856 l ps
-21648 4905 m 21668 4954 l ps
-21688 5003 m 21707 5053 l ps
-21727 5102 m 21747 5151 l ps
-21767 5201 m 21786 5250 l ps
-21806 5299 m 21826 5348 l ps
-21845 5398 m 21865 5447 l ps
-21885 5496 m 21905 5546 l ps
-21924 5595 m 21944 5644 l ps
-21964 5693 m 21984 5743 l ps
-22003 5792 m 22023 5841 l ps
-22043 5891 m 22063 5940 l ps
-22082 5989 m 22093 6015 l ps
-gr
-0 20290 t
-pom
-count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat b4_inc_state restore
-%%PageTrailer
-%%Trailer
-%%EOF
diff --git a/usrp/doc/ddc.png b/usrp/doc/ddc.png
deleted file mode 100644
index ce35bc2a9..000000000
--- a/usrp/doc/ddc.png
+++ /dev/null
Binary files differ
diff --git a/usrp/doc/inband-signaling-gigethernet b/usrp/doc/inband-signaling-gigethernet
deleted file mode 100644
index 4ca7542d2..000000000
--- a/usrp/doc/inband-signaling-gigethernet
+++ /dev/null
@@ -1,34 +0,0 @@
-Gigabit Ethernet Interconnect for the USRP2
-
-At this point, this is a place to summarize design requirements,
-possible solutions, point-counterpoint, etc.
-
-
-Requirements:
-
-(R1) High throughput and low latency between USRP h/w and user-space.
-One of the primary reasons for switching from USB to gigabit ethernet
-is to increase throughput. Many users want to be be able to build
-WLAN type systems, and are thwarted by the relatively low throughput
-available over the USB. Eric thinks we should shoot for at least
-100MB/s full-duplex into user space, using packets with payloads on
-the order of 256 to 512 bytes. The small packet size is to reduce the
-latency. This is important for many MACs that people want to build on
-the host side.
-
-(R2) Non-priviledged user programs should be able to access the USRP.
-This could be implemented by a priviledged daemon that actually handles the
-low level communication with the USRP2. This daemon may be desirable
-for other reasons, including central point of control for
-arbitrating/muxing/demuxing between multiple concurrent users (e.g.,
-Tx, Rx, requests, replies, various logical channels).
-
-(R3) Some way to flow control the host to USRP2 stream. This is
-required in case the user connects an unthrottled signal generator to
-the USRP. (This is not uncommon.) The USRP2 to host direction
-shouldn't be a problem, since the USRP2 throughput is controlled by
-its configuration. It is an error to configure the USRP2 to transmit
-data at a higher rate than the transport or host can consume.
-
-One solution to this requirement could be having the USRP2 emit GigE
-"pause" frames. We'll need to confirm that this works.
diff --git a/usrp/doc/inband-signaling-usb b/usrp/doc/inband-signaling-usb
deleted file mode 100644
index 14f83479a..000000000
--- a/usrp/doc/inband-signaling-usb
+++ /dev/null
@@ -1,314 +0,0 @@
-This file specifies the format of USB packets used for in-band data
-transmission and signaling on the USRP. All packets are 512-byte long,
-and are transfered using USB "bulk" transfers.
-
-IN packets are sent towards the host.
-OUT packets are sent away from the host.
-
-The layout is 32-bits wide. All data is transmitted in little-endian
-format across the USB.
-
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- |O|U|D|S|E| RSSI | Chan | mbz | Tag | Payload Len |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Timestamp |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | |
- + +
- | Payload |
- . .
- . .
- . .
- | |
- + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | ... | .
- +-+-+-+-+-+-+-+ .
- . .
- . Padding .
- . .
- | |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
- mbz Must be Zero: these bits must be zero in both IN and OUT packets.
-
- O Overrun Flag: set in an IN packet if an overrun condition was
- detected. Must be zero in OUT packets. Overrun occurs when
- the FPGA has data to transmit to the host and there is no
- buffer space available. This generally indicates a problem on
- the host. Either it is not keeping up, or it has configured
- the FPGA to transmit data at a higher rate than the transport
- (USB) can support.
-
- U Underrun Flag: set in an IN packet if an underrun condition
- was detected. Must be zero in OUT packets. Underrun occurs
- when the FPGA runs out of samples, and it's not between
- bursts. See the "End of Burst flag" below.
-
- D Dropped Packet Flag: Set in an IN packet if the FPGA
- discarded an OUT packet because its timestamp had already
- passed.
-
- S Start of Burst Flag: Set in an OUT packet if the data is the
- first segment of what is logically a continuous burst of data.
- Must be zero in IN packets.
-
- E End of Burst Flag: Set in an OUT packet if the data is the
- last segment of what is logically a continuous burst of data.
- Must be zero in IN packets. Underruns are not reported
- when the FPGA runs out of samples between bursts.
-
-
- RSSI 6-bit Received Strength Signal Indicator: Must be zero in OUT
- packets. In IN packets, indicates RSSI as reported by front end.
- FIXME The format and interpretation are to be determined.
-
- Chan 5-bit logical channel number. Channel number 0x1f is reserved
- for control information. See "Control Channel" below. Other
- channels are "data channels." Each data channel is logically
- independent of the others. A data channel payload field
- contains a sequence of homogeneous samples. The format of the
- samples is determined by the configuration associated with the
- given channel. It is often the case that the payload field
- contains 32-bit complex samples, each containing 16-bit real
- and imaginary components.
-
- Tag 4-bit tag for matching IN packets with OUT packets.
- [FIXME, write more...]
-
- Payload Len: 9-bit field that specifies the length of the payload
- field in bytes. Must be in the range 0 to 504 inclusive.
-
- Timestamp: 32-bit timestamp.
- On IN packets, the timestamp indicates the time at which the
- first sample of the packet was produced by the A/D converter(s)
- for that channel. On OUT packets, the timestamp specifies the
- time at which the first sample in the packet should go out the
- D/A converter(s) for that channel. If a packet reaches the
- head of the transmit queue, and the current time is later than
- the timestamp, an error is assumed to have occurred and the
- packet is discarded. As a special case, the timestamp
- 0xffffffff is interpreted as "Now".
-
- The time base is a free running 32-bit counter that is
- incremented by the A/D sample-clock.
-
- Payload: Variable length field. Length is specified by the
- Payload Len field.
-
- Padding: This field is 504 - Payload Len bytes long, and its content
- is unspecified. This field pads the packet out to a constant
- 512 bytes.
-
-
-
-"Data Channel" payload format:
--------------------------------
-
-If Chan != 0x1f, the packet is a "data packet" and the payload is a
-sequence of homogeneous samples. The format of the samples is
-determined by the configuration associated with the given channel.
-It is often the case that the payload field contains 32-bit complex
-samples, each containing 16-bit real and imaginary components.
-
-
-"Control Channel" payload format:
----------------------------------
-
-If Chan == 0x1f, the packet is a "control packet". The control channel
-payload consists of a sequence of 0 or more sub-packets.
-
-Each sub-packet starts on a 32-bit boundary, and consists of an 8-bit
-Opcode field, an 8-bit Length field, Length bytes of arguments, and 0,
-1, 2 or 3 bytes of padding to align the tail of the sub-packet to
-a 32-bit boundary.
-
-Control channel packets shall be processed at the head of the queue,
-and shall observe the timestamp semantics described above.
-
-
-General sub-packet format:
---------------------------
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-//-+-+-+-+-+-+-+-+
- | Opcode | Length | <length bytes> ... |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-//-+-+-+-+-+-+-+-+
-
-
-Specific sub-packet formats:
-----------------------------
-
- RID: 6-bit Request-ID. Copied from request sub-packet into corresponding
- reply sub-packet. RID allows the host to match requests and replies.
-
- Reg Number: 10-bit Register Number.
-
-
-
-Ping Fixed Length:
-
- Opcode: OP_PING_FIXED
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 2 | RID | Ping Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-Ping Fixed Length Reply:
-
- Opcode: OP_PING_FIXED_REPLY
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 2 | RID | Ping Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-Write Register:
-
- Opcode: OP_WRITE_REG
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 6 | mbz | Reg Number |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Register Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-Write Register Masked:
-
- Opcode: OP_WRITE_REG_MASKED
-
- REG[Num] = (REG[Num] & ~Mask) | (Value & Mask)
-
- That is, only the register bits that correspond to 1's in the
- mask are written with the new value.
-
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 10 | mbz | Reg Number |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Register Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Mask Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-Read Register:
-
- Opcode: OP_READ_REG
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 2 | RID | Reg Number |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-Read Register Reply:
-
- Opcode: OP_READ_REG_REPLY
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 6 | RID | Reg Number |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Register Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-I2C Write:
-
- Opcode: OP_I2C_WRITE
- I2C Addr: 7-bit I2C address
- Data: The bytes to write to the I2C bus
- Length: Length of Data + 2
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | Length | mbz | I2C Addr |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Data ... .
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-I2C Read:
-
- Opcode: OP_I2C_READ
- I2C Addr: 7-bit I2C address
- Nbytes: Number of bytes to read from I2C bus
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 3 | RID | mbz | I2C Addr |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Nbytes | unspecified padding |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-I2C Read Reply:
-
- Opcode: OP_I2C_READ_REPLY
- I2C Addr: 7-bit I2C address
- Data: Length - 2 bytes of data read from I2C bus.
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | Length | RID | mbz | I2C Addr |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Data ... .
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-SPI Write:
-
- Opcode: OP_SPI_WRITE
- Enables: Which SPI enables to assert (mask)
- Format: Specifies format of SPI data and Opt Header Bytes
- Opt Header Bytes: 2-byte field containing optional Tx bytes; see Format
- Data: The bytes to write to the SPI bus
- Length: Length of Data + 6
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | Length | mbz |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Enables | Format | Opt Header Bytes |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Data ... .
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-SPI Read:
-
- Opcode: OP_SPI_READ
- Enables: Which SPI enables to assert (mask)
- Format: Specifies format of SPI data and Opt Header Bytes
- Opt Header Bytes: 2-byte field containing optional Tx bytes; see Format
- Nbytes: Number of bytes to read from SPI bus.
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 7 | RID | mbz |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Enables | Format | Opt Header Bytes |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Nbytes | unspecified padding |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-SPI Read Reply:
-
- Opcode: OP_SPI_READ_REPLY
- Data: Length - 2 bytes of data read from SPI bus.
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | Length | RID | mbz |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Data ... .
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-Delay:
-
- Opcode: OP_DELAY
- Ticks: 16-bit unsigned delay count
-
- Delay Ticks clock ticks before executing next operation.
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Opcode | 2 | Ticks |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
diff --git a/usrp/doc/inband-signaling-usb-host b/usrp/doc/inband-signaling-usb-host
deleted file mode 100644
index 6bfdca97e..000000000
--- a/usrp/doc/inband-signaling-usb-host
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# Copyright 2007 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# GNU Radio is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# GNU Radio is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-
-
-See usrp/host/lib/inband/usrp_server.mbh for interface
-
diff --git a/usrp/doc/other/.gitignore b/usrp/doc/other/.gitignore
deleted file mode 100644
index b336cc7ce..000000000
--- a/usrp/doc/other/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/Makefile
-/Makefile.in
diff --git a/usrp/doc/other/Makefile.am b/usrp/doc/other/Makefile.am
deleted file mode 100644
index 815553a6d..000000000
--- a/usrp/doc/other/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-# Copyright 2005,2010 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# GNU Radio is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# GNU Radio is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Radio; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street,
-# Boston, MA 02110-1301, USA.
-#
-
-include $(top_srcdir)/Makefile.common
-
-EXTRA_DIST += \
- mainpage.dox
diff --git a/usrp/doc/other/mainpage.dox b/usrp/doc/other/mainpage.dox
deleted file mode 100644
index 56068cc5f..000000000
--- a/usrp/doc/other/mainpage.dox
+++ /dev/null
@@ -1,9 +0,0 @@
-/*! \mainpage
-
-The top level interfaces to the USRP are usrp_standard_rx and
-usrp_standard_tx. Also take a look at their base classes,
-usrp_basic_rx, usrp_basic_tx and usrp_basic.
-
-See also <a href="usrp_guide.html">USRP User's and Developer's Guide</a>
-
-*/
diff --git a/usrp/doc/traffic-cop-dma b/usrp/doc/traffic-cop-dma
deleted file mode 100644
index 0b3c3507e..000000000
--- a/usrp/doc/traffic-cop-dma
+++ /dev/null
@@ -1,137 +0,0 @@
-Matt,
-
-Here's my idea on the interface to the traffic cop. Basically I'm
-thinking about treating it as 4 separate DMA channels, one for each of
-the four possible "flows". In the interest of simplicity, I think we can
-assign buffers 0,1 to channel 0; 2,3 to channel 1, etc...
-
-port assignments
------------------
- 0 SERDES
- 1 DSP pipeline
- 2 Gigabit ethernet MAC
- 3 RAM
-
-
-registers
----------
-
- MBZ == Must Be Zero
-
- 3 2 1
- 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
-
-
-TC_DMA_SRC_{0,3} [WR] ("traffic cop DMA source, channel N")
-
- (The {0,3} notation means there are four of these registers,
- one for each channel, named TC_DMA_SRC_0, TC_DMA_SRC_1,
- TC_DMA_SRC_2, TC_DMA_3.)
-
- Specifies where the writing port adapter writes info the buffer, and
- the maximum number of lines to write.
-
- 5 9 9 9
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- |0| src | start | end (max) | step |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
- src: source port number. E.g., 2 = ethernet MAC (the buffer writer)
- start: starting line number for transfer (32-bit lines)
- end: index of last line to write. I.e., start = 0, end = 0, xfers 1 line.
- step: normally 1.
-
-
-TC_DMA_DST_{0,3} [WR]
-
- Specifies the range of lines that the reading port adapter accesses.
- The number of lines to be transferred is controlled by the source.
-
- 5 9 9 9
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- |0| dst | start | end (max) | step |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
- dst: destination port number. E.g., 1 = DSP pipeline (the buffer reader)
- start: starting line number tranfer (32-bit lines)
- end: Must be zero, unless a TC_DMA_CMD_SEND_0 or TC_DMA_CMD_SEND_1
- cmd is written to TC_DMA_CTRL_{0,3} in which case this
- specifies the index of the last line to send to the destination.
- step: normally 1.
-
-
-TC_DMA_CTRL_{0,3} [WR]
-
- 27 1 4
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | MBZ |A| cmd |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
- A: Set if "Host Approval" is required before beginning xfer to dst.
- Used to allow processor to inspect packet for s/w dispatch. If set,
- traffic cop sets PENDING_APPROVAL bit (and causes interrupt?) after the
- 2nd line has been written into the buffer. Reader is held off
- until hosts APPROVES or DROPS the buffer.
-
-
- cmd: command
-
- TC_DMA_CMD_RESET 0 // abort active tranfers now; reset to idle state
- TC_DMA_CMD_START 1 // begin transfers according
- TC_DMA_CMD_STOP 2 // stop transfers at completion of current buffer
- TC_DMA_CMD_APPROVE_0 3 // host approves xfer on even buffer, continue
- TC_DMA_CMD_APPROVE_1 4 // host approves xfer on odd buffer, continue
- TC_DMA_CMD_DROP_0 5 // host naks xfer on even buffer, drop buffer and continue
- TC_DMA_CMD_DROP_1 6 // host naks xfer on even buffer, drop buffer and continue
- TC_DMA_CMD_SEND_0 7 // copy buffer 0 to destination (processor init'd buffer)
- TC_DMA_CMD_SEND_1 8 // copy buffer 1 to destination (processor init'd buffer)
-
-
-TC_DMA_STATUS_{0,3} [RD]
-
- 10 10
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | nwritten even | nwritten odd | state? | flags |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
- nwritten even: number of lines written into even buffer
- nwritten odd: number of lines written into odd buffer
-
- flag bits:
-
- bmTCDS_PENDING_APPROVAL_0 (1 << 0) // pending host approval on even buffer
- bmTCDS_PENDING_APPROVAL_1 (1 << 1) // pending host approval on odd buffer
- bmTCDS_WRITE_DONE_0 (1 << 2) // the even buffer write is complete
- bmTCDS_WRITE_DONE_1 (1 << 3) // the odd buffer write is complete
-
-I think the combination of the "host approval" and WRITE_DONE bits
-will allow us to handle the cases where the host looks and doesn't
-care, and the case where the host looks, cares, and needs to wait
-until it sees the whole packet.
-
-WRITE_DONE_* should be cleared when the corresponding buffer is
-selected to be written into (e.g., when swapping buffers, and at init)
-prior to writing the first line. WRITE_DONE_* is set when the
-requested number of lines have been written into the buffer.
-
-
-
-I also want a "global status register" that pulls the N flag bits
-from each of the 4 status registers into a single word. This should
-allow me to read a single word to figure out what to do.
-
-
-TC_DMA_STATUS_GLOBAL [RD]
-
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | flags3 | flags2 | flags1 | flags0 |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-
-
-// some kind of registers to enable and ack interrupts
-
-TC_DMA_INTR_EN [WR] // enable particular interrupts
-TC_DMA_INTR_CLR [WR] // clear particular pending interrupts
-
diff --git a/usrp/doc/usrp-block-diagram.eps b/usrp/doc/usrp-block-diagram.eps
deleted file mode 100644
index 190b9dee3..000000000
--- a/usrp/doc/usrp-block-diagram.eps
+++ /dev/null
@@ -1,2785 +0,0 @@
-%!PS-Adobe-3.0 EPSF-3.0
-%%BoundingBox: 0 0 755 575
-%%Pages: 0
-%%Creator: Sun Microsystems, Inc.
-%%Title: none
-%%CreationDate: none
-%%LanguageLevel: 2
-%%EndComments
-%%BeginPreview: 760 575 1 1725
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000FFE300707800000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000FFE380E1FE00000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C001C0C30700000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C000E1830300000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C000E3820300000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C00077000300000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C0003E000300000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C0001C000700000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000FFC01C000E00000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000FFC03E001C00000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C00037003800000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C0006700F000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C000E381C000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C001C1C18000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C00180C30000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C00380E7FF00000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000C0070077FF00000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08000000300701F80FF80007C00000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08000000300707FE0FFE000FF00000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08000000300706070C060018380000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000030070E038C030010180000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000030070C000C030030180000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000030070E000C030000180000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08000000300707C00C070000380000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08000000300703FC0FFE0000300000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000003007007E0FFC0000700000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000003007000F0FFF0000E00000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08000000300700038C030003C00000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000030071C018C038007000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000038061C018C01800E000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000018060E038C03801C000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000001C0E0F070C070018000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000FFC07FE0FFF003FF80000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800000007F001FC0FFC003FF80000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080007E00000000000000031800000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08001FF80000000300000031800000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800381C0000000300000031800000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800700C0000000300000031800000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800600E03808E07C8C0E03180E023000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800E0000FE0FF8FCFE3F83183F83F800000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800E0001C70F3C30FC71C31871C3F000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800C0003038E0C30E0E0E318E0E38000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800C0003018C0C30C0C06318C0630000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800C0007018C0C30C0C06318FFE30000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800C0007018C0C30C0C07318FFE30000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800E0067018C0C30C0C07318C0030000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800600E7018C0C30C0C06318C0030000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800700C3038C0C30C0C06318C0630000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0800381C3830C0C30C0E0E318E0E30000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%08001FF81FF0C0C3CC07FC3187FC30000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080007E00FC0C0C1CC01F03181F030000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%080000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000018000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000000000000000000
-%007FFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000000000000000000000FFFFFFFFFFFFFF
-%FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000010000
-%004000000000000000000000000000020000040000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000020000000000000000000
-%004000000000000000000000000000020000000000000000000020000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000040000000000000000000
-%004000000000000000000000000000020000000000000000000010000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000100000000000000000000
-%004000000000000000000000000000020000000000000000000004000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000200000000000000000000
-%004000000000000000000000000000020000000000000000000002000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000400000000000000000000
-%004000000000000000000000000000020000000000000000000001000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000800000000000000000000
-%004000000000000000000000000000020000000000000000000000800000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000001000000000000000000000
-%004000000000000000000000000000020000000000000000000000400000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000002000000000000000000000
-%004000000000000000000000000000020000000000000000000000200000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000C000000000000000000000
-%004000000000000000000000000000020000000000000000000000180000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000010000000000000000000000
-%004000000000000000000000000000020000000000000000000000040000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000020000000000000000000000
-%004000000000000000000000000000020000000000000000000000020000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000040000000000000000000000
-%004000000000000000000000000000020000000000000000000000010000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000080000000000000000000000
-%004000000000000000000000000000020000000000000000000000008000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000100000000000000000000000
-%004000000000000000000000000000020000000000000000000000004000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000200000000000000000000000
-%004000000000000000000000000000020000000000000000000000002000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000C00000000000000000000000
-%004000000000000000000000000000020000000000000000000000001800000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000020001C03FF800FE0000000000
-%00400000000000000000000000000002000000000003C03FF001FE000200000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000040001E03FFC03FF8000000000
-%00400000000000000000000000000002000000000003C03FFC03FF000100000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000360300E07038000000000
-%00400000000000000000000000000002000000000003C0301C0703800000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040001000036030060601C000000000
-%0040000000000000000000000000000200000000000760300E0E01800040000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040002000073030070C00C000000000
-%004000000000000000000000000000020000000000066030060C01C00020000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040004000063030030C000000000000
-%004000000000000000000000000000020000000000067030071C00000010000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000063830031C000000000000
-%0040000000000000000000000000000200000000000C3030071800000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000E1830031C00000000FFFF
-%FFC0000000000000000000000000000200000000000C3030031800000001FFFF80000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400200000C1830031C00000000FFFF
-%FFC0000000000000000000000000000200000000001C1830031800000003FFFF80000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000007FF800000C1C30031C000000000000
-%00400000000000000000000000000003FFFFF800001C1830031800000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000001FFC30030C000000000000
-%0040000000000000000000000000000200000000001FFC30071800000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000001FFE30070C00C000000000
-%0040000000000000000000000000000200000000003FFC30061C00C00000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000380630070E00C000000000
-%004000000000000000000000000000020000000000300E30060C01C00000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400020003006300E0701C000000000
-%004000000000000000000000000000020000000000300E300E0E03800020000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400010003007301E07838000000000
-%0040000000000000000000000000000200000000006006301C0707800040000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000000070033FF801FF0000000000
-%00400000000000000000000000000002000000000060073FF803FE000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400004006003BFE0007C0000000000
-%004000000000000000000000000000020000000000E0033FE000FC000100000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400002000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000200000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000800000000000000000000000
-%004000000000000000000000000000020000000000000000000000000800000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000400000000000000000000000
-%004000000000000000000000000000020000000000000000000000001000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000200000000000000000000000
-%004000000000000000000000000000020000000000000000000000002000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000100000000000000000000000
-%004000000000000000000000000000020000000000000000000000004000000080000000000000
-%0000000000000000000000000000000400
-%0008000000000003FF800000000003000000000000000000400000080000000000000000000000
-%00400000000000000000000000000002000000000000000000000000800000008000000000003F
-%F800000000003000000000000000000400
-%0008000000000003FFC00000000003000000000000000000400000040000000000000000000000
-%00400000000000000000000000000002000000000000000000000001000000008000000000003F
-%FC00000000003000000000000000000400
-%000800000000000300E00000000002000000000000000000400000020000000000000000000000
-%004000000000000000000000000000020000000000000000000000020000000080000000000038
-%0E00000000002000000000000000000400
-%000800000000000300600000000000000000000000000000400000018000000000000000000000
-%0040000000000000000000000000000200000000000000000000000C0000000080000000000030
-%0700000000000000000000000000000400
-%000800000000000300700000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000100000000080000000000030
-%0700000000000000000000000000000400
-%00080000000000030070FE03F03F0330187E000000000000400000002000000000000000000000
-%004000000000000000000000000000020000000000000000000000200000000080000000000030
-%0707E03F03F8338187F000000000000400
-%00080000000000030061EF073873833838E7000000000000400000001000000000000000000000
-%004000000000000000000000000000020000000000000000000000400000000080000000000030
-%070E7073873C31818E7800000000000400
-%000800000000000301E1830E1CE0C3183181800000000000400000000800000000000000000000
-%004000000000000000000000000000020000000000000000000000800000000080000000000038
-%1E1838E0CE0C31831C1800000000000400
-%0008000000000003FF83018C0CC0E3183181C00000000000400000000400000000000000000000
-%00400000000000000000000000000002000000000000000000000100000000008000000000003F
-%FC3018C0CC0631C3180C00000000000400
-%0008000000000003FE03019C01C0E30C6381C00000000000400000000200000000000000000000
-%00400000000000000000000000000002000000000000000000000200000000008000000000003F
-%F03018C00C0630C3181C00000000000400
-%00080000000000030703FF9C01FFE30C63FFC00000000000400000000100000000000000000000
-%004000000000000000000000000000020000000000000000000004000000000080000000000030
-%383FF8C00FFE30C61FFC00000000000400
-%00080000000000030383001C01C0030C6380000000000000400000000040000000000000000000
-%004000000000000000000000000000020000000000000000000010000000000080000000000030
-%183000C00C003066180000000000000400
-%000800000000000301C3001C01C00306C380000000000000400000000020000000000000000000
-%004000000000000000000000000000020000000000000000000020000000000080000000000030
-%1C3000C00C003066180000000000000400
-%000800000000000300E3018C0CC04306C181800000000000400000000000000000000000010000
-%004000000000000000000000000000020000040000000000000000000000000080000000000030
-%0E3818C0CC06306C180C00000000000400
-%000800000000000300E1838E1CE0C307C1C1800000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000030
-%071838E0CE0E303C1C1C00000000000400
-%00080000000000030071E7073873C30380E7800000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000030
-%071E707387BC30380F7800000000000400
-%00080000000000030030FE03F03F8303807F000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000030
-%0387E03F03F8303807F000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800FFC0000000000030000000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800FFC00000000
-%00030000000000C0000000000000C00400
-%000800FFF000000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800FFF00000000
-%0003000C000000C0000000000000C00400
-%000800E07800000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E0780000000
-%0003000C000000C0000000000000C00400
-%000800E01800000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E01C0000000
-%0003000C000000C0000000000000C00400
-%000800E01C00000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E00C0000000
-%0003000E000000C0000000000000C00400
-%000800E00C1FC38183FC37E3F0FC1FCDF03F81FE1FC7FC00400000000000000000000000010000
-%0040000000000000000000000000000200000400000000000000000000000000800E00C1FE1818
-%3FE37E1F0FC0FCDF01FC0FE1FC7EC00400
-%000800E00C39E381873C3CE0C1CE1FCF3879C3CF1F8E7C00400000000020000000000000000000
-%0040000000000000000000000000000200000000000000000000200000000000800E00E38E1818
-%73E3EF0C1CF0FCFB879E1CF1F8E7C00400
-%000800E00E7063818C1C3870C3031C0E1C60E3031C1C3C00400000000040000000000000000000
-%0040000000000000000000000000000200000000000000000000100000000000800E00E3071818
-%E1E3830C3030E0E1C6063831C1C1C00400
-%000800E00E0063818C0C3030C7031C0C0CC0600318181C00400000000100000000000000000000
-%0040000000000000000000000000000200000000000000000000040000000000800E00E0071818
-%C0E3030C3038C0C0CE070031C181C00400
-%000800E00E006381980C3030C7039C0C0CC0700718181C00400000000200000000000000000000
-%0040000000000000000000000000000200000000000000000000020000000000800E00E0071818
-%C0E3030C7038C0C0CC0300718180C00400
-%000800E00C1FE381980C3030C7FF9C0C0CC030FF18381C00400000000400000000000000000000
-%0040000000000000000000000000000200000000000000000000010000000000800E00E0FF1819
-%C0E3030C7FF8C0C0EC030FF18180C00400
-%000800E00C3E6381980C3030C7001C0C0CC033E318381C00400000000800000000000000000000
-%0040000000000000000000000000000200000000000000000000008000000000800E00E3E71819
-%C0E3030C7000C0C0EC031E318180C00400
-%000800E00C7063839C0C3030C6001C0C0CC0730318181C00400000001000000000000000000000
-%0040000000000000000000000000000200000000000000000000004000000000800E00C7071818
-%C0E3030C7000C0C0CC0330318180C00400
-%000800E01C6063838C0C3030C7031C0C0CE0670318181C00400000002000000000000000000000
-%0040000000000000000000000000000200000000000000000000002000000000800E01C6071838
-%C0E3030C3030C0C0CE0730318181C00400
-%000800E03860E1878C1C3030C3871C0E1860E707181C3C00400000008000000000000000000000
-%0040000000000000000000000000000200000000000000000000001800000000800E0386071838
-%E1E3030C3830C0E1C706307180C1C00400
-%000800FFF071E1FF877C3030F1CE1C0F3879C39F180E7C00400000010000000000000000000000
-%0040000000000000000000000000000200000000000000000000000400000000800FFF039F1FF8
-%73E3030F1EF0C0FB839E39F180F7C00400
-%000800FFE03F30F983EC303070FC1C0DF01F81FB1807FC00400000020000000000000000000000
-%0040000000000000000000000000000200000000000000000000000200000000800FFE03F30FD8
-%3FE303078FE0C0DF01F81FB9807EC00400
-%0008000000000000000C0000000000000000000000000000400000040000000000000000000000
-%004000000000000000000000000000020000000000000000000000010000000080000000000000
-%00E0000000000000000000000000000400
-%0008000000000000080C0000000000000000000000000000400000080000000000000000000000
-%004000000000000000000000000000020000000000000000000000008000000080000000000000
-%C0C0000000000000000000000000000400
-%00080000000000000C1C0000000000000000000000000000400000100000000000000000000000
-%004000000000000000000000000000020000000000000000000000004000000080000000000000
-%E1C0000000000000000000000000000400
-%000800000000000007F80000000000000000000000000000400000200000000000000000000000
-%004000000000000000000000000000020000000000000000000000002000000080000000000000
-%7F80000000000000000000000000000400
-%000800000000000003E00000000000000000000000000000400000C00000000000000000000000
-%004000000000000000000000000000020000000000000000000000001800000080000000000000
-%1E00000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000020001C03FF801FE0000000000
-%00400000000000000000000000000002000000000003C03FF801FE000200000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000040001E03FFC03FF8000000000
-%00400000000000000000000000000002000000000003C03FFC03FF000100000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000360300E07018000000000
-%00400000000000000000000000000002000000000003E0301C0703800000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040001000036030070E01C000000000
-%0040000000000000000000000000000200000000000660300E0E01800040000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040002000073030070C00C000000000
-%004000000000000000000000000000020000000000066030060C00800020000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040004000063030030C000000000000
-%004000000000000000000000000000020000000000067030071C00000010000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040010000063830031C000000000000
-%0040000000000000000000000000000200000000000C3030031800000000000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000007FF800000E1830031C00000000FFFF
-%FFC0000000000000000000000000000200000000000C3830031800000001FFFF80000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000007FF800000C1C30031C00000000FFFF
-%FFC0000000000000000000000000000200000800001C1830031800000001FFFF80000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400200000C1C30031C000000000000
-%00400000000000000000000000000003FFFFF800001C1830031800000002000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000001FFC30030C000000000000
-%0040000000000000000000000000000200000000001FFC30071C00000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000001FFE30070C00C000000000
-%0040000000000000000000000000000200000000003FFC30060C00C00000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000380630070E00C000000000
-%004000000000000000000000000000020000000000300E30060C01C00000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400020003007300E0701C000000000
-%004000000000000000000000000000020000000000300E300E0E03800020000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000003007383C03C78000000000
-%0040000000000000000000000000000200000000006006303C0787000000000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000000070033FF801FF0000000000
-%00400000000000000000000000000002000000000060073FF803FE000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400004006003BFE0007C0000000000
-%004000000000000000000000000000020000000000E0033FE000F8000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000800000000000000000000000
-%004000000000000000000000000000020000000000000000000000000800000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000400000000000000000000000
-%004000000000000000000000000000020000000000000000000000001000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000100000000000000000000000
-%004000000000000000000000000000020000000000000000000000004000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000080000000000000000000000
-%004000000000000000000000000000020000000000000000000000008000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000020000000000000000000000
-%004000000000000000000000000000020000000000000000000000020000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000018000000000000000000000
-%0040000000000000000000000000000200000000000000000000000C0000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000004000000000000000000000
-%004000000000000000000000000000020000000000000000000000100000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000002000000000000000000000
-%004000000000000000000000000000020000000000000000000000200000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000001000000000000000000000
-%004000000000000000000000000000020000000000000000000000400000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000800000000000000000000
-%004000000000000000000000000000020000000000000000000000800000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000400000000000000000000
-%004000000000000000000000000000020000000000000000000001000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000200000000000000000000
-%004000000000000000000000000000020000000000000000000002000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000080000000000000000000
-%004000000000000000000000000000020000000000000000000008000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000040000000000000000000
-%004000000000000000000000000000020000000000000000000010000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000020000000000000000000
-%004000000000000000000000000000020000000000000000000020000000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000001FFFFFFFFFFFFFFF0000
-%00400000000000000000000000000002000007FFFFFFFFFFFFFFC0000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000FFFFFFFFFFFFFF
-%FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000007FF9FF8007C001C000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000007FF9FFE01FF801C000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000007001C0F0383C03E000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C070700C036000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C030E00C036000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C030C000063000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C031C000063000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000007001C071C0000E3800000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000007FF1FFE1C0FE0C1800000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000007FE1FFC1C0FE0C1800000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C001C00E1FFC00000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C000C0061FFC00000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C000C006380E00000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C000E006300600000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C000781E300700000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C0003FFC700700000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0040000006001C0000FF0600300000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000007FFFFFFFFFFFFF
-%FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000001FFFFFFFFFFFFFFF0000
-%00400000000000000000000000000002000007FFFFFFFFFFFFFFC0000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000080000000000000000000
-%004000000000000000000000000000020000000000000000000008000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000002000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000008000000000000000000000
-%004000000000000000000000000000020000000000000000000000080000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000010000000000000000000000
-%004000000000000000000000000000020000000000000000000000040000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000040000000000000000000000
-%004000000000000000000000000000020000000000000000000000010000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000080000000000000000000000
-%004000000000000000000000000000020000000000000000000000008000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000200000000000000000000000
-%004000000000000000000000000000020000000000000000000000002000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000C00000000000000000000000
-%004000000000000000000000000000020000000000000000000000001800000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400001003FE00060007C0000000000
-%0040000000000000000000000000000200000000003FE000E00078000400000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400002003FF800F001FF0000000000
-%0040000000000000000000000000000200000000003FF800E001FE000200000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000400383E00F003C78000000000
-%004000000000000000000000000000020000000000303C01E00787000100000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000800380E01F80701C000000000
-%004000000000000000000000000000020000000000300E01B00E03800080000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040001000380701980E00C000000000
-%004000000000000000000000000000020000000000300601B00C01C00040000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040002000380301980C008000000000
-%004000000000000000000000000000020000000000300703181C00800020000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400080003803039C0C000000000000
-%004000000000000000000000000000020000000000300303181C00000008000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400100003803830C1C000000000000
-%0040000000000000000000000000000200000000003003071C1800000004000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000003803830C1C000000008000
-%0040000000000000000000000000000200000800003003060C1800000000000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000007FFC0000380386061C00000000FFFF
-%FFC00000000000000000000000000003FFFFF800003003060C1800000001FFFF80000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040020000380387FE1C000000000000
-%00400000000000000000000000000002000000000030030FFE1800000002000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000000038030FFF0C000000000000
-%00400000000000000000000000000002000000000030070FFE1C00000004000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000C00038030C030C00C000000000
-%00400000000000000000000000000002000000000030061C070C00C00018000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000000038070C030E01C000000000
-%004000000000000000000000000000020000000000300618030E01C00000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000380E1C038701C000000000
-%004000000000000000000000000000020000000000300E18038703800000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400008003FFC180183FF8000000000
-%0040000000000000000000000000000200000000003FFC380387FF000080000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000003FF83801C1FE0000000000
-%0040000000000000000000000000000200000000003FF8300181FE000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400002000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000200000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400001000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000400000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000800000000000000000000000
-%004000000000000000000000000000020000000000000000000000000800000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000007FFE00000000000000000C100000000000400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800000000003FF
-%E00000000000000000C100000000000400
-%000800000000003FFE00000000000000000C300000000000400000004000000000000000000000
-%0040000000000000000000000000000200000000000000000000001000000000800000000003FF
-%E00000000000000000C300000000000400
-%0008000000000001C0000000000000000000300000000000400000002000000000000000000000
-%00400000000000000000000000000002000000000000000000000020000000008000000000000C
-%0000000000000000000300000000000400
-%0008000000000001C0000000000000000000300000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0000000000000000000300000000000400
-%0008000000000001C0670F833C03C19E1C0CFC0000000000400000000800000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0270F811C03C09E1C0CFC0000000000400
-%0008000000000001C07F3FE3FF0FE1FF7F0CFC0000000000400000000400000000000000000000
-%00400000000000000000000000000002000000000000000000000100000000008000000000000C
-%07F1FE1FF0FF1FF3F0CFC0000000000400
-%0008000000000001C07A30E3C31C31E3C70C300000000000400000000100000000000000000000
-%00400000000000000000000000000002000000000000000000000400000000008000000000000C
-%0783061C38C31E3E30C300000000000400
-%0008000000000001C0707063839831C1830C300000000000400000000080000000000000000000
-%00400000000000000000000000000002000000000000000000000800000000008000000000000C
-%0703071819C11C1C38C300000000000400
-%0008000000000001C0700063819C01C1830C300000000000400000000040000000000000000000
-%00400000000000000000000000000002000000000000000000001000000000008000000000000C
-%0700071819C01C1818C300000000000400
-%0008000000000001C06003E3818F8181830C300000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%07001F1818F81C1818C300000000000400
-%0008000000000001C0603FE38187F181830C30000000000040000000001FFFFFFFFFFFFFFF0000
-%00400000000000000000000000000002000007FFFFFFFFFFFFFFC000000000008000000000000C
-%0701FF18187F1C1818C300000000000400
-%0008000000000001C06078638180F181830C300000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0703C718180F9C1818C300000000000400
-%0008000000000001C060606381803981830C300000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0707071818019C1818C300000000000400
-%0008000000000001C060606381981981830C300000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0706071819819C1818C300000000000400
-%0008000000000001C06060E3819C3981830C300000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%07070F1819C39C1818C300000000000400
-%0008000000000001C0607FE3818FF181830C3C0000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0703FF1818FF1C1818C3C0000000000400
-%0008000000000001C0601E338187C181830C1C0000000000400000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000008000000000000C
-%0701F318183E1C1818C1C0000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800FFE0000000000030004000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800FFE00000000
-%00030004000000C0000000000000C00400
-%000800FFF000000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800FFF00000000
-%0003000C000000C0000000000000C00400
-%000800E03800000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E0380000000
-%0003000C000000C0000000000000C00400
-%000800E01C00000000003000C000000C0000000000000C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E01C0000000
-%0003000C000000C0000000000000C00400
-%000800E00C0F838181EC33C3F07819CCE00F007C1B83CC0040000000001FFFFFFFFFFFFFFF0000
-%00400000000000000000000000000002000007FFFFFFFFFFFFFFC00000000000800E00C0F81818
-%1E633C1F0780DCCE00F007C1BC3CC00400
-%000800E00C3FE38187FC3FE3F1FE1FCFF83FC1FE1F8FFC00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E00E1FE1818
-%7FE3FE1F1FE0FCFF83FC1FE1FC7FC00400
-%000800E00E30E3818E1C3870C3871E0E1870E3871E9C3C00400000000040000000000000000000
-%0040000000000000000000000000000200000000000000000000100000000000800E00E3061818
-%61E3870C3870E0F1C70E3871E0C3C00400
-%000800E00E7063818C0C3030C3031C0E1CE063031C181C00400000000080000000000000000000
-%0040000000000000000000000000000200000000000000000000080000000000800E00E3071818
-%C0E3030C3030C0E0C6063031C1C1C00400
-%000800E00E0063819C0C3030C6031C0C0CC0700318181C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E00E0071818
-%C0E3030C3038C0C0CC0300318181C00400
-%000800E00E03E381980C3030C7FF9C0C0CC0303F18381C00400000000400000000000000000000
-%0040000000000000000000000000000200000000000000000000010000000000800E00E03F1819
-%C0E3030C7FF8C0C0EC0301F18180C00400
-%000800E00C3FE381980C3030C7FF9C0C0CC031FF18381C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E00E1FF1819
-%C0E3030C7FF8C0C0EC031FF18180C00400
-%000800E00C786383980C3030C6001C0C0CC033C318381C00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E00C3871819
-%C0E3030C7000C0C0EC033C318180C00400
-%000800E01C6063839C0C3030C7001C0C0CC0770318181C00400000002000000000000000000000
-%0040000000000000000000000000000200000000000000000000002000000000800E00C7071818
-%C0E3030C7000C0C0CC0330318180C00400
-%000800E0186063838C0C3030C3031C0C1CE0670718181C00400000004000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800E01C6071838
-%C0E3030C3038C0E0C606303181C1C00400
-%000800E07870E1878E1C3030C3871C0E1870E70F180C3C00400000008000000000000000000000
-%0040000000000000000000000000000200000000000000000000000800000000800E07870F1C78
-%E1E3030C3870C0E1C70E307180C3C00400
-%000800FFF03FF1FD87FC3030F1FE1C0FF03FC3FF180FFC00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800FFF03FF0FD8
-%7FE3030F1FE0C0FF83FC3FF1807FC00400
-%000800FFC01E307981EC303070781C0DE01F01F39803CC00400000000000000000000000000000
-%0040000000000000000000000000000200000000000000000000000000000000800FFC01F30798
-%1EE3030787C0C0CE00F00F19803CC00400
-%0008000000000000000C0000000000000000000000000000400000040000000000000000000000
-%004000000000000000000000000000020000000000000000000000010000000080000000000000
-%00C0000000000000000000000000000400
-%00080000000000000C0C0000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%C0C0000000000000000000000000000400
-%00080000000000000E380000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%F3C0000000000000000000000000000400
-%000800000000000007F00000000000000000000000000000400000200000000000000000000000
-%004000000000000000000000000000020000000000000000000000002000000080000000000000
-%7F80000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400001003FF00060007C0000000000
-%0040000000000000000000000000000200000000003FE000E000FC000400000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400002003FFC00F001FF0000000000
-%0040000000000000000000000000000200000000003FF800E003FE000200000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000381E00F003838000000000
-%004000000000000000000000000000020000000000301C01F00787800000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000800380601F80701C000000000
-%004000000000000000000000000000020000000000300E01B00E03800080000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040001000380701980E00C000000000
-%004000000000000000000000000000020000000000300603B00C01C00040000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040004000380301980C000000000000
-%004000000000000000000000000000020000000000300703181C00000010000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400080003803031C0C000000000000
-%004000000000000000000000000000020000000000300303181800000008000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400100003803830C1C000000000000
-%0040000000000000000000000000000200000000003003071C1800000004000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000007FFA00003803870E1C00000000FFFF
-%FFC00000000000000000000000000003FFFFF800003003060C1800000003FFFF80000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000007FFC0000380386061C00000000FFFF
-%FFC00000000000000000000000000003FFFFF800003003060C1800000001FFFF80000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040020000380307FE0C000000000000
-%00400000000000000000000000000002000000000030030FFE1800000002000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004001000038030FFF0C00C000000000
-%00400000000000000000000000000002000000000030070FFE1C00800004000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000C00038030C030C00C000000000
-%00400000000000000000000000000002000000000030061C070C01C00018000080000000000000
-%0000000000000000000000000000000400
-%0008000000000000000000000000000000000000000000004000000038070C038601C000000000
-%004000000000000000000000000000020000000000300E18030E01800000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040001000380E1C0387038000000000
-%004000000000000000000000000000020000000000301E18038703800040000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400008003FFC180183FF8000000000
-%0040000000000000000000000000000200000000003FFC380387FF000080000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000003FF83801C1FE0000000000
-%0040000000000000000000000000000200000000003FF0300181FE000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400002000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000200000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400001000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000400000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000800000000000000000000000
-%004000000000000000000000000000020000000000000000000000000800000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000200000000000000000000000
-%004000000000000000000000000000020000000000000000000000002000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000040000000000000000000000
-%004000000000000000000000000000020000000000000000000000010000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000100000000000000000000
-%004000000000000000000000000000020000000000000000000004000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000080000000000000000000
-%004000000000000000000000000000020000000000000000000008000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000040000000000000000000
-%004000000000000000000000000000020000000000000000000010000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%00080000000000000000000000000000000000000000000040000000001FFFFFFFFFFFFFFF0000
-%00400000000000000000000000000002000007FFFFFFFFFFFFFFC0000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000800000000000000000000000000000000000000000000400000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000080000000000000
-%0000000000000000000000000000000400
-%000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000000000000000000
-%00400000000000000000000000000002000000000000000000000000000000007FFFFFFFFFFFFF
-%FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%004000000000000000000000000000020000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%007FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%000000000000000000000000000000000000000000000000000000000000000000000000000000
-%0000000000000000000000000000000000
-%%EndPreview
-%%BeginProlog
-%%BeginResource: SDRes
-/b4_inc_state save def
-/dict_count countdictstack def
-/op_count count 1 sub def
-userdict begin
-0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 10 setmiterlimit[] 0 setdash newpath
-/languagelevel where {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
-/bdef {bind def} bind def
-/c {setgray} bdef
-/l {neg lineto} bdef
-/rl {neg rlineto} bdef
-/lc {setlinecap} bdef
-/lj {setlinejoin} bdef
-/lw {setlinewidth} bdef
-/ml {setmiterlimit} bdef
-/ld {setdash} bdef
-/m {neg moveto} bdef
-/ct {6 2 roll neg 6 2 roll neg 6 2 roll neg curveto} bdef
-/r {rotate} bdef
-/t {neg translate} bdef
-/s {scale} bdef
-/sw {show} bdef
-/gs {gsave} bdef
-/gr {grestore} bdef
-/f {findfont dup length dict begin
-{1 index /FID ne {def} {pop pop} ifelse} forall /Encoding ISOLatin1Encoding def
-currentdict end /NFont exch definefont pop /NFont findfont} bdef
-/p {closepath} bdef
-/sf {scalefont setfont} bdef
-/ef {eofill}bdef
-/pc {closepath stroke}bdef
-/ps {stroke}bdef
-/pum {matrix currentmatrix}bdef
-/pom {setmatrix}bdef
-/bs {/aString exch def /nXOfs exch def /nWidth exch def currentpoint nXOfs 0 rmoveto pum nWidth aString stringwidth pop div 1 scale aString show pom moveto} bdef
-%%EndResource
-%%EndProlog
-%%BeginSetup
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-pum
-0.02834 0.02833 s
-0 -20290 t
-/tm matrix currentmatrix def
-gs
-tm setmatrix
--635 -635 t
-1 1 s
-635 635 m 27274 635 l 27274 20924 l 635 20924 l 635 635 l eoclip newpath
-0.996 c 7835 7938 m 8893 6985 l 11010 6985 l 11010 8890 l 8893 8890 l
-7835 7938 l p ef
-0 lw 1 lj 0.000 c 7835 7938 m 8893 6985 l 11010 6985 l 11010 8890 l 8893 8890 l
-7835 7938 l pc
-gs
-pum
-8520 8228 t
--1 0 m 231 -605 l 317 -605 l 565 0 l 474 0 l 403 -183 l 150 -183 l
-83 0 l p
-173 -248 m 378 -248 l 315 -416 l 296 -467 282 -509 272 -541 ct 264 -503 254 -464 240 -426 ct
-p ef
-621 0 m 621 -605 l 829 -605 l 876 -605 912 -602 937 -596 ct 972 -588 1001 -574 1026 -553 ct
-1058 -526 1082 -492 1098 -450 ct 1114 -408 1121 -360 1121 -306 ct 1121 -260 1116 -219 1105 -183 ct
-1095 -148 1081 -118 1064 -95 ct 1047 -72 1029 -54 1009 -40 ct 989 -27 965 -17 937 -10 ct
-908 -3 876 0 839 0 ct p
-701 -71 m 830 -71 l 870 -71 901 -75 924 -82 ct 947 -90 965 -100 979 -114 ct
-998 -133 1012 -158 1023 -190 ct 1034 -222 1039 -261 1039 -307 ct 1039 -370 1028 -419 1008 -453 ct
-987 -487 962 -510 932 -521 ct 910 -530 876 -534 828 -534 ct 701 -534 l p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-13955 5080 m 11733 5080 l 11733 1270 l 16178 1270 l 16178 5080 l 13955 5080 l
-pc
-gs
-pum
-13176 2513 t
-69 0 m 69 -605 l 477 -605 l 477 -534 l 149 -534 l 149 -346 l 433 -346 l
-433 -275 l 149 -275 l 149 0 l p ef
-532 0 m 766 -315 l 560 -605 l 655 -605 l 765 -450 l 788 -418 804 -393 814 -375 ct
-827 -397 843 -420 862 -444 ct 984 -605 l 1071 -605 l 858 -320 l 1087 0 l
-988 0 l 836 -216 l 827 -228 818 -241 809 -256 ct 796 -234 786 -219 780 -211 ct
-628 0 l p ef
-1510 -71 m 1510 0 l 1110 0 l 1110 -17 1112 -35 1119 -51 ct 1129 -78 1145 -105 1168 -132 ct
-1190 -158 1223 -189 1265 -223 ct 1331 -277 1375 -320 1398 -352 ct 1422 -383 1433 -413 1433 -441 ct
-1433 -471 1423 -495 1402 -516 ct 1380 -536 1353 -546 1319 -546 ct 1283 -546 1255 -535 1233 -514 ct
-1212 -492 1201 -463 1201 -425 ct 1124 -432 l 1129 -489 1149 -533 1183 -563 ct
-1217 -593 1263 -608 1321 -608 ct 1379 -608 1425 -591 1459 -559 ct 1493 -527 1510 -487 1510 -439 ct
-1510 -415 1505 -391 1495 -368 ct 1485 -345 1468 -320 1445 -294 ct 1422 -268 1384 -233 1331 -187 ct
-1286 -150 1257 -125 1245 -111 ct 1232 -98 1222 -84 1213 -71 ct p ef
-pom
-pum
-12713 3466 t
-462 -605 m 542 -605 l 542 -255 l 542 -194 535 -146 522 -110 ct 508 -74 483 -45 447 -23 ct
-411 0 364 10 306 10 ct 249 10 202 0 166 -19 ct 130 -38 105 -66 89 -103 ct 74 -140 66 -191 66 -255 ct
-66 -605 l 146 -605 l 146 -256 l 146 -203 151 -164 161 -139 ct 171 -114 187 -95 211 -82 ct
-235 -68 264 -61 299 -61 ct 358 -61 400 -75 425 -102 ct 450 -128 462 -180 462 -256 ct
-p ef
-673 -194 m 748 -201 l 752 -170 760 -146 773 -126 ct 786 -107 806 -91 834 -79 ct
-862 -67 893 -61 927 -61 ct 958 -61 985 -66 1008 -75 ct 1031 -84 1049 -96 1060 -112 ct
-1072 -128 1077 -145 1077 -164 ct 1077 -183 1072 -200 1061 -214 ct 1050 -228 1032 -240 1006 -249 ct
-990 -256 954 -266 898 -279 ct 843 -292 804 -305 782 -317 ct 753 -332 731 -351 717 -373 ct
-703 -396 696 -421 696 -449 ct 696 -479 704 -508 722 -534 ct 739 -561 764 -581 798 -595 ct
-831 -609 868 -615 909 -615 ct 954 -615 993 -608 1028 -594 ct 1062 -579 1088 -558 1107 -530 ct
-1125 -502 1135 -470 1136 -434 ct 1060 -429 l 1055 -467 1041 -496 1018 -515 ct
-994 -535 959 -545 912 -545 ct 864 -545 828 -536 806 -518 ct 784 -500 773 -479 773 -454 ct
-773 -432 781 -414 796 -400 ct 812 -386 852 -372 917 -357 ct 982 -342 1027 -329 1051 -318 ct
-1087 -302 1113 -282 1129 -257 ct 1146 -232 1155 -203 1155 -171 ct 1155 -138 1145 -108 1127 -79 ct
-1108 -51 1082 -29 1047 -13 ct 1013 2 974 10 931 10 ct 876 10 830 2 793 -13 ct 756 -29 727 -53 706 -85 ct
-685 -117 l 674 -154 l p ef
-1278 0 m 1278 -605 l 1506 -605 l 1552 -605 1589 -599 1617 -587 ct 1645 -574 1667 -556 1683 -530 ct
-1699 -505 1706 -478 1706 -450 ct 1706 -424 1699 -400 1685 -377 ct 1671 -354 1650 -336 1622 -322 ct
-1658 -311 1687 -293 1706 -267 ct 1726 -241 1736 -210 1736 -175 ct 1736 -147 1730 -120 1718 -96 ct
-1706 -72 1691 -53 1673 -40 ct 1656 -26 1634 -16 1607 -10 ct 1580 -3 1548 0 1509 0 ct
-p
-1359 -351 m 1490 -351 l 1525 -351 1551 -353 1566 -358 ct 1586 -364 1602 -374 1612 -388 ct
-1622 -402 1628 -419 1628 -441 ct 1628 -461 1623 -478 1613 -494 ct 1603 -509 1590 -520 1572 -525 ct
-1554 -531 1523 -534 1480 -534 ct 1359 -534 l p
-1359 -71 m 1509 -71 l 1535 -71 1553 -72 1564 -74 ct 1582 -77 1598 -83 1610 -90 ct
-1623 -98 1633 -109 1641 -124 ct 1649 -139 1653 -156 1653 -175 ct 1653 -198 1647 -217 1635 -234 ct
-1624 -251 1608 -262 1587 -269 ct 1567 -276 1537 -279 1499 -279 ct 1359 -279 l
-p ef
-2436 -71 m 2436 0 l 2036 0 l 2036 -17 2038 -35 2045 -51 ct 2055 -78 2071 -105 2094 -132 ct
-2116 -158 2149 -189 2191 -223 ct 2257 -277 2301 -320 2324 -352 ct 2348 -383 2359 -413 2359 -441 ct
-2359 -471 2349 -495 2328 -516 ct 2306 -536 2279 -546 2245 -546 ct 2209 -546 2181 -535 2159 -514 ct
-2138 -492 2127 -463 2127 -425 ct 2050 -432 l 2055 -489 2075 -533 2109 -563 ct
-2143 -593 2189 -608 2247 -608 ct 2305 -608 2351 -591 2385 -559 ct 2419 -527 2436 -487 2436 -439 ct
-2436 -415 2431 -391 2421 -368 ct 2411 -345 2394 -320 2371 -294 ct 2348 -268 2310 -233 2257 -187 ct
-2212 -150 2183 -125 2171 -111 ct 2158 -98 2148 -84 2139 -71 ct p ef
-pom
-pum
-12091 4419 t
-497 -212 m 577 -192 l 560 -126 530 -76 486 -41 ct 443 -6 389 10 326 10 ct
-261 10 208 -2 167 -29 ct 126 -56 95 -94 74 -145 ct 52 -195 42 -249 42 -307 ct 42 -370 54 -425 78 -472 ct
-102 -519 136 -554 181 -579 ct 225 -603 274 -615 327 -615 ct 388 -615 439 -600 480 -569 ct
-522 -538 550 -495 567 -439 ct 488 -420 l 474 -465 453 -497 427 -517 ct 400 -537 366 -547 326 -547 ct
-279 -547 240 -536 209 -513 ct 178 -491 156 -461 143 -424 ct 131 -386 124 -347 124 -307 ct
-124 -256 132 -211 147 -172 ct 162 -134 185 -105 217 -86 ct 248 -67 283 -58 320 -58 ct
-365 -58 403 -71 434 -97 ct 465 -122 l 486 -161 l p ef
-663 -219 m 663 -300 685 -360 730 -399 ct 768 -432 814 -448 868 -448 ct 929 -448 978 -428 1016 -389 ct
-1054 -349 1074 -295 1074 -225 ct 1074 -169 1065 -124 1048 -92 ct 1031 -59 1007 -34 974 -16 ct
-942 0 907 9 868 9 ct 807 9 757 -9 719 -49 ct 682 -88 l 663 -145 l p
-739 -219 m 739 -163 751 -121 776 -93 ct 800 -65 831 -51 868 -51 ct 905 -51 936 -65 960 -93 ct
-985 -121 997 -164 997 -221 ct 997 -276 985 -317 960 -345 ct 936 -373 905 -387 868 -387 ct
-831 -387 800 -373 776 -345 ct 751 -317 l 739 -275 l p ef
-1166 0 m 1166 -438 l 1233 -438 l 1233 -376 l 1265 -424 1312 -448 1373 -448 ct
-1399 -448 1424 -443 1446 -434 ct 1468 -424 1484 -412 1495 -396 ct 1507 -381 1514 -363 1519 -342 ct
-1521 -328 1523 -304 1523 -269 ct 1523 0 l 1448 0 l 1448 -266 l 1448 -297 1446 -319 1440 -334 ct
-1434 -349 1424 -361 1409 -370 ct 1394 -379 1377 -384 1357 -384 ct 1325 -384 1298 -374 1275 -354 ct
-1252 -333 1241 -295 1241 -239 ct 1241 0 l p ef
-1806 -66 m 1816 0 l 1795 3 1777 5 1760 5 ct 1733 5 1712 1 1697 -7 ct 1683 -15 1672 -26 1666 -40 ct
-1660 -54 1657 -83 1657 -128 ct 1657 -380 l 1602 -380 l 1602 -438 l 1657 -438 l
-1657 -547 l 1731 -591 l 1731 -438 l 1806 -438 l 1806 -380 l 1731 -380 l
-1731 -124 l 1731 -103 1732 -89 1735 -83 ct 1737 -77 1742 -72 1748 -68 ct 1753 -65 1762 -63 1773 -63 ct
-1781 -63 l 1792 -64 l p ef
-1880 0 m 1880 -438 l 1947 -438 l 1947 -372 l 1964 -403 1980 -423 1995 -433 ct
-2009 -443 2025 -448 2042 -448 ct 2067 -448 2093 -440 2119 -424 ct 2093 -355 l
-2075 -366 2057 -371 2039 -371 ct 2022 -371 2008 -366 1995 -357 ct 1982 -347 1973 -333 1967 -316 ct
-1959 -289 1955 -261 1955 -229 ct 1955 0 l p ef
-2145 -219 m 2145 -300 2167 -360 2212 -399 ct 2250 -432 2296 -448 2350 -448 ct
-2411 -448 2460 -428 2498 -389 ct 2536 -349 2556 -295 2556 -225 ct 2556 -169 2547 -124 2530 -92 ct
-2513 -59 2489 -34 2456 -16 ct 2424 0 2389 9 2350 9 ct 2289 9 2239 -9 2201 -49 ct
-2164 -88 l 2145 -145 l p
-2221 -219 m 2221 -163 2233 -121 2258 -93 ct 2282 -65 2313 -51 2350 -51 ct 2387 -51 2418 -65 2442 -93 ct
-2467 -121 2479 -164 2479 -221 ct 2479 -276 2467 -317 2442 -345 ct 2418 -373 2387 -387 2350 -387 ct
-2313 -387 2282 -373 2258 -345 ct 2233 -317 l 2221 -275 l p ef
-2647 0 m 2647 -605 l 2721 -605 l 2721 0 l p ef
-2832 0 m 2832 -605 l 2906 -605 l 2906 0 l p ef
-3319 -141 m 3395 -131 l 3383 -86 3361 -52 3328 -27 ct 3295 -2 3253 9 3203 9 ct
-3138 9 3087 -9 3050 -49 ct 3012 -88 2993 -144 2993 -215 ct 2993 -289 3012 -346 3050 -387 ct
-3089 -428 3138 -448 3198 -448 ct 3257 -448 3305 -428 3342 -388 ct 3379 -348 3398 -292 3398 -220 ct
-3398 -215 3398 -209 3397 -200 ct 3070 -200 l 3073 -152 3087 -115 3111 -89 ct
-3136 -64 3166 -51 3203 -51 ct 3230 -51 3253 -58 3273 -72 ct 3292 -87 l 3307 -109 l
-p
-3074 -261 m 3319 -261 l 3316 -298 3307 -326 3291 -344 ct 3268 -373 3237 -387 3199 -387 ct
-3165 -387 3136 -376 3113 -353 ct 3090 -330 l 3077 -299 l p ef
-3494 0 m 3494 -438 l 3561 -438 l 3561 -372 l 3578 -403 3594 -423 3609 -433 ct
-3623 -443 3639 -448 3656 -448 ct 3681 -448 3707 -440 3733 -424 ct 3707 -355 l
-3689 -366 3671 -371 3653 -371 ct 3636 -371 3622 -366 3609 -357 ct 3596 -347 3587 -333 3581 -316 ct
-3573 -289 3569 -261 3569 -229 ct 3569 0 l p ef
-pom
-gr
-13956 19115 m 11900 19115 l 11900 6350 l 16013 6350 l 16013 19115 l
-13956 19115 l pc
-gs
-pum
-12806 13017 t
-69 0 m 69 -605 l 477 -605 l 477 -534 l 149 -534 l 149 -346 l 433 -346 l
-433 -275 l 149 -275 l 149 0 l p ef
-594 0 m 594 -605 l 822 -605 l 862 -605 893 -603 914 -599 ct 944 -594 969 -585 989 -571 ct
-1009 -557 1025 -538 1038 -513 ct 1050 -488 1056 -460 1056 -430 ct 1056 -378 1040 -335 1007 -299 ct
-974 -264 915 -246 829 -246 ct 674 -246 l 674 0 l p
-674 -317 m 830 -317 l 882 -317 919 -327 941 -346 ct 963 -365 973 -392 973 -427 ct
-973 -453 967 -474 954 -493 ct 941 -511 925 -522 904 -528 ct 890 -532 865 -534 829 -534 ct
-674 -534 l p ef
-1433 -237 m 1433 -308 l 1690 -308 l 1690 -84 l 1650 -52 1610 -29 1568 -13 ct
-1526 2 1483 10 1439 10 ct 1379 10 1325 -2 1277 -27 ct 1228 -53 1191 -90 1167 -138 ct
-1142 -186 1130 -240 1130 -299 ct 1130 -358 1142 -413 1167 -464 ct 1191 -516 1227 -553 1273 -578 ct
-1319 -603 1372 -615 1433 -615 ct 1477 -615 1516 -608 1551 -594 ct 1587 -580 1615 -560 1635 -535 ct
-1655 -510 1670 -476 1681 -436 ct 1608 -416 l 1599 -447 1588 -471 1574 -489 ct
-1561 -506 1542 -520 1517 -531 ct 1492 -542 1464 -547 1433 -547 ct 1397 -547 1365 -541 1338 -530 ct
-1311 -519 1290 -504 1273 -486 ct 1257 -468 1244 -448 1235 -426 ct 1220 -389 1212 -348 1212 -304 ct
-1212 -250 1221 -205 1240 -169 ct 1259 -133 1286 -106 1321 -88 ct 1357 -70 1394 -61 1434 -61 ct
-1469 -61 1503 -68 1536 -82 ct 1569 -95 1594 -109 1611 -124 ct 1611 -237 l p ef
-1745 0 m 1977 -605 l 2063 -605 l 2311 0 l 2220 0 l 2149 -183 l 1896 -183 l
-1829 0 l p
-1919 -248 m 2124 -248 l 2061 -416 l 2042 -467 2028 -509 2018 -541 ct 2010 -503 2000 -464 1986 -426 ct
-p ef
-pom
-gr
-0.996 c 7835 17258 m 8893 16305 l 11010 16305 l 11010 18210 l 8893 18210 l
-7835 17258 l p ef
-0.000 c 7835 17258 m 8893 16305 l 11010 16305 l 11010 18210 l 8893 18210 l
-7835 17258 l pc
-gs
-pum
-8520 17542 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-608 0 m 840 -605 l 926 -605 l 1174 0 l 1083 0 l 1012 -183 l 759 -183 l
-692 0 l p
-782 -248 m 987 -248 l 924 -416 l 905 -467 891 -509 881 -541 ct 873 -503 863 -464 849 -426 ct
-p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-0.996 c 7835 10478 m 8893 9525 l 11010 9525 l 11010 11430 l 8893 11430 l
-7835 10478 l p ef
-0.000 c 7835 10478 m 8893 9525 l 11010 9525 l 11010 11430 l 8893 11430 l
-7835 10478 l pc
-gs
-pum
-8520 10768 t
--1 0 m 231 -605 l 317 -605 l 565 0 l 474 0 l 403 -183 l 150 -183 l
-83 0 l p
-173 -248 m 378 -248 l 315 -416 l 296 -467 282 -509 272 -541 ct 264 -503 254 -464 240 -426 ct
-p ef
-621 0 m 621 -605 l 829 -605 l 876 -605 912 -602 937 -596 ct 972 -588 1001 -574 1026 -553 ct
-1058 -526 1082 -492 1098 -450 ct 1114 -408 1121 -360 1121 -306 ct 1121 -260 1116 -219 1105 -183 ct
-1095 -148 1081 -118 1064 -95 ct 1047 -72 1029 -54 1009 -40 ct 989 -27 965 -17 937 -10 ct
-908 -3 876 0 839 0 ct p
-701 -71 m 830 -71 l 870 -71 901 -75 924 -82 ct 947 -90 965 -100 979 -114 ct
-998 -133 1012 -158 1023 -190 ct 1034 -222 1039 -261 1039 -307 ct 1039 -370 1028 -419 1008 -453 ct
-987 -487 962 -510 932 -521 ct 910 -530 876 -534 828 -534 ct 701 -534 l p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-0.996 c 7835 14618 m 8893 13665 l 11010 13665 l 11010 15570 l 8893 15570 l
-7835 14618 l p ef
-0.000 c 7835 14618 m 8893 13665 l 11010 13665 l 11010 15570 l 8893 15570 l
-7835 14618 l pc
-gs
-pum
-8520 14896 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-608 0 m 840 -605 l 926 -605 l 1174 0 l 1083 0 l 1012 -183 l 759 -183 l
-692 0 l p
-782 -248 m 987 -248 l 924 -416 l 905 -467 891 -509 881 -541 ct 873 -503 863 -464 849 -426 ct
-p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-0.996 c 19984 7938 m 18926 6985 l 16809 6985 l 16809 8890 l 18926 8890 l
-19984 7938 l p ef
-0.000 c 19984 7938 m 18926 6985 l 16809 6985 l 16809 8890 l 18926 8890 l
-19984 7938 l pc
-gs
-pum
-17489 8228 t
--1 0 m 231 -605 l 317 -605 l 565 0 l 474 0 l 403 -183 l 150 -183 l
-83 0 l p
-173 -248 m 378 -248 l 315 -416 l 296 -467 282 -509 272 -541 ct 264 -503 254 -464 240 -426 ct
-p ef
-621 0 m 621 -605 l 829 -605 l 876 -605 912 -602 937 -596 ct 972 -588 1001 -574 1026 -553 ct
-1058 -526 1082 -492 1098 -450 ct 1114 -408 1121 -360 1121 -306 ct 1121 -260 1116 -219 1105 -183 ct
-1095 -148 1081 -118 1064 -95 ct 1047 -72 1029 -54 1009 -40 ct 989 -27 965 -17 937 -10 ct
-908 -3 876 0 839 0 ct p
-701 -71 m 830 -71 l 870 -71 901 -75 924 -82 ct 947 -90 965 -100 979 -114 ct
-998 -133 1012 -158 1023 -190 ct 1034 -222 1039 -261 1039 -307 ct 1039 -370 1028 -419 1008 -453 ct
-987 -487 962 -510 932 -521 ct 910 -530 876 -534 828 -534 ct 701 -534 l p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-0.996 c 19984 17258 m 18926 16305 l 16809 16305 l 16809 18210 l 18926 18210 l
-19984 17258 l p ef
-0.000 c 19984 17258 m 18926 16305 l 16809 16305 l 16809 18210 l 18926 18210 l
-19984 17258 l pc
-gs
-pum
-17489 17542 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-608 0 m 840 -605 l 926 -605 l 1174 0 l 1083 0 l 1012 -183 l 759 -183 l
-692 0 l p
-782 -248 m 987 -248 l 924 -416 l 905 -467 891 -509 881 -541 ct 873 -503 863 -464 849 -426 ct
-p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-0.996 c 19984 10478 m 18926 9525 l 16809 9525 l 16809 11430 l 18926 11430 l
-19984 10478 l p ef
-0.000 c 19984 10478 m 18926 9525 l 16809 9525 l 16809 11430 l 18926 11430 l
-19984 10478 l pc
-gs
-pum
-17489 10768 t
--1 0 m 231 -605 l 317 -605 l 565 0 l 474 0 l 403 -183 l 150 -183 l
-83 0 l p
-173 -248 m 378 -248 l 315 -416 l 296 -467 282 -509 272 -541 ct 264 -503 254 -464 240 -426 ct
-p ef
-621 0 m 621 -605 l 829 -605 l 876 -605 912 -602 937 -596 ct 972 -588 1001 -574 1026 -553 ct
-1058 -526 1082 -492 1098 -450 ct 1114 -408 1121 -360 1121 -306 ct 1121 -260 1116 -219 1105 -183 ct
-1095 -148 1081 -118 1064 -95 ct 1047 -72 1029 -54 1009 -40 ct 989 -27 965 -17 937 -10 ct
-908 -3 876 0 839 0 ct p
-701 -71 m 830 -71 l 870 -71 901 -75 924 -82 ct 947 -90 965 -100 979 -114 ct
-998 -133 1012 -158 1023 -190 ct 1034 -222 1039 -261 1039 -307 ct 1039 -370 1028 -419 1008 -453 ct
-987 -487 962 -510 932 -521 ct 910 -530 876 -534 828 -534 ct 701 -534 l p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-0.996 c 19984 14618 m 18926 13665 l 16809 13665 l 16809 15570 l 18926 15570 l
-19984 14618 l p ef
-0.000 c 19984 14618 m 18926 13665 l 16809 13665 l 16809 15570 l 18926 15570 l
-19984 14618 l pc
-gs
-pum
-17489 14896 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-608 0 m 840 -605 l 926 -605 l 1174 0 l 1083 0 l 1012 -183 l 759 -183 l
-692 0 l p
-782 -248 m 987 -248 l 924 -416 l 905 -467 891 -509 881 -541 ct 873 -503 863 -464 849 -426 ct
-p ef
-1661 -212 m 1741 -192 l 1724 -126 1694 -76 1650 -41 ct 1607 -6 1553 10 1490 10 ct
-1425 10 1372 -2 1331 -29 ct 1290 -56 1259 -94 1238 -145 ct 1216 -195 1206 -249 1206 -307 ct
-1206 -370 1218 -425 1242 -472 ct 1266 -519 1300 -554 1345 -579 ct 1389 -603 1438 -615 1491 -615 ct
-1552 -615 1603 -600 1644 -569 ct 1686 -538 1714 -495 1731 -439 ct 1652 -420 l
-1638 -465 1617 -497 1591 -517 ct 1564 -537 1530 -547 1490 -547 ct 1443 -547 1404 -536 1373 -513 ct
-1342 -491 1320 -461 1307 -424 ct 1295 -386 1288 -347 1288 -307 ct 1288 -256 1296 -211 1311 -172 ct
-1326 -134 1349 -105 1381 -86 ct 1412 -67 1447 -58 1484 -58 ct 1529 -58 1567 -71 1598 -97 ct
-1629 -122 l 1650 -161 l p ef
-pom
-gr
-23767 18828 m 20592 18828 l 20592 13113 l 26942 13113 l 26942 18828 l
-23767 18828 l pc
-gs
-pum
-22133 15795 t
-219 0 m 219 -534 l 19 -534 l 19 -605 l 499 -605 l 499 -534 l 299 -534 l
-299 0 l p ef
-583 0 m 583 -438 l 650 -438 l 650 -372 l 667 -403 683 -423 698 -433 ct
-712 -443 728 -448 745 -448 ct 770 -448 796 -440 822 -424 ct 796 -355 l 778 -366 760 -371 742 -371 ct
-725 -371 711 -366 698 -357 ct 685 -347 676 -333 670 -316 ct 662 -289 658 -261 658 -229 ct
-658 0 l p ef
-1162 -54 m 1134 -30 1108 -14 1082 -4 ct 1057 5 1029 9 1000 9 ct 952 9 915 -1 889 -25 ct
-863 -48 850 -79 850 -115 ct 850 -137 855 -156 865 -174 ct 875 -192 887 -206 903 -217 ct
-919 -228 937 -236 957 -241 ct 971 -245 993 -249 1023 -252 ct 1083 -259 1127 -268 1155 -278 ct
-1156 -288 1156 -295 1156 -297 ct 1156 -328 1149 -349 1135 -361 ct 1116 -378 1087 -387 1050 -387 ct
-1015 -387 989 -380 973 -368 ct 956 -356 944 -334 936 -303 ct 863 -313 l 869 -344 880 -369 896 -388 ct
-911 -408 933 -422 961 -433 ct 990 -443 1023 -448 1061 -448 ct 1098 -448 1129 -444 1152 -435 ct
-1175 -426 1193 -415 1204 -402 ct 1215 -388 1222 -371 1227 -351 ct 1229 -338 1231 -316 1231 -282 ct
-1231 -183 l 1231 -114 1232 -70 1235 -52 ct 1238 -34 1245 -16 1254 0 ct 1176 0 l
-1169 -15 l 1164 -33 l p
-1155 -220 m 1128 -209 1088 -199 1034 -192 ct 1003 -187 982 -182 969 -177 ct
-956 -171 947 -163 940 -153 ct 933 -142 929 -130 929 -117 ct 929 -97 937 -81 952 -68 ct
-967 -54 989 -48 1018 -48 ct 1046 -48 1072 -54 1094 -67 ct 1117 -79 1133 -96 1143 -118 ct
-1151 -135 1155 -160 1155 -192 ct p ef
-1325 0 m 1325 -438 l 1392 -438 l 1392 -376 l 1424 -424 1471 -448 1532 -448 ct
-1558 -448 1583 -443 1605 -434 ct 1627 -424 1643 -412 1654 -396 ct 1666 -381 1673 -363 1678 -342 ct
-1680 -328 1682 -304 1682 -269 ct 1682 0 l 1607 0 l 1607 -266 l 1607 -297 1605 -319 1599 -334 ct
-1593 -349 1583 -361 1568 -370 ct 1553 -379 1536 -384 1516 -384 ct 1484 -384 1457 -374 1434 -354 ct
-1411 -333 1400 -295 1400 -239 ct 1400 0 l p ef
-1772 -130 m 1845 -142 l 1849 -113 1861 -90 1880 -74 ct 1898 -59 1925 -51 1959 -51 ct
-1993 -51 2018 -58 2035 -72 ct 2051 -85 2059 -102 2059 -121 ct 2059 -137 2052 -151 2038 -160 ct
-2027 -167 2002 -175 1962 -185 ct 1907 -199 1869 -211 1848 -221 ct 1827 -231 1811 -245 1800 -263 ct
-1789 -281 1784 -300 1784 -322 ct 1784 -341 1788 -359 1797 -376 ct 1806 -393 1818 -407 1834 -418 ct
-1845 -426 1861 -433 1881 -439 ct 1901 -445 1923 -448 1945 -448 ct 1980 -448 2010 -443 2036 -433 ct
-2062 -423 2081 -410 2094 -393 ct 2106 -376 2115 -353 2119 -325 ct 2047 -315 l
-2043 -338 2034 -355 2018 -368 ct 2002 -381 1980 -387 1951 -387 ct 1917 -387 1892 -381 1878 -370 ct
-1863 -359 1856 -346 1856 -330 ct 1856 -321 1859 -312 1865 -304 ct 1871 -296 1880 -290 1893 -285 ct
-1901 -282 1923 -275 1959 -266 ct 2012 -251 2048 -240 2069 -231 ct 2090 -222 2106 -209 2118 -192 ct
-2130 -175 2136 -154 2136 -128 ct 2136 -104 2129 -80 2114 -58 ct 2100 -36 2079 -20 2052 -8 ct
-2024 3 1993 9 1959 9 ct 1902 9 1859 -1 1829 -25 ct 1799 -49 l 1780 -84 l p ef
-2198 0 m 2198 -438 l 2265 -438 l 2265 -377 l 2279 -398 2297 -415 2320 -428 ct
-2343 -442 2369 -448 2398 -448 ct 2430 -448 2457 -441 2478 -428 ct 2499 -414 2513 -396 2522 -371 ct
-2556 -423 2602 -448 2657 -448 ct 2701 -448 2734 -436 2758 -412 ct 2781 -388 2793 -351 2793 -301 ct
-2793 0 l 2719 0 l 2719 -276 l 2719 -306 2716 -327 2712 -340 ct 2707 -353 2698 -364 2685 -372 ct
-2673 -380 2658 -384 2641 -384 ct 2610 -384 2584 -373 2564 -353 ct 2543 -332 2533 -300 2533 -254 ct
-2533 0 l 2459 0 l 2459 -285 l 2459 -318 2453 -342 2441 -359 ct 2429 -375 2409 -384 2381 -384 ct
-2360 -384 2341 -378 2323 -367 ct 2305 -356 2293 -340 2285 -319 ct 2277 -298 2273 -267 2273 -227 ct
-2273 0 l p ef
-2914 -520 m 2914 -605 l 2988 -605 l 2988 -520 l p
-2914 0 m 2914 -438 l 2988 -438 l 2988 0 l p ef
-3261 -66 m 3271 0 l 3250 3 3232 5 3215 5 ct 3188 5 3167 1 3152 -7 ct 3138 -15 3127 -26 3121 -40 ct
-3115 -54 3112 -83 3112 -128 ct 3112 -380 l 3057 -380 l 3057 -438 l 3112 -438 l
-3112 -547 l 3186 -591 l 3186 -438 l 3261 -438 l 3261 -380 l 3186 -380 l
-3186 -124 l 3186 -103 3187 -89 3190 -83 ct 3192 -77 3197 -72 3203 -68 ct 3208 -65 3217 -63 3228 -63 ct
-3236 -63 l 3247 -64 l p ef
-pom
-pum
-20955 16748 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-951 -54 m 923 -30 897 -14 871 -4 ct 846 5 818 9 789 9 ct 741 9 704 -1 678 -25 ct
-652 -48 639 -79 639 -115 ct 639 -137 644 -156 654 -174 ct 664 -192 676 -206 692 -217 ct
-708 -228 726 -236 746 -241 ct 760 -245 782 -249 812 -252 ct 872 -259 916 -268 944 -278 ct
-945 -288 945 -295 945 -297 ct 945 -328 938 -349 924 -361 ct 905 -378 876 -387 839 -387 ct
-804 -387 778 -380 762 -368 ct 745 -356 733 -334 725 -303 ct 652 -313 l 658 -344 669 -369 685 -388 ct
-700 -408 722 -422 750 -433 ct 779 -443 812 -448 850 -448 ct 887 -448 918 -444 941 -435 ct
-964 -426 982 -415 993 -402 ct 1004 -388 1011 -371 1016 -351 ct 1018 -338 1020 -316 1020 -282 ct
-1020 -183 l 1020 -114 1021 -70 1024 -52 ct 1027 -34 1034 -16 1043 0 ct 965 0 l
-958 -15 l 953 -33 l p
-944 -220 m 917 -209 877 -199 823 -192 ct 792 -187 771 -182 758 -177 ct 745 -171 736 -163 729 -153 ct
-722 -142 718 -130 718 -117 ct 718 -97 726 -81 741 -68 ct 756 -54 778 -48 807 -48 ct
-835 -48 861 -54 883 -67 ct 906 -79 922 -96 932 -118 ct 940 -135 944 -160 944 -192 ct
-p ef
-1401 0 m 1401 -64 l 1367 -14 1320 9 1262 9 ct 1236 9 1212 4 1189 -4 ct 1167 -14 1150 -27 1139 -42 ct
-1128 -57 1121 -75 1116 -97 ct 1113 -112 1112 -135 1112 -166 ct 1112 -438 l 1186 -438 l
-1186 -195 l 1186 -156 1187 -130 1191 -116 ct 1195 -97 1205 -82 1220 -70 ct
-1235 -59 1254 -54 1276 -54 ct 1299 -54 1320 -59 1339 -71 ct 1359 -82 1373 -98 1381 -117 ct
-1389 -137 1393 -166 1393 -203 ct 1393 -438 l 1467 -438 l 1467 0 l p ef
-1577 36 m 1649 47 l 1652 69 1660 85 1674 95 ct 1693 109 1718 116 1750 116 ct
-1784 116 1811 109 1829 95 ct 1848 82 1861 62 1867 38 ct 1871 22 1873 -8 1873 -57 ct
-1840 -19 1800 0 1751 0 ct 1691 0 1644 -21 1611 -65 ct 1578 -108 1562 -160 1562 -221 ct
-1562 -263 1569 -302 1584 -337 ct 1600 -373 1622 -400 1650 -419 ct 1679 -438 1713 -448 1752 -448 ct
-1804 -448 1846 -427 1880 -385 ct 1880 -438 l 1948 -438 l 1948 -59 l 1948 8 1941 57 1928 85 ct
-1914 114 1892 136 1861 153 ct 1831 169 1794 178 1750 178 ct 1698 178 1656 166 1623 142 ct
-1591 119 l 1576 83 l p
-1638 -227 m 1638 -169 1650 -127 1672 -101 ct 1695 -74 1724 -61 1758 -61 ct
-1793 -61 1821 -74 1844 -101 ct 1867 -127 1879 -168 1879 -224 ct 1879 -278 1867 -318 1843 -346 ct
-1819 -373 1791 -387 1757 -387 ct 1724 -387 1696 -373 1673 -346 ct 1650 -319 l
-1638 -280 l p ef
-2066 0 m 2066 -605 l 2141 -605 l 2141 -388 l 2175 -428 2219 -448 2272 -448 ct
-2304 -448 2333 -442 2357 -429 ct 2381 -416 2398 -398 2408 -376 ct 2418 -353 2424 -320 2424 -278 ct
-2424 0 l 2349 0 l 2349 -278 l 2349 -315 2341 -342 2325 -359 ct 2309 -376 2286 -384 2257 -384 ct
-2235 -384 2214 -378 2195 -367 ct 2175 -356 2161 -340 2153 -320 ct 2145 -301 2141 -274 2141 -240 ct
-2141 0 l p ef
-2705 -66 m 2715 0 l 2694 3 2676 5 2659 5 ct 2632 5 2611 1 2596 -7 ct 2582 -15 2571 -26 2565 -40 ct
-2559 -54 2556 -83 2556 -128 ct 2556 -380 l 2501 -380 l 2501 -438 l 2556 -438 l
-2556 -547 l 2630 -591 l 2630 -438 l 2705 -438 l 2705 -380 l 2630 -380 l
-2630 -124 l 2630 -103 2631 -89 2634 -83 ct 2636 -77 2641 -72 2647 -68 ct 2652 -65 2661 -63 2672 -63 ct
-2680 -63 l 2691 -64 l p ef
-3081 -141 m 3157 -131 l 3145 -86 3123 -52 3090 -27 ct 3057 -2 3015 9 2965 9 ct
-2900 9 2849 -9 2812 -49 ct 2774 -88 2755 -144 2755 -215 ct 2755 -289 2774 -346 2812 -387 ct
-2851 -428 2900 -448 2960 -448 ct 3019 -448 3067 -428 3104 -388 ct 3141 -348 3160 -292 3160 -220 ct
-3160 -215 3160 -209 3159 -200 ct 2832 -200 l 2835 -152 2849 -115 2873 -89 ct
-2898 -64 2928 -51 2965 -51 ct 2992 -51 3015 -58 3035 -72 ct 3054 -87 l 3069 -109 l
-p
-2836 -261 m 3081 -261 l 3078 -298 3069 -326 3053 -344 ct 3030 -373 2999 -387 2961 -387 ct
-2927 -387 2898 -376 2875 -353 ct 2852 -330 l 2839 -299 l p ef
-3255 0 m 3255 -438 l 3322 -438 l 3322 -372 l 3339 -403 3355 -423 3370 -433 ct
-3384 -443 3400 -448 3417 -448 ct 3442 -448 3468 -440 3494 -424 ct 3468 -355 l
-3450 -366 3432 -371 3414 -371 ct 3397 -371 3383 -366 3370 -357 ct 3357 -347 3348 -333 3342 -316 ct
-3334 -289 3330 -261 3330 -229 ct 3330 0 l p ef
-3617 0 m 3548 0 l 3548 -605 l 3622 -605 l 3622 -389 l 3654 -428 3694 -448 3742 -448 ct
-3769 -448 3795 -443 3819 -432 ct 3843 -421 3863 -406 3879 -386 ct 3894 -366 3906 -343 3915 -315 ct
-3924 -287 3928 -257 3928 -225 ct 3928 -150 3910 -92 3873 -51 ct 3835 -10 3791 9 3739 9 ct
-3687 9 3646 -11 3617 -54 ct p
-3616 -222 m 3616 -170 3623 -132 3638 -108 ct 3661 -70 3693 -51 3733 -51 ct
-3765 -51 3793 -65 3817 -93 ct 3840 -121 3852 -163 3852 -219 ct 3852 -277 3841 -319 3818 -346 ct
-3796 -373 3768 -387 3736 -387 ct 3703 -387 3675 -373 3652 -345 ct 3628 -316 l
-3616 -276 l p ef
-3970 -219 m 3970 -300 3992 -360 4037 -399 ct 4075 -432 4121 -448 4175 -448 ct
-4236 -448 4285 -428 4323 -389 ct 4361 -349 4381 -295 4381 -225 ct 4381 -169 4372 -124 4355 -92 ct
-4338 -59 4314 -34 4281 -16 ct 4249 0 4214 9 4175 9 ct 4114 9 4064 -9 4026 -49 ct
-3989 -88 l 3970 -145 l p
-4046 -219 m 4046 -163 4058 -121 4083 -93 ct 4107 -65 4138 -51 4175 -51 ct 4212 -51 4243 -65 4267 -93 ct
-4292 -121 4304 -164 4304 -221 ct 4304 -276 4292 -317 4267 -345 ct 4243 -373 4212 -387 4175 -387 ct
-4138 -387 4107 -373 4083 -345 ct 4058 -317 l 4046 -275 l p ef
-4761 -54 m 4733 -30 4707 -14 4681 -4 ct 4656 5 4628 9 4599 9 ct 4551 9 4514 -1 4488 -25 ct
-4462 -48 4449 -79 4449 -115 ct 4449 -137 4454 -156 4464 -174 ct 4474 -192 4486 -206 4502 -217 ct
-4518 -228 4536 -236 4556 -241 ct 4570 -245 4592 -249 4622 -252 ct 4682 -259 4726 -268 4754 -278 ct
-4755 -288 4755 -295 4755 -297 ct 4755 -328 4748 -349 4734 -361 ct 4715 -378 4686 -387 4649 -387 ct
-4614 -387 4588 -380 4572 -368 ct 4555 -356 4543 -334 4535 -303 ct 4462 -313 l
-4468 -344 4479 -369 4495 -388 ct 4510 -408 4532 -422 4560 -433 ct 4589 -443 4622 -448 4660 -448 ct
-4697 -448 4728 -444 4751 -435 ct 4774 -426 4792 -415 4803 -402 ct 4814 -388 4821 -371 4826 -351 ct
-4828 -338 4830 -316 4830 -282 ct 4830 -183 l 4830 -114 4831 -70 4834 -52 ct
-4837 -34 4844 -16 4853 0 ct 4775 0 l 4768 -15 l 4763 -33 l p
-4754 -220 m 4727 -209 4687 -199 4633 -192 ct 4602 -187 4581 -182 4568 -177 ct
-4555 -171 4546 -163 4539 -153 ct 4532 -142 4528 -130 4528 -117 ct 4528 -97 4536 -81 4551 -68 ct
-4566 -54 4588 -48 4617 -48 ct 4645 -48 4671 -54 4693 -67 ct 4716 -79 4732 -96 4742 -118 ct
-4750 -135 4754 -160 4754 -192 ct p ef
-4922 0 m 4922 -438 l 4989 -438 l 4989 -372 l 5006 -403 5022 -423 5037 -433 ct
-5051 -443 5067 -448 5084 -448 ct 5109 -448 5135 -440 5161 -424 ct 5135 -355 l
-5117 -366 5099 -371 5081 -371 ct 5064 -371 5050 -366 5037 -357 ct 5024 -347 5015 -333 5009 -316 ct
-5001 -289 4997 -261 4997 -229 ct 4997 0 l p ef
-5499 0 m 5499 -55 l 5471 -11 5430 9 5376 9 ct 5341 9 5309 0 5280 -19 ct 5250 -38 5228 -65 5212 -99 ct
-5195 -134 5187 -174 5187 -218 ct 5187 -262 5195 -302 5209 -338 ct 5224 -373 5246 -401 5275 -420 ct
-5304 -439 5337 -448 5373 -448 ct 5399 -448 5423 -443 5444 -431 ct 5464 -420 5481 -406 5494 -388 ct
-5494 -605 l 5568 -605 l 5568 0 l p
-5264 -218 m 5264 -162 5276 -120 5299 -92 ct 5323 -65 5351 -51 5383 -51 ct 5416 -51 5443 -64 5466 -91 ct
-5489 -117 5500 -158 5500 -212 ct 5500 -272 5489 -316 5465 -344 ct 5442 -373 5414 -387 5380 -387 ct
-5347 -387 5319 -373 5297 -346 ct 5275 -319 l 5264 -277 l p ef
-pom
-gr
-23767 12065 m 20592 12065 l 20592 6350 l 26942 6350 l 26942 12065 l
-23767 12065 l pc
-gs
-pum
-22239 9022 t
-66 0 m 66 -605 l 335 -605 l 389 -605 430 -600 458 -589 ct 486 -578 508 -559 525 -531 ct
-542 -504 550 -473 550 -440 ct 550 -397 536 -361 508 -331 ct 481 -302 438 -283 380 -275 ct
-401 -265 417 -255 428 -245 ct 451 -223 473 -197 494 -164 ct 600 0 l 499 0 l
-419 -125 l 395 -162 376 -190 361 -209 ct 346 -228 332 -242 320 -249 ct 308 -257 296 -263 284 -266 ct
-275 -267 260 -268 239 -268 ct 146 -268 l 146 0 l p
-146 -338 m 318 -338 l 355 -338 384 -342 404 -349 ct 425 -357 441 -369 451 -386 ct
-462 -402 468 -420 468 -440 ct 468 -468 457 -492 436 -510 ct 416 -529 383 -538 338 -538 ct
-146 -538 l p ef
-965 -141 m 1041 -131 l 1029 -86 1007 -52 974 -27 ct 941 -2 899 9 849 9 ct
-784 9 733 -9 696 -49 ct 658 -88 639 -144 639 -215 ct 639 -289 658 -346 696 -387 ct
-735 -428 784 -448 844 -448 ct 903 -448 951 -428 988 -388 ct 1025 -348 1044 -292 1044 -220 ct
-1044 -215 1044 -209 1043 -200 ct 716 -200 l 719 -152 733 -115 757 -89 ct 782 -64 812 -51 849 -51 ct
-876 -51 899 -58 919 -72 ct 938 -87 l 953 -109 l p
-720 -261 m 965 -261 l 962 -298 953 -326 937 -344 ct 914 -373 883 -387 845 -387 ct
-811 -387 782 -376 759 -353 ct 736 -330 l 723 -299 l p ef
-1427 -160 m 1500 -151 l 1492 -100 1471 -61 1438 -32 ct 1405 -4 1365 9 1317 9 ct
-1257 9 1209 -9 1172 -48 ct 1136 -88 1118 -144 1118 -217 ct 1118 -265 1125 -306 1141 -342 ct
-1157 -377 1181 -404 1213 -421 ct 1245 -439 1280 -448 1317 -448 ct 1365 -448 1404 -436 1434 -412 ct
-1465 -388 1484 -354 1493 -309 ct 1420 -298 l 1413 -328 1401 -350 1384 -365 ct
-1366 -380 1345 -387 1320 -387 ct 1283 -387 1252 -374 1229 -347 ct 1206 -320 1194 -277 1194 -219 ct
-1194 -160 1205 -118 1228 -91 ct 1250 -64 1280 -51 1316 -51 ct 1345 -51 1370 -60 1389 -78 ct
-1409 -95 l 1421 -123 l p ef
-1864 -141 m 1940 -131 l 1928 -86 1906 -52 1873 -27 ct 1840 -2 1798 9 1748 9 ct
-1683 9 1632 -9 1595 -49 ct 1557 -88 1538 -144 1538 -215 ct 1538 -289 1557 -346 1595 -387 ct
-1634 -428 1683 -448 1743 -448 ct 1802 -448 1850 -428 1887 -388 ct 1924 -348 1943 -292 1943 -220 ct
-1943 -215 1943 -209 1942 -200 ct 1615 -200 l 1618 -152 1632 -115 1656 -89 ct
-1681 -64 1711 -51 1748 -51 ct 1775 -51 1798 -58 1818 -72 ct 1837 -87 l 1852 -109 l
-p
-1619 -261 m 1864 -261 l 1861 -298 1852 -326 1836 -344 ct 1813 -373 1782 -387 1744 -387 ct
-1710 -387 1681 -376 1658 -353 ct 1635 -330 l 1622 -299 l p ef
-2040 -520 m 2040 -605 l 2114 -605 l 2114 -520 l p
-2040 0 m 2040 -438 l 2114 -438 l 2114 0 l p ef
-2347 0 m 2180 -438 l 2259 -438 l 2353 -175 l 2363 -147 2372 -118 2381 -87 ct
-2388 -110 2397 -138 2409 -171 ct 2506 -438 l 2583 -438 l 2417 0 l p ef
-2949 -141 m 3025 -131 l 3013 -86 2991 -52 2958 -27 ct 2925 -2 2883 9 2833 9 ct
-2768 9 2717 -9 2680 -49 ct 2642 -88 2623 -144 2623 -215 ct 2623 -289 2642 -346 2680 -387 ct
-2719 -428 2768 -448 2828 -448 ct 2887 -448 2935 -428 2972 -388 ct 3009 -348 3028 -292 3028 -220 ct
-3028 -215 3028 -209 3027 -200 ct 2700 -200 l 2703 -152 2717 -115 2741 -89 ct
-2766 -64 2796 -51 2833 -51 ct 2860 -51 2883 -58 2903 -72 ct 2922 -87 l 2937 -109 l
-p
-2704 -261 m 2949 -261 l 2946 -298 2937 -326 2921 -344 ct 2898 -373 2867 -387 2829 -387 ct
-2795 -387 2766 -376 2743 -353 ct 2720 -330 l 2707 -299 l p ef
-pom
-pum
-20955 9975 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-951 -54 m 923 -30 897 -14 871 -4 ct 846 5 818 9 789 9 ct 741 9 704 -1 678 -25 ct
-652 -48 639 -79 639 -115 ct 639 -137 644 -156 654 -174 ct 664 -192 676 -206 692 -217 ct
-708 -228 726 -236 746 -241 ct 760 -245 782 -249 812 -252 ct 872 -259 916 -268 944 -278 ct
-945 -288 945 -295 945 -297 ct 945 -328 938 -349 924 -361 ct 905 -378 876 -387 839 -387 ct
-804 -387 778 -380 762 -368 ct 745 -356 733 -334 725 -303 ct 652 -313 l 658 -344 669 -369 685 -388 ct
-700 -408 722 -422 750 -433 ct 779 -443 812 -448 850 -448 ct 887 -448 918 -444 941 -435 ct
-964 -426 982 -415 993 -402 ct 1004 -388 1011 -371 1016 -351 ct 1018 -338 1020 -316 1020 -282 ct
-1020 -183 l 1020 -114 1021 -70 1024 -52 ct 1027 -34 1034 -16 1043 0 ct 965 0 l
-958 -15 l 953 -33 l p
-944 -220 m 917 -209 877 -199 823 -192 ct 792 -187 771 -182 758 -177 ct 745 -171 736 -163 729 -153 ct
-722 -142 718 -130 718 -117 ct 718 -97 726 -81 741 -68 ct 756 -54 778 -48 807 -48 ct
-835 -48 861 -54 883 -67 ct 906 -79 922 -96 932 -118 ct 940 -135 944 -160 944 -192 ct
-p ef
-1401 0 m 1401 -64 l 1367 -14 1320 9 1262 9 ct 1236 9 1212 4 1189 -4 ct 1167 -14 1150 -27 1139 -42 ct
-1128 -57 1121 -75 1116 -97 ct 1113 -112 1112 -135 1112 -166 ct 1112 -438 l 1186 -438 l
-1186 -195 l 1186 -156 1187 -130 1191 -116 ct 1195 -97 1205 -82 1220 -70 ct
-1235 -59 1254 -54 1276 -54 ct 1299 -54 1320 -59 1339 -71 ct 1359 -82 1373 -98 1381 -117 ct
-1389 -137 1393 -166 1393 -203 ct 1393 -438 l 1467 -438 l 1467 0 l p ef
-1577 36 m 1649 47 l 1652 69 1660 85 1674 95 ct 1693 109 1718 116 1750 116 ct
-1784 116 1811 109 1829 95 ct 1848 82 1861 62 1867 38 ct 1871 22 1873 -8 1873 -57 ct
-1840 -19 1800 0 1751 0 ct 1691 0 1644 -21 1611 -65 ct 1578 -108 1562 -160 1562 -221 ct
-1562 -263 1569 -302 1584 -337 ct 1600 -373 1622 -400 1650 -419 ct 1679 -438 1713 -448 1752 -448 ct
-1804 -448 1846 -427 1880 -385 ct 1880 -438 l 1948 -438 l 1948 -59 l 1948 8 1941 57 1928 85 ct
-1914 114 1892 136 1861 153 ct 1831 169 1794 178 1750 178 ct 1698 178 1656 166 1623 142 ct
-1591 119 l 1576 83 l p
-1638 -227 m 1638 -169 1650 -127 1672 -101 ct 1695 -74 1724 -61 1758 -61 ct
-1793 -61 1821 -74 1844 -101 ct 1867 -127 1879 -168 1879 -224 ct 1879 -278 1867 -318 1843 -346 ct
-1819 -373 1791 -387 1757 -387 ct 1724 -387 1696 -373 1673 -346 ct 1650 -319 l
-1638 -280 l p ef
-2066 0 m 2066 -605 l 2141 -605 l 2141 -388 l 2175 -428 2219 -448 2272 -448 ct
-2304 -448 2333 -442 2357 -429 ct 2381 -416 2398 -398 2408 -376 ct 2418 -353 2424 -320 2424 -278 ct
-2424 0 l 2349 0 l 2349 -278 l 2349 -315 2341 -342 2325 -359 ct 2309 -376 2286 -384 2257 -384 ct
-2235 -384 2214 -378 2195 -367 ct 2175 -356 2161 -340 2153 -320 ct 2145 -301 2141 -274 2141 -240 ct
-2141 0 l p ef
-2705 -66 m 2715 0 l 2694 3 2676 5 2659 5 ct 2632 5 2611 1 2596 -7 ct 2582 -15 2571 -26 2565 -40 ct
-2559 -54 2556 -83 2556 -128 ct 2556 -380 l 2501 -380 l 2501 -438 l 2556 -438 l
-2556 -547 l 2630 -591 l 2630 -438 l 2705 -438 l 2705 -380 l 2630 -380 l
-2630 -124 l 2630 -103 2631 -89 2634 -83 ct 2636 -77 2641 -72 2647 -68 ct 2652 -65 2661 -63 2672 -63 ct
-2680 -63 l 2691 -64 l p ef
-3081 -141 m 3157 -131 l 3145 -86 3123 -52 3090 -27 ct 3057 -2 3015 9 2965 9 ct
-2900 9 2849 -9 2812 -49 ct 2774 -88 2755 -144 2755 -215 ct 2755 -289 2774 -346 2812 -387 ct
-2851 -428 2900 -448 2960 -448 ct 3019 -448 3067 -428 3104 -388 ct 3141 -348 3160 -292 3160 -220 ct
-3160 -215 3160 -209 3159 -200 ct 2832 -200 l 2835 -152 2849 -115 2873 -89 ct
-2898 -64 2928 -51 2965 -51 ct 2992 -51 3015 -58 3035 -72 ct 3054 -87 l 3069 -109 l
-p
-2836 -261 m 3081 -261 l 3078 -298 3069 -326 3053 -344 ct 3030 -373 2999 -387 2961 -387 ct
-2927 -387 2898 -376 2875 -353 ct 2852 -330 l 2839 -299 l p ef
-3255 0 m 3255 -438 l 3322 -438 l 3322 -372 l 3339 -403 3355 -423 3370 -433 ct
-3384 -443 3400 -448 3417 -448 ct 3442 -448 3468 -440 3494 -424 ct 3468 -355 l
-3450 -366 3432 -371 3414 -371 ct 3397 -371 3383 -366 3370 -357 ct 3357 -347 3348 -333 3342 -316 ct
-3334 -289 3330 -261 3330 -229 ct 3330 0 l p ef
-3617 0 m 3548 0 l 3548 -605 l 3622 -605 l 3622 -389 l 3654 -428 3694 -448 3742 -448 ct
-3769 -448 3795 -443 3819 -432 ct 3843 -421 3863 -406 3879 -386 ct 3894 -366 3906 -343 3915 -315 ct
-3924 -287 3928 -257 3928 -225 ct 3928 -150 3910 -92 3873 -51 ct 3835 -10 3791 9 3739 9 ct
-3687 9 3646 -11 3617 -54 ct p
-3616 -222 m 3616 -170 3623 -132 3638 -108 ct 3661 -70 3693 -51 3733 -51 ct
-3765 -51 3793 -65 3817 -93 ct 3840 -121 3852 -163 3852 -219 ct 3852 -277 3841 -319 3818 -346 ct
-3796 -373 3768 -387 3736 -387 ct 3703 -387 3675 -373 3652 -345 ct 3628 -316 l
-3616 -276 l p ef
-3970 -219 m 3970 -300 3992 -360 4037 -399 ct 4075 -432 4121 -448 4175 -448 ct
-4236 -448 4285 -428 4323 -389 ct 4361 -349 4381 -295 4381 -225 ct 4381 -169 4372 -124 4355 -92 ct
-4338 -59 4314 -34 4281 -16 ct 4249 0 4214 9 4175 9 ct 4114 9 4064 -9 4026 -49 ct
-3989 -88 l 3970 -145 l p
-4046 -219 m 4046 -163 4058 -121 4083 -93 ct 4107 -65 4138 -51 4175 -51 ct 4212 -51 4243 -65 4267 -93 ct
-4292 -121 4304 -164 4304 -221 ct 4304 -276 4292 -317 4267 -345 ct 4243 -373 4212 -387 4175 -387 ct
-4138 -387 4107 -373 4083 -345 ct 4058 -317 l 4046 -275 l p ef
-4761 -54 m 4733 -30 4707 -14 4681 -4 ct 4656 5 4628 9 4599 9 ct 4551 9 4514 -1 4488 -25 ct
-4462 -48 4449 -79 4449 -115 ct 4449 -137 4454 -156 4464 -174 ct 4474 -192 4486 -206 4502 -217 ct
-4518 -228 4536 -236 4556 -241 ct 4570 -245 4592 -249 4622 -252 ct 4682 -259 4726 -268 4754 -278 ct
-4755 -288 4755 -295 4755 -297 ct 4755 -328 4748 -349 4734 -361 ct 4715 -378 4686 -387 4649 -387 ct
-4614 -387 4588 -380 4572 -368 ct 4555 -356 4543 -334 4535 -303 ct 4462 -313 l
-4468 -344 4479 -369 4495 -388 ct 4510 -408 4532 -422 4560 -433 ct 4589 -443 4622 -448 4660 -448 ct
-4697 -448 4728 -444 4751 -435 ct 4774 -426 4792 -415 4803 -402 ct 4814 -388 4821 -371 4826 -351 ct
-4828 -338 4830 -316 4830 -282 ct 4830 -183 l 4830 -114 4831 -70 4834 -52 ct
-4837 -34 4844 -16 4853 0 ct 4775 0 l 4768 -15 l 4763 -33 l p
-4754 -220 m 4727 -209 4687 -199 4633 -192 ct 4602 -187 4581 -182 4568 -177 ct
-4555 -171 4546 -163 4539 -153 ct 4532 -142 4528 -130 4528 -117 ct 4528 -97 4536 -81 4551 -68 ct
-4566 -54 4588 -48 4617 -48 ct 4645 -48 4671 -54 4693 -67 ct 4716 -79 4732 -96 4742 -118 ct
-4750 -135 4754 -160 4754 -192 ct p ef
-4922 0 m 4922 -438 l 4989 -438 l 4989 -372 l 5006 -403 5022 -423 5037 -433 ct
-5051 -443 5067 -448 5084 -448 ct 5109 -448 5135 -440 5161 -424 ct 5135 -355 l
-5117 -366 5099 -371 5081 -371 ct 5064 -371 5050 -366 5037 -357 ct 5024 -347 5015 -333 5009 -316 ct
-5001 -289 4997 -261 4997 -229 ct 4997 0 l p ef
-5499 0 m 5499 -55 l 5471 -11 5430 9 5376 9 ct 5341 9 5309 0 5280 -19 ct 5250 -38 5228 -65 5212 -99 ct
-5195 -134 5187 -174 5187 -218 ct 5187 -262 5195 -302 5209 -338 ct 5224 -373 5246 -401 5275 -420 ct
-5304 -439 5337 -448 5373 -448 ct 5399 -448 5423 -443 5444 -431 ct 5464 -420 5481 -406 5494 -388 ct
-5494 -605 l 5568 -605 l 5568 0 l p
-5264 -218 m 5264 -162 5276 -120 5299 -92 ct 5323 -65 5351 -51 5383 -51 ct 5416 -51 5443 -64 5466 -91 ct
-5489 -117 5500 -158 5500 -212 ct 5500 -272 5489 -316 5465 -344 ct 5442 -373 5414 -387 5380 -387 ct
-5347 -387 5319 -373 5297 -346 ct 5275 -319 l 5264 -277 l p ef
-pom
-gr
-4245 18828 m 1070 18828 l 1070 13113 l 7420 13113 l 7420 18828 l 4245 18828 l
-pc
-gs
-pum
-2607 15795 t
-219 0 m 219 -534 l 19 -534 l 19 -605 l 499 -605 l 499 -534 l 299 -534 l
-299 0 l p ef
-583 0 m 583 -438 l 650 -438 l 650 -372 l 667 -403 683 -423 698 -433 ct
-712 -443 728 -448 745 -448 ct 770 -448 796 -440 822 -424 ct 796 -355 l 778 -366 760 -371 742 -371 ct
-725 -371 711 -366 698 -357 ct 685 -347 676 -333 670 -316 ct 662 -289 658 -261 658 -229 ct
-658 0 l p ef
-1162 -54 m 1134 -30 1108 -14 1082 -4 ct 1057 5 1029 9 1000 9 ct 952 9 915 -1 889 -25 ct
-863 -48 850 -79 850 -115 ct 850 -137 855 -156 865 -174 ct 875 -192 887 -206 903 -217 ct
-919 -228 937 -236 957 -241 ct 971 -245 993 -249 1023 -252 ct 1083 -259 1127 -268 1155 -278 ct
-1156 -288 1156 -295 1156 -297 ct 1156 -328 1149 -349 1135 -361 ct 1116 -378 1087 -387 1050 -387 ct
-1015 -387 989 -380 973 -368 ct 956 -356 944 -334 936 -303 ct 863 -313 l 869 -344 880 -369 896 -388 ct
-911 -408 933 -422 961 -433 ct 990 -443 1023 -448 1061 -448 ct 1098 -448 1129 -444 1152 -435 ct
-1175 -426 1193 -415 1204 -402 ct 1215 -388 1222 -371 1227 -351 ct 1229 -338 1231 -316 1231 -282 ct
-1231 -183 l 1231 -114 1232 -70 1235 -52 ct 1238 -34 1245 -16 1254 0 ct 1176 0 l
-1169 -15 l 1164 -33 l p
-1155 -220 m 1128 -209 1088 -199 1034 -192 ct 1003 -187 982 -182 969 -177 ct
-956 -171 947 -163 940 -153 ct 933 -142 929 -130 929 -117 ct 929 -97 937 -81 952 -68 ct
-967 -54 989 -48 1018 -48 ct 1046 -48 1072 -54 1094 -67 ct 1117 -79 1133 -96 1143 -118 ct
-1151 -135 1155 -160 1155 -192 ct p ef
-1325 0 m 1325 -438 l 1392 -438 l 1392 -376 l 1424 -424 1471 -448 1532 -448 ct
-1558 -448 1583 -443 1605 -434 ct 1627 -424 1643 -412 1654 -396 ct 1666 -381 1673 -363 1678 -342 ct
-1680 -328 1682 -304 1682 -269 ct 1682 0 l 1607 0 l 1607 -266 l 1607 -297 1605 -319 1599 -334 ct
-1593 -349 1583 -361 1568 -370 ct 1553 -379 1536 -384 1516 -384 ct 1484 -384 1457 -374 1434 -354 ct
-1411 -333 1400 -295 1400 -239 ct 1400 0 l p ef
-1772 -130 m 1845 -142 l 1849 -113 1861 -90 1880 -74 ct 1898 -59 1925 -51 1959 -51 ct
-1993 -51 2018 -58 2035 -72 ct 2051 -85 2059 -102 2059 -121 ct 2059 -137 2052 -151 2038 -160 ct
-2027 -167 2002 -175 1962 -185 ct 1907 -199 1869 -211 1848 -221 ct 1827 -231 1811 -245 1800 -263 ct
-1789 -281 1784 -300 1784 -322 ct 1784 -341 1788 -359 1797 -376 ct 1806 -393 1818 -407 1834 -418 ct
-1845 -426 1861 -433 1881 -439 ct 1901 -445 1923 -448 1945 -448 ct 1980 -448 2010 -443 2036 -433 ct
-2062 -423 2081 -410 2094 -393 ct 2106 -376 2115 -353 2119 -325 ct 2047 -315 l
-2043 -338 2034 -355 2018 -368 ct 2002 -381 1980 -387 1951 -387 ct 1917 -387 1892 -381 1878 -370 ct
-1863 -359 1856 -346 1856 -330 ct 1856 -321 1859 -312 1865 -304 ct 1871 -296 1880 -290 1893 -285 ct
-1901 -282 1923 -275 1959 -266 ct 2012 -251 2048 -240 2069 -231 ct 2090 -222 2106 -209 2118 -192 ct
-2130 -175 2136 -154 2136 -128 ct 2136 -104 2129 -80 2114 -58 ct 2100 -36 2079 -20 2052 -8 ct
-2024 3 1993 9 1959 9 ct 1902 9 1859 -1 1829 -25 ct 1799 -49 l 1780 -84 l p ef
-2198 0 m 2198 -438 l 2265 -438 l 2265 -377 l 2279 -398 2297 -415 2320 -428 ct
-2343 -442 2369 -448 2398 -448 ct 2430 -448 2457 -441 2478 -428 ct 2499 -414 2513 -396 2522 -371 ct
-2556 -423 2602 -448 2657 -448 ct 2701 -448 2734 -436 2758 -412 ct 2781 -388 2793 -351 2793 -301 ct
-2793 0 l 2719 0 l 2719 -276 l 2719 -306 2716 -327 2712 -340 ct 2707 -353 2698 -364 2685 -372 ct
-2673 -380 2658 -384 2641 -384 ct 2610 -384 2584 -373 2564 -353 ct 2543 -332 2533 -300 2533 -254 ct
-2533 0 l 2459 0 l 2459 -285 l 2459 -318 2453 -342 2441 -359 ct 2429 -375 2409 -384 2381 -384 ct
-2360 -384 2341 -378 2323 -367 ct 2305 -356 2293 -340 2285 -319 ct 2277 -298 2273 -267 2273 -227 ct
-2273 0 l p ef
-2914 -520 m 2914 -605 l 2988 -605 l 2988 -520 l p
-2914 0 m 2914 -438 l 2988 -438 l 2988 0 l p ef
-3261 -66 m 3271 0 l 3250 3 3232 5 3215 5 ct 3188 5 3167 1 3152 -7 ct 3138 -15 3127 -26 3121 -40 ct
-3115 -54 3112 -83 3112 -128 ct 3112 -380 l 3057 -380 l 3057 -438 l 3112 -438 l
-3112 -547 l 3186 -591 l 3186 -438 l 3261 -438 l 3261 -380 l 3186 -380 l
-3186 -124 l 3186 -103 3187 -89 3190 -83 ct 3192 -77 3197 -72 3203 -68 ct 3208 -65 3217 -63 3228 -63 ct
-3236 -63 l 3247 -64 l p ef
-pom
-pum
-1429 16748 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-951 -54 m 923 -30 897 -14 871 -4 ct 846 5 818 9 789 9 ct 741 9 704 -1 678 -25 ct
-652 -48 639 -79 639 -115 ct 639 -137 644 -156 654 -174 ct 664 -192 676 -206 692 -217 ct
-708 -228 726 -236 746 -241 ct 760 -245 782 -249 812 -252 ct 872 -259 916 -268 944 -278 ct
-945 -288 945 -295 945 -297 ct 945 -328 938 -349 924 -361 ct 905 -378 876 -387 839 -387 ct
-804 -387 778 -380 762 -368 ct 745 -356 733 -334 725 -303 ct 652 -313 l 658 -344 669 -369 685 -388 ct
-700 -408 722 -422 750 -433 ct 779 -443 812 -448 850 -448 ct 887 -448 918 -444 941 -435 ct
-964 -426 982 -415 993 -402 ct 1004 -388 1011 -371 1016 -351 ct 1018 -338 1020 -316 1020 -282 ct
-1020 -183 l 1020 -114 1021 -70 1024 -52 ct 1027 -34 1034 -16 1043 0 ct 965 0 l
-958 -15 l 953 -33 l p
-944 -220 m 917 -209 877 -199 823 -192 ct 792 -187 771 -182 758 -177 ct 745 -171 736 -163 729 -153 ct
-722 -142 718 -130 718 -117 ct 718 -97 726 -81 741 -68 ct 756 -54 778 -48 807 -48 ct
-835 -48 861 -54 883 -67 ct 906 -79 922 -96 932 -118 ct 940 -135 944 -160 944 -192 ct
-p ef
-1401 0 m 1401 -64 l 1367 -14 1320 9 1262 9 ct 1236 9 1212 4 1189 -4 ct 1167 -14 1150 -27 1139 -42 ct
-1128 -57 1121 -75 1116 -97 ct 1113 -112 1112 -135 1112 -166 ct 1112 -438 l 1186 -438 l
-1186 -195 l 1186 -156 1187 -130 1191 -116 ct 1195 -97 1205 -82 1220 -70 ct
-1235 -59 1254 -54 1276 -54 ct 1299 -54 1320 -59 1339 -71 ct 1359 -82 1373 -98 1381 -117 ct
-1389 -137 1393 -166 1393 -203 ct 1393 -438 l 1467 -438 l 1467 0 l p ef
-1577 36 m 1649 47 l 1652 69 1660 85 1674 95 ct 1693 109 1718 116 1750 116 ct
-1784 116 1811 109 1829 95 ct 1848 82 1861 62 1867 38 ct 1871 22 1873 -8 1873 -57 ct
-1840 -19 1800 0 1751 0 ct 1691 0 1644 -21 1611 -65 ct 1578 -108 1562 -160 1562 -221 ct
-1562 -263 1569 -302 1584 -337 ct 1600 -373 1622 -400 1650 -419 ct 1679 -438 1713 -448 1752 -448 ct
-1804 -448 1846 -427 1880 -385 ct 1880 -438 l 1948 -438 l 1948 -59 l 1948 8 1941 57 1928 85 ct
-1914 114 1892 136 1861 153 ct 1831 169 1794 178 1750 178 ct 1698 178 1656 166 1623 142 ct
-1591 119 l 1576 83 l p
-1638 -227 m 1638 -169 1650 -127 1672 -101 ct 1695 -74 1724 -61 1758 -61 ct
-1793 -61 1821 -74 1844 -101 ct 1867 -127 1879 -168 1879 -224 ct 1879 -278 1867 -318 1843 -346 ct
-1819 -373 1791 -387 1757 -387 ct 1724 -387 1696 -373 1673 -346 ct 1650 -319 l
-1638 -280 l p ef
-2066 0 m 2066 -605 l 2141 -605 l 2141 -388 l 2175 -428 2219 -448 2272 -448 ct
-2304 -448 2333 -442 2357 -429 ct 2381 -416 2398 -398 2408 -376 ct 2418 -353 2424 -320 2424 -278 ct
-2424 0 l 2349 0 l 2349 -278 l 2349 -315 2341 -342 2325 -359 ct 2309 -376 2286 -384 2257 -384 ct
-2235 -384 2214 -378 2195 -367 ct 2175 -356 2161 -340 2153 -320 ct 2145 -301 2141 -274 2141 -240 ct
-2141 0 l p ef
-2705 -66 m 2715 0 l 2694 3 2676 5 2659 5 ct 2632 5 2611 1 2596 -7 ct 2582 -15 2571 -26 2565 -40 ct
-2559 -54 2556 -83 2556 -128 ct 2556 -380 l 2501 -380 l 2501 -438 l 2556 -438 l
-2556 -547 l 2630 -591 l 2630 -438 l 2705 -438 l 2705 -380 l 2630 -380 l
-2630 -124 l 2630 -103 2631 -89 2634 -83 ct 2636 -77 2641 -72 2647 -68 ct 2652 -65 2661 -63 2672 -63 ct
-2680 -63 l 2691 -64 l p ef
-3081 -141 m 3157 -131 l 3145 -86 3123 -52 3090 -27 ct 3057 -2 3015 9 2965 9 ct
-2900 9 2849 -9 2812 -49 ct 2774 -88 2755 -144 2755 -215 ct 2755 -289 2774 -346 2812 -387 ct
-2851 -428 2900 -448 2960 -448 ct 3019 -448 3067 -428 3104 -388 ct 3141 -348 3160 -292 3160 -220 ct
-3160 -215 3160 -209 3159 -200 ct 2832 -200 l 2835 -152 2849 -115 2873 -89 ct
-2898 -64 2928 -51 2965 -51 ct 2992 -51 3015 -58 3035 -72 ct 3054 -87 l 3069 -109 l
-p
-2836 -261 m 3081 -261 l 3078 -298 3069 -326 3053 -344 ct 3030 -373 2999 -387 2961 -387 ct
-2927 -387 2898 -376 2875 -353 ct 2852 -330 l 2839 -299 l p ef
-3255 0 m 3255 -438 l 3322 -438 l 3322 -372 l 3339 -403 3355 -423 3370 -433 ct
-3384 -443 3400 -448 3417 -448 ct 3442 -448 3468 -440 3494 -424 ct 3468 -355 l
-3450 -366 3432 -371 3414 -371 ct 3397 -371 3383 -366 3370 -357 ct 3357 -347 3348 -333 3342 -316 ct
-3334 -289 3330 -261 3330 -229 ct 3330 0 l p ef
-3617 0 m 3548 0 l 3548 -605 l 3622 -605 l 3622 -389 l 3654 -428 3694 -448 3742 -448 ct
-3769 -448 3795 -443 3819 -432 ct 3843 -421 3863 -406 3879 -386 ct 3894 -366 3906 -343 3915 -315 ct
-3924 -287 3928 -257 3928 -225 ct 3928 -150 3910 -92 3873 -51 ct 3835 -10 3791 9 3739 9 ct
-3687 9 3646 -11 3617 -54 ct p
-3616 -222 m 3616 -170 3623 -132 3638 -108 ct 3661 -70 3693 -51 3733 -51 ct
-3765 -51 3793 -65 3817 -93 ct 3840 -121 3852 -163 3852 -219 ct 3852 -277 3841 -319 3818 -346 ct
-3796 -373 3768 -387 3736 -387 ct 3703 -387 3675 -373 3652 -345 ct 3628 -316 l
-3616 -276 l p ef
-3970 -219 m 3970 -300 3992 -360 4037 -399 ct 4075 -432 4121 -448 4175 -448 ct
-4236 -448 4285 -428 4323 -389 ct 4361 -349 4381 -295 4381 -225 ct 4381 -169 4372 -124 4355 -92 ct
-4338 -59 4314 -34 4281 -16 ct 4249 0 4214 9 4175 9 ct 4114 9 4064 -9 4026 -49 ct
-3989 -88 l 3970 -145 l p
-4046 -219 m 4046 -163 4058 -121 4083 -93 ct 4107 -65 4138 -51 4175 -51 ct 4212 -51 4243 -65 4267 -93 ct
-4292 -121 4304 -164 4304 -221 ct 4304 -276 4292 -317 4267 -345 ct 4243 -373 4212 -387 4175 -387 ct
-4138 -387 4107 -373 4083 -345 ct 4058 -317 l 4046 -275 l p ef
-4761 -54 m 4733 -30 4707 -14 4681 -4 ct 4656 5 4628 9 4599 9 ct 4551 9 4514 -1 4488 -25 ct
-4462 -48 4449 -79 4449 -115 ct 4449 -137 4454 -156 4464 -174 ct 4474 -192 4486 -206 4502 -217 ct
-4518 -228 4536 -236 4556 -241 ct 4570 -245 4592 -249 4622 -252 ct 4682 -259 4726 -268 4754 -278 ct
-4755 -288 4755 -295 4755 -297 ct 4755 -328 4748 -349 4734 -361 ct 4715 -378 4686 -387 4649 -387 ct
-4614 -387 4588 -380 4572 -368 ct 4555 -356 4543 -334 4535 -303 ct 4462 -313 l
-4468 -344 4479 -369 4495 -388 ct 4510 -408 4532 -422 4560 -433 ct 4589 -443 4622 -448 4660 -448 ct
-4697 -448 4728 -444 4751 -435 ct 4774 -426 4792 -415 4803 -402 ct 4814 -388 4821 -371 4826 -351 ct
-4828 -338 4830 -316 4830 -282 ct 4830 -183 l 4830 -114 4831 -70 4834 -52 ct
-4837 -34 4844 -16 4853 0 ct 4775 0 l 4768 -15 l 4763 -33 l p
-4754 -220 m 4727 -209 4687 -199 4633 -192 ct 4602 -187 4581 -182 4568 -177 ct
-4555 -171 4546 -163 4539 -153 ct 4532 -142 4528 -130 4528 -117 ct 4528 -97 4536 -81 4551 -68 ct
-4566 -54 4588 -48 4617 -48 ct 4645 -48 4671 -54 4693 -67 ct 4716 -79 4732 -96 4742 -118 ct
-4750 -135 4754 -160 4754 -192 ct p ef
-4922 0 m 4922 -438 l 4989 -438 l 4989 -372 l 5006 -403 5022 -423 5037 -433 ct
-5051 -443 5067 -448 5084 -448 ct 5109 -448 5135 -440 5161 -424 ct 5135 -355 l
-5117 -366 5099 -371 5081 -371 ct 5064 -371 5050 -366 5037 -357 ct 5024 -347 5015 -333 5009 -316 ct
-5001 -289 4997 -261 4997 -229 ct 4997 0 l p ef
-5499 0 m 5499 -55 l 5471 -11 5430 9 5376 9 ct 5341 9 5309 0 5280 -19 ct 5250 -38 5228 -65 5212 -99 ct
-5195 -134 5187 -174 5187 -218 ct 5187 -262 5195 -302 5209 -338 ct 5224 -373 5246 -401 5275 -420 ct
-5304 -439 5337 -448 5373 -448 ct 5399 -448 5423 -443 5444 -431 ct 5464 -420 5481 -406 5494 -388 ct
-5494 -605 l 5568 -605 l 5568 0 l p
-5264 -218 m 5264 -162 5276 -120 5299 -92 ct 5323 -65 5351 -51 5383 -51 ct 5416 -51 5443 -64 5466 -91 ct
-5489 -117 5500 -158 5500 -212 ct 5500 -272 5489 -316 5465 -344 ct 5442 -373 5414 -387 5380 -387 ct
-5347 -387 5319 -373 5297 -346 ct 5275 -319 l 5264 -277 l p ef
-pom
-gr
-4245 12065 m 1070 12065 l 1070 6350 l 7420 6350 l 7420 12065 l 4245 12065 l
-pc
-gs
-pum
-2713 9022 t
-66 0 m 66 -605 l 335 -605 l 389 -605 430 -600 458 -589 ct 486 -578 508 -559 525 -531 ct
-542 -504 550 -473 550 -440 ct 550 -397 536 -361 508 -331 ct 481 -302 438 -283 380 -275 ct
-401 -265 417 -255 428 -245 ct 451 -223 473 -197 494 -164 ct 600 0 l 499 0 l
-419 -125 l 395 -162 376 -190 361 -209 ct 346 -228 332 -242 320 -249 ct 308 -257 296 -263 284 -266 ct
-275 -267 260 -268 239 -268 ct 146 -268 l 146 0 l p
-146 -338 m 318 -338 l 355 -338 384 -342 404 -349 ct 425 -357 441 -369 451 -386 ct
-462 -402 468 -420 468 -440 ct 468 -468 457 -492 436 -510 ct 416 -529 383 -538 338 -538 ct
-146 -538 l p ef
-965 -141 m 1041 -131 l 1029 -86 1007 -52 974 -27 ct 941 -2 899 9 849 9 ct
-784 9 733 -9 696 -49 ct 658 -88 639 -144 639 -215 ct 639 -289 658 -346 696 -387 ct
-735 -428 784 -448 844 -448 ct 903 -448 951 -428 988 -388 ct 1025 -348 1044 -292 1044 -220 ct
-1044 -215 1044 -209 1043 -200 ct 716 -200 l 719 -152 733 -115 757 -89 ct 782 -64 812 -51 849 -51 ct
-876 -51 899 -58 919 -72 ct 938 -87 l 953 -109 l p
-720 -261 m 965 -261 l 962 -298 953 -326 937 -344 ct 914 -373 883 -387 845 -387 ct
-811 -387 782 -376 759 -353 ct 736 -330 l 723 -299 l p ef
-1427 -160 m 1500 -151 l 1492 -100 1471 -61 1438 -32 ct 1405 -4 1365 9 1317 9 ct
-1257 9 1209 -9 1172 -48 ct 1136 -88 1118 -144 1118 -217 ct 1118 -265 1125 -306 1141 -342 ct
-1157 -377 1181 -404 1213 -421 ct 1245 -439 1280 -448 1317 -448 ct 1365 -448 1404 -436 1434 -412 ct
-1465 -388 1484 -354 1493 -309 ct 1420 -298 l 1413 -328 1401 -350 1384 -365 ct
-1366 -380 1345 -387 1320 -387 ct 1283 -387 1252 -374 1229 -347 ct 1206 -320 1194 -277 1194 -219 ct
-1194 -160 1205 -118 1228 -91 ct 1250 -64 1280 -51 1316 -51 ct 1345 -51 1370 -60 1389 -78 ct
-1409 -95 l 1421 -123 l p ef
-1864 -141 m 1940 -131 l 1928 -86 1906 -52 1873 -27 ct 1840 -2 1798 9 1748 9 ct
-1683 9 1632 -9 1595 -49 ct 1557 -88 1538 -144 1538 -215 ct 1538 -289 1557 -346 1595 -387 ct
-1634 -428 1683 -448 1743 -448 ct 1802 -448 1850 -428 1887 -388 ct 1924 -348 1943 -292 1943 -220 ct
-1943 -215 1943 -209 1942 -200 ct 1615 -200 l 1618 -152 1632 -115 1656 -89 ct
-1681 -64 1711 -51 1748 -51 ct 1775 -51 1798 -58 1818 -72 ct 1837 -87 l 1852 -109 l
-p
-1619 -261 m 1864 -261 l 1861 -298 1852 -326 1836 -344 ct 1813 -373 1782 -387 1744 -387 ct
-1710 -387 1681 -376 1658 -353 ct 1635 -330 l 1622 -299 l p ef
-2040 -520 m 2040 -605 l 2114 -605 l 2114 -520 l p
-2040 0 m 2040 -438 l 2114 -438 l 2114 0 l p ef
-2347 0 m 2180 -438 l 2259 -438 l 2353 -175 l 2363 -147 2372 -118 2381 -87 ct
-2388 -110 2397 -138 2409 -171 ct 2506 -438 l 2583 -438 l 2417 0 l p ef
-2949 -141 m 3025 -131 l 3013 -86 2991 -52 2958 -27 ct 2925 -2 2883 9 2833 9 ct
-2768 9 2717 -9 2680 -49 ct 2642 -88 2623 -144 2623 -215 ct 2623 -289 2642 -346 2680 -387 ct
-2719 -428 2768 -448 2828 -448 ct 2887 -448 2935 -428 2972 -388 ct 3009 -348 3028 -292 3028 -220 ct
-3028 -215 3028 -209 3027 -200 ct 2700 -200 l 2703 -152 2717 -115 2741 -89 ct
-2766 -64 2796 -51 2833 -51 ct 2860 -51 2883 -58 2903 -72 ct 2922 -87 l 2937 -109 l
-p
-2704 -261 m 2949 -261 l 2946 -298 2937 -326 2921 -344 ct 2898 -373 2867 -387 2829 -387 ct
-2795 -387 2766 -376 2743 -353 ct 2720 -330 l 2707 -299 l p ef
-pom
-pum
-1429 9975 t
-65 0 m 65 -605 l 273 -605 l 320 -605 356 -602 381 -596 ct 416 -588 445 -574 470 -553 ct
-502 -526 526 -492 542 -450 ct 558 -408 565 -360 565 -306 ct 565 -260 560 -219 549 -183 ct
-539 -148 525 -118 508 -95 ct 491 -72 473 -54 453 -40 ct 433 -27 409 -17 381 -10 ct
-352 -3 320 0 283 0 ct p
-145 -71 m 274 -71 l 314 -71 345 -75 368 -82 ct 391 -90 409 -100 423 -114 ct
-442 -133 456 -158 467 -190 ct 478 -222 483 -261 483 -307 ct 483 -370 472 -419 452 -453 ct
-431 -487 406 -510 376 -521 ct 354 -530 320 -534 272 -534 ct 145 -534 l p ef
-951 -54 m 923 -30 897 -14 871 -4 ct 846 5 818 9 789 9 ct 741 9 704 -1 678 -25 ct
-652 -48 639 -79 639 -115 ct 639 -137 644 -156 654 -174 ct 664 -192 676 -206 692 -217 ct
-708 -228 726 -236 746 -241 ct 760 -245 782 -249 812 -252 ct 872 -259 916 -268 944 -278 ct
-945 -288 945 -295 945 -297 ct 945 -328 938 -349 924 -361 ct 905 -378 876 -387 839 -387 ct
-804 -387 778 -380 762 -368 ct 745 -356 733 -334 725 -303 ct 652 -313 l 658 -344 669 -369 685 -388 ct
-700 -408 722 -422 750 -433 ct 779 -443 812 -448 850 -448 ct 887 -448 918 -444 941 -435 ct
-964 -426 982 -415 993 -402 ct 1004 -388 1011 -371 1016 -351 ct 1018 -338 1020 -316 1020 -282 ct
-1020 -183 l 1020 -114 1021 -70 1024 -52 ct 1027 -34 1034 -16 1043 0 ct 965 0 l
-958 -15 l 953 -33 l p
-944 -220 m 917 -209 877 -199 823 -192 ct 792 -187 771 -182 758 -177 ct 745 -171 736 -163 729 -153 ct
-722 -142 718 -130 718 -117 ct 718 -97 726 -81 741 -68 ct 756 -54 778 -48 807 -48 ct
-835 -48 861 -54 883 -67 ct 906 -79 922 -96 932 -118 ct 940 -135 944 -160 944 -192 ct
-p ef
-1401 0 m 1401 -64 l 1367 -14 1320 9 1262 9 ct 1236 9 1212 4 1189 -4 ct 1167 -14 1150 -27 1139 -42 ct
-1128 -57 1121 -75 1116 -97 ct 1113 -112 1112 -135 1112 -166 ct 1112 -438 l 1186 -438 l
-1186 -195 l 1186 -156 1187 -130 1191 -116 ct 1195 -97 1205 -82 1220 -70 ct
-1235 -59 1254 -54 1276 -54 ct 1299 -54 1320 -59 1339 -71 ct 1359 -82 1373 -98 1381 -117 ct
-1389 -137 1393 -166 1393 -203 ct 1393 -438 l 1467 -438 l 1467 0 l p ef
-1577 36 m 1649 47 l 1652 69 1660 85 1674 95 ct 1693 109 1718 116 1750 116 ct
-1784 116 1811 109 1829 95 ct 1848 82 1861 62 1867 38 ct 1871 22 1873 -8 1873 -57 ct
-1840 -19 1800 0 1751 0 ct 1691 0 1644 -21 1611 -65 ct 1578 -108 1562 -160 1562 -221 ct
-1562 -263 1569 -302 1584 -337 ct 1600 -373 1622 -400 1650 -419 ct 1679 -438 1713 -448 1752 -448 ct
-1804 -448 1846 -427 1880 -385 ct 1880 -438 l 1948 -438 l 1948 -59 l 1948 8 1941 57 1928 85 ct
-1914 114 1892 136 1861 153 ct 1831 169 1794 178 1750 178 ct 1698 178 1656 166 1623 142 ct
-1591 119 l 1576 83 l p
-1638 -227 m 1638 -169 1650 -127 1672 -101 ct 1695 -74 1724 -61 1758 -61 ct
-1793 -61 1821 -74 1844 -101 ct 1867 -127 1879 -168 1879 -224 ct 1879 -278 1867 -318 1843 -346 ct
-1819 -373 1791 -387 1757 -387 ct 1724 -387 1696 -373 1673 -346 ct 1650 -319 l
-1638 -280 l p ef
-2066 0 m 2066 -605 l 2141 -605 l 2141 -388 l 2175 -428 2219 -448 2272 -448 ct
-2304 -448 2333 -442 2357 -429 ct 2381 -416 2398 -398 2408 -376 ct 2418 -353 2424 -320 2424 -278 ct
-2424 0 l 2349 0 l 2349 -278 l 2349 -315 2341 -342 2325 -359 ct 2309 -376 2286 -384 2257 -384 ct
-2235 -384 2214 -378 2195 -367 ct 2175 -356 2161 -340 2153 -320 ct 2145 -301 2141 -274 2141 -240 ct
-2141 0 l p ef
-2705 -66 m 2715 0 l 2694 3 2676 5 2659 5 ct 2632 5 2611 1 2596 -7 ct 2582 -15 2571 -26 2565 -40 ct
-2559 -54 2556 -83 2556 -128 ct 2556 -380 l 2501 -380 l 2501 -438 l 2556 -438 l
-2556 -547 l 2630 -591 l 2630 -438 l 2705 -438 l 2705 -380 l 2630 -380 l
-2630 -124 l 2630 -103 2631 -89 2634 -83 ct 2636 -77 2641 -72 2647 -68 ct 2652 -65 2661 -63 2672 -63 ct
-2680 -63 l 2691 -64 l p ef
-3081 -141 m 3157 -131 l 3145 -86 3123 -52 3090 -27 ct 3057 -2 3015 9 2965 9 ct
-2900 9 2849 -9 2812 -49 ct 2774 -88 2755 -144 2755 -215 ct 2755 -289 2774 -346 2812 -387 ct
-2851 -428 2900 -448 2960 -448 ct 3019 -448 3067 -428 3104 -388 ct 3141 -348 3160 -292 3160 -220 ct
-3160 -215 3160 -209 3159 -200 ct 2832 -200 l 2835 -152 2849 -115 2873 -89 ct
-2898 -64 2928 -51 2965 -51 ct 2992 -51 3015 -58 3035 -72 ct 3054 -87 l 3069 -109 l
-p
-2836 -261 m 3081 -261 l 3078 -298 3069 -326 3053 -344 ct 3030 -373 2999 -387 2961 -387 ct
-2927 -387 2898 -376 2875 -353 ct 2852 -330 l 2839 -299 l p ef
-3255 0 m 3255 -438 l 3322 -438 l 3322 -372 l 3339 -403 3355 -423 3370 -433 ct
-3384 -443 3400 -448 3417 -448 ct 3442 -448 3468 -440 3494 -424 ct 3468 -355 l
-3450 -366 3432 -371 3414 -371 ct 3397 -371 3383 -366 3370 -357 ct 3357 -347 3348 -333 3342 -316 ct
-3334 -289 3330 -261 3330 -229 ct 3330 0 l p ef
-3617 0 m 3548 0 l 3548 -605 l 3622 -605 l 3622 -389 l 3654 -428 3694 -448 3742 -448 ct
-3769 -448 3795 -443 3819 -432 ct 3843 -421 3863 -406 3879 -386 ct 3894 -366 3906 -343 3915 -315 ct
-3924 -287 3928 -257 3928 -225 ct 3928 -150 3910 -92 3873 -51 ct 3835 -10 3791 9 3739 9 ct
-3687 9 3646 -11 3617 -54 ct p
-3616 -222 m 3616 -170 3623 -132 3638 -108 ct 3661 -70 3693 -51 3733 -51 ct
-3765 -51 3793 -65 3817 -93 ct 3840 -121 3852 -163 3852 -219 ct 3852 -277 3841 -319 3818 -346 ct
-3796 -373 3768 -387 3736 -387 ct 3703 -387 3675 -373 3652 -345 ct 3628 -316 l
-3616 -276 l p ef
-3970 -219 m 3970 -300 3992 -360 4037 -399 ct 4075 -432 4121 -448 4175 -448 ct
-4236 -448 4285 -428 4323 -389 ct 4361 -349 4381 -295 4381 -225 ct 4381 -169 4372 -124 4355 -92 ct
-4338 -59 4314 -34 4281 -16 ct 4249 0 4214 9 4175 9 ct 4114 9 4064 -9 4026 -49 ct
-3989 -88 l 3970 -145 l p
-4046 -219 m 4046 -163 4058 -121 4083 -93 ct 4107 -65 4138 -51 4175 -51 ct 4212 -51 4243 -65 4267 -93 ct
-4292 -121 4304 -164 4304 -221 ct 4304 -276 4292 -317 4267 -345 ct 4243 -373 4212 -387 4175 -387 ct
-4138 -387 4107 -373 4083 -345 ct 4058 -317 l 4046 -275 l p ef
-4761 -54 m 4733 -30 4707 -14 4681 -4 ct 4656 5 4628 9 4599 9 ct 4551 9 4514 -1 4488 -25 ct
-4462 -48 4449 -79 4449 -115 ct 4449 -137 4454 -156 4464 -174 ct 4474 -192 4486 -206 4502 -217 ct
-4518 -228 4536 -236 4556 -241 ct 4570 -245 4592 -249 4622 -252 ct 4682 -259 4726 -268 4754 -278 ct
-4755 -288 4755 -295 4755 -297 ct 4755 -328 4748 -349 4734 -361 ct 4715 -378 4686 -387 4649 -387 ct
-4614 -387 4588 -380 4572 -368 ct 4555 -356 4543 -334 4535 -303 ct 4462 -313 l
-4468 -344 4479 -369 4495 -388 ct 4510 -408 4532 -422 4560 -433 ct 4589 -443 4622 -448 4660 -448 ct
-4697 -448 4728 -444 4751 -435 ct 4774 -426 4792 -415 4803 -402 ct 4814 -388 4821 -371 4826 -351 ct
-4828 -338 4830 -316 4830 -282 ct 4830 -183 l 4830 -114 4831 -70 4834 -52 ct
-4837 -34 4844 -16 4853 0 ct 4775 0 l 4768 -15 l 4763 -33 l p
-4754 -220 m 4727 -209 4687 -199 4633 -192 ct 4602 -187 4581 -182 4568 -177 ct
-4555 -171 4546 -163 4539 -153 ct 4532 -142 4528 -130 4528 -117 ct 4528 -97 4536 -81 4551 -68 ct
-4566 -54 4588 -48 4617 -48 ct 4645 -48 4671 -54 4693 -67 ct 4716 -79 4732 -96 4742 -118 ct
-4750 -135 4754 -160 4754 -192 ct p ef
-4922 0 m 4922 -438 l 4989 -438 l 4989 -372 l 5006 -403 5022 -423 5037 -433 ct
-5051 -443 5067 -448 5084 -448 ct 5109 -448 5135 -440 5161 -424 ct 5135 -355 l
-5117 -366 5099 -371 5081 -371 ct 5064 -371 5050 -366 5037 -357 ct 5024 -347 5015 -333 5009 -316 ct
-5001 -289 4997 -261 4997 -229 ct 4997 0 l p ef
-5499 0 m 5499 -55 l 5471 -11 5430 9 5376 9 ct 5341 9 5309 0 5280 -19 ct 5250 -38 5228 -65 5212 -99 ct
-5195 -134 5187 -174 5187 -218 ct 5187 -262 5195 -302 5209 -338 ct 5224 -373 5246 -401 5275 -420 ct
-5304 -439 5337 -448 5373 -448 ct 5399 -448 5423 -443 5444 -431 ct 5464 -420 5481 -406 5494 -388 ct
-5494 -605 l 5568 -605 l 5568 0 l p
-5264 -218 m 5264 -162 5276 -120 5299 -92 ct 5323 -65 5351 -51 5383 -51 ct 5416 -51 5443 -64 5466 -91 ct
-5489 -117 5500 -158 5500 -212 ct 5500 -272 5489 -316 5465 -344 ct 5442 -373 5414 -387 5380 -387 ct
-5347 -387 5319 -373 5297 -346 ct 5275 -319 l 5264 -277 l p ef
-pom
-gr
-51 lw 13970 5080 m 13970 6350 l ps
-11010 7920 m 11900 7920 l ps
-11010 10460 m 11900 10460 l ps
-11010 14605 m 11900 14605 l ps
-11010 17245 m 11900 17245 l ps
-7835 7955 m 7420 7955 l ps
-7835 10460 m 7420 10460 l ps
-7835 14605 m 7420 14605 l ps
-7835 17245 m 7420 17245 l ps
-16013 7955 m 16809 7955 l ps
-19984 7920 m 20592 7920 l ps
-19984 10460 m 20592 10460 l ps
-16013 10495 m 16809 10495 l ps
-16013 14605 m 16809 14605 l ps
-16013 17245 m 16809 17245 l ps
-19984 14605 m 20592 14605 l ps
-19984 17245 m 20592 17245 l ps
-gr
-0 20290 t
-pom
-count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat b4_inc_state restore
-%%PageTrailer
-%%Trailer
-%%EOF
diff --git a/usrp/doc/usrp-block-diagram.png b/usrp/doc/usrp-block-diagram.png
deleted file mode 100644
index 55a0f0b38..000000000
--- a/usrp/doc/usrp-block-diagram.png
+++ /dev/null
Binary files differ
diff --git a/usrp/doc/usrp.jpg b/usrp/doc/usrp.jpg
deleted file mode 100644
index 0ddb59275..000000000
--- a/usrp/doc/usrp.jpg
+++ /dev/null
Binary files differ
diff --git a/usrp/doc/usrp_guide.xml b/usrp/doc/usrp_guide.xml
deleted file mode 100644
index 7c4d5d5e8..000000000
--- a/usrp/doc/usrp_guide.xml
+++ /dev/null
@@ -1,399 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "docbookx.dtd" [
-]>
-
-<article>
- <articleinfo>
- <title>USRP User's and Developer's Guide</title>
- <author>
- <firstname>Matt</firstname>
- <surname>Ettus</surname>
- <affiliation>
- <orgname>Ettus Research LLC</orgname>
- <address>
- Ettus Research LLC
- <street>604 Mariposa Ave</street>
- <city>Mountain View</city>, <state>CA</state> <postcode>94041</postcode>
- <country>USA</country>
- <email>matt@ettus.com</email>
- </address>
- </affiliation>
- </author>
-
- <abstract>
- <para>
- This guide explains both basic usage of the USRP as well as how to expand it.
- </para>
- </abstract>
-
- </articleinfo>
-
- <sect1 id="intro">
- <title>Introduction</title>
- <para>
- The Universal Software Radio Peripheral, or USRP (pronounced "usurp")
- is designed to allow general purpose computers to function as high
- bandwidth software radios. In essence, it serves as a digital
- baseband and IF section of a radio communication system. In addition,
- it has a well-defined electrical and mechanical interface to RF
- front-ends (daughterboards) which can translate between that IF or
- baseband and the RF bands of interest
- </para>
- <para>
- The basic design philosophy behind the USRP has been to do all of the
- waveform-specific processing, like modulation and demodulation, on the
- host CPU. All of the high-speed general purpose operations like
- digital up- and downconversion, decimation and interpolation are done
- on the FPGA.
- </para>
- <para>
- It is anticipated that the majority of USRP users will never need to
- use anything other than the standard FPGA configuration. However, for
- those users that wish to, the FPGA design may be changed or replaced.
- All of the interfaces are well defined and documented.
- </para>
- <figure id="usrp-board">
- <title>USRP with Daughterboards</title>
- <mediaobject>
- <imageobject><imagedata fileref="usrp.jpg" format="JPG"/></imageobject>
- <caption><para>
- This USRP has 2 BasicTX and 2 BasicRX boards mounted on it.
- Notice that the boards on the left are rotated 180 degrees.
- </para></caption>
- </mediaobject>
- </figure>
-
- <sect2 id="requirements">
- <title>System Requirements</title>
- <para>
- The USRP requires a PC or Mac with a USB2 interface.
- </para>
- </sect2>
-
- <sect2 id="capabilities">
- <title>Capabilities</title>
- <para>
- The USRP has 4 high-speed analog to digital converters (ADCs), each at
- 12 bits per sample, 64 million samples per second. There are also
- 4 high-speed digital to analog converters (DACs), each at 14 bits per
- sample, 128 million samples per second. These 4 input and 4 output
- channels are connected to an Altera Cyclone EP1C12 FPGA. The FPGA, in
- turn, connects to a USB2 interface chip, the Cypress FX2, and on to the
- computer. The USRP connects to the computer via a high speed USB2
- interface only, and will not work with USB1.1.
- </para>
- <figure id="usrp-block-diagram-fig"><title>Universal Software Radio Peripheral</title>
- <mediaobject>
- <imageobject><imagedata fileref="usrp-block-diagram.eps" format="EPS"/></imageobject>
- <imageobject><imagedata fileref="usrp-block-diagram.png" format="PNG"/></imageobject>
- <caption><para></para></caption>
- </mediaobject>
- </figure>
- </sect2>
- </sect1>
- <sect1 id="getting-started">
- <title>Getting Started</title>
- <sect2 id="the-code">
- <title>Getting all the Software</title>
- <para>
- The first step in using your USRP system is to get all of GNU Radio installed. This can
- sometimes be a daunting process, as there are several other libraries which will need to be
- installed first.
- </para>
- <sect3 id="dependencies">
- <title>Library Dependencies</title>
- <itemizedlist>
- <listitem>
- <para>SWIG</para>
- <para>
- We use SWIG (Simple Wrapper Interface Generator) to tie together the C++ and Python code
- in the GNU Radio system. We require that you have version 1.3.24 or newer. You'll
- probably have to compile it from source, which you can find here: <ulink url="http://www.swig.org">SWIG</ulink>
- </para>
- </listitem>
- <listitem>
- <para>FFTW</para>
- <para>
- FFTW is the library which GNU Radio uses for FFTs. GNU Radio requires version 3.0.1 or
- newer, and it must be compiled for single precision. You can get it from the
- <ulink url="http://www.fftw.org">FFTW Homepage</ulink>
- </para>
- </listitem>
- <listitem>
- <para>Boost Library</para>
- <para>
- Boost provides several low-level structures used in our C++ code. If it is not included in
- your OS distribution, you can get it here: <ulink url="http://boost.org">Boost</ulink>
- </para>
- </listitem>
- <listitem>
- <para>CPP Unit</para>
- <para>
- CPPUnit provides our unit-testing framework. This creates automated tests to insure that
- code does not break when changes are made. Get it at the <ulink url="http://cppunit.sf.net">
- CPP Unit Homepage</ulink>
- </para>
- </listitem>
- </itemizedlist>
- </sect3>
- <sect3 id="getting-gradio">
- <title>Getting GNU Radio and the USRP code</title>
- <para>
- There are several packages of software which make up GNU Radio and the USRP support software.
- Links to the latest versions of each can be found on the GNU Radio Wiki at
- <ulink url="http://comsec.com/wiki?GnuRadio2.X">Download Links</ulink>. Gr-build
- can greatly simplify the installation process, and its use it highly recommended.
- </para>
- </sect3>
- <sect3 id="cvs">
- <title>Following CVS Development</title>
- <para>
- Development for the USRP proceeds very quickly at times, so some users may want to keep up with
- the latest by following the CVS trees. There are three separate software repositories
- which contain various parts of the USRP system.
- <itemizedlist>
- <listitem>
- <para>
- USRP-HW, containing the hardware and FPGA designs.
- </para>
- <para>
- All of the schematics in this repository were created in
- <ulink url="http://www.geda.seul.org">gEDA</ulink>. The board
- layouts were created in <ulink url="http://pcb.sf.net">PCB</ulink>.
- Verilog designs are compiled in Quartus II Web Edition from
- <ulink url="http://www.altera.com">Altera</ulink>.
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="https://sourceforge.net/cvs/?group_id=22397">USRP-SW</ulink>,
- USRP-SW, containing firmware and host drivers for the USRP
- </para>
- <para>
- Host side drivers and firmware which runs in the USB2 interface chip on the board.
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://comsec.com/wiki?CvsAccess">GNU Radio/gr-usrp</ulink>
- which contains the GNU Radio interface to the USRP
- </para>
- </listitem>
- </itemizedlist>
- </para>
- </sect3>
- </sect2>
- <sect2 id="usrp-start">
- <title>Using your USRP</title>
- <sect3 id="physical">
- <title>Mechanical Connection</title>
- <para>
- The USRP ships with a complete set of standoffs, nuts and bolts. There are 20 standoffs,
- M3x10mm M-F, of which 4 are intended to be used as "feet" for the USRP. Place them in the 4
- corner holes on the main board, inserting the male part from below. The remaining 16
- are used to hold the daughterboards in place. Four of them should be connected to the male
- portion of the 4 standoffs already inserted from below. The remaining 12 should be
- connected to the board with the 12 M3x6mm screws from below. At this point there should be
- 16 standoffs on the board with the male ends up to serve as a guide for the daughterboards.
- The 16 M3 nuts are used to fasten the daughterboards down to the main board.
- </para>
- <para>
- The USRP accomodates 2 TX and 2 RX daughterboards. The placement of the standoffs is designed
- to prevent the accidental incorrect connection of daughterboards. The 2 sides of the USRP have
- their daughterboard slots rotated 180 degrees. The USRP should not be operated without
- standoffs, and daughterboards should never be connected or removed while power is applied.
- </para>
- </sect3>
- <sect3 id="electrical">
- <title>Electrical Connections</title>
- <para>
- The USRP is powered by a 6V 4A power converter included in the kit. The converter is
- capable of 90-260 Vac, 50/60 Hz operation, and so should work in any country.
- If there is a need to use another power supply, the connector is a standard 2.1mm/5.5mm
- DC power connector. The USRP itself only needs 5V at 2A, but a 6V supply was chosen to
- accomodate future daughterboards. Extra power supplies are available from Ettus Research.
- </para>
- <para>
- The included USB cable should be connected to a USB2-capable socket on a computer. The USRP
- does not support USB 1.1 operation at this time.
- </para>
- </sect3>
- <sect3 id="diagnostics">
- <title>Troubleshooting</title>
- <para>
- When first powered up, an LED on the USRP should be flashing at about 3-4x per second.
- This indicates that the processor is running, and has put the device in a low power mode.
- Once firmware has been downloaded to the USRP, the LED will blink at a slower rate.
- If there is no blinking LED, check all power connections, and check for continuity
- in the power fuse (F501, near the power connector). If the fuse needs replacement, it
- is size 0603, 3 amps.
- </para>
- </sect3>
- </sect2>
- </sect1>
- <sect1 id="fpga">
- <title>FPGA</title>
- <sect2 id="fpga-std">
- <title>Standard FPGA Configuration</title>
- <para>
- In the standard fpga configuration, usrp_std, all samples sent over
- the USB interface are in 16-bit signed integers in IQ format. When
- there are multiple channels (up to 4), the channels are interleaved.
- For example, with 4 channels, the sequence would be I0 Q0 I1 Q1 I2 Q2
- I3 Q3 I0 Q0, etc.
- </para>
- <para>
- The USRP can operate in full duplex mode. When in this mode, the
- transmit and receive sides are completely independent of one another.
- The only consideration is that the combined data rate over the bus
- must be 32 Megabytes per second or less. The multiple RX channels
- (1,2, or 4) must all be the same data rate (i.e. same decimation
- ratio). The same applies to the 1,2, or TX channels, which each must
- be at the same data rate (which may be different from the RX rate).
- </para>
- <para>
- On the RX side, each of the 4 ADCs can be routed to either of I or the
- Q input of any of the 4 downconverters. This allows for having
- multiple channels selected out of the same ADC sample stream.
- </para>
- <para>
- The digital upconverters (DUCs) on the transmit side are actually
- contained in the AD9862 CODEC chips, not in the FPGA. The only
- transmit signal processing blocks in the FPGA are the interpolators.
- The interpolator outputs can be routed to any of the 4 CODEC inputs.
- </para>
- <figure id="ddc-fig"><title>Digital Down Converter Block Diagram</title>
- <mediaobject>
- <imageobject><imagedata fileref="ddc.eps" format="EPS"/></imageobject>
- <imageobject><imagedata fileref="ddc.png" format="PNG"/></imageobject>
- <caption><para></para></caption>
- </mediaobject>
- </figure>
-
- </sect2>
- </sect1>
- <sect1 id="dboard-int">
- <title>Daughterboard Interface</title>
- <sect2 id="power-int">
- <title>Power</title>
- <para>
- Daughterboards are provided with clean regulated 3.3V for the analog
- and digital sections. Additionally there is a 6V connection straight from
- the wall supply which is intended to supply a 5V LDO regulator. All daughterboards
- may draw a combined total of 1.5 A.
- </para>
- </sect2>
- <sect2 id="logical-int">
- <title>Logical Interface</title>
- <para>
- There are slots for 2 TX daughterboards, labeled TXA and TXB, and 2
- corresponding RX daughterboards, RXA and RXB. Each daughterboard slot has
- access to 2 of the 4 high-speed data converter analog signals (DAC outputs
- for TX, ADC inputs for RX). This allows each daughterboard which uses real
- (not IQ) sampling to have 2 independent RF sections, and 2 antennas
- (4 total for the system). If IQ sampling is used, each board can support
- a single RF section, for a total of 2 for the whole system.
- </para>
- <para>
- No antialias or reconstruction filtering is provided on the USRP motherboard.
- This allows for maximum flexibility in frequency planning for the
- daughterboards. The analog input bandwidth of the ADCs is over 200 MHz, so
- IF frequencies up to that high may be chosen. If several decibels of loss
- is tolerable, and IF frequency as high as 500 MHz can be used.
- </para>
- <para>
- Every daughterboard has an I2C EEPROM (24LC024 or 24LC025) onboard
- which identifies the board to the system. This allows the host
- software to automatically set up the system properly based on the
- installed daughterboard. The EEPROM may also store calibration values
- like DC offsets or IQ imbalances. If this EEPROM is not programmed, a
- warning message is printed every time USRP software is run.
- </para>
- </sect2>
- <sect2 id="analog-int">
- <title>Analog Interface</title>
- <para>
- Each RX daughterboard has 2 differential analog inputs
- (VINP_A/VINN_A and VINP_B/VINN_B) which are sampled at a rate of 64 MS/s.
- The input impedance is approximately 1Kohm.
- The motherboard has a software-controllable programmable gain amplifier
- on these inputs, with 0 to 20 dB of gain. With gain set to zero, full
- scale inputs are 2 Volts peak-to-peak differential. When set to 20 dB,
- only .2 V pk-pk differential is needed to reach full scale.
- </para>
- <para>
- If signals are AC-coupled, there is no need to provide DC bias as long as the
- internal buffer is turned on. It will provide an approximately 2V bias.
- If signals are DC-couple, a DC bias of Vdd/2 (1.65V) should be provided to
- both the positive and negative inputs, and the internal buffer should be turned off.
- VREF provides a clean 1 V reference.
- </para>
- <para>
- Each TX daughterboard has a pair of differential analog outputs which are
- updated at 128 MS/s. The signals (IOUTP_A/IOUTN_A and IOUTP_B/IOUTN_B) are
- current-output, each varying between 0 and 20 mA. Since they are high-impedance,
- they can be converted into differential voltages with a resistor.
- </para>
- <para>
- In addition to the high-speed signals, each daughterboard has exclusive access to 2 low-speed ADC inputs
- (labeled AUX_ADC_A and AUX_ADC_B) which can be read from software.
- These are useful for sensing RSSI signal levels, temperatures, bias
- levels, etc. Additionally, each board has shared access to 4 low-speed DAC
- signals, labeled AUX_DAC_A through AUX_DAC_D. RXA and TXA share one set
- of these 4 lines, and RXB and TXB share their own independent set. These
- signals are useful for controlling gain of variable-gain amplifiers, for example.
- AUX_ADC_REF provides a reference level for gain setting if it is necessary.
- </para>
-
- </sect2>
- <sect2 id="dig-int">
- <title>Digital Interface</title>
- <para></para>
- </sect2>
- <sect2 id="mech-int">
- <title>Connector Pinouts</title>
-
- <table frame='all'><title>RX DBoard Connector</title>
- <tgroup cols='3' align='left' colsep='1' rowsep='1'>
- <thead>
- <row>
- <entry>Pin #</entry>
- <entry>Name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>1</entry>
- <entry>power</entry>
- <entry>This is power</entry>
- </row>
- <row>
- <entry>c1</entry>
- <entry>c4</entry>
- </row>
- <row>
- <entry>d1</entry>
- <entry>d4</entry>
- <entry>d5</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </sect2>
- </sect1>
- <sect1 id="dboards">
- <title>Available Daughterboards</title>
- <sect2 id="basicrx">
- <title>BasicRX</title>
- <para>
- </para>
- </sect2>
- <sect2 id="basictx">
- <title>BasicTX</title>
- <para>
- </para>
- </sect2>
- </sect1>
-</article>
diff --git a/usrp/doc/usrp_rfx_diagrams.odp b/usrp/doc/usrp_rfx_diagrams.odp
deleted file mode 100644
index 4521f71ce..000000000
--- a/usrp/doc/usrp_rfx_diagrams.odp
+++ /dev/null
Binary files differ