--- /dev/null
+# Doxyfile 1.8.1
+
+# This file describes the settings to be used by the documentation system
+# doxygen (www.doxygen.org) for a project.
+#
+# All text after a hash (#) is considered a comment and will be ignored.
+# The format is:
+# TAG = value [value, ...]
+# For lists items can also be appended using:
+# TAG += value [value, ...]
+# Values that contain spaces should be placed between quotes (" ").
+
+#---------------------------------------------------------------------------
+# Project related configuration options
+#---------------------------------------------------------------------------
+
+# This tag specifies the encoding used for all characters in the config file
+# that follow. The default is UTF-8 which is also the encoding used for all
+# text before the first occurrence of this tag. Doxygen uses libiconv (or the
+# iconv built into libc) for the transcoding. See
+# http://www.gnu.org/software/libiconv for the list of possible encodings.
+
+DOXYFILE_ENCODING = UTF-8
+
+# The PROJECT_NAME tag is a single word (or sequence of words) that should
+# identify the project. Note that if you do not use Doxywizard you need
+# to put quotes around the project name if it contains spaces.
+
+PROJECT_NAME = RNAlib-2.1.2
+
+# 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 =
+
+# Using the PROJECT_BRIEF tag one can provide an optional one line description
+# for a project that appears at the top of each page and should give viewer
+# a quick idea about the purpose of the project. Keep the description short.
+
+PROJECT_BRIEF =
+
+# With the PROJECT_LOGO tag one can specify an logo or icon that is
+# included in the documentation. The maximum height of the logo should not
+# exceed 55 pixels and the maximum width should not exceed 200 pixels.
+# Doxygen will copy the logo to the output directory.
+
+PROJECT_LOGO =
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
+# base path where the generated documentation will be put.
+# If a relative path is entered, it will be relative to the location
+# where doxygen was started. If left blank the current directory will be used.
+
+OUTPUT_DIRECTORY = .
+
+# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
+# 4096 sub-directories (in 2 levels) under the output directory of each output
+# format and will distribute the generated files over these directories.
+# Enabling this option can be useful when feeding doxygen a huge amount of
+# source files, where putting all generated files in the same directory would
+# otherwise cause performance problems for the file system.
+
+CREATE_SUBDIRS = NO
+
+# The OUTPUT_LANGUAGE tag is used to specify the language in which all
+# documentation generated by doxygen is written. Doxygen will use this
+# information to generate all constant output in the proper language.
+# The default language is English, other supported languages are:
+# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
+# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
+# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
+# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
+# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
+# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
+
+OUTPUT_LANGUAGE = English
+
+# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
+# include brief member descriptions after the members that are listed in
+# the file and class documentation (similar to JavaDoc).
+# Set to NO to disable this.
+
+BRIEF_MEMBER_DESC = YES
+
+# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
+# the brief description of a member or function before the detailed description.
+# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
+# brief descriptions will be completely suppressed.
+
+REPEAT_BRIEF = YES
+
+# This tag implements a quasi-intelligent brief description abbreviator
+# that is used to form the text in various listings. Each string
+# in this list, if found as the leading text of the brief description, will be
+# stripped from the text and the result after processing the whole list, is
+# used as the annotated text. Otherwise, the brief description is used as-is.
+# If left blank, the following values are used ("$name" is automatically
+# replaced with the name of the entity): "The $name class" "The $name widget"
+# "The $name file" "is" "provides" "specifies" "contains"
+# "represents" "a" "an" "the"
+
+ABBREVIATE_BRIEF =
+
+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
+# Doxygen will generate a detailed section even if there is only a brief
+# description.
+
+ALWAYS_DETAILED_SEC = NO
+
+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
+# inherited members of a class in the documentation of that class as if those
+# members were ordinary class members. Constructors, destructors and assignment
+# operators of the base classes will not be shown.
+
+INLINE_INHERITED_MEMB = NO
+
+# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
+# path before files name in the file list and in the header files. If set
+# to NO the shortest path that makes the file name unique will be used.
+
+FULL_PATH_NAMES = YES
+
+# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
+# can be used to strip a user-defined part of the path. Stripping is
+# only done if one of the specified strings matches the left-hand part of
+# the path. The tag can be used to show relative paths in the file list.
+# If left blank the directory from which doxygen is run is used as the
+# path to strip.
+
+STRIP_FROM_PATH = .
+
+# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
+# the path mentioned in the documentation of a class, which tells
+# the reader which header file to include in order to use a class.
+# If left blank only the name of the header file containing the class
+# definition is used. Otherwise one should specify the include paths that
+# are normally passed to the compiler using the -I flag.
+
+STRIP_FROM_INC_PATH = .
+
+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
+# (but less readable) file names. This can be useful if your file system
+# doesn't support long names like on DOS, Mac, or CD-ROM.
+
+SHORT_NAMES = NO
+
+# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
+# will interpret the first line (until the first dot) of a JavaDoc-style
+# comment as the brief description. If set to NO, the JavaDoc
+# comments will behave just like regular Qt-style comments
+# (thus requiring an explicit @brief command for a brief description.)
+
+JAVADOC_AUTOBRIEF = NO
+
+# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
+# interpret the first line (until the first dot) of a Qt-style
+# comment as the brief description. If set to NO, the comments
+# will behave just like regular Qt-style comments (thus requiring
+# an explicit \brief command for a brief description.)
+
+QT_AUTOBRIEF = NO
+
+# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
+# treat a multi-line C++ special comment block (i.e. a block of //! or ///
+# comments) as a brief description. This used to be the default behaviour.
+# The new default is to treat a multi-line C++ comment block as a detailed
+# description. Set this tag to YES if you prefer the old behaviour instead.
+
+MULTILINE_CPP_IS_BRIEF = NO
+
+# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
+# member inherits the documentation from any documented member that it
+# re-implements.
+
+INHERIT_DOCS = YES
+
+# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
+# a new page for each member. If set to NO, the documentation of a member will
+# be part of the file/class/namespace that contains it.
+
+SEPARATE_MEMBER_PAGES = NO
+
+# The TAB_SIZE tag can be used to set the number of spaces in a tab.
+# Doxygen uses this value to replace tabs by spaces in code fragments.
+
+TAB_SIZE = 2
+
+# This tag can be used to specify a number of aliases that acts
+# as commands in the documentation. An alias has the form "name=value".
+# For example adding "sideeffect=\par Side Effects:\n" will allow you to
+# put the command \sideeffect (or @sideeffect) in the documentation, which
+# will result in a user-defined paragraph with heading "Side Effects:".
+# You can put \n's in the value part of an alias to insert newlines.
+
+ALIASES =
+
+# This tag can be used to specify a number of word-keyword mappings (TCL only).
+# A mapping has the form "name=value". For example adding
+# "class=itcl::class" will allow you to use the command class in the
+# itcl::class meaning.
+
+TCL_SUBST =
+
+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
+# sources only. Doxygen will then generate output that is more tailored for C.
+# For instance, some of the names that are used will be different. The list
+# of all members will be omitted, etc.
+
+OPTIMIZE_OUTPUT_FOR_C = YES
+
+# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
+# sources only. Doxygen will then generate output that is more tailored for
+# Java. For instance, namespaces will be presented as packages, qualified
+# scopes will look different, etc.
+
+OPTIMIZE_OUTPUT_JAVA = NO
+
+# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
+# sources only. Doxygen will then generate output that is more tailored for
+# Fortran.
+
+OPTIMIZE_FOR_FORTRAN = NO
+
+# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
+# sources. Doxygen will then generate output that is tailored for
+# VHDL.
+
+OPTIMIZE_OUTPUT_VHDL = NO
+
+# Doxygen selects the parser to use depending on the extension of the files it
+# parses. With this tag you can assign which parser to use for a given extension.
+# Doxygen has a built-in mapping, but you can override or extend it using this
+# tag. The format is ext=language, where ext is a file extension, and language
+# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
+# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
+# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
+# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
+# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
+
+EXTENSION_MAPPING =
+
+# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all
+# comments according to the Markdown format, which allows for more readable
+# documentation. See http://daringfireball.net/projects/markdown/ for details.
+# The output of markdown processing is further processed by doxygen, so you
+# can mix doxygen, HTML, and XML commands with Markdown formatting.
+# Disable only in case of backward compatibilities issues.
+
+MARKDOWN_SUPPORT = YES
+
+# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
+# to include (a tag file for) the STL sources as input, then you should
+# set this tag to YES in order to let doxygen match functions declarations and
+# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
+# func(std::string) {}). This also makes the inheritance and collaboration
+# diagrams that involve STL classes more complete and accurate.
+
+BUILTIN_STL_SUPPORT = NO
+
+# If you use Microsoft's C++/CLI language, you should set this option to YES to
+# enable parsing support.
+
+CPP_CLI_SUPPORT = NO
+
+# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
+# Doxygen will parse them like normal C++ but will assume all classes use public
+# instead of private inheritance when no explicit protection keyword is present.
+
+SIP_SUPPORT = NO
+
+# For Microsoft's IDL there are propget and propput attributes to indicate getter
+# and setter methods for a property. Setting this option to YES (the default)
+# will make doxygen replace the get and set methods by a property in the
+# documentation. This will only work if the methods are indeed getting or
+# setting a simple type. If this is not the case, or you want to show the
+# methods anyway, you should set this option to NO.
+
+IDL_PROPERTY_SUPPORT = NO
+
+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
+# tag is set to YES, then doxygen will reuse the documentation of the first
+# member in the group (if any) for the other members of the group. By default
+# all members of a group must be documented explicitly.
+
+DISTRIBUTE_GROUP_DOC = NO
+
+# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
+# the same type (for instance a group of public functions) to be put as a
+# subgroup of that type (e.g. under the Public Functions section). Set it to
+# NO to prevent subgrouping. Alternatively, this can be done per class using
+# the \nosubgrouping command.
+
+SUBGROUPING = YES
+
+# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and
+# unions are shown inside the group in which they are included (e.g. using
+# @ingroup) instead of on a separate page (for HTML and Man pages) or
+# section (for LaTeX and RTF).
+
+INLINE_GROUPED_CLASSES = NO
+
+# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and
+# unions with only public data fields will be shown inline in the documentation
+# of the scope in which they are defined (i.e. file, namespace, or group
+# documentation), provided this scope is documented. If set to NO (the default),
+# structs, classes, and unions are shown on a separate page (for HTML and Man
+# pages) or section (for LaTeX and RTF).
+
+INLINE_SIMPLE_STRUCTS = NO
+
+# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
+# is documented as struct, union, or enum with the name of the typedef. So
+# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
+# with name TypeT. When disabled the typedef will appear as a member of a file,
+# namespace, or class. And the struct will be named TypeS. This can typically
+# be useful for C code in case the coding convention dictates that all compound
+# types are typedef'ed and only the typedef is referenced, never the tag name.
+
+TYPEDEF_HIDES_STRUCT = YES
+
+# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
+# determine which symbols to keep in memory and which to flush to disk.
+# When the cache is full, less often used symbols will be written to disk.
+# For small to medium size projects (<1000 input files) the default value is
+# probably good enough. For larger projects a too small cache size can cause
+# doxygen to be busy swapping symbols to and from disk most of the time
+# causing a significant performance penalty.
+# If the system has enough physical memory increasing the cache will improve the
+# performance by keeping more symbols in memory. Note that the value works on
+# a logarithmic scale so increasing the size by one will roughly double the
+# memory usage. The cache size is given by this formula:
+# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
+# corresponding to a cache size of 2^16 = 65536 symbols.
+
+SYMBOL_CACHE_SIZE = 0
+
+# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be
+# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given
+# their name and scope. Since this can be an expensive process and often the
+# same symbol appear multiple times in the code, doxygen keeps a cache of
+# pre-resolved symbols. If the cache is too small doxygen will become slower.
+# If the cache is too large, memory is wasted. The cache size is given by this
+# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0,
+# corresponding to a cache size of 2^16 = 65536 symbols.
+
+LOOKUP_CACHE_SIZE = 0
+
+#---------------------------------------------------------------------------
+# Build related configuration options
+#---------------------------------------------------------------------------
+
+# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
+# documentation are documented, even if no documentation was available.
+# Private class members and static file members will be hidden unless
+# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
+
+EXTRACT_ALL = NO
+
+# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
+# will be included in the documentation.
+
+EXTRACT_PRIVATE = NO
+
+# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation.
+
+EXTRACT_PACKAGE = NO
+
+# If the EXTRACT_STATIC tag is set to YES all static members of a file
+# will be included in the documentation.
+
+EXTRACT_STATIC = NO
+
+# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
+# defined locally in source files will be included in the documentation.
+# If set to NO only classes defined in header files are included.
+
+EXTRACT_LOCAL_CLASSES = NO
+
+# This flag is only useful for Objective-C code. When set to YES local
+# methods, which are defined in the implementation section but not in
+# the interface are included in the documentation.
+# If set to NO (the default) only methods in the interface are included.
+
+EXTRACT_LOCAL_METHODS = NO
+
+# If this flag is set to YES, the members of anonymous namespaces will be
+# extracted and appear in the documentation as a namespace called
+# 'anonymous_namespace{file}', where file will be replaced with the base
+# name of the file that contains the anonymous namespace. By default
+# anonymous namespaces are hidden.
+
+EXTRACT_ANON_NSPACES = NO
+
+# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
+# undocumented members of documented classes, files or namespaces.
+# If set to NO (the default) these members will be included in the
+# various overviews, but no documentation section is generated.
+# This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_MEMBERS = YES
+
+# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
+# undocumented classes that are normally visible in the class hierarchy.
+# If set to NO (the default) these classes will be included in the various
+# overviews. This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_CLASSES = NO
+
+# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
+# friend (class|struct|union) declarations.
+# If set to NO (the default) these declarations will be included in the
+# documentation.
+
+HIDE_FRIEND_COMPOUNDS = NO
+
+# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
+# documentation blocks found inside the body of a function.
+# If set to NO (the default) these blocks will be appended to the
+# function's detailed documentation block.
+
+HIDE_IN_BODY_DOCS = NO
+
+# The INTERNAL_DOCS tag determines if documentation
+# that is typed after a \internal command is included. If the tag is set
+# to NO (the default) then the documentation will be excluded.
+# Set it to YES to include the internal documentation.
+
+INTERNAL_DOCS = NO
+
+# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
+# file names in lower-case letters. If set to YES upper-case letters are also
+# allowed. This is useful if you have classes or files whose names only differ
+# in case and if your file system supports case sensitive file names. Windows
+# and Mac users are advised to set this option to NO.
+
+CASE_SENSE_NAMES = YES
+
+# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
+# will show members with their full class and namespace scopes in the
+# documentation. If set to YES the scope will be hidden.
+
+HIDE_SCOPE_NAMES = NO
+
+# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
+# will put a list of the files that are included by a file in the documentation
+# of that file.
+
+SHOW_INCLUDE_FILES = NO
+
+# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
+# will list include files with double quotes in the documentation
+# rather than with sharp brackets.
+
+FORCE_LOCAL_INCLUDES = NO
+
+# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
+# is inserted in the documentation for inline members.
+
+INLINE_INFO = YES
+
+# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
+# will sort the (detailed) documentation of file and class members
+# alphabetically by member name. If set to NO the members will appear in
+# declaration order.
+
+SORT_MEMBER_DOCS = NO
+
+# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
+# brief documentation of file, namespace and class members alphabetically
+# by member name. If set to NO (the default) the members will appear in
+# declaration order.
+
+SORT_BRIEF_DOCS = NO
+
+# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
+# will sort the (brief and detailed) documentation of class members so that
+# constructors and destructors are listed first. If set to NO (the default)
+# the constructors will appear in the respective orders defined by
+# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
+# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
+# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
+
+SORT_MEMBERS_CTORS_1ST = NO
+
+# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
+# hierarchy of group names into alphabetical order. If set to NO (the default)
+# the group names will appear in their defined order.
+
+SORT_GROUP_NAMES = NO
+
+# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
+# sorted by fully-qualified names, including namespaces. If set to
+# NO (the default), the class list will be sorted only by class name,
+# not including the namespace part.
+# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
+# Note: This option applies only to the class list, not to the
+# alphabetical list.
+
+SORT_BY_SCOPE_NAME = NO
+
+# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to
+# do proper type resolution of all parameters of a function it will reject a
+# match between the prototype and the implementation of a member function even
+# if there is only one candidate or it is obvious which candidate to choose
+# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
+# will still accept a match between prototype and implementation in such cases.
+
+STRICT_PROTO_MATCHING = NO
+
+# The GENERATE_TODOLIST tag can be used to enable (YES) or
+# disable (NO) the todo list. This list is created by putting \todo
+# commands in the documentation.
+
+GENERATE_TODOLIST = YES
+
+# The GENERATE_TESTLIST tag can be used to enable (YES) or
+# disable (NO) the test list. This list is created by putting \test
+# commands in the documentation.
+
+GENERATE_TESTLIST = YES
+
+# The GENERATE_BUGLIST tag can be used to enable (YES) or
+# disable (NO) the bug list. This list is created by putting \bug
+# commands in the documentation.
+
+GENERATE_BUGLIST = YES
+
+# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
+# disable (NO) the deprecated list. This list is created by putting
+# \deprecated commands in the documentation.
+
+GENERATE_DEPRECATEDLIST= YES
+
+# The ENABLED_SECTIONS tag can be used to enable conditional
+# documentation sections, marked by \if sectionname ... \endif.
+
+ENABLED_SECTIONS =
+
+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
+# the initial value of a variable or macro consists of for it to appear in
+# the documentation. If the initializer consists of more lines than specified
+# here it will be hidden. Use a value of 0 to hide initializers completely.
+# The appearance of the initializer of individual variables and macros in the
+# documentation can be controlled using \showinitializer or \hideinitializer
+# command in the documentation regardless of this setting.
+
+MAX_INITIALIZER_LINES = 30
+
+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
+# at the bottom of the documentation of classes and structs. If set to YES the
+# list will mention the files that were used to generate the documentation.
+
+SHOW_USED_FILES = YES
+
+# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
+# This will remove the Files entry from the Quick Index and from the
+# Folder Tree View (if specified). The default is YES.
+
+SHOW_FILES = YES
+
+# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
+# Namespaces page.
+# This will remove the Namespaces entry from the Quick Index
+# and from the Folder Tree View (if specified). The default is YES.
+
+SHOW_NAMESPACES = YES
+
+# The FILE_VERSION_FILTER tag can be used to specify a program or script that
+# doxygen should invoke to get the current version for each file (typically from
+# the version control system). Doxygen will invoke the program by executing (via
+# popen()) the command <command> <input-file>, where <command> is the value of
+# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
+# provided by doxygen. Whatever the program writes to standard output
+# is used as the file version. See the manual for examples.
+
+FILE_VERSION_FILTER =
+
+# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
+# by doxygen. The layout file controls the global structure of the generated
+# output files in an output format independent way. The create the layout file
+# that represents doxygen's defaults, run doxygen with the -l option.
+# You can optionally specify a file name after the option, if omitted
+# DoxygenLayout.xml will be used as the name of the layout file.
+
+LAYOUT_FILE =
+
+# The CITE_BIB_FILES tag can be used to specify one or more bib files
+# containing the references data. This must be a list of .bib files. The
+# .bib extension is automatically appended if omitted. Using this command
+# requires the bibtex tool to be installed. See also
+# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style
+# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this
+# feature you need bibtex and perl available in the search path.
+
+CITE_BIB_FILES = viennarna.bib
+
+#---------------------------------------------------------------------------
+# configuration options related to warning and progress messages
+#---------------------------------------------------------------------------
+
+# The QUIET tag can be used to turn on/off the messages that are generated
+# by doxygen. Possible values are YES and NO. If left blank NO is used.
+
+QUIET = YES
+
+# The WARNINGS tag can be used to turn on/off the warning messages that are
+# generated by doxygen. Possible values are YES and NO. If left blank
+# NO is used.
+
+WARNINGS = YES
+
+# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
+# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
+# automatically be disabled.
+
+WARN_IF_UNDOCUMENTED = YES
+
+# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
+# potential errors in the documentation, such as not documenting some
+# parameters in a documented function, or documenting parameters that
+# don't exist or using markup commands wrongly.
+
+WARN_IF_DOC_ERROR = YES
+
+# The WARN_NO_PARAMDOC option can be enabled to get warnings for
+# functions that are documented, but have no documentation for their parameters
+# or return value. If set to NO (the default) doxygen will only warn about
+# wrong or incomplete parameter documentation, but not about the absence of
+# documentation.
+
+WARN_NO_PARAMDOC = NO
+
+# The WARN_FORMAT tag determines the format of the warning messages that
+# doxygen can produce. The string should contain the $file, $line, and $text
+# tags, which will be replaced by the file and line number from which the
+# warning originated and the warning text. Optionally the format may contain
+# $version, which will be replaced by the version of the file (if it could
+# be obtained via FILE_VERSION_FILTER)
+
+WARN_FORMAT = "$file:$line: $text"
+
+# The WARN_LOGFILE tag can be used to specify a file to which warning
+# and error messages should be written. If left blank the output is written
+# to stderr.
+
+WARN_LOGFILE =
+
+#---------------------------------------------------------------------------
+# configuration options related to the input files
+#---------------------------------------------------------------------------
+
+# The INPUT tag can be used to specify the files and/or directories that contain
+# documented source files. You may enter file names like "myfile.cpp" or
+# directories like "/usr/src/myproject". Separate the files or directories
+# with spaces.
+
+INPUT = mainpage.h ../H ../lib
+
+# This tag can be used to specify the character encoding of the source files
+# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
+# also the default input encoding. Doxygen uses libiconv (or the iconv built
+# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
+# the list of possible encodings.
+
+INPUT_ENCODING = UTF-8
+
+# If the value of the INPUT tag contains directories, you can use the
+# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
+# and *.h) to filter out the source-files in the directories. If left
+# blank the following patterns are tested:
+# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh
+# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
+# *.f90 *.f *.for *.vhd *.vhdl
+
+FILE_PATTERNS = *.h
+
+# The RECURSIVE tag can be used to turn specify whether or not subdirectories
+# should be searched for input files as well. Possible values are YES and NO.
+# If left blank NO is used.
+
+RECURSIVE = NO
+
+# The EXCLUDE tag can be used to specify files and/or directories that should be
+# excluded from the INPUT source files. This way you can easily exclude a
+# subdirectory from a directory tree whose root is specified with the INPUT tag.
+# Note that relative paths are relative to the directory from which doxygen is
+# run.
+
+EXCLUDE =
+
+# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
+# directories that are symbolic links (a Unix file system feature) are excluded
+# from the input.
+
+EXCLUDE_SYMLINKS = NO
+
+# If the value of the INPUT tag contains directories, you can use the
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
+# certain files from those directories. Note that the wildcards are matched
+# against the file with absolute path, so to exclude all test directories
+# for example use the pattern */test/*
+
+EXCLUDE_PATTERNS =
+
+# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
+# (namespaces, classes, functions, etc.) that should be excluded from the
+# output. The symbol name can be a fully qualified name, a word, or if the
+# wildcard * is used, a substring. Examples: ANamespace, AClass,
+# AClass::ANamespace, ANamespace::*Test
+
+EXCLUDE_SYMBOLS =
+
+# The EXAMPLE_PATH tag can be used to specify one or more files or
+# directories that contain example code fragments that are included (see
+# the \include command).
+
+EXAMPLE_PATH = .
+
+# If the value of the EXAMPLE_PATH tag contains directories, you can use the
+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
+# and *.h) to filter out the source-files in the directories. If left
+# blank all files are included.
+
+EXAMPLE_PATTERNS =
+
+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
+# searched for input files to be used with the \include or \dontinclude
+# commands irrespective of the value of the RECURSIVE tag.
+# Possible values are YES and NO. If left blank NO is used.
+
+EXAMPLE_RECURSIVE = NO
+
+# The IMAGE_PATH tag can be used to specify one or more files or
+# directories that contain image that are included in the documentation (see
+# the \image command).
+
+IMAGE_PATH =
+
+# The INPUT_FILTER tag can be used to specify a program that doxygen should
+# invoke to filter for each input file. Doxygen will invoke the filter program
+# by executing (via popen()) the command <filter> <input-file>, where <filter>
+# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
+# input file. Doxygen will then use the output that the filter program writes
+# to standard output.
+# If FILTER_PATTERNS is specified, this tag will be
+# ignored.
+
+INPUT_FILTER =
+
+# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
+# basis.
+# Doxygen will compare the file name with each pattern and apply the
+# filter if there is a match.
+# The filters are a list of the form:
+# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
+# info on how filters are used. If FILTER_PATTERNS is empty or if
+# non of the patterns match the file name, INPUT_FILTER is applied.
+
+FILTER_PATTERNS =
+
+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
+# INPUT_FILTER) will be used to filter the input files when producing source
+# files to browse (i.e. when SOURCE_BROWSER is set to YES).
+
+FILTER_SOURCE_FILES = NO
+
+# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
+# pattern. A pattern will override the setting for FILTER_PATTERN (if any)
+# and it is also possible to disable source filtering for a specific pattern
+# using *.ext= (so without naming a filter). This option only has effect when
+# FILTER_SOURCE_FILES is enabled.
+
+FILTER_SOURCE_PATTERNS =
+
+#---------------------------------------------------------------------------
+# configuration options related to source browsing
+#---------------------------------------------------------------------------
+
+# If the SOURCE_BROWSER tag is set to YES then a list of source files will
+# be generated. Documented entities will be cross-referenced with these sources.
+# Note: To get rid of all source code in the generated output, make sure also
+# VERBATIM_HEADERS is set to NO.
+
+SOURCE_BROWSER = 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
+# then for each documented function all documented
+# functions referencing it will be listed.
+
+REFERENCED_BY_RELATION = NO
+
+# If the REFERENCES_RELATION tag is set to YES
+# then for each documented function all documented entities
+# called/used by that function will be listed.
+
+REFERENCES_RELATION = NO
+
+# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
+# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
+# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
+# link to the source code.
+# Otherwise they will link to the documentation.
+
+REFERENCES_LINK_SOURCE = YES
+
+# If the USE_HTAGS tag is set to YES then the references to source code
+# will point to the HTML generated by the htags(1) tool instead of doxygen
+# built-in source browser. The htags tool is part of GNU's global source
+# tagging system (see http://www.gnu.org/software/global/global.html). You
+# will need version 4.8.6 or higher.
+
+USE_HTAGS = NO
+
+# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
+# will generate a verbatim copy of the header file for each class for
+# which an include is specified. Set to NO to disable this.
+
+VERBATIM_HEADERS = YES
+
+#---------------------------------------------------------------------------
+# configuration options related to the alphabetical class index
+#---------------------------------------------------------------------------
+
+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
+# of all compounds will be generated. Enable this if the project
+# contains a lot of classes, structs, unions or interfaces.
+
+ALPHABETICAL_INDEX = YES
+
+# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
+# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
+# in which this list will be split (can be a number in the range [1..20])
+
+COLS_IN_ALPHA_INDEX = 5
+
+# In case all classes in a project start with a common prefix, all
+# classes will be put under the same header in the alphabetical index.
+# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
+# should be ignored while generating the index headers.
+
+IGNORE_PREFIX =
+
+#---------------------------------------------------------------------------
+# configuration options related to the HTML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
+# generate HTML output.
+
+GENERATE_HTML = YES
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be
+# put in front of it. If left blank `html' will be used as the default path.
+
+HTML_OUTPUT = html
+
+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
+# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
+# doxygen will generate files with .html extension.
+
+HTML_FILE_EXTENSION = .html
+
+# The HTML_HEADER tag can be used to specify a personal HTML header for
+# each generated HTML page. If it is left blank doxygen will generate a
+# standard header. Note that when using a custom header you are responsible
+# for the proper inclusion of any scripts and style sheets that doxygen
+# needs, which is dependent on the configuration options used.
+# It is advised to generate a default header using "doxygen -w html
+# header.html footer.html stylesheet.css YourConfigFile" and then modify
+# that header. Note that the header is subject to change so you typically
+# have to redo this when upgrading to a newer version of doxygen or when
+# changing the value of configuration settings such as GENERATE_TREEVIEW!
+
+HTML_HEADER =
+
+# The HTML_FOOTER tag can be used to specify a personal HTML footer for
+# each generated HTML page. If it is left blank doxygen will generate a
+# standard footer.
+
+HTML_FOOTER =
+
+# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
+# style sheet that is used by each HTML page. It can be used to
+# fine-tune the look of the HTML output. If 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
+# style sheet in the HTML output directory as well, or it will be erased!
+
+HTML_STYLESHEET =
+
+# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
+# other source files which should be copied to the HTML output directory. Note
+# that these files will be copied to the base HTML output directory. Use the
+# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
+# files. In the HTML_STYLESHEET file, use the file name only. Also note that
+# the files will be copied as-is; there are no commands or markers available.
+
+HTML_EXTRA_FILES =
+
+# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
+# Doxygen will adjust the colors in the style sheet and background images
+# according to this color. Hue is specified as an angle on a colorwheel,
+# see http://en.wikipedia.org/wiki/Hue for more information.
+# For instance the value 0 represents red, 60 is yellow, 120 is green,
+# 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
+# The allowed range is 0 to 359.
+
+HTML_COLORSTYLE_HUE = 220
+
+# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
+# the colors in the HTML output. For a value of 0 the output will use
+# grayscales only. A value of 255 will produce the most vivid colors.
+
+HTML_COLORSTYLE_SAT = 100
+
+# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
+# the luminance component of the colors in the HTML output. Values below
+# 100 gradually make the output lighter, whereas values above 100 make
+# the output darker. The value divided by 100 is the actual gamma applied,
+# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
+# and 100 does not change the gamma.
+
+HTML_COLORSTYLE_GAMMA = 80
+
+# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
+# page will contain the date and time when the page was generated. Setting
+# this to NO can help when comparing the output of multiple runs.
+
+HTML_TIMESTAMP = YES
+
+# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
+# documentation will contain sections that can be hidden and shown after the
+# page has loaded. For this to work a browser that supports
+# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
+# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
+
+HTML_DYNAMIC_SECTIONS = YES
+
+# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of
+# entries shown in the various tree structured indices initially; the user
+# can expand and collapse entries dynamically later on. Doxygen will expand
+# the tree to such a level that at most the specified number of entries are
+# visible (unless a fully collapsed tree already exceeds this amount).
+# So setting the number of entries 1 will produce a full collapsed tree by
+# default. 0 is a special value representing an infinite number of entries
+# and will result in a full expanded tree by default.
+
+HTML_INDEX_NUM_ENTRIES = 100
+
+# If the GENERATE_DOCSET tag is set to YES, additional index files
+# will be generated that can be used as input for Apple's Xcode 3
+# integrated development environment, introduced with OSX 10.5 (Leopard).
+# To create a documentation set, doxygen will generate a Makefile in the
+# HTML output directory. Running make will produce the docset in that
+# directory and running "make install" will install the docset in
+# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
+# it at startup.
+# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
+# for more information.
+
+GENERATE_DOCSET = NO
+
+# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
+# feed. A documentation feed provides an umbrella under which multiple
+# documentation sets from a single provider (such as a company or product suite)
+# can be grouped.
+
+DOCSET_FEEDNAME = "Doxygen generated docs"
+
+# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
+# should uniquely identify the documentation set bundle. This should be a
+# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
+# will append .docset to the name.
+
+DOCSET_BUNDLE_ID = org.doxygen.Project
+
+# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
+# the documentation publisher. This should be a reverse domain-name style
+# string, e.g. com.mycompany.MyDocSet.documentation.
+
+DOCSET_PUBLISHER_ID = org.doxygen.Publisher
+
+# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
+
+DOCSET_PUBLISHER_NAME = Publisher
+
+# If the GENERATE_HTMLHELP tag is set to YES, additional index files
+# will be generated that can be used as input for tools like the
+# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
+# of the generated HTML documentation.
+
+GENERATE_HTMLHELP = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
+# be used to specify the file name of the resulting .chm file. You
+# can add a path in front of the file if the result should not be
+# written to the html output directory.
+
+CHM_FILE = RNAlib-2.1.2.chm
+
+# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
+# be used to specify the location (absolute path including file name) of
+# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
+# the HTML help compiler on the generated index.hhp.
+
+HHC_LOCATION =
+
+# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
+# controls if a separate .chi index file is generated (YES) or that
+# it should be included in the master .chm file (NO).
+
+GENERATE_CHI = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
+# is used to encode HtmlHelp index (hhk), content (hhc) and project file
+# content.
+
+CHM_INDEX_ENCODING =
+
+# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
+# controls whether a binary table of contents is generated (YES) or a
+# normal table of contents (NO) in the .chm file.
+
+BINARY_TOC = NO
+
+# The TOC_EXPAND flag can be set to YES to add extra items for group members
+# to the contents of the HTML help documentation and to the tree view.
+
+TOC_EXPAND = NO
+
+# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
+# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
+# that can be used as input for Qt's qhelpgenerator to generate a
+# Qt Compressed Help (.qch) of the generated HTML documentation.
+
+GENERATE_QHP = NO
+
+# If the QHG_LOCATION tag is specified, the QCH_FILE tag can
+# be used to specify the file name of the resulting .qch file.
+# The path specified is relative to the HTML output folder.
+
+QCH_FILE =
+
+# The QHP_NAMESPACE tag specifies the namespace to use when generating
+# Qt Help Project output. For more information please see
+# http://doc.trolltech.com/qthelpproject.html#namespace
+
+QHP_NAMESPACE = org.doxygen.Project
+
+# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
+# Qt Help Project output. For more information please see
+# http://doc.trolltech.com/qthelpproject.html#virtual-folders
+
+QHP_VIRTUAL_FOLDER = doc
+
+# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
+# add. For more information please see
+# http://doc.trolltech.com/qthelpproject.html#custom-filters
+
+QHP_CUST_FILTER_NAME =
+
+# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
+# custom filter to add. For more information please see
+# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">
+# Qt Help Project / Custom Filters</a>.
+
+QHP_CUST_FILTER_ATTRS =
+
+# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
+# project's
+# filter section matches.
+# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">
+# Qt Help Project / Filter Attributes</a>.
+
+QHP_SECT_FILTER_ATTRS =
+
+# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
+# be used to specify the location of Qt's qhelpgenerator.
+# If non-empty doxygen will try to run qhelpgenerator on the generated
+# .qhp file.
+
+QHG_LOCATION =
+
+# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
+# will be generated, which together with the HTML files, form an Eclipse help
+# plugin. To install this plugin and make it available under the help contents
+# menu in Eclipse, the contents of the directory containing the HTML and XML
+# files needs to be copied into the plugins directory of eclipse. The name of
+# the directory within the plugins directory should be the same as
+# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
+# the help appears.
+
+GENERATE_ECLIPSEHELP = NO
+
+# A unique identifier for the eclipse help plugin. When installing the plugin
+# the directory name containing the HTML and XML files should also have
+# this name.
+
+ECLIPSE_DOC_ID = org.doxygen.Project
+
+# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs)
+# at top of each HTML page. The value NO (the default) enables the index and
+# the value YES disables it. Since the tabs have the same information as the
+# navigation tree you can set this option to NO if you already set
+# GENERATE_TREEVIEW to YES.
+
+DISABLE_INDEX = NO
+
+# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
+# structure should be generated to display hierarchical information.
+# If the tag value is set to YES, a side panel will be generated
+# containing a tree-like index structure (just like the one that
+# is generated for HTML Help). For this to work a browser that supports
+# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
+# Windows users are probably better off using the HTML help feature.
+# Since the tree basically has the same information as the tab index you
+# could consider to set DISABLE_INDEX to NO when enabling this option.
+
+GENERATE_TREEVIEW = YES
+
+# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
+# (range [0,1..20]) that doxygen will group on one line in the generated HTML
+# documentation. Note that a value of 0 will completely suppress the enum
+# values from appearing in the overview section.
+
+ENUM_VALUES_PER_LINE = 4
+
+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
+# used to set the initial width (in pixels) of the frame in which the tree
+# is shown.
+
+TREEVIEW_WIDTH = 250
+
+# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
+# links to external symbols imported via tag files in a separate window.
+
+EXT_LINKS_IN_WINDOW = NO
+
+# Use this tag to change the font size of Latex formulas included
+# as images in the HTML documentation. The default is 10. Note that
+# when you change the font size after a successful doxygen run you need
+# to manually remove any form_*.png images from the HTML output directory
+# to force them to be regenerated.
+
+FORMULA_FONTSIZE = 10
+
+# Use the FORMULA_TRANPARENT tag to determine whether or not the images
+# generated for formulas are transparent PNGs. Transparent PNGs are
+# not supported properly for IE 6.0, but are supported on all modern browsers.
+# Note that when changing this option you need to delete any form_*.png files
+# in the HTML output before the changes have effect.
+
+FORMULA_TRANSPARENT = YES
+
+# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax
+# (see http://www.mathjax.org) which uses client side Javascript for the
+# rendering instead of using prerendered bitmaps. Use this if you do not
+# have LaTeX installed or if you want to formulas look prettier in the HTML
+# output. When enabled you may also need to install MathJax separately and
+# configure the path to it using the MATHJAX_RELPATH option.
+
+USE_MATHJAX = NO
+
+# When MathJax is enabled you need to specify the location relative to the
+# HTML output directory using the MATHJAX_RELPATH option. The destination
+# directory should contain the MathJax.js script. For instance, if the mathjax
+# directory is located at the same level as the HTML output directory, then
+# MATHJAX_RELPATH should be ../mathjax. The default value points to
+# the MathJax Content Delivery Network so you can quickly see the result without
+# installing MathJax.
+# However, it is strongly recommended to install a local
+# copy of MathJax from http://www.mathjax.org before deployment.
+
+MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
+
+# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension
+# names that should be enabled during MathJax rendering.
+
+MATHJAX_EXTENSIONS =
+
+# When the SEARCHENGINE tag is enabled doxygen will generate a search box
+# for the HTML output. The underlying search engine uses javascript
+# and DHTML and should work on any modern browser. Note that when using
+# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
+# (GENERATE_DOCSET) there is already a search function so this one should
+# typically be disabled. For large projects the javascript based search engine
+# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
+
+SEARCHENGINE = NO
+
+# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
+# implemented using a PHP enabled web server instead of at the web client
+# using Javascript. Doxygen will generate the search PHP script and index
+# file to put on the web server. The advantage of the server
+# based approach is that it scales better to large projects and allows
+# full text search. The disadvantages are that it is more difficult to setup
+# and does not have live searching capabilities.
+
+SERVER_BASED_SEARCH = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the LaTeX output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
+# generate Latex output.
+
+GENERATE_LATEX = YES
+
+# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be
+# put in front of it. If left blank `latex' will be used as the default path.
+
+LATEX_OUTPUT = latex
+
+# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
+# invoked. If left blank `latex' will be used as the default command name.
+# Note that when enabling USE_PDFLATEX this option is only used for
+# generating bitmaps for formulas in the HTML output, but not in the
+# Makefile that is written to the output directory.
+
+LATEX_CMD_NAME = /usr/bin/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 = /usr/bin/makeindex
+
+# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
+# LaTeX documents. This may be useful for small projects and may help to
+# save some trees in general.
+
+COMPACT_LATEX = NO
+
+# The PAPER_TYPE tag can be used to set the paper type that is used
+# by the printer. Possible values are: a4, letter, legal and
+# executive. If left blank a4wide will be used.
+
+PAPER_TYPE = a4
+
+# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
+# packages that should be included in the LaTeX output.
+
+EXTRA_PACKAGES =
+
+# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
+# the generated latex document. The header should contain everything until
+# the first chapter. If it is left blank doxygen will generate a
+# standard header. Notice: only use this tag if you know what you are doing!
+
+LATEX_HEADER =
+
+# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
+# the generated latex document. The footer should contain everything after
+# the last chapter. If it is left blank doxygen will generate a
+# standard footer. Notice: only use this tag if you know what you are doing!
+
+LATEX_FOOTER =
+
+# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
+# is prepared for conversion to pdf (using ps2pdf). The pdf file will
+# contain links (just like the HTML output) instead of page references
+# This makes the output suitable for online browsing using a pdf viewer.
+
+PDF_HYPERLINKS = YES
+
+# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
+# plain latex in the generated Makefile. Set this option to YES to get a
+# higher quality PDF documentation.
+
+USE_PDFLATEX = YES
+
+# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
+# command to the generated LaTeX files. This will instruct LaTeX to keep
+# running if errors occur, instead of asking the user for help.
+# This option is also used when generating formulas in HTML.
+
+LATEX_BATCHMODE = YES
+
+# If LATEX_HIDE_INDICES is set to YES then doxygen will not
+# include the index chapters (such as File Index, Compound Index, etc.)
+# in the output.
+
+LATEX_HIDE_INDICES = NO
+
+# If LATEX_SOURCE_CODE is set to YES then doxygen will include
+# source code with syntax highlighting in the LaTeX output.
+# Note that which sources are shown also depends on other settings
+# such as SOURCE_BROWSER.
+
+LATEX_SOURCE_CODE = YES
+
+# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
+# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See
+# http://en.wikipedia.org/wiki/BibTeX for more info.
+
+LATEX_BIB_STYLE = plain
+
+#---------------------------------------------------------------------------
+# configuration options related to the RTF output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
+# The RTF output is optimized for Word 97 and may not look very pretty with
+# other RTF readers or editors.
+
+GENERATE_RTF = NO
+
+# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be
+# put in front of it. If left blank `rtf' will be used as the default path.
+
+RTF_OUTPUT = rtf
+
+# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
+# RTF documents. This may be useful for small projects and may help to
+# save some trees in general.
+
+COMPACT_RTF = NO
+
+# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
+# will contain hyperlink fields. The RTF file will
+# contain links (just like the HTML output) instead of page references.
+# This makes the output suitable for online browsing using WORD or other
+# programs which support those fields.
+# Note: wordpad (write) and others do not support links.
+
+RTF_HYPERLINKS = NO
+
+# Load style sheet definitions from file. Syntax is similar to doxygen's
+# config file, i.e. a series of assignments. You only have to provide
+# replacements, missing definitions are set to their default value.
+
+RTF_STYLESHEET_FILE =
+
+# Set optional variables used in the generation of an rtf document.
+# Syntax is similar to doxygen's config file.
+
+RTF_EXTENSIONS_FILE =
+
+#---------------------------------------------------------------------------
+# configuration options related to the man page output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
+# generate man pages
+
+GENERATE_MAN = NO
+
+# The MAN_OUTPUT tag is used to specify where the man pages will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be
+# put in front of it. If left blank `man' will be used as the default path.
+
+MAN_OUTPUT = man
+
+# The MAN_EXTENSION tag determines the extension that is added to
+# the generated man pages (default is the subroutine's section .3)
+
+MAN_EXTENSION = .3
+
+# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
+# then it will generate one additional man file for each entity
+# documented in the real man page(s). These additional files
+# only source the real man page, but without them the man command
+# would be unable to find the correct page. The default is NO.
+
+MAN_LINKS = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the XML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_XML tag is set to YES Doxygen will
+# generate an XML file that captures the structure of
+# the code including all documentation.
+
+GENERATE_XML = NO
+
+# The XML_OUTPUT tag is used to specify where the XML pages will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be
+# put in front of it. If left blank `xml' will be used as the default path.
+
+XML_OUTPUT = xml
+
+# The XML_SCHEMA tag can be used to specify an XML schema,
+# which can be used by a validating XML parser to check the
+# syntax of the XML files.
+
+XML_SCHEMA =
+
+# The XML_DTD tag can be used to specify an XML DTD,
+# which can be used by a validating XML parser to check the
+# syntax of the XML files.
+
+XML_DTD =
+
+# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
+# dump the program listings (including syntax highlighting
+# and cross-referencing information) to the XML output. Note that
+# enabling this will significantly increase the size of the XML output.
+
+XML_PROGRAMLISTING = YES
+
+#---------------------------------------------------------------------------
+# configuration options for the AutoGen Definitions output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
+# generate an AutoGen Definitions (see autogen.sf.net) file
+# that captures the structure of the code including all
+# documentation. Note that this feature is still experimental
+# and incomplete at the moment.
+
+GENERATE_AUTOGEN_DEF = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the Perl module output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_PERLMOD tag is set to YES Doxygen will
+# generate a Perl module file that captures the structure of
+# the code including all documentation. Note that this
+# feature is still experimental and incomplete at the
+# moment.
+
+GENERATE_PERLMOD = NO
+
+# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
+# the necessary Makefile rules, Perl scripts and LaTeX code to be able
+# to generate PDF and DVI output from the Perl module output.
+
+PERLMOD_LATEX = NO
+
+# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
+# nicely formatted so it can be parsed by a human reader.
+# This is useful
+# if you want to understand what is going on.
+# On the other hand, if this
+# tag is set to NO the size of the Perl module output will be much smaller
+# and Perl will parse it just the same.
+
+PERLMOD_PRETTY = YES
+
+# The names of the make variables in the generated doxyrules.make file
+# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
+# This is useful so different doxyrules.make files included by the same
+# Makefile don't overwrite each other's variables.
+
+PERLMOD_MAKEVAR_PREFIX =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the preprocessor
+#---------------------------------------------------------------------------
+
+# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
+# evaluate all C-preprocessor directives found in the sources and include
+# files.
+
+ENABLE_PREPROCESSING = YES
+
+# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
+# names in the source code. If set to NO (the default) only conditional
+# compilation will be performed. Macro expansion can be done in a controlled
+# way by setting EXPAND_ONLY_PREDEF to YES.
+
+MACRO_EXPANSION = YES
+
+# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
+# then the macro expansion is limited to the macros specified with the
+# PREDEFINED and EXPAND_AS_DEFINED tags.
+
+EXPAND_ONLY_PREDEF = YES
+
+# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
+# pointed to by INCLUDE_PATH will be searched when a #include is found.
+
+SEARCH_INCLUDES = YES
+
+# The INCLUDE_PATH tag can be used to specify one or more directories that
+# contain include files that are not input files but should be processed by
+# the preprocessor.
+
+INCLUDE_PATH =
+
+# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
+# patterns (like *.h and *.hpp) to filter out the header-files in the
+# directories. If left blank, the patterns specified with FILE_PATTERNS will
+# be used.
+
+INCLUDE_FILE_PATTERNS =
+
+# The PREDEFINED tag can be used to specify one or more macro names that
+# are defined before the preprocessor is started (similar to the -D option of
+# gcc). The argument of the tag is a list of macros of the form: name
+# or name=definition (no spaces). If the definition and the = are
+# omitted =1 is assumed. To prevent a macro definition from being
+# undefined via #undef or recursively expanded use the := operator
+# instead of the = operator.
+
+PREDEFINED =
+
+# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
+# this tag can be used to specify a list of macro names that should be expanded.
+# The macro definition that is found in the sources will be used.
+# Use the PREDEFINED tag if you want to use a different macro definition that
+# overrules the definition found in the source code.
+
+EXPAND_AS_DEFINED = DEPRECATED INLINE PUBLIC FLT_OR_DBL
+
+# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
+# doxygen's preprocessor will remove all references to function-like macros
+# that are alone on a line, have an all uppercase name, and do not end with a
+# semicolon, because these will confuse the parser if not removed.
+
+SKIP_FUNCTION_MACROS = YES
+
+#---------------------------------------------------------------------------
+# Configuration::additions related to external references
+#---------------------------------------------------------------------------
+
+# The TAGFILES option can be used to specify one or more tagfiles. For each
+# tag file the location of the external documentation should be added. The
+# format of a tag file without this location is as follows:
+#
+# TAGFILES = file1 file2 ...
+# Adding location for the tag files is done as follows:
+#
+# TAGFILES = file1=loc1 "file2 = loc2" ...
+# where "loc1" and "loc2" can be relative or absolute paths
+# or URLs. Note that each tag file must have a unique name (where the name does
+# NOT include the path). If a tag file is not located in the directory in which
+# doxygen is run, you must also specify the path to the tagfile here.
+
+TAGFILES =
+
+# When a file name is specified after GENERATE_TAGFILE, doxygen will create
+# a tag file that is based on the input files it reads.
+
+GENERATE_TAGFILE = RNAlib-2.1.2.tag
+
+# If the ALLEXTERNALS tag is set to YES all external classes will be listed
+# in the class index. If set to NO only the inherited external classes
+# will be listed.
+
+ALLEXTERNALS = NO
+
+# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
+# in the modules index. If set to NO, only the current project's groups will
+# be listed.
+
+EXTERNAL_GROUPS = YES
+
+# The PERL_PATH should be the absolute path and name of the perl script
+# interpreter (i.e. the result of `which perl').
+
+PERL_PATH = /usr/bin/perl
+
+#---------------------------------------------------------------------------
+# Configuration options related to the dot tool
+#---------------------------------------------------------------------------
+
+# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
+# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
+# or super classes. Setting the tag to NO turns the diagrams off. Note that
+# this option also works with HAVE_DOT disabled, but it is recommended to
+# install and use dot, since it yields more powerful graphs.
+
+CLASS_DIAGRAMS = YES
+
+# You can define message sequence charts within doxygen comments using the \msc
+# command. Doxygen will then run the mscgen tool (see
+# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
+# documentation. The MSCGEN_PATH tag allows you to specify the directory where
+# the mscgen tool resides. If left empty the tool is assumed to be found in the
+# default search path.
+
+MSCGEN_PATH =
+
+# If set to YES, the inheritance and collaboration graphs will hide
+# inheritance and usage relations if the target is undocumented
+# or is not a class.
+
+HIDE_UNDOC_RELATIONS = YES
+
+# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
+# available from the path. This tool is part of Graphviz, a graph visualization
+# toolkit from AT&T and Lucent Bell Labs. The other options in this section
+# have no effect if this option is set to NO (the default)
+
+HAVE_DOT = YES
+
+# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
+# allowed to run in parallel. When set to 0 (the default) doxygen will
+# base this on the number of processors available in the system. You can set it
+# explicitly to a value larger than 0 to get control over the balance
+# between CPU load and processing speed.
+
+DOT_NUM_THREADS = 0
+
+# By default doxygen will use the Helvetica font for all dot files that
+# doxygen generates. When you want a differently looking font you can specify
+# the font name using DOT_FONTNAME. You need to make sure dot is able to find
+# the font, which can be done by putting it in a standard location or by setting
+# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
+# directory containing the font.
+
+DOT_FONTNAME = FreeSans
+
+# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
+# The default size is 10pt.
+
+DOT_FONTSIZE = 10
+
+# By default doxygen will tell dot to use the Helvetica font.
+# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to
+# set the path where dot can find it.
+
+DOT_FONTPATH =
+
+# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
+# will generate a graph for each documented class showing the direct and
+# indirect inheritance relations. Setting this tag to YES will force the
+# CLASS_DIAGRAMS tag to NO.
+
+CLASS_GRAPH = YES
+
+# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
+# will generate a graph for each documented class showing the direct and
+# indirect implementation dependencies (inheritance, containment, and
+# class references variables) of the class with other documented classes.
+
+COLLABORATION_GRAPH = YES
+
+# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
+# will generate a graph for groups, showing the direct groups dependencies
+
+GROUP_GRAPHS = YES
+
+# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
+# collaboration diagrams in a style similar to the OMG's Unified Modeling
+# Language.
+
+UML_LOOK = NO
+
+# If the UML_LOOK tag is enabled, the fields and methods are shown inside
+# the class node. If there are many fields or methods and many nodes the
+# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
+# threshold limits the number of items for each type to make the size more
+# managable. Set this to 0 for no limit. Note that the threshold may be
+# exceeded by 50% before the limit is enforced.
+
+UML_LIMIT_NUM_FIELDS = 10
+
+# If set to YES, the inheritance and collaboration graphs will show the
+# relations between templates and their instances.
+
+TEMPLATE_RELATIONS = NO
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
+# tags are set to YES then doxygen will generate a graph for each documented
+# file showing the direct and indirect include dependencies of the file with
+# other documented files.
+
+INCLUDE_GRAPH = YES
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
+# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
+# documented header file showing the documented files that directly or
+# indirectly include this file.
+
+INCLUDED_BY_GRAPH = YES
+
+# If the CALL_GRAPH and HAVE_DOT options are set to YES then
+# doxygen will generate a call dependency graph for every global function
+# or class method. Note that enabling this option will significantly increase
+# the time of a run. So in most cases it will be better to enable call graphs
+# for selected functions only using the \callgraph command.
+
+CALL_GRAPH = NO
+
+# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
+# doxygen will generate a caller dependency graph for every global function
+# or class method. Note that enabling this option will significantly increase
+# the time of a run. So in most cases it will be better to enable caller
+# graphs for selected functions only using the \callergraph command.
+
+CALLER_GRAPH = NO
+
+# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
+# will generate a graphical hierarchy of all classes instead of a textual one.
+
+GRAPHICAL_HIERARCHY = YES
+
+# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES
+# then doxygen will show the dependencies a directory has on other directories
+# in a graphical way. The dependency relations are determined by the #include
+# relations between the files in the directories.
+
+DIRECTORY_GRAPH = YES
+
+# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
+# generated by dot. Possible values are svg, png, jpg, or gif.
+# If left blank png will be used. If you choose svg you need to set
+# HTML_FILE_EXTENSION to xhtml in order to make the SVG files
+# visible in IE 9+ (other browsers do not have this requirement).
+
+DOT_IMAGE_FORMAT = png
+
+# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
+# enable generation of interactive SVG images that allow zooming and panning.
+# Note that this requires a modern browser other than Internet Explorer.
+# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you
+# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files
+# visible. Older versions of IE do not have SVG support.
+
+INTERACTIVE_SVG = YES
+
+# The tag DOT_PATH can be used to specify the path where the dot tool can be
+# found. If left blank, it is assumed the dot tool can be found in the path.
+
+DOT_PATH =
+
+# The DOTFILE_DIRS tag can be used to specify one or more directories that
+# contain dot files that are included in the documentation (see the
+# \dotfile command).
+
+DOTFILE_DIRS =
+
+# The MSCFILE_DIRS tag can be used to specify one or more directories that
+# contain msc files that are included in the documentation (see the
+# \mscfile command).
+
+MSCFILE_DIRS =
+
+# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
+# nodes that will be shown in the graph. If the number of nodes in a graph
+# becomes larger than this value, doxygen will truncate the graph, which is
+# visualized by representing a node as a red box. Note that doxygen if the
+# number of direct children of the root node in a graph is already larger than
+# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
+# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
+
+DOT_GRAPH_MAX_NODES = 50
+
+# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
+# graphs generated by dot. A depth value of 3 means that only nodes reachable
+# from the root by following a path via at most 3 edges will be shown. Nodes
+# that lay further from the root node will be omitted. Note that setting this
+# option to 1 or 2 may greatly reduce the computation time needed for large
+# code bases. Also note that the size of a graph can be further restricted by
+# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
+
+MAX_DOT_GRAPH_DEPTH = 0
+
+# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
+# background. This is disabled by default, because dot on Windows does not
+# seem to support this out of the box. Warning: Depending on the platform used,
+# enabling this option may lead to badly anti-aliased labels on the edges of
+# a graph (i.e. they become hard to read).
+
+DOT_TRANSPARENT = YES
+
+# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
+# files in one run (i.e. multiple -o and -T options on the command line). This
+# makes dot run faster, but since only newer versions of dot (>1.8.10)
+# support this, this feature is disabled by default.
+
+DOT_MULTI_TARGETS = NO
+
+# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
+# generate a legend page explaining the meaning of the various boxes and
+# arrows in the dot generated graphs.
+
+GENERATE_LEGEND = YES
+
+# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
+# remove the intermediate dot files that are used to generate
+# the various graphs.
+
+DOT_CLEANUP = YES
+
--- /dev/null
+\hypertarget{1_88_84__epars_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.8.4\-\_\-epars.h File Reference}
+\label{1_88_84__epars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-epars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-epars.\-h}}
+}
+
+
+Free energy parameters for parameter file conversion.
+
+
+
+
+\subsection{Detailed Description}
+Free energy parameters for parameter file conversion. This file contains the free energy parameters used in Vienna\-R\-N\-A\-Package 1.\-8.\-4. They are summarized in\-:
+
+D.\-H.\-Mathews, J. Sabina, M. Z\-Uker, D.\-H. Turner \char`\"{}\-Expanded sequence dependence of thermodynamic parameters improves
+prediction of R\-N\-A secondary structure\char`\"{} J\-M\-B, 288, pp 911-\/940, 1999
+
+Enthalpies taken from\-:
+
+A. Walter, D Turner, J Kim, M Lyttle, P M\char`\"{}uller, D Mathews, M Zuker
+\char`\"{}Coaxial stckaing of helices enhances binding of oligoribonucleotides.." P\-N\-A\-S, 91, pp 9218-\/9222, 1994
+
+D.\-H. Turner, N. Sugimoto, and S.\-M. Freier. \char`\"{}\-R\-N\-A Structure Prediction\char`\"{}, Ann. Rev. Biophys. Biophys. Chem. 17, 167-\/192, 1988.
+
+John A.\-Jaeger, Douglas H.\-Turner, and Michael Zuker. \char`\"{}\-Improved predictions of secondary structures for R\-N\-A\char`\"{}, P\-N\-A\-S, 86, 7706-\/7710, October 1989.
+
+L. He, R. Kierzek, J. Santa\-Lucia, A.\-E. Walter, D.\-H. Turner \char`\"{}\-Nearest-\/\-Neughbor Parameters for G\-U Mismatches....\char`\"{} Biochemistry 1991, 30 11124-\/11132
+
+A.\-E. Peritz, R. Kierzek, N, Sugimoto, D.\-H. Turner \char`\"{}\-Thermodynamic Study of Internal Loops in Oligoribonucleotides...\char`\"{} Biochemistry 1991, 30, 6428--6435
\ No newline at end of file
--- /dev/null
+\hypertarget{1_88_84__epars_8h}{\section{1.8.4\-\_\-epars.h}
+\label{1_88_84__epars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-epars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-epars.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_OLD\_EPARS\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_OLD\_EPARS\_\_}
+00003 \textcolor{preprocessor}{}
+00038 \textcolor{preprocessor}{#define K0 273.15}
+00039 \textcolor{preprocessor}{}\textcolor{preprocessor}{#ifdef INF}
+00040 \textcolor{preprocessor}{}\textcolor{preprocessor}{#undef INF}
+00041 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00042 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define INF 1000000}
+00043 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define NBPAIRS 7}
+00044 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define NST 0 }\textcolor{comment}{/* Energy for nonstandard stacked pairs */}\textcolor{preprocessor}{}
+00045 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEF -50 }\textcolor{comment}{/* Default terminal mismatch, used for I */}\textcolor{preprocessor}{}
+00046 \textcolor{preprocessor}{} \textcolor{comment}{/* and any non\_pairing bases */}
+00047 \textcolor{preprocessor}{#define NSM 0 }\textcolor{comment}{/* terminal mismatch for non standard pairs */}\textcolor{preprocessor}{}
+00048 \textcolor{preprocessor}{}
+00049 PRIVATE \textcolor{keywordtype}{double} Tmeasure\_184 = 37 + \hyperlink{energy__const_8h_a307c72605e3713972b4f4fb2d53ea20e}{K0}; \textcolor{comment}{/* temperature of param measurements */}
+00050 PRIVATE \textcolor{keywordtype}{double} lxc37\_184 = 107.856; \textcolor{comment}{/* parameter for logarithmic loop}
+00051 \textcolor{comment}{ energy extrapolation */}
+00052
+00053 PRIVATE \textcolor{keywordtype}{int} stack37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1] =
+00054 \textcolor{comment}{/* CG GC GU UG AU UA */}
+00055 \{ \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\},
+00056 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -240, -330, -210, -140, -210, -210, NST\},
+00057 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -330, -340, -250, -150, -220, -240, NST\},
+00058 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -210, -250, 130, -50, -140, -130, NST\},
+00059 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -140, -150, -50, 30, -60, -100, NST\},
+00060 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -210, -220, -140, -60, -110, -90, NST\},
+00061 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -210, -240, -130, -100, -90, -130, NST\},
+00062 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, NST, NST, NST, NST, NST, NST, NST\}\};
+00063
+00064 \textcolor{comment}{/* enthalpies (0.01*kcal/mol at 37 C) for stacked pairs */}
+00065 \textcolor{comment}{/* different from mfold-2.3, which uses values from mfold-2.2 */}
+00066 PRIVATE \textcolor{keywordtype}{int} enthalpies\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1] =
+00067 \textcolor{comment}{/* CG GC GU UG AU UA */}
+00068 \{ \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\},
+00069 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -1060, -1340, -1210, -560, -1050, -1040, NST\},
+00070 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -1340, -1490, -1260, -830, -1140, -1240, NST\},
+00071 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -1210, -1260, -1460, -1350, -880, -1280, NST\},
+00072 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -560, -830, -1350, -930, -320, -700, NST\},
+00073 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -1050, -1140, -880, -320, -940, -680, NST\},
+00074 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -1040, -1240, -1280, -700, -680, -770, NST\},
+00075 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, NST, NST, NST, NST, NST, NST, NST\}\};
+00076
+00077
+00078 \textcolor{comment}{/* old values are here just for comparison */}
+00079 PRIVATE \textcolor{keywordtype}{int} oldhairpin37\_184[31] = \{ \textcolor{comment}{/* from ViennaRNA 1.3 */}
+00080 \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 410, 490, 440, 470, 500, 510, 520, 531,
+00081 542, 551, 560, 568, 575, 582, 589, 595, 601, 606,
+00082 611, 616, 621, 626, 630, 634, 638, 642, 646, 650\};
+00083
+00084 PRIVATE \textcolor{keywordtype}{int} hairpin37\_184[31] = \{
+00085 \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 570, 560, 560, 540, 590, 560, 640, 650,
+00086 660, 670, 678, 686, 694, 701, 707, 713, 719, 725,
+00087 730, 735, 740, 744, 749, 753, 757, 761, 765, 769\};
+00088
+00089 PRIVATE \textcolor{keywordtype}{int} oldbulge37\_184[31] = \{
+00090 \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 390, 310, 350, 420, 480, 500, 516, 531, 543, 555,
+00091 565, 574, 583, 591, 598, 605, 612, 618, 624, 630,
+00092 635, 640, 645, 649, 654, 658, 662, 666, 670, 673\};
+00093
+00094 PRIVATE \textcolor{keywordtype}{int} bulge37\_184[31] = \{
+00095 \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 380, 280, 320, 360, 400, 440, 459, 470, 480, 490,
+00096 500, 510, 519, 527, 534, 541, 548, 554, 560, 565,
+00097 571, 576, 580, 585, 589, 594, 598, 602, 605, 609\};
+00098
+00099 PRIVATE \textcolor{keywordtype}{int} oldinternal\_loop37\_184[31] = \{
+00100 \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 410, 510, 490, 530, 570, 587, 601, 614, 625,
+00101 635, 645, 653, 661, 669, 676, 682, 688, 694, 700,
+00102 705, 710, 715, 720, 724, 728, 732, 736, 740, 744\};
+00103
+00104 PRIVATE \textcolor{keywordtype}{int} internal\_loop37\_184[31] = \{
+00105 \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 410, 510, 170, 180, 200, 220, 230, 240, 250,
+00106 260, 270, 278, 286, 294, 301, 307, 313, 319, 325,
+00107 330, 335, 340, 345, 349, 353, 357, 361, 365, 369\};
+00108
+00109 \textcolor{comment}{/* terminal mismatches */}
+00110 \textcolor{comment}{/* mismatch free energies for interior loops at 37C */}
+00111 PRIVATE \textcolor{keywordtype}{int} mismatchI37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00112 \{ \textcolor{comment}{/* @@ */}
+00113 \{\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\}\},
+00114 \{ \textcolor{comment}{/* CG */}
+00115 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00116 \{ 0, 0, 0, -110, 0\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00117 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00118 \{ 0, -110, 0, 0, 0\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00119 \{ 0, 0, 0, 0, -70\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00120 \{ \textcolor{comment}{/* GC */}
+00121 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00122 \{ 0, 0, 0, -110, 0\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00123 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00124 \{ 0, -110, 0, 0, 0\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00125 \{ 0, 0, 0, 0, -70\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00126 \{ \textcolor{comment}{/* GU */}
+00127 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00128 \{ 0, 70, 70, -40, 70\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00129 \{ 0, 70, 70, 70, 70\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00130 \{ 0, -40, 70, 70, 70\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00131 \{ 0, 70, 70, 70, 0\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00132 \{ \textcolor{comment}{/* UG */}
+00133 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00134 \{ 0, 70, 70, -40, 70\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00135 \{ 0, 70, 70, 70, 70\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00136 \{ 0, -40, 70, 70, 70\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00137 \{ 0, 70, 70, 70, 0\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00138 \{ \textcolor{comment}{/* AU */}
+00139 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00140 \{ 0, 70, 70, -40, 70\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00141 \{ 0, 70, 70, 70, 70\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00142 \{ 0, -40, 70, 70, 70\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00143 \{ 0, 70, 70, 70, 0\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00144 \{ \textcolor{comment}{/* UA */}
+00145 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00146 \{ 0, 70, 70, -40, 70\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00147 \{ 0, 70, 70, 70, 70\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00148 \{ 0, -40, 70, 70, 70\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00149 \{ 0, 70, 70, 70, 0\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00150 \{ \textcolor{comment}{/* @@ */}
+00151 \{ 90, 90, 90, 90, 90\},\{ 90, 90, 90, 90,-20\},\{ 90, 90, 90, 90, 90\},
+00152 \{ 90,-20, 90, 90, 90\},\{ 90, 90, 90, 90, 20\}\}
+00153 \};
+00154
+00155 \textcolor{comment}{/* mismatch free energies for hairpins at 37C */}
+00156 PRIVATE \textcolor{keywordtype}{int} mismatchH37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00157 \{ \textcolor{comment}{/* @@ */}
+00158 \{\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\}\},
+00159 \{ \textcolor{comment}{/* CG */}
+00160 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00161 \{ -90, -150, -150, -140, -180\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00162 \{ -90, -100, -90, -290, -80\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00163 \{ -90, -220, -200, -160, -110\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00164 \{ -90, -170, -140, -180, -200\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00165 \{ \textcolor{comment}{/* GC */}
+00166 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00167 \{ -70, -110, -150, -130, -210\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00168 \{ -70, -110, -70, -240, -50\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00169 \{ -70, -240, -290, -140, -120\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00170 \{ -70, -190, -100, -220, -150\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00171 \{ \textcolor{comment}{/* GU */}
+00172 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00173 \{ 0, 20, -50, -30, -30\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00174 \{ 0, -10, -20, -150, -20\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00175 \{ 0, -90, -110, -30, 0\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00176 \{ 0, -30, -30, -40, -110\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00177 \{ \textcolor{comment}{/* UG */}
+00178 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00179 \{ 0, -50, -30, -60, -50\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00180 \{ 0, -20, -10, -170, 0\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00181 \{ 0, -80, -120, -30, -70\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00182 \{ 0, -60, -10, -60, -80\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00183 \{ \textcolor{comment}{/* AU */}
+00184 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00185 \{ 0, -30, -50, -30, -30\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00186 \{ 0, -10, -20, -150, -20\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00187 \{ 0, -110, -120, -20, 20\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00188 \{ 0, -30, -30, -60, -110\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00189 \{ \textcolor{comment}{/* UA */}
+00190 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00191 \{ 0, -50, -30, -60, -50\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00192 \{ 0, -20, -10, -120, -0\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00193 \{ 0, -140, -120, -70, -20\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00194 \{ 0, -30, -10, -50, -80\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00195 \{ \textcolor{comment}{/* @@ */}
+00196 \{ 0, 0, 0, 0, 0\},\{ 0, 0, 0, 0, 0\},\{ 0, 0, 0, 0, 0\},
+00197 \{ 0, 0, 0, 0, 0\},\{ 0, 0, 0, 0, 0\}\}
+00198 \};
+00199
+00200 \textcolor{comment}{/* mismatch energies in multiloops */}
+00201 PRIVATE \textcolor{keywordtype}{int} mismatchM37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00202
+00203 \textcolor{comment}{/* these are probably junk */}
+00204 \textcolor{comment}{/* mismatch enthalpies for temperature scaling */}
+00205 PRIVATE \textcolor{keywordtype}{int} mism\_H\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00206 \{ \textcolor{comment}{/* no pair */}
+00207 \{\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\},\{0,0,0,0,0\}\},
+00208 \{ \textcolor{comment}{/* CG */}
+00209 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00210 \{ DEF,-1030, -950,-1030,-1030\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00211 \{ DEF, -520, -450, -520, -670\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00212 \{ DEF, -940, -940, -940, -940\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00213 \{ DEF, -810, -740, -810, -860\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00214 \{ \textcolor{comment}{/* GC */}
+00215 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00216 \{ DEF, -520, -880, -560, -880\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00217 \{ DEF, -720, -310, -310, -390\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00218 \{ DEF, -710, -740, -620, -740\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00219 \{ DEF, -500, -500, -500, -570\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00220 \{ \textcolor{comment}{/* GU */}
+00221 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00222 \{ DEF, -430, -600, -600, -600\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00223 \{ DEF, -260, -240, -240, -240\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00224 \{ DEF, -340, -690, -690, -690\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00225 \{ DEF, -330, -330, -330, -330\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00226 \{ \textcolor{comment}{/* UG */}
+00227 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00228 \{ DEF, -720, -790, -960, -810\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00229 \{ DEF, -480, -480, -360, -480\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00230 \{ DEF, -660, -810, -920, -810\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00231 \{ DEF, -550, -440, -550, -360\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00232 \{ \textcolor{comment}{/* AU */}
+00233 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00234 \{ DEF, -430, -600, -600, -600\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00235 \{ DEF, -260, -240, -240, -240\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00236 \{ DEF, -340, -690, -690, -690\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00237 \{ DEF, -330, -330, -330, -330\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00238 \{ \textcolor{comment}{/* UA */}
+00239 \{ 0, 0, 0, 0, 0\}, \textcolor{comment}{/* @@ @A @C @G @U */}
+00240 \{ DEF, -400, -630, -890, -590\}, \textcolor{comment}{/* A@ AA AC AG AU */}
+00241 \{ DEF, -430, -510, -200, -180\}, \textcolor{comment}{/* C@ CA CC CG CU */}
+00242 \{ DEF, -380, -680, -890, -680\}, \textcolor{comment}{/* G@ GA GC GG GU */}
+00243 \{ DEF, -280, -140, -280, -140\}\},\textcolor{comment}{/* U@ UA UC UG UU */}
+00244 \{ \textcolor{comment}{/* nonstandard pair */}
+00245 \{DEF,DEF,DEF,DEF,DEF\},\{DEF,DEF,DEF,DEF,DEF\},\{DEF,DEF,DEF,DEF,DEF\},
+00246 \{DEF,DEF,DEF,DEF,DEF\},\{DEF,DEF,DEF,DEF,DEF\}\}
+00247 \};
+00248
+00249 \textcolor{comment}{/* 5' dangling ends (unpaird base stacks on first paired base) */}
+00250 PRIVATE \textcolor{keywordtype}{int} dangle5\_37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5]=
+00251 \{\textcolor{comment}{/* @ A C G U */}
+00252 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* no pair */}
+00253 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -50, -30, -20, -10\}, \textcolor{comment}{/* CG (stacks on C) */}
+00254 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -20, -30, -0, -0\}, \textcolor{comment}{/* GC (stacks on G) */}
+00255 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -30, -30, -40, -20\}, \textcolor{comment}{/* GU */}
+00256 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -30, -10, -20, -20\}, \textcolor{comment}{/* UG */}
+00257 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -30, -30, -40, -20\}, \textcolor{comment}{/* AU */}
+00258 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -30, -10, -20, -20\}, \textcolor{comment}{/* UA */}
+00259 \{ 0, 0, 0, 0, 0\} \textcolor{comment}{/* @ */}
+00260 \};
+00261
+00262 \textcolor{comment}{/* 3' dangling ends (unpaired base stacks on second paired base */}
+00263 PRIVATE \textcolor{keywordtype}{int} dangle3\_37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5]=
+00264 \{\textcolor{comment}{/* @ A C G U */}
+00265 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* no pair */}
+00266 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -110, -40, -130, -60\}, \textcolor{comment}{/* CG (stacks on G) */}
+00267 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -170, -80, -170, -120\}, \textcolor{comment}{/* GC */}
+00268 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -70, -10, -70, -10\}, \textcolor{comment}{/* GU */}
+00269 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -80, -50, -80, -60\}, \textcolor{comment}{/* UG */}
+00270 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -70, -10, -70, -10\}, \textcolor{comment}{/* AU */}
+00271 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, -80, -50, -80, -60\}, \textcolor{comment}{/* UA */}
+00272 \{ 0, 0, 0, 0, 0\} \textcolor{comment}{/* @ */}
+00273 \};
+00274
+00275 \textcolor{comment}{/* enthalpies for temperature scaling */}
+00276 PRIVATE \textcolor{keywordtype}{int} dangle3\_H\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5] =
+00277 \{\textcolor{comment}{/* @ A C G U */}
+00278 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* no pair */}
+00279 \{ 0, -740, -280, -640, -360\},
+00280 \{ 0, -900, -410, -860, -750\},
+00281 \{ 0, -740, -240, -720, -490\},
+00282 \{ 0, -490, -90, -550, -230\},
+00283 \{ 0, -570, -70, -580, -220\},
+00284 \{ 0, -490, -90, -550, -230\},
+00285 \{ 0, 0, 0, 0, 0\}
+00286 \};
+00287
+00288 PRIVATE \textcolor{keywordtype}{int} dangle5\_H\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5] =
+00289 \{\textcolor{comment}{/* @ A C G U */}
+00290 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* no pair */}
+00291 \{ 0, -240, 330, 80, -140\},
+00292 \{ 0, -160, 70, -460, -40\},
+00293 \{ 0, 160, 220, 70, 310\},
+00294 \{ 0, -150, 510, 10, 100\},
+00295 \{ 0, 160, 220, 70, 310\},
+00296 \{ 0, -50, 690, -60, -60\},
+00297 \{ 0, 0, 0, 0, 0\}
+00298 \};
+00299
+00300
+00301 \textcolor{comment}{/* constants for linearly destabilizing contributions for multi-loops}
+00302 \textcolor{comment}{ F = ML\_closing + ML\_intern*k + ML\_BASE*u */}
+00303 \textcolor{comment}{/* old versions erroneously used ML\_intern*(k-1) */}
+00304 PRIVATE \textcolor{keywordtype}{int} ML\_BASE37\_184 = 0;
+00305 PRIVATE \textcolor{keywordtype}{int} ML\_closing37\_184 = 340;
+00306 PRIVATE \textcolor{keywordtype}{int} ML\_intern37\_184 = 40;
+00307
+00308 \textcolor{comment}{/* Ninio-correction for asymmetric internal loops with branches n1 and n2 */}
+00309 \textcolor{comment}{/* ninio\_energy = min\{max\_ninio, |n1-n2|*F\_ninio[min\{4.0, n1, n2\}] \} */}
+00310 PRIVATE \textcolor{keywordtype}{int} MAX\_NINIO\_184 = 300; \textcolor{comment}{/* maximum correction */}
+00311 PRIVATE \textcolor{keywordtype}{int} F\_ninio37\_184[5] = \{ 0, 40, 50, 20, 10 \}; \textcolor{comment}{/* only F[2] used */}
+00312
+00313 \textcolor{comment}{/* stabilizing contribution due to special hairpins of size 4 (tetraloops) */}
+00314
+00315 PRIVATE \textcolor{keywordtype}{char} Tetraloops\_184[1400] = \textcolor{comment}{/* place for up to 200 tetra loops */}
+00316 \textcolor{stringliteral}{"GGGGAC "}
+00317 \textcolor{stringliteral}{"GGUGAC "}
+00318 \textcolor{stringliteral}{"CGAAAG "}
+00319 \textcolor{stringliteral}{"GGAGAC "}
+00320 \textcolor{stringliteral}{"CGCAAG "}
+00321 \textcolor{stringliteral}{"GGAAAC "}
+00322 \textcolor{stringliteral}{"CGGAAG "}
+00323 \textcolor{stringliteral}{"CUUCGG "}
+00324 \textcolor{stringliteral}{"CGUGAG "}
+00325 \textcolor{stringliteral}{"CGAAGG "}
+00326 \textcolor{stringliteral}{"CUACGG "}
+00327 \textcolor{stringliteral}{"GGCAAC "}
+00328 \textcolor{stringliteral}{"CGCGAG "}
+00329 \textcolor{stringliteral}{"UGAGAG "}
+00330 \textcolor{stringliteral}{"CGAGAG "}
+00331 \textcolor{stringliteral}{"AGAAAU "}
+00332 \textcolor{stringliteral}{"CGUAAG "}
+00333 \textcolor{stringliteral}{"CUAACG "}
+00334 \textcolor{stringliteral}{"UGAAAG "}
+00335 \textcolor{stringliteral}{"GGAAGC "}
+00336 \textcolor{stringliteral}{"GGGAAC "}
+00337 \textcolor{stringliteral}{"UGAAAA "}
+00338 \textcolor{stringliteral}{"AGCAAU "}
+00339 \textcolor{stringliteral}{"AGUAAU "}
+00340 \textcolor{stringliteral}{"CGGGAG "}
+00341 \textcolor{stringliteral}{"AGUGAU "}
+00342 \textcolor{stringliteral}{"GGCGAC "}
+00343 \textcolor{stringliteral}{"GGGAGC "}
+00344 \textcolor{stringliteral}{"GUGAAC "}
+00345 \textcolor{stringliteral}{"UGGAAA "}
+00346 ;
+00347
+00348 PRIVATE \textcolor{keywordtype}{int} TETRA\_ENERGY37\_184[200] = \{
+00349 -300, -300, -300, -300, -300, -300, -300, -300, -300, -250, -250, -250,
+00350 -250, -250, -200, -200, -200, -200, -200, -150, -150, -150, -150, -150,
+00351 -150, -150, -150, -150, -150, -150\};
+00352
+00353 PRIVATE \textcolor{keywordtype}{int} TETRA\_ENTH37\_184 = -400;
+00354
+00355 PRIVATE \textcolor{keywordtype}{char} Triloops\_184[241] = \textcolor{stringliteral}{""};
+00356
+00357 PRIVATE \textcolor{keywordtype}{int} Triloop\_E37\_184[40];
+00358
+00359 \textcolor{comment}{/* penalty for AU (or GU) terminating helix) */}
+00360 \textcolor{comment}{/* mismatches already contain these */}
+00361 PRIVATE \textcolor{keywordtype}{int} TerminalAU\_184 = 50;
+00362
+00363 \textcolor{comment}{/* penalty for forming a bi-molecular duplex */}
+00364 PRIVATE \textcolor{keywordtype}{int} DuplexInit\_184 = 410;
+00365
+00366 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{1_88_84__intloops_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.8.4\-\_\-intloops.h File Reference}
+\label{1_88_84__intloops_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-intloops.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-intloops.\-h}}
+}
+
+
+Free energy parameters for interior loop contributions needed by the parameter file conversion functions.
+
+
+
+
+\subsection{Detailed Description}
+Free energy parameters for interior loop contributions needed by the parameter file conversion functions.
\ No newline at end of file
--- /dev/null
+\hypertarget{1_88_84__intloops_8h}{\section{1.8.4\-\_\-intloops.h}
+\label{1_88_84__intloops_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-intloops.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.\-8.\-4\-\_\-intloops.\-h}}
+}
+
+\begin{DoxyCode}
+00001
+00005 PRIVATE \textcolor{keywordtype}{int} int11\_37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00006 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+00007 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00008 \textcolor{comment}{/* CG..CG */}
+00009 \{\{ 110, 110, 110, 110, 110\},
+00010 \{ 110, 110, 40, 40, 40\},
+00011 \{ 110, 40, 40, 40, 40\},
+00012 \{ 110, 40, 40, -140, 40\},
+00013 \{ 110, 40, 40, 40, 40\}
+00014 \},
+00015 \textcolor{comment}{/* CG..GC */}
+00016 \{\{ 110, 110, 110, 110, 110\},
+00017 \{ 110, 40, -40, 40, 40\},
+00018 \{ 110, 30, 50, 40, 50\},
+00019 \{ 110, -10, 40, -170, 40\},
+00020 \{ 110, 40, 0, 40, -30\}
+00021 \},
+00022 \textcolor{comment}{/* CG..GU */}
+00023 \{\{ 110, 110, 110, 110, 110\},
+00024 \{ 110, 110, 110, 110, 110\},
+00025 \{ 110, 110, 110, 110, 110\},
+00026 \{ 110, 110, 110, -100, 110\},
+00027 \{ 110, 110, 110, 110, 110\}
+00028 \},
+00029 \textcolor{comment}{/* CG..UG */}
+00030 \{\{ 110, 110, 110, 110, 110\},
+00031 \{ 110, 110, 110, 110, 110\},
+00032 \{ 110, 110, 110, 110, 110\},
+00033 \{ 110, 110, 110, -100, 110\},
+00034 \{ 110, 110, 110, 110, 110\}
+00035 \},
+00036 \textcolor{comment}{/* CG..AU */}
+00037 \{\{ 110, 110, 110, 110, 110\},
+00038 \{ 110, 110, 110, 110, 110\},
+00039 \{ 110, 110, 110, 110, 110\},
+00040 \{ 110, 110, 110, -100, 110\},
+00041 \{ 110, 110, 110, 110, 110\}
+00042 \},
+00043 \textcolor{comment}{/* CG..UA */}
+00044 \{\{ 110, 110, 110, 110, 110\},
+00045 \{ 110, 110, 110, 110, 110\},
+00046 \{ 110, 110, 110, 110, 110\},
+00047 \{ 110, 110, 110, -100, 110\},
+00048 \{ 110, 110, 110, 110, 110\}
+00049 \},
+00050 \textcolor{comment}{/* CG..?? */}
+00051 \{\{ 110, 110, 110, 110, 110\},
+00052 \{ 110, 110, 110, 110, 110\},
+00053 \{ 110, 110, 110, 110, 110\},
+00054 \{ 110, 110, 110, 110, 110\},
+00055 \{ 110, 110, 110, 110, 110\}
+00056 \}
+00057 \},
+00058 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00059 \textcolor{comment}{/* GC..CG */}
+00060 \{\{ 110, 110, 110, 110, 110\},
+00061 \{ 110, 40, 30, -10, 40\},
+00062 \{ 110, -40, 50, 40, 0\},
+00063 \{ 110, 40, 40, -170, 40\},
+00064 \{ 110, 40, 50, 40, -30\}
+00065 \},
+00066 \textcolor{comment}{/* GC..GC */}
+00067 \{\{ 110, 110, 110, 110, 110\},
+00068 \{ 110, 80, 40, 40, 40\},
+00069 \{ 110, 40, 40, 40, 40\},
+00070 \{ 110, 40, 40, -210, 40\},
+00071 \{ 110, 40, 40, 40, -70\}
+00072 \},
+00073 \textcolor{comment}{/* GC..GU */}
+00074 \{\{ 110, 110, 110, 110, 110\},
+00075 \{ 110, 110, 110, 110, 110\},
+00076 \{ 110, 110, 110, 110, 110\},
+00077 \{ 110, 110, 110, -100, 110\},
+00078 \{ 110, 110, 110, 110, 110\}
+00079 \},
+00080 \textcolor{comment}{/* GC..UG */}
+00081 \{\{ 110, 110, 110, 110, 110\},
+00082 \{ 110, 110, 110, 110, 110\},
+00083 \{ 110, 110, 110, 110, 110\},
+00084 \{ 110, 110, 110, -100, 110\},
+00085 \{ 110, 110, 110, 110, 110\}
+00086 \},
+00087 \textcolor{comment}{/* GC..AU */}
+00088 \{\{ 110, 110, 110, 110, 110\},
+00089 \{ 110, 110, 110, 110, 110\},
+00090 \{ 110, 110, 110, 110, 110\},
+00091 \{ 110, 110, 110, -100, 110\},
+00092 \{ 110, 110, 110, 110, 100\}
+00093 \},
+00094 \textcolor{comment}{/* GC..UA */}
+00095 \{\{ 110, 110, 110, 110, 110\},
+00096 \{ 110, 110, 110, 110, 110\},
+00097 \{ 110, 110, 110, 110, 110\},
+00098 \{ 110, 110, 110, -100, 110\},
+00099 \{ 110, 110, 110, 110, 110\}
+00100 \},
+00101 \textcolor{comment}{/* GC..?? */}
+00102 \{\{ 110, 110, 110, 110, 110\},
+00103 \{ 110, 110, 110, 110, 110\},
+00104 \{ 110, 110, 110, 110, 110\},
+00105 \{ 110, 110, 110, 110, 110\},
+00106 \{ 110, 110, 110, 110, 110\}
+00107 \}
+00108 \},
+00109 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00110 \textcolor{comment}{/* GU..CG */}
+00111 \{\{ 110, 110, 110, 110, 110\},
+00112 \{ 110, 110, 110, 110, 110\},
+00113 \{ 110, 110, 110, 110, 110\},
+00114 \{ 110, 110, 110, -100, 110\},
+00115 \{ 110, 110, 110, 110, 110\}
+00116 \},
+00117 \textcolor{comment}{/* GU..GC */}
+00118 \{\{ 110, 110, 110, 110, 110\},
+00119 \{ 110, 110, 110, 110, 110\},
+00120 \{ 110, 110, 110, 110, 110\},
+00121 \{ 110, 110, 110, -100, 110\},
+00122 \{ 110, 110, 110, 110, 110\}
+00123 \},
+00124 \textcolor{comment}{/* GU..GU */}
+00125 \{\{ 170, 170, 170, 170, 170\},
+00126 \{ 170, 170, 170, 170, 170\},
+00127 \{ 170, 170, 170, 170, 170\},
+00128 \{ 170, 170, 170, -40, 170\},
+00129 \{ 170, 170, 170, 170, 170\}
+00130 \},
+00131 \textcolor{comment}{/* GU..UG */}
+00132 \{\{ 170, 170, 170, 170, 170\},
+00133 \{ 170, 170, 170, 170, 170\},
+00134 \{ 170, 170, 170, 170, 170\},
+00135 \{ 170, 170, 170, -40, 170\},
+00136 \{ 170, 170, 170, 170, 170\}
+00137 \},
+00138 \textcolor{comment}{/* GU..AU */}
+00139 \{\{ 170, 170, 170, 170, 170\},
+00140 \{ 170, 170, 170, 170, 170\},
+00141 \{ 170, 170, 170, 170, 170\},
+00142 \{ 170, 170, 170, -40, 170\},
+00143 \{ 170, 170, 170, 170, 170\}
+00144 \},
+00145 \textcolor{comment}{/* GU..UA */}
+00146 \{\{ 170, 170, 170, 170, 170\},
+00147 \{ 170, 170, 170, 170, 170\},
+00148 \{ 170, 170, 170, 170, 170\},
+00149 \{ 170, 170, 170, -40, 170\},
+00150 \{ 170, 170, 170, 170, 170\}
+00151 \},
+00152 \textcolor{comment}{/* GU..?? */}
+00153 \{\{ 170, 170, 170, 170, 170\},
+00154 \{ 170, 170, 170, 170, 170\},
+00155 \{ 170, 170, 170, 170, 170\},
+00156 \{ 170, 170, 170, 170, 170\},
+00157 \{ 170, 170, 170, 170, 170\}
+00158 \}
+00159 \},
+00160 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00161 \textcolor{comment}{/* UG..CG */}
+00162 \{\{ 110, 110, 110, 110, 110\},
+00163 \{ 110, 110, 110, 110, 110\},
+00164 \{ 110, 110, 110, 110, 110\},
+00165 \{ 110, 110, 110, -100, 110\},
+00166 \{ 110, 110, 110, 110, 110\}
+00167 \},
+00168 \textcolor{comment}{/* UG..GC */}
+00169 \{\{ 110, 110, 110, 110, 110\},
+00170 \{ 110, 110, 110, 110, 110\},
+00171 \{ 110, 110, 110, 110, 110\},
+00172 \{ 110, 110, 110, -100, 110\},
+00173 \{ 110, 110, 110, 110, 110\}
+00174 \},
+00175 \textcolor{comment}{/* UG..GU */}
+00176 \{\{ 170, 170, 170, 170, 170\},
+00177 \{ 170, 170, 170, 170, 170\},
+00178 \{ 170, 170, 170, 170, 170\},
+00179 \{ 170, 170, 170, -40, 170\},
+00180 \{ 170, 170, 170, 170, 170\}
+00181 \},
+00182 \textcolor{comment}{/* UG..UG */}
+00183 \{\{ 170, 170, 170, 170, 170\},
+00184 \{ 170, 170, 170, 170, 170\},
+00185 \{ 170, 170, 170, 170, 170\},
+00186 \{ 170, 170, 170, -40, 170\},
+00187 \{ 170, 170, 170, 170, 170\}
+00188 \},
+00189 \textcolor{comment}{/* UG..AU */}
+00190 \{\{ 170, 170, 170, 170, 170\},
+00191 \{ 170, 170, 170, 170, 170\},
+00192 \{ 170, 170, 170, 170, 170\},
+00193 \{ 170, 170, 170, -40, 170\},
+00194 \{ 170, 170, 170, 170, 170\}
+00195 \},
+00196 \textcolor{comment}{/* UG..UA */}
+00197 \{\{ 170, 170, 170, 170, 170\},
+00198 \{ 170, 170, 170, 170, 170\},
+00199 \{ 170, 170, 170, 170, 170\},
+00200 \{ 170, 170, 170, -40, 170\},
+00201 \{ 170, 170, 170, 170, 170\}
+00202 \},
+00203 \textcolor{comment}{/* UG..?? */}
+00204 \{\{ 170, 170, 170, 170, 170\},
+00205 \{ 170, 170, 170, 170, 170\},
+00206 \{ 170, 170, 170, 170, 170\},
+00207 \{ 170, 170, 170, 170, 170\},
+00208 \{ 170, 170, 170, 170, 170\}
+00209 \}
+00210 \},
+00211 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00212 \textcolor{comment}{/* AU..CG */}
+00213 \{\{ 110, 110, 110, 110, 110\},
+00214 \{ 110, 110, 110, 110, 110\},
+00215 \{ 110, 110, 110, 110, 110\},
+00216 \{ 110, 110, 110, -100, 110\},
+00217 \{ 110, 110, 110, 110, 110\}
+00218 \},
+00219 \textcolor{comment}{/* AU..GC */}
+00220 \{\{ 110, 110, 110, 110, 110\},
+00221 \{ 110, 110, 110, 110, 110\},
+00222 \{ 110, 110, 110, 110, 110\},
+00223 \{ 110, 110, 110, -100, 110\},
+00224 \{ 110, 110, 110, 110, 100\}
+00225 \},
+00226 \textcolor{comment}{/* AU..GU */}
+00227 \{\{ 170, 170, 170, 170, 170\},
+00228 \{ 170, 170, 170, 170, 170\},
+00229 \{ 170, 170, 170, 170, 170\},
+00230 \{ 170, 170, 170, -40, 170\},
+00231 \{ 170, 170, 170, 170, 170\}
+00232 \},
+00233 \textcolor{comment}{/* AU..UG */}
+00234 \{\{ 170, 170, 170, 170, 170\},
+00235 \{ 170, 170, 170, 170, 170\},
+00236 \{ 170, 170, 170, 170, 170\},
+00237 \{ 170, 170, 170, -40, 170\},
+00238 \{ 170, 170, 170, 170, 170\}
+00239 \},
+00240 \textcolor{comment}{/* AU..AU */}
+00241 \{\{ 170, 170, 170, 170, 170\},
+00242 \{ 170, 170, 170, 170, 170\},
+00243 \{ 170, 170, 170, 170, 170\},
+00244 \{ 170, 170, 170, -40, 170\},
+00245 \{ 170, 170, 170, 170, 120\}
+00246 \},
+00247 \textcolor{comment}{/* AU..UA */}
+00248 \{\{ 170, 170, 170, 170, 170\},
+00249 \{ 170, 170, 170, 170, 170\},
+00250 \{ 170, 170, 170, 170, 170\},
+00251 \{ 170, 170, 170, -40, 170\},
+00252 \{ 170, 170, 170, 170, 150\}
+00253 \},
+00254 \textcolor{comment}{/* AU..?? */}
+00255 \{\{ 170, 170, 170, 170, 170\},
+00256 \{ 170, 170, 170, 170, 170\},
+00257 \{ 170, 170, 170, 170, 170\},
+00258 \{ 170, 170, 170, 170, 170\},
+00259 \{ 170, 170, 170, 170, 170\}
+00260 \}
+00261 \},
+00262 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00263 \textcolor{comment}{/* UA..CG */}
+00264 \{\{ 110, 110, 110, 110, 110\},
+00265 \{ 110, 110, 110, 110, 110\},
+00266 \{ 110, 110, 110, 110, 110\},
+00267 \{ 110, 110, 110, -100, 110\},
+00268 \{ 110, 110, 110, 110, 110\}
+00269 \},
+00270 \textcolor{comment}{/* UA..GC */}
+00271 \{\{ 110, 110, 110, 110, 110\},
+00272 \{ 110, 110, 110, 110, 110\},
+00273 \{ 110, 110, 110, 110, 110\},
+00274 \{ 110, 110, 110, -100, 110\},
+00275 \{ 110, 110, 110, 110, 110\}
+00276 \},
+00277 \textcolor{comment}{/* UA..GU */}
+00278 \{\{ 170, 170, 170, 170, 170\},
+00279 \{ 170, 170, 170, 170, 170\},
+00280 \{ 170, 170, 170, 170, 170\},
+00281 \{ 170, 170, 170, -40, 170\},
+00282 \{ 170, 170, 170, 170, 170\}
+00283 \},
+00284 \textcolor{comment}{/* UA..UG */}
+00285 \{\{ 170, 170, 170, 170, 170\},
+00286 \{ 170, 170, 170, 170, 170\},
+00287 \{ 170, 170, 170, 170, 170\},
+00288 \{ 170, 170, 170, -40, 170\},
+00289 \{ 170, 170, 170, 170, 170\}
+00290 \},
+00291 \textcolor{comment}{/* UA..AU */}
+00292 \{\{ 170, 170, 170, 170, 170\},
+00293 \{ 170, 170, 170, 170, 170\},
+00294 \{ 170, 170, 170, 170, 170\},
+00295 \{ 170, 170, 170, -40, 170\},
+00296 \{ 170, 170, 170, 170, 150\}
+00297 \},
+00298 \textcolor{comment}{/* UA..UA */}
+00299 \{\{ 170, 170, 170, 170, 170\},
+00300 \{ 170, 170, 170, 170, 170\},
+00301 \{ 170, 170, 170, 170, 170\},
+00302 \{ 170, 170, 170, -40, 170\},
+00303 \{ 170, 170, 170, 170, 180\}
+00304 \},
+00305 \textcolor{comment}{/* UA..?? */}
+00306 \{\{ 170, 170, 170, 170, 170\},
+00307 \{ 170, 170, 170, 170, 170\},
+00308 \{ 170, 170, 170, 170, 170\},
+00309 \{ 170, 170, 170, 170, 170\},
+00310 \{ 170, 170, 170, 170, 170\}
+00311 \}
+00312 \},
+00313 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00314 \textcolor{comment}{/* ??..CG */}
+00315 \{\{ 110, 110, 110, 110, 110\},
+00316 \{ 110, 110, 110, 110, 110\},
+00317 \{ 110, 110, 110, 110, 110\},
+00318 \{ 110, 110, 110, 110, 110\},
+00319 \{ 110, 110, 110, 110, 110\}
+00320 \},
+00321 \textcolor{comment}{/* ??..GC */}
+00322 \{\{ 110, 110, 110, 110, 110\},
+00323 \{ 110, 110, 110, 110, 110\},
+00324 \{ 110, 110, 110, 110, 110\},
+00325 \{ 110, 110, 110, 110, 110\},
+00326 \{ 110, 110, 110, 110, 110\}
+00327 \},
+00328 \textcolor{comment}{/* ??..GU */}
+00329 \{\{ 170, 170, 170, 170, 170\},
+00330 \{ 170, 170, 170, 170, 170\},
+00331 \{ 170, 170, 170, 170, 170\},
+00332 \{ 170, 170, 170, 170, 170\},
+00333 \{ 170, 170, 170, 170, 170\}
+00334 \},
+00335 \textcolor{comment}{/* ??..UG */}
+00336 \{\{ 170, 170, 170, 170, 170\},
+00337 \{ 170, 170, 170, 170, 170\},
+00338 \{ 170, 170, 170, 170, 170\},
+00339 \{ 170, 170, 170, 170, 170\},
+00340 \{ 170, 170, 170, 170, 170\}
+00341 \},
+00342 \textcolor{comment}{/* ??..AU */}
+00343 \{\{ 170, 170, 170, 170, 170\},
+00344 \{ 170, 170, 170, 170, 170\},
+00345 \{ 170, 170, 170, 170, 170\},
+00346 \{ 170, 170, 170, 170, 170\},
+00347 \{ 170, 170, 170, 170, 170\}
+00348 \},
+00349 \textcolor{comment}{/* ??..UA */}
+00350 \{\{ 170, 170, 170, 170, 170\},
+00351 \{ 170, 170, 170, 170, 170\},
+00352 \{ 170, 170, 170, 170, 170\},
+00353 \{ 170, 170, 170, 170, 170\},
+00354 \{ 170, 170, 170, 170, 170\}
+00355 \},
+00356 \textcolor{comment}{/* ??..?? */}
+00357 \{\{ 170, 170, 170, 170, 170\},
+00358 \{ 170, 170, 170, 170, 170\},
+00359 \{ 170, 170, 170, 170, 170\},
+00360 \{ 170, 170, 170, 170, 170\},
+00361 \{ 170, 170, 170, 170, 170\}
+00362 \}
+00363 \}
+00364 \};
+00365
+00366 PRIVATE \textcolor{keywordtype}{int} int11\_H\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00367 \textcolor{comment}{/* GC..GC */}
+00368 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+00369 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00370 \{ \{ 0, 0, 0, 0, 0\},
+00371 \{ 0, 0, 0, 0, 0\},
+00372 \{ 0, 0, 0, 0, 0\},
+00373 \{ 0, 0, 0, 0, 0\},
+00374 \{ 0, 0, 0, 0, 0\}\},
+00375 \textcolor{comment}{/* GC..CG */}
+00376 \{ \{ 0, 0, 0, 0, 0\},
+00377 \{ 0, 0, 0, 0, 0\},
+00378 \{ 0, 0, 0, 0, 0\},
+00379 \{ 0, 0, 0, 0, 0\},
+00380 \{ 0, 0, 0, 0, 0\}\},
+00381 \textcolor{comment}{/* GC..GU */}
+00382 \{ \{ 0, 0, 0, 0, 0\},
+00383 \{ 0, 0, 0, 0, 0\},
+00384 \{ 0, 0, 0, 0, 0\},
+00385 \{ 0, 0, 0, 0, 0\},
+00386 \{ 0, 0, 0, 0, 0\}\},
+00387 \textcolor{comment}{/* GC..UG */}
+00388 \{ \{ 0, 0, 0, 0, 0\},
+00389 \{ 0, 0, 0, 0, 0\},
+00390 \{ 0, 0, 0, 0, 0\},
+00391 \{ 0, 0, 0, 0, 0\},
+00392 \{ 0, 0, 0, 0, 0\}\},
+00393 \textcolor{comment}{/* GC..AU */}
+00394 \{ \{ 0, 0, 0, 0, 0\},
+00395 \{ 0, 0, 0, 0, 0\},
+00396 \{ 0, 0, 0, 0, 0\},
+00397 \{ 0, 0, 0, 0, 0\},
+00398 \{ 0, 0, 0, 0, 0\}\},
+00399 \textcolor{comment}{/* GC..UA */}
+00400 \{ \{ 0, 0, 0, 0, 0\},
+00401 \{ 0, 0, 0, 0, 0\},
+00402 \{ 0, 0, 0, 0, 0\},
+00403 \{ 0, 0, 0, 0, 0\},
+00404 \{ 0, 0, 0, 0, 0\}\},
+00405 \textcolor{comment}{/* GC.. @ */}
+00406 \{ \{ 0, 0, 0, 0, 0\},
+00407 \{ 0, 0, 0, 0, 0\},
+00408 \{ 0, 0, 0, 0, 0\},
+00409 \{ 0, 0, 0, 0, 0\},
+00410 \{ 0, 0, 0, 0, 0\}\}\},
+00411 \textcolor{comment}{/* CG..GC */}
+00412 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00413 \{ \{ 0, 0, 0, 0, 0\},
+00414 \{ 0, 0, 0, 0, 0\},
+00415 \{ 0, 0, 0, 0, 0\},
+00416 \{ 0, 0, 0, 0, 0\},
+00417 \{ 0, 0, 0, 0, 0\}\},
+00418 \textcolor{comment}{/* CG..CG */}
+00419 \{ \{ 0, 0, 0, 0, 0\},
+00420 \{ 0, 0, 0, 0, 0\},
+00421 \{ 0, 0, 0, 0, 0\},
+00422 \{ 0, 0, 0, 0, 0\},
+00423 \{ 0, 0, 0, 0, 0\}\},
+00424 \textcolor{comment}{/* CG..GU */}
+00425 \{ \{ 0, 0, 0, 0, 0\},
+00426 \{ 0, 0, 0, 0, 0\},
+00427 \{ 0, 0, 0, 0, 0\},
+00428 \{ 0, 0, 0, 0, 0\},
+00429 \{ 0, 0, 0, 0, 0\}\},
+00430 \textcolor{comment}{/* CG..UG */}
+00431 \{ \{ 0, 0, 0, 0, 0\},
+00432 \{ 0, 0, 0, 0, 0\},
+00433 \{ 0, 0, 0, 0, 0\},
+00434 \{ 0, 0, 0, 0, 0\},
+00435 \{ 0, 0, 0, 0, 0\}\},
+00436 \textcolor{comment}{/* CG..AU */}
+00437 \{ \{ 0, 0, 0, 0, 0\},
+00438 \{ 0, 0, 0, 0, 0\},
+00439 \{ 0, 0, 0, 0, 0\},
+00440 \{ 0, 0, 0, 0, 0\},
+00441 \{ 0, 0, 0, 0, 0\}\},
+00442 \textcolor{comment}{/* CG..UA */}
+00443 \{ \{ 0, 0, 0, 0, 0\},
+00444 \{ 0, 0, 0, 0, 0\},
+00445 \{ 0, 0, 0, 0, 0\},
+00446 \{ 0, 0, 0, 0, 0\},
+00447 \{ 0, 0, 0, 0, 0\}\},
+00448 \textcolor{comment}{/* CG.. @ */}
+00449 \{ \{ 0, 0, 0, 0, 0\},
+00450 \{ 0, 0, 0, 0, 0\},
+00451 \{ 0, 0, 0, 0, 0\},
+00452 \{ 0, 0, 0, 0, 0\},
+00453 \{ 0, 0, 0, 0, 0\}\}\},
+00454 \textcolor{comment}{/* GU..GC */}
+00455 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00456 \{ \{ 0, 0, 0, 0, 0\},
+00457 \{ 0, 0, 0, 0, 0\},
+00458 \{ 0, 0, 0, 0, 0\},
+00459 \{ 0, 0, 0, 0, 0\},
+00460 \{ 0, 0, 0, 0, 0\}\},
+00461 \textcolor{comment}{/* GU..CG */}
+00462 \{ \{ 0, 0, 0, 0, 0\},
+00463 \{ 0, 0, 0, 0, 0\},
+00464 \{ 0, 0, 0, 0, 0\},
+00465 \{ 0, 0, 0, 0, 0\},
+00466 \{ 0, 0, 0, 0, 0\}\},
+00467 \textcolor{comment}{/* GU..GU */}
+00468 \{ \{ 0, 0, 0, 0, 0\},
+00469 \{ 0, 0, 0, 0, 0\},
+00470 \{ 0, 0, 0, 0, 0\},
+00471 \{ 0, 0, 0, 0, 0\},
+00472 \{ 0, 0, 0, 0, 0\}\},
+00473 \textcolor{comment}{/* GU..UG */}
+00474 \{ \{ 0, 0, 0, 0, 0\},
+00475 \{ 0, 0, 0, 0, 0\},
+00476 \{ 0, 0, 0, 0, 0\},
+00477 \{ 0, 0, 0, 0, 0\},
+00478 \{ 0, 0, 0, 0, 0\}\},
+00479 \textcolor{comment}{/* GU..AU */}
+00480 \{ \{ 0, 0, 0, 0, 0\},
+00481 \{ 0, 0, 0, 0, 0\},
+00482 \{ 0, 0, 0, 0, 0\},
+00483 \{ 0, 0, 0, 0, 0\},
+00484 \{ 0, 0, 0, 0, 0\}\},
+00485 \textcolor{comment}{/* GU..UA */}
+00486 \{ \{ 0, 0, 0, 0, 0\},
+00487 \{ 0, 0, 0, 0, 0\},
+00488 \{ 0, 0, 0, 0, 0\},
+00489 \{ 0, 0, 0, 0, 0\},
+00490 \{ 0, 0, 0, 0, 0\}\},
+00491 \textcolor{comment}{/* GU.. @ */}
+00492 \{ \{ 0, 0, 0, 0, 0\},
+00493 \{ 0, 0, 0, 0, 0\},
+00494 \{ 0, 0, 0, 0, 0\},
+00495 \{ 0, 0, 0, 0, 0\},
+00496 \{ 0, 0, 0, 0, 0\}\}\},
+00497 \textcolor{comment}{/* UG..GC */}
+00498 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00499 \{ \{ 0, 0, 0, 0, 0\},
+00500 \{ 0, 0, 0, 0, 0\},
+00501 \{ 0, 0, 0, 0, 0\},
+00502 \{ 0, 0, 0, 0, 0\},
+00503 \{ 0, 0, 0, 0, 0\}\},
+00504 \textcolor{comment}{/* UG..CG */}
+00505 \{ \{ 0, 0, 0, 0, 0\},
+00506 \{ 0, 0, 0, 0, 0\},
+00507 \{ 0, 0, 0, 0, 0\},
+00508 \{ 0, 0, 0, 0, 0\},
+00509 \{ 0, 0, 0, 0, 0\}\},
+00510 \textcolor{comment}{/* UG..GU */}
+00511 \{ \{ 0, 0, 0, 0, 0\},
+00512 \{ 0, 0, 0, 0, 0\},
+00513 \{ 0, 0, 0, 0, 0\},
+00514 \{ 0, 0, 0, 0, 0\},
+00515 \{ 0, 0, 0, 0, 0\}\},
+00516 \textcolor{comment}{/* UG..UG */}
+00517 \{ \{ 0, 0, 0, 0, 0\},
+00518 \{ 0, 0, 0, 0, 0\},
+00519 \{ 0, 0, 0, 0, 0\},
+00520 \{ 0, 0, 0, 0, 0\},
+00521 \{ 0, 0, 0, 0, 0\}\},
+00522 \textcolor{comment}{/* UG..AU */}
+00523 \{ \{ 0, 0, 0, 0, 0\},
+00524 \{ 0, 0, 0, 0, 0\},
+00525 \{ 0, 0, 0, 0, 0\},
+00526 \{ 0, 0, 0, 0, 0\},
+00527 \{ 0, 0, 0, 0, 0\}\},
+00528 \textcolor{comment}{/* UG..UA */}
+00529 \{ \{ 0, 0, 0, 0, 0\},
+00530 \{ 0, 0, 0, 0, 0\},
+00531 \{ 0, 0, 0, 0, 0\},
+00532 \{ 0, 0, 0, 0, 0\},
+00533 \{ 0, 0, 0, 0, 0\}\},
+00534 \textcolor{comment}{/* UG.. @ */}
+00535 \{ \{ 0, 0, 0, 0, 0\},
+00536 \{ 0, 0, 0, 0, 0\},
+00537 \{ 0, 0, 0, 0, 0\},
+00538 \{ 0, 0, 0, 0, 0\},
+00539 \{ 0, 0, 0, 0, 0\}\}\},
+00540 \textcolor{comment}{/* AU..GC */}
+00541 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00542 \{ \{ 0, 0, 0, 0, 0\},
+00543 \{ 0, 0, 0, 0, 0\},
+00544 \{ 0, 0, 0, 0, 0\},
+00545 \{ 0, 0, 0, 0, 0\},
+00546 \{ 0, 0, 0, 0, 0\}\},
+00547 \textcolor{comment}{/* AU..CG */}
+00548 \{ \{ 0, 0, 0, 0, 0\},
+00549 \{ 0, 0, 0, 0, 0\},
+00550 \{ 0, 0, 0, 0, 0\},
+00551 \{ 0, 0, 0, 0, 0\},
+00552 \{ 0, 0, 0, 0, 0\}\},
+00553 \textcolor{comment}{/* AU..GU */}
+00554 \{ \{ 0, 0, 0, 0, 0\},
+00555 \{ 0, 0, 0, 0, 0\},
+00556 \{ 0, 0, 0, 0, 0\},
+00557 \{ 0, 0, 0, 0, 0\},
+00558 \{ 0, 0, 0, 0, 0\}\},
+00559 \textcolor{comment}{/* AU..UG */}
+00560 \{ \{ 0, 0, 0, 0, 0\},
+00561 \{ 0, 0, 0, 0, 0\},
+00562 \{ 0, 0, 0, 0, 0\},
+00563 \{ 0, 0, 0, 0, 0\},
+00564 \{ 0, 0, 0, 0, 0\}\},
+00565 \textcolor{comment}{/* AU..AU */}
+00566 \{ \{ 0, 0, 0, 0, 0\},
+00567 \{ 0, 0, 0, 0, 0\},
+00568 \{ 0, 0, 0, 0, 0\},
+00569 \{ 0, 0, 0, 0, 0\},
+00570 \{ 0, 0, 0, 0, 0\}\},
+00571 \textcolor{comment}{/* AU..UA */}
+00572 \{ \{ 0, 0, 0, 0, 0\},
+00573 \{ 0, 0, 0, 0, 0\},
+00574 \{ 0, 0, 0, 0, 0\},
+00575 \{ 0, 0, 0, 0, 0\},
+00576 \{ 0, 0, 0, 0, 0\}\},
+00577 \textcolor{comment}{/* AU.. @ */}
+00578 \{ \{ 0, 0, 0, 0, 0\},
+00579 \{ 0, 0, 0, 0, 0\},
+00580 \{ 0, 0, 0, 0, 0\},
+00581 \{ 0, 0, 0, 0, 0\},
+00582 \{ 0, 0, 0, 0, 0\}\}\},
+00583 \textcolor{comment}{/* UA..GC */}
+00584 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00585 \{ \{ 0, 0, 0, 0, 0\},
+00586 \{ 0, 0, 0, 0, 0\},
+00587 \{ 0, 0, 0, 0, 0\},
+00588 \{ 0, 0, 0, 0, 0\},
+00589 \{ 0, 0, 0, 0, 0\}\},
+00590 \textcolor{comment}{/* UA..CG */}
+00591 \{ \{ 0, 0, 0, 0, 0\},
+00592 \{ 0, 0, 0, 0, 0\},
+00593 \{ 0, 0, 0, 0, 0\},
+00594 \{ 0, 0, 0, 0, 0\},
+00595 \{ 0, 0, 0, 0, 0\}\},
+00596 \textcolor{comment}{/* UA..GU */}
+00597 \{ \{ 0, 0, 0, 0, 0\},
+00598 \{ 0, 0, 0, 0, 0\},
+00599 \{ 0, 0, 0, 0, 0\},
+00600 \{ 0, 0, 0, 0, 0\},
+00601 \{ 0, 0, 0, 0, 0\}\},
+00602 \textcolor{comment}{/* UA..UG */}
+00603 \{ \{ 0, 0, 0, 0, 0\},
+00604 \{ 0, 0, 0, 0, 0\},
+00605 \{ 0, 0, 0, 0, 0\},
+00606 \{ 0, 0, 0, 0, 0\},
+00607 \{ 0, 0, 0, 0, 0\}\},
+00608 \textcolor{comment}{/* UA..AU */}
+00609 \{ \{ 0, 0, 0, 0, 0\},
+00610 \{ 0, 0, 0, 0, 0\},
+00611 \{ 0, 0, 0, 0, 0\},
+00612 \{ 0, 0, 0, 0, 0\},
+00613 \{ 0, 0, 0, 0, 0\}\},
+00614 \textcolor{comment}{/* UA..UA */}
+00615 \{ \{ 0, 0, 0, 0, 0\},
+00616 \{ 0, 0, 0, 0, 0\},
+00617 \{ 0, 0, 0, 0, 0\},
+00618 \{ 0, 0, 0, 0, 0\},
+00619 \{ 0, 0, 0, 0, 0\}\},
+00620 \textcolor{comment}{/* UA.. @ */}
+00621 \{ \{ 0, 0, 0, 0, 0\},
+00622 \{ 0, 0, 0, 0, 0\},
+00623 \{ 0, 0, 0, 0, 0\},
+00624 \{ 0, 0, 0, 0, 0\},
+00625 \{ 0, 0, 0, 0, 0\}\}\},
+00626 \textcolor{comment}{/* @..GC */}
+00627 \{ \textcolor{comment}{/* noPair */} \{\{0\}\},
+00628 \{ \{ 0, 0, 0, 0, 0\},
+00629 \{ 0, 0, 0, 0, 0\},
+00630 \{ 0, 0, 0, 0, 0\},
+00631 \{ 0, 0, 0, 0, 0\},
+00632 \{ 0, 0, 0, 0, 0\}\},
+00633 \textcolor{comment}{/* @..CG */}
+00634 \{ \{ 0, 0, 0, 0, 0\},
+00635 \{ 0, 0, 0, 0, 0\},
+00636 \{ 0, 0, 0, 0, 0\},
+00637 \{ 0, 0, 0, 0, 0\},
+00638 \{ 0, 0, 0, 0, 0\}\},
+00639 \textcolor{comment}{/* @..GU */}
+00640 \{ \{ 0, 0, 0, 0, 0\},
+00641 \{ 0, 0, 0, 0, 0\},
+00642 \{ 0, 0, 0, 0, 0\},
+00643 \{ 0, 0, 0, 0, 0\},
+00644 \{ 0, 0, 0, 0, 0\}\},
+00645 \textcolor{comment}{/* @..UG */}
+00646 \{ \{ 0, 0, 0, 0, 0\},
+00647 \{ 0, 0, 0, 0, 0\},
+00648 \{ 0, 0, 0, 0, 0\},
+00649 \{ 0, 0, 0, 0, 0\},
+00650 \{ 0, 0, 0, 0, 0\}\},
+00651 \textcolor{comment}{/* @..AU */}
+00652 \{ \{ 0, 0, 0, 0, 0\},
+00653 \{ 0, 0, 0, 0, 0\},
+00654 \{ 0, 0, 0, 0, 0\},
+00655 \{ 0, 0, 0, 0, 0\},
+00656 \{ 0, 0, 0, 0, 0\}\},
+00657 \textcolor{comment}{/* @..UA */}
+00658 \{ \{ 0, 0, 0, 0, 0\},
+00659 \{ 0, 0, 0, 0, 0\},
+00660 \{ 0, 0, 0, 0, 0\},
+00661 \{ 0, 0, 0, 0, 0\},
+00662 \{ 0, 0, 0, 0, 0\}\},
+00663 \textcolor{comment}{/* @.. @ */}
+00664 \{ \{ 0, 0, 0, 0, 0\},
+00665 \{ 0, 0, 0, 0, 0\},
+00666 \{ 0, 0, 0, 0, 0\},
+00667 \{ 0, 0, 0, 0, 0\},
+00668 \{ 0, 0, 0, 0, 0\}\}\}\};
+00669
+00670 PRIVATE \textcolor{keywordtype}{int} int21\_37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5] =
+00671 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+00672 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+00673 \{
+00674 \textcolor{comment}{/* CG.@..GC */}
+00675 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00676 \textcolor{comment}{/* CG.A..GC */}
+00677 \{\{ 550, 550, 550, 550, 550\},\{ 550, 240, 220, 160, 400\},\{ 550, 210, 170, 160, 400\},\{ 550, 100, 60, 40, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00678 \textcolor{comment}{/* CG.C..GC */}
+00679 \{\{ 550, 550, 550, 550, 550\},\{ 550, 230, 220, 400, 220\},\{ 550, 220, 250, 400, 220\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 250, 190, 400, 220\}\},
+00680 \textcolor{comment}{/* CG.G..GC */}
+00681 \{\{ 550, 550, 550, 550, 550\},\{ 550, 170, 400, 80, 400\},\{ 550, 400, 400, 400, 400\},\{ 550, 80, 400, 220, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00682 \textcolor{comment}{/* CG.U..GC */}
+00683 \{\{ 550, 550, 550, 550, 550\},\{ 550, 400, 400, 400, 400\},\{ 550, 400, 220, 400, 130\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 400, 170, 400, 120\}\}
+00684 \},
+00685 \{
+00686 \textcolor{comment}{/* CG.@..CG */}
+00687 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00688 \textcolor{comment}{/* CG.A..CG */}
+00689 \{\{ 550, 550, 550, 550, 550\},\{ 550, 230, 220, 110, 400\},\{ 550, 210, 170, 160, 400\},\{ 550, 80, 60, 40, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00690 \textcolor{comment}{/* CG.C..CG */}
+00691 \{\{ 550, 550, 550, 550, 550\},\{ 550, 230, 220, 400, 220\},\{ 550, 220, 250, 400, 220\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 250, 190, 400, 220\}\},
+00692 \textcolor{comment}{/* CG.G..CG */}
+00693 \{\{ 550, 550, 550, 550, 550\},\{ 550, 170, 400, 80, 400\},\{ 550, 400, 400, 400, 400\},\{ 550, 80, 400, 220, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00694 \textcolor{comment}{/* CG.U..CG */}
+00695 \{\{ 550, 550, 550, 550, 550\},\{ 550, 400, 400, 400, 400\},\{ 550, 400, 220, 400, 150\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 400, 170, 400, 120\}\}
+00696 \},
+00697 \{
+00698 \textcolor{comment}{/* CG.@..UG */}
+00699 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00700 \textcolor{comment}{/* CG.A..UG */}
+00701 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00702 \textcolor{comment}{/* CG.C..UG */}
+00703 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00704 \textcolor{comment}{/* CG.G..UG */}
+00705 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00706 \textcolor{comment}{/* CG.U..UG */}
+00707 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00708 \},
+00709 \{
+00710 \textcolor{comment}{/* CG.@..GU */}
+00711 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00712 \textcolor{comment}{/* CG.A..GU */}
+00713 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00714 \textcolor{comment}{/* CG.C..GU */}
+00715 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00716 \textcolor{comment}{/* CG.G..GU */}
+00717 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00718 \textcolor{comment}{/* CG.U..GU */}
+00719 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00720 \},
+00721 \{
+00722 \textcolor{comment}{/* CG.@..UA */}
+00723 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00724 \textcolor{comment}{/* CG.A..UA */}
+00725 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00726 \textcolor{comment}{/* CG.C..UA */}
+00727 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00728 \textcolor{comment}{/* CG.G..UA */}
+00729 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00730 \textcolor{comment}{/* CG.U..UA */}
+00731 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00732 \},
+00733 \{
+00734 \textcolor{comment}{/* CG.@..AU */}
+00735 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00736 \textcolor{comment}{/* CG.A..AU */}
+00737 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00738 \textcolor{comment}{/* CG.C..AU */}
+00739 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00740 \textcolor{comment}{/* CG.G..AU */}
+00741 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00742 \textcolor{comment}{/* CG.U..AU */}
+00743 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00744 \},
+00745 \{
+00746 \textcolor{comment}{/* CG.@..?? */}
+00747 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00748 \textcolor{comment}{/* CG.A..?? */}
+00749 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00750 \textcolor{comment}{/* CG.C..?? */}
+00751 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00752 \textcolor{comment}{/* CG.G..?? */}
+00753 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00754 \textcolor{comment}{/* CG.U..?? */}
+00755 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+00756 \}
+00757 \},
+00758 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+00759 \{
+00760 \textcolor{comment}{/* GC.@..GC */}
+00761 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00762 \textcolor{comment}{/* GC.A..GC */}
+00763 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 220, 210, 400\},\{ 550, 210, 170, 160, 400\},\{ 550, 120, 60, 40, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00764 \textcolor{comment}{/* GC.C..GC */}
+00765 \{\{ 550, 550, 550, 550, 550\},\{ 550, 230, 220, 400, 220\},\{ 550, 220, 250, 400, 220\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 250, 190, 400, 220\}\},
+00766 \textcolor{comment}{/* GC.G..GC */}
+00767 \{\{ 550, 550, 550, 550, 550\},\{ 550, 170, 400, 80, 400\},\{ 550, 400, 400, 400, 400\},\{ 550, 80, 400, 220, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00768 \textcolor{comment}{/* GC.U..GC */}
+00769 \{\{ 550, 550, 550, 550, 550\},\{ 550, 400, 400, 400, 400\},\{ 550, 400, 220, 400, 120\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 400, 170, 400, 120\}\}
+00770 \},
+00771 \{
+00772 \textcolor{comment}{/* GC.@..CG */}
+00773 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00774 \textcolor{comment}{/* GC.A..CG */}
+00775 \{\{ 550, 550, 550, 550, 550\},\{ 550, 240, 220, 160, 400\},\{ 550, 210, 170, 160, 400\},\{ 550, 100, 60, 40, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00776 \textcolor{comment}{/* GC.C..CG */}
+00777 \{\{ 550, 550, 550, 550, 550\},\{ 550, 230, 220, 400, 220\},\{ 550, 220, 250, 400, 220\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 250, 190, 400, 220\}\},
+00778 \textcolor{comment}{/* GC.G..CG */}
+00779 \{\{ 550, 550, 550, 550, 550\},\{ 550, 170, 400, 80, 400\},\{ 550, 400, 400, 400, 400\},\{ 550, 80, 400, 220, 400
+ \},\{ 550, 400, 400, 400, 400\}\},
+00780 \textcolor{comment}{/* GC.U..CG */}
+00781 \{\{ 550, 550, 550, 550, 550\},\{ 550, 400, 400, 400, 400\},\{ 550, 400, 220, 400, 130\},\{ 550, 400, 400, 400, 400
+ \},\{ 550, 400, 170, 400, 120\}\}
+00782 \},
+00783 \{
+00784 \textcolor{comment}{/* GC.@..UG */}
+00785 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00786 \textcolor{comment}{/* GC.A..UG */}
+00787 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00788 \textcolor{comment}{/* GC.C..UG */}
+00789 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00790 \textcolor{comment}{/* GC.G..UG */}
+00791 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00792 \textcolor{comment}{/* GC.U..UG */}
+00793 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00794 \},
+00795 \{
+00796 \textcolor{comment}{/* GC.@..GU */}
+00797 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00798 \textcolor{comment}{/* GC.A..GU */}
+00799 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00800 \textcolor{comment}{/* GC.C..GU */}
+00801 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00802 \textcolor{comment}{/* GC.G..GU */}
+00803 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00804 \textcolor{comment}{/* GC.U..GU */}
+00805 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00806 \},
+00807 \{
+00808 \textcolor{comment}{/* GC.@..UA */}
+00809 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00810 \textcolor{comment}{/* GC.A..UA */}
+00811 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00812 \textcolor{comment}{/* GC.C..UA */}
+00813 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00814 \textcolor{comment}{/* GC.G..UA */}
+00815 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00816 \textcolor{comment}{/* GC.U..UA */}
+00817 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00818 \},
+00819 \{
+00820 \textcolor{comment}{/* GC.@..AU */}
+00821 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00822 \textcolor{comment}{/* GC.A..AU */}
+00823 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00824 \textcolor{comment}{/* GC.C..AU */}
+00825 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00826 \textcolor{comment}{/* GC.G..AU */}
+00827 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00828 \textcolor{comment}{/* GC.U..AU */}
+00829 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00830 \},
+00831 \{
+00832 \textcolor{comment}{/* GC.@..?? */}
+00833 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00834 \textcolor{comment}{/* GC.A..?? */}
+00835 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00836 \textcolor{comment}{/* GC.C..?? */}
+00837 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00838 \textcolor{comment}{/* GC.G..?? */}
+00839 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00840 \textcolor{comment}{/* GC.U..?? */}
+00841 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+00842 \}
+00843 \},
+00844 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+00845 \{
+00846 \textcolor{comment}{/* GU.@..GC */}
+00847 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00848 \textcolor{comment}{/* GU.A..GC */}
+00849 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00850 \textcolor{comment}{/* GU.C..GC */}
+00851 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00852 \textcolor{comment}{/* GU.G..GC */}
+00853 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00854 \textcolor{comment}{/* GU.U..GC */}
+00855 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00856 \},
+00857 \{
+00858 \textcolor{comment}{/* GU.@..CG */}
+00859 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00860 \textcolor{comment}{/* GU.A..CG */}
+00861 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00862 \textcolor{comment}{/* GU.C..CG */}
+00863 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00864 \textcolor{comment}{/* GU.G..CG */}
+00865 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00866 \textcolor{comment}{/* GU.U..CG */}
+00867 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00868 \},
+00869 \{
+00870 \textcolor{comment}{/* GU.@..UG */}
+00871 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00872 \textcolor{comment}{/* GU.A..UG */}
+00873 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00874 \textcolor{comment}{/* GU.C..UG */}
+00875 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00876 \textcolor{comment}{/* GU.G..UG */}
+00877 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00878 \textcolor{comment}{/* GU.U..UG */}
+00879 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00880 \},
+00881 \{
+00882 \textcolor{comment}{/* GU.@..GU */}
+00883 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00884 \textcolor{comment}{/* GU.A..GU */}
+00885 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00886 \textcolor{comment}{/* GU.C..GU */}
+00887 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00888 \textcolor{comment}{/* GU.G..GU */}
+00889 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00890 \textcolor{comment}{/* GU.U..GU */}
+00891 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00892 \},
+00893 \{
+00894 \textcolor{comment}{/* GU.@..UA */}
+00895 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00896 \textcolor{comment}{/* GU.A..UA */}
+00897 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00898 \textcolor{comment}{/* GU.C..UA */}
+00899 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00900 \textcolor{comment}{/* GU.G..UA */}
+00901 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00902 \textcolor{comment}{/* GU.U..UA */}
+00903 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00904 \},
+00905 \{
+00906 \textcolor{comment}{/* GU.@..AU */}
+00907 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00908 \textcolor{comment}{/* GU.A..AU */}
+00909 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00910 \textcolor{comment}{/* GU.C..AU */}
+00911 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00912 \textcolor{comment}{/* GU.G..AU */}
+00913 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00914 \textcolor{comment}{/* GU.U..AU */}
+00915 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00916 \},
+00917 \{
+00918 \textcolor{comment}{/* GU.@..?? */}
+00919 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00920 \textcolor{comment}{/* GU.A..?? */}
+00921 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00922 \textcolor{comment}{/* GU.C..?? */}
+00923 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00924 \textcolor{comment}{/* GU.G..?? */}
+00925 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00926 \textcolor{comment}{/* GU.U..?? */}
+00927 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+00928 \}
+00929 \},
+00930 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+00931 \{
+00932 \textcolor{comment}{/* UG.@..GC */}
+00933 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00934 \textcolor{comment}{/* UG.A..GC */}
+00935 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00936 \textcolor{comment}{/* UG.C..GC */}
+00937 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00938 \textcolor{comment}{/* UG.G..GC */}
+00939 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00940 \textcolor{comment}{/* UG.U..GC */}
+00941 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00942 \},
+00943 \{
+00944 \textcolor{comment}{/* UG.@..CG */}
+00945 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00946 \textcolor{comment}{/* UG.A..CG */}
+00947 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00948 \textcolor{comment}{/* UG.C..CG */}
+00949 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+00950 \textcolor{comment}{/* UG.G..CG */}
+00951 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+00952 \textcolor{comment}{/* UG.U..CG */}
+00953 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+00954 \},
+00955 \{
+00956 \textcolor{comment}{/* UG.@..UG */}
+00957 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00958 \textcolor{comment}{/* UG.A..UG */}
+00959 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00960 \textcolor{comment}{/* UG.C..UG */}
+00961 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00962 \textcolor{comment}{/* UG.G..UG */}
+00963 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00964 \textcolor{comment}{/* UG.U..UG */}
+00965 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00966 \},
+00967 \{
+00968 \textcolor{comment}{/* UG.@..GU */}
+00969 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00970 \textcolor{comment}{/* UG.A..GU */}
+00971 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00972 \textcolor{comment}{/* UG.C..GU */}
+00973 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00974 \textcolor{comment}{/* UG.G..GU */}
+00975 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00976 \textcolor{comment}{/* UG.U..GU */}
+00977 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00978 \},
+00979 \{
+00980 \textcolor{comment}{/* UG.@..UA */}
+00981 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00982 \textcolor{comment}{/* UG.A..UA */}
+00983 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00984 \textcolor{comment}{/* UG.C..UA */}
+00985 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00986 \textcolor{comment}{/* UG.G..UA */}
+00987 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00988 \textcolor{comment}{/* UG.U..UA */}
+00989 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+00990 \},
+00991 \{
+00992 \textcolor{comment}{/* UG.@..AU */}
+00993 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00994 \textcolor{comment}{/* UG.A..AU */}
+00995 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+00996 \textcolor{comment}{/* UG.C..AU */}
+00997 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+00998 \textcolor{comment}{/* UG.G..AU */}
+00999 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01000 \textcolor{comment}{/* UG.U..AU */}
+01001 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01002 \},
+01003 \{
+01004 \textcolor{comment}{/* UG.@..?? */}
+01005 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01006 \textcolor{comment}{/* UG.A..?? */}
+01007 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01008 \textcolor{comment}{/* UG.C..?? */}
+01009 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01010 \textcolor{comment}{/* UG.G..?? */}
+01011 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01012 \textcolor{comment}{/* UG.U..?? */}
+01013 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01014 \}
+01015 \},
+01016 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01017 \{
+01018 \textcolor{comment}{/* AU.@..GC */}
+01019 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01020 \textcolor{comment}{/* AU.A..GC */}
+01021 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01022 \textcolor{comment}{/* AU.C..GC */}
+01023 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+01024 \textcolor{comment}{/* AU.G..GC */}
+01025 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01026 \textcolor{comment}{/* AU.U..GC */}
+01027 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+01028 \},
+01029 \{
+01030 \textcolor{comment}{/* AU.@..CG */}
+01031 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01032 \textcolor{comment}{/* AU.A..CG */}
+01033 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01034 \textcolor{comment}{/* AU.C..CG */}
+01035 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+01036 \textcolor{comment}{/* AU.G..CG */}
+01037 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01038 \textcolor{comment}{/* AU.U..CG */}
+01039 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+01040 \},
+01041 \{
+01042 \textcolor{comment}{/* AU.@..UG */}
+01043 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01044 \textcolor{comment}{/* AU.A..UG */}
+01045 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01046 \textcolor{comment}{/* AU.C..UG */}
+01047 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01048 \textcolor{comment}{/* AU.G..UG */}
+01049 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01050 \textcolor{comment}{/* AU.U..UG */}
+01051 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01052 \},
+01053 \{
+01054 \textcolor{comment}{/* AU.@..GU */}
+01055 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01056 \textcolor{comment}{/* AU.A..GU */}
+01057 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01058 \textcolor{comment}{/* AU.C..GU */}
+01059 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01060 \textcolor{comment}{/* AU.G..GU */}
+01061 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01062 \textcolor{comment}{/* AU.U..GU */}
+01063 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01064 \},
+01065 \{
+01066 \textcolor{comment}{/* AU.@..UA */}
+01067 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01068 \textcolor{comment}{/* AU.A..UA */}
+01069 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01070 \textcolor{comment}{/* AU.C..UA */}
+01071 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01072 \textcolor{comment}{/* AU.G..UA */}
+01073 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01074 \textcolor{comment}{/* AU.U..UA */}
+01075 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01076 \},
+01077 \{
+01078 \textcolor{comment}{/* AU.@..AU */}
+01079 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01080 \textcolor{comment}{/* AU.A..AU */}
+01081 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01082 \textcolor{comment}{/* AU.C..AU */}
+01083 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01084 \textcolor{comment}{/* AU.G..AU */}
+01085 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01086 \textcolor{comment}{/* AU.U..AU */}
+01087 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01088 \},
+01089 \{
+01090 \textcolor{comment}{/* AU.@..?? */}
+01091 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01092 \textcolor{comment}{/* AU.A..?? */}
+01093 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01094 \textcolor{comment}{/* AU.C..?? */}
+01095 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01096 \textcolor{comment}{/* AU.G..?? */}
+01097 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01098 \textcolor{comment}{/* AU.U..?? */}
+01099 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01100 \}
+01101 \},
+01102 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01103 \{
+01104 \textcolor{comment}{/* UA.@..GC */}
+01105 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01106 \textcolor{comment}{/* UA.A..GC */}
+01107 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01108 \textcolor{comment}{/* UA.C..GC */}
+01109 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+01110 \textcolor{comment}{/* UA.G..GC */}
+01111 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01112 \textcolor{comment}{/* UA.U..GC */}
+01113 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+01114 \},
+01115 \{
+01116 \textcolor{comment}{/* UA.@..CG */}
+01117 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01118 \textcolor{comment}{/* UA.A..CG */}
+01119 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 300, 240, 480\},\{ 550, 290, 250, 240, 480\},\{ 550, 180, 140, 120, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01120 \textcolor{comment}{/* UA.C..CG */}
+01121 \{\{ 550, 550, 550, 550, 550\},\{ 550, 310, 300, 480, 300\},\{ 550, 300, 330, 480, 300\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 330, 270, 480, 300\}\},
+01122 \textcolor{comment}{/* UA.G..CG */}
+01123 \{\{ 550, 550, 550, 550, 550\},\{ 550, 250, 480, 160, 480\},\{ 550, 480, 480, 480, 480\},\{ 550, 160, 480, 300, 480
+ \},\{ 550, 480, 480, 480, 480\}\},
+01124 \textcolor{comment}{/* UA.U..CG */}
+01125 \{\{ 550, 550, 550, 550, 550\},\{ 550, 480, 480, 480, 480\},\{ 550, 480, 300, 480, 210\},\{ 550, 480, 480, 480, 480
+ \},\{ 550, 480, 250, 480, 200\}\}
+01126 \},
+01127 \{
+01128 \textcolor{comment}{/* UA.@..UG */}
+01129 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01130 \textcolor{comment}{/* UA.A..UG */}
+01131 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01132 \textcolor{comment}{/* UA.C..UG */}
+01133 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01134 \textcolor{comment}{/* UA.G..UG */}
+01135 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01136 \textcolor{comment}{/* UA.U..UG */}
+01137 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01138 \},
+01139 \{
+01140 \textcolor{comment}{/* UA.@..GU */}
+01141 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01142 \textcolor{comment}{/* UA.A..GU */}
+01143 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01144 \textcolor{comment}{/* UA.C..GU */}
+01145 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01146 \textcolor{comment}{/* UA.G..GU */}
+01147 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01148 \textcolor{comment}{/* UA.U..GU */}
+01149 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01150 \},
+01151 \{
+01152 \textcolor{comment}{/* UA.@..UA */}
+01153 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01154 \textcolor{comment}{/* UA.A..UA */}
+01155 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01156 \textcolor{comment}{/* UA.C..UA */}
+01157 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01158 \textcolor{comment}{/* UA.G..UA */}
+01159 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01160 \textcolor{comment}{/* UA.U..UA */}
+01161 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01162 \},
+01163 \{
+01164 \textcolor{comment}{/* UA.@..AU */}
+01165 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01166 \textcolor{comment}{/* UA.A..AU */}
+01167 \{\{ 550, 550, 550, 550, 550\},\{ 550, 390, 370, 310, 550\},\{ 550, 360, 320, 310, 550\},\{ 550, 250, 210, 190, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01168 \textcolor{comment}{/* UA.C..AU */}
+01169 \{\{ 550, 550, 550, 550, 550\},\{ 550, 380, 370, 550, 370\},\{ 550, 370, 400, 550, 370\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 400, 340, 550, 370\}\},
+01170 \textcolor{comment}{/* UA.G..AU */}
+01171 \{\{ 550, 550, 550, 550, 550\},\{ 550, 320, 550, 230, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 230, 550, 370, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01172 \textcolor{comment}{/* UA.U..AU */}
+01173 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 370, 550, 280\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 320, 550, 270\}\}
+01174 \},
+01175 \{
+01176 \textcolor{comment}{/* UA.@..?? */}
+01177 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01178 \textcolor{comment}{/* UA.A..?? */}
+01179 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01180 \textcolor{comment}{/* UA.C..?? */}
+01181 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01182 \textcolor{comment}{/* UA.G..?? */}
+01183 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01184 \textcolor{comment}{/* UA.U..?? */}
+01185 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01186 \}
+01187 \},
+01188 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01189 \{
+01190 \textcolor{comment}{/* ??.@..GC */}
+01191 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01192 \textcolor{comment}{/* ??.A..GC */}
+01193 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01194 \textcolor{comment}{/* ??.C..GC */}
+01195 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01196 \textcolor{comment}{/* ??.G..GC */}
+01197 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01198 \textcolor{comment}{/* ??.U..GC */}
+01199 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01200 \},
+01201 \{
+01202 \textcolor{comment}{/* ??.@..CG */}
+01203 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01204 \textcolor{comment}{/* ??.A..CG */}
+01205 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01206 \textcolor{comment}{/* ??.C..CG */}
+01207 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01208 \textcolor{comment}{/* ??.G..CG */}
+01209 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01210 \textcolor{comment}{/* ??.U..CG */}
+01211 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01212 \},
+01213 \{
+01214 \textcolor{comment}{/* ??.@..UG */}
+01215 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01216 \textcolor{comment}{/* ??.A..UG */}
+01217 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01218 \textcolor{comment}{/* ??.C..UG */}
+01219 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01220 \textcolor{comment}{/* ??.G..UG */}
+01221 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01222 \textcolor{comment}{/* ??.U..UG */}
+01223 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01224 \},
+01225 \{
+01226 \textcolor{comment}{/* ??.@..GU */}
+01227 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01228 \textcolor{comment}{/* ??.A..GU */}
+01229 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01230 \textcolor{comment}{/* ??.C..GU */}
+01231 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01232 \textcolor{comment}{/* ??.G..GU */}
+01233 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01234 \textcolor{comment}{/* ??.U..GU */}
+01235 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01236 \},
+01237 \{
+01238 \textcolor{comment}{/* ??.@..UA */}
+01239 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01240 \textcolor{comment}{/* ??.A..UA */}
+01241 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01242 \textcolor{comment}{/* ??.C..UA */}
+01243 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01244 \textcolor{comment}{/* ??.G..UA */}
+01245 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01246 \textcolor{comment}{/* ??.U..UA */}
+01247 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01248 \},
+01249 \{
+01250 \textcolor{comment}{/* ??.@..AU */}
+01251 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01252 \textcolor{comment}{/* ??.A..AU */}
+01253 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01254 \textcolor{comment}{/* ??.C..AU */}
+01255 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01256 \textcolor{comment}{/* ??.G..AU */}
+01257 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01258 \textcolor{comment}{/* ??.U..AU */}
+01259 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01260 \},
+01261 \{
+01262 \textcolor{comment}{/* ??.@..?? */}
+01263 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01264 \textcolor{comment}{/* ??.A..?? */}
+01265 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01266 \textcolor{comment}{/* ??.C..?? */}
+01267 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01268 \textcolor{comment}{/* ??.G..?? */}
+01269 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\},
+01270 \textcolor{comment}{/* ??.U..?? */}
+01271 \{\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550\},\{ 550, 550, 550, 550, 550
+ \},\{ 550, 550, 550, 550, 550\}\}
+01272 \}
+01273 \}
+01274 \};
+01275
+01276 PRIVATE \textcolor{keywordtype}{int} int21\_H\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5] =
+01277 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+01278 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01279 \{
+01280 \textcolor{comment}{/* CG.@..CG */}
+01281 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01282 \textcolor{comment}{/* CG.A..CG */}
+01283 \{\{ DEF,-1029, -949,-1029,-1029\},\{-1079,-2058,-1978,-2058,-2058\},\{ -569,-1548,-1468,-1548,-1548\},\{ -989,-
+ 1968,-1888,-1968,-1968\},\{ -859,-1838,-1758,-1838,-1838\}\},
+01284 \textcolor{comment}{/* CG.C..CG */}
+01285 \{\{ DEF, -519, -449, -519, -669\},\{ -999,-1468,-1398,-1468,-1618\},\{ -499, -968, -898, -968,-1118\},\{ -989,-
+ 1458,-1388,-1458,-1608\},\{ -789,-1258,-1188,-1258,-1408\}\},
+01286 \textcolor{comment}{/* CG.G..CG */}
+01287 \{\{ DEF, -939, -939, -939, -939\},\{-1079,-1968,-1968,-1968,-1968\},\{ -569,-1458,-1458,-1458,-1458\},\{ -989,-
+ 1878,-1878,-1878,-1878\},\{ -859,-1748,-1748,-1748,-1748\}\},
+01288 \textcolor{comment}{/* CG.U..CG */}
+01289 \{\{ DEF, -809, -739, -809, -859\},\{-1079,-1838,-1768,-1838,-1888\},\{ -719,-1478,-1408,-1478,-1528\},\{ -989,-
+ 1748,-1678,-1748,-1798\},\{ -909,-1668,-1598,-1668,-1718\}\}
+01290 \},
+01291 \{
+01292 \textcolor{comment}{/* CG.@..GC */}
+01293 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01294 \textcolor{comment}{/* CG.A..GC */}
+01295 \{\{ DEF,-1029, -949,-1029,-1029\},\{ -569,-1548,-1468,-1548,-1548\},\{ -769,-1748,-1668,-1748,-1748\},\{ -759,-
+ 1738,-1658,-1738,-1738\},\{ -549,-1528,-1448,-1528,-1528\}\},
+01296 \textcolor{comment}{/* CG.C..GC */}
+01297 \{\{ DEF, -519, -449, -519, -669\},\{ -929,-1398,-1328,-1398,-1548\},\{ -359, -828, -758, -828, -978\},\{ -789,-
+ 1258,-1188,-1258,-1408\},\{ -549,-1018, -948,-1018,-1168\}\},
+01298 \textcolor{comment}{/* CG.G..GC */}
+01299 \{\{ DEF, -939, -939, -939, -939\},\{ -609,-1498,-1498,-1498,-1498\},\{ -359,-1248,-1248,-1248,-1248\},\{ -669,-
+ 1558,-1558,-1558,-1558\},\{ -549,-1438,-1438,-1438,-1438\}\},
+01300 \textcolor{comment}{/* CG.U..GC */}
+01301 \{\{ DEF, -809, -739, -809, -859\},\{ -929,-1688,-1618,-1688,-1738\},\{ -439,-1198,-1128,-1198,-1248\},\{ -789,-
+ 1548,-1478,-1548,-1598\},\{ -619,-1378,-1308,-1378,-1428\}\}
+01302 \},
+01303 \{
+01304 \textcolor{comment}{/* CG.@..GU */}
+01305 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01306 \textcolor{comment}{/* CG.A..GU */}
+01307 \{\{ DEF,-1029, -949,-1029,-1029\},\{ -479,-1458,-1378,-1458,-1458\},\{ -309,-1288,-1208,-1288,-1288\},\{ -389,-
+ 1368,-1288,-1368,-1368\},\{ -379,-1358,-1278,-1358,-1358\}\},
+01308 \textcolor{comment}{/* CG.C..GU */}
+01309 \{\{ DEF, -519, -449, -519, -669\},\{ -649,-1118,-1048,-1118,-1268\},\{ -289, -758, -688, -758, -908\},\{ -739,-
+ 1208,-1138,-1208,-1358\},\{ -379, -848, -778, -848, -998\}\},
+01310 \textcolor{comment}{/* CG.G..GU */}
+01311 \{\{ DEF, -939, -939, -939, -939\},\{ -649,-1538,-1538,-1538,-1538\},\{ -289,-1178,-1178,-1178,-1178\},\{ -739,-
+ 1628,-1628,-1628,-1628\},\{ -379,-1268,-1268,-1268,-1268\}\},
+01312 \textcolor{comment}{/* CG.U..GU */}
+01313 \{\{ DEF, -809, -739, -809, -859\},\{ -649,-1408,-1338,-1408,-1458\},\{ -289,-1048, -978,-1048,-1098\},\{ -739,-
+ 1498,-1428,-1498,-1548\},\{ -379,-1138,-1068,-1138,-1188\}\}
+01314 \},
+01315 \{
+01316 \textcolor{comment}{/* CG.@..UG */}
+01317 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01318 \textcolor{comment}{/* CG.A..UG */}
+01319 \{\{ DEF,-1029, -949,-1029,-1029\},\{ -769,-1748,-1668,-1748,-1748\},\{ -529,-1508,-1428,-1508,-1508\},\{ -709,-
+ 1688,-1608,-1688,-1688\},\{ -599,-1578,-1498,-1578,-1578\}\},
+01320 \textcolor{comment}{/* CG.C..UG */}
+01321 \{\{ DEF, -519, -449, -519, -669\},\{ -839,-1308,-1238,-1308,-1458\},\{ -529, -998, -928, -998,-1148\},\{ -859,-
+ 1328,-1258,-1328,-1478\},\{ -489, -958, -888, -958,-1108\}\},
+01322 \textcolor{comment}{/* CG.G..UG */}
+01323 \{\{ DEF, -939, -939, -939, -939\},\{-1009,-1898,-1898,-1898,-1898\},\{ -409,-1298,-1298,-1298,-1298\},\{ -969,-
+ 1858,-1858,-1858,-1858\},\{ -599,-1488,-1488,-1488,-1488\}\},
+01324 \textcolor{comment}{/* CG.U..UG */}
+01325 \{\{ DEF, -809, -739, -809, -859\},\{ -859,-1618,-1548,-1618,-1668\},\{ -529,-1288,-1218,-1288,-1338\},\{ -859,-
+ 1618,-1548,-1618,-1668\},\{ -409,-1168,-1098,-1168,-1218\}\}
+01326 \},
+01327 \{
+01328 \textcolor{comment}{/* CG.@..AU */}
+01329 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01330 \textcolor{comment}{/* CG.A..AU */}
+01331 \{\{ DEF,-1029, -949,-1029,-1029\},\{ -479,-1458,-1378,-1458,-1458\},\{ -309,-1288,-1208,-1288,-1288\},\{ -389,-
+ 1368,-1288,-1368,-1368\},\{ -379,-1358,-1278,-1358,-1358\}\},
+01332 \textcolor{comment}{/* CG.C..AU */}
+01333 \{\{ DEF, -519, -449, -519, -669\},\{ -649,-1118,-1048,-1118,-1268\},\{ -289, -758, -688, -758, -908\},\{ -739,-
+ 1208,-1138,-1208,-1358\},\{ -379, -848, -778, -848, -998\}\},
+01334 \textcolor{comment}{/* CG.G..AU */}
+01335 \{\{ DEF, -939, -939, -939, -939\},\{ -649,-1538,-1538,-1538,-1538\},\{ -289,-1178,-1178,-1178,-1178\},\{ -739,-
+ 1628,-1628,-1628,-1628\},\{ -379,-1268,-1268,-1268,-1268\}\},
+01336 \textcolor{comment}{/* CG.U..AU */}
+01337 \{\{ DEF, -809, -739, -809, -859\},\{ -649,-1408,-1338,-1408,-1458\},\{ -289,-1048, -978,-1048,-1098\},\{ -739,-
+ 1498,-1428,-1498,-1548\},\{ -379,-1138,-1068,-1138,-1188\}\}
+01338 \},
+01339 \{
+01340 \textcolor{comment}{/* CG.@..UA */}
+01341 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01342 \textcolor{comment}{/* CG.A..UA */}
+01343 \{\{ DEF,-1029, -949,-1029,-1029\},\{ -449,-1428,-1348,-1428,-1428\},\{ -479,-1458,-1378,-1458,-1458\},\{ -429,-
+ 1408,-1328,-1408,-1408\},\{ -329,-1308,-1228,-1308,-1308\}\},
+01344 \textcolor{comment}{/* CG.C..UA */}
+01345 \{\{ DEF, -519, -449, -519, -669\},\{ -679,-1148,-1078,-1148,-1298\},\{ -559,-1028, -958,-1028,-1178\},\{ -729,-
+ 1198,-1128,-1198,-1348\},\{ -189, -658, -588, -658, -808\}\},
+01346 \textcolor{comment}{/* CG.G..UA */}
+01347 \{\{ DEF, -939, -939, -939, -939\},\{ -939,-1828,-1828,-1828,-1828\},\{ -249,-1138,-1138,-1138,-1138\},\{ -939,-
+ 1828,-1828,-1828,-1828\},\{ -329,-1218,-1218,-1218,-1218\}\},
+01348 \textcolor{comment}{/* CG.U..UA */}
+01349 \{\{ DEF, -809, -739, -809, -859\},\{ -639,-1398,-1328,-1398,-1448\},\{ -229, -988, -918, -988,-1038\},\{ -729,-
+ 1488,-1418,-1488,-1538\},\{ -190, -949, -879, -949, -999\}\}
+01350 \},
+01351 \{
+01352 \textcolor{comment}{/* CG.@.. @ */}
+01353 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01354 \textcolor{comment}{/* CG.A.. @ */}
+01355 \{\{ -100,-1079, -999,-1079,-1079\},\{ -100,-1079, -999,-1079,-1079\},\{ -100,-1079, -999,-1079,-1079\},\{ -100,-
+ 1079, -999,-1079,-1079\},\{ -100,-1079, -999,-1079,-1079\}\},
+01356 \textcolor{comment}{/* CG.C.. @ */}
+01357 \{\{ -100, -569, -499, -569, -719\},\{ -100, -569, -499, -569, -719\},\{ -100, -569, -499, -569, -719\},\{ -100, -
+ 569, -499, -569, -719\},\{ -100, -569, -499, -569, -719\}\},
+01358 \textcolor{comment}{/* CG.G.. @ */}
+01359 \{\{ -100, -989, -989, -989, -989\},\{ -100, -989, -989, -989, -989\},\{ -100, -989, -989, -989, -989\},\{ -100, -
+ 989, -989, -989, -989\},\{ -100, -989, -989, -989, -989\}\},
+01360 \textcolor{comment}{/* CG.U.. @ */}
+01361 \{\{ -100, -859, -789, -859, -909\},\{ -100, -859, -789, -859, -909\},\{ -100, -859, -789, -859, -909\},\{ -100, -
+ 859, -789, -859, -909\},\{ -100, -859, -789, -859, -909\}\}
+01362 \}
+01363 \},
+01364 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01365 \{
+01366 \textcolor{comment}{/* GC.@..CG */}
+01367 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01368 \textcolor{comment}{/* GC.A..CG */}
+01369 \{\{ DEF, -519, -879, -559, -879\},\{-1079,-1548,-1908,-1588,-1908\},\{ -569,-1038,-1398,-1078,-1398\},\{ -989,-
+ 1458,-1818,-1498,-1818\},\{ -859,-1328,-1688,-1368,-1688\}\},
+01370 \textcolor{comment}{/* GC.C..CG */}
+01371 \{\{ DEF, -719, -309, -309, -389\},\{ -999,-1668,-1258,-1258,-1338\},\{ -499,-1168, -758, -758, -838\},\{ -989,-
+ 1658,-1248,-1248,-1328\},\{ -789,-1458,-1048,-1048,-1128\}\},
+01372 \textcolor{comment}{/* GC.G..CG */}
+01373 \{\{ DEF, -709, -739, -619, -739\},\{-1079,-1738,-1768,-1648,-1768\},\{ -569,-1228,-1258,-1138,-1258\},\{ -989,-
+ 1648,-1678,-1558,-1678\},\{ -859,-1518,-1548,-1428,-1548\}\},
+01374 \textcolor{comment}{/* GC.U..CG */}
+01375 \{\{ DEF, -499, -499, -499, -569\},\{-1079,-1528,-1528,-1528,-1598\},\{ -719,-1168,-1168,-1168,-1238\},\{ -989,-
+ 1438,-1438,-1438,-1508\},\{ -909,-1358,-1358,-1358,-1428\}\}
+01376 \},
+01377 \{
+01378 \textcolor{comment}{/* GC.@..GC */}
+01379 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01380 \textcolor{comment}{/* GC.A..GC */}
+01381 \{\{ DEF, -519, -879, -559, -879\},\{ -569,-1038,-1398,-1078,-1398\},\{ -769,-1238,-1598,-1278,-1598\},\{ -759,-
+ 1228,-1588,-1268,-1588\},\{ -549,-1018,-1378,-1058,-1378\}\},
+01382 \textcolor{comment}{/* GC.C..GC */}
+01383 \{\{ DEF, -719, -309, -309, -389\},\{ -929,-1598,-1188,-1188,-1268\},\{ -359,-1028, -618, -618, -698\},\{ -789,-
+ 1458,-1048,-1048,-1128\},\{ -549,-1218, -808, -808, -888\}\},
+01384 \textcolor{comment}{/* GC.G..GC */}
+01385 \{\{ DEF, -709, -739, -619, -739\},\{ -609,-1268,-1298,-1178,-1298\},\{ -359,-1018,-1048, -928,-1048\},\{ -669,-
+ 1328,-1358,-1238,-1358\},\{ -549,-1208,-1238,-1118,-1238\}\},
+01386 \textcolor{comment}{/* GC.U..GC */}
+01387 \{\{ DEF, -499, -499, -499, -569\},\{ -929,-1378,-1378,-1378,-1448\},\{ -439, -888, -888, -888, -958\},\{ -789,-
+ 1238,-1238,-1238,-1308\},\{ -619,-1068,-1068,-1068,-1138\}\}
+01388 \},
+01389 \{
+01390 \textcolor{comment}{/* GC.@..GU */}
+01391 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01392 \textcolor{comment}{/* GC.A..GU */}
+01393 \{\{ DEF, -519, -879, -559, -879\},\{ -479, -948,-1308, -988,-1308\},\{ -309, -778,-1138, -818,-1138\},\{ -389, -
+ 858,-1218, -898,-1218\},\{ -379, -848,-1208, -888,-1208\}\},
+01394 \textcolor{comment}{/* GC.C..GU */}
+01395 \{\{ DEF, -719, -309, -309, -389\},\{ -649,-1318, -908, -908, -988\},\{ -289, -958, -548, -548, -628\},\{ -739,-
+ 1408, -998, -998,-1078\},\{ -379,-1048, -638, -638, -718\}\},
+01396 \textcolor{comment}{/* GC.G..GU */}
+01397 \{\{ DEF, -709, -739, -619, -739\},\{ -649,-1308,-1338,-1218,-1338\},\{ -289, -948, -978, -858, -978\},\{ -739,-
+ 1398,-1428,-1308,-1428\},\{ -379,-1038,-1068, -948,-1068\}\},
+01398 \textcolor{comment}{/* GC.U..GU */}
+01399 \{\{ DEF, -499, -499, -499, -569\},\{ -649,-1098,-1098,-1098,-1168\},\{ -289, -738, -738, -738, -808\},\{ -739,-
+ 1188,-1188,-1188,-1258\},\{ -379, -828, -828, -828, -898\}\}
+01400 \},
+01401 \{
+01402 \textcolor{comment}{/* GC.@..UG */}
+01403 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01404 \textcolor{comment}{/* GC.A..UG */}
+01405 \{\{ DEF, -519, -879, -559, -879\},\{ -769,-1238,-1598,-1278,-1598\},\{ -529, -998,-1358,-1038,-1358\},\{ -709,-
+ 1178,-1538,-1218,-1538\},\{ -599,-1068,-1428,-1108,-1428\}\},
+01406 \textcolor{comment}{/* GC.C..UG */}
+01407 \{\{ DEF, -719, -309, -309, -389\},\{ -839,-1508,-1098,-1098,-1178\},\{ -529,-1198, -788, -788, -868\},\{ -859,-
+ 1528,-1118,-1118,-1198\},\{ -489,-1158, -748, -748, -828\}\},
+01408 \textcolor{comment}{/* GC.G..UG */}
+01409 \{\{ DEF, -709, -739, -619, -739\},\{-1009,-1668,-1698,-1578,-1698\},\{ -409,-1068,-1098, -978,-1098\},\{ -969,-
+ 1628,-1658,-1538,-1658\},\{ -599,-1258,-1288,-1168,-1288\}\},
+01410 \textcolor{comment}{/* GC.U..UG */}
+01411 \{\{ DEF, -499, -499, -499, -569\},\{ -859,-1308,-1308,-1308,-1378\},\{ -529, -978, -978, -978,-1048\},\{ -859,-
+ 1308,-1308,-1308,-1378\},\{ -409, -858, -858, -858, -928\}\}
+01412 \},
+01413 \{
+01414 \textcolor{comment}{/* GC.@..AU */}
+01415 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01416 \textcolor{comment}{/* GC.A..AU */}
+01417 \{\{ DEF, -519, -879, -559, -879\},\{ -479, -948,-1308, -988,-1308\},\{ -309, -778,-1138, -818,-1138\},\{ -389, -
+ 858,-1218, -898,-1218\},\{ -379, -848,-1208, -888,-1208\}\},
+01418 \textcolor{comment}{/* GC.C..AU */}
+01419 \{\{ DEF, -719, -309, -309, -389\},\{ -649,-1318, -908, -908, -988\},\{ -289, -958, -548, -548, -628\},\{ -739,-
+ 1408, -998, -998,-1078\},\{ -379,-1048, -638, -638, -718\}\},
+01420 \textcolor{comment}{/* GC.G..AU */}
+01421 \{\{ DEF, -709, -739, -619, -739\},\{ -649,-1308,-1338,-1218,-1338\},\{ -289, -948, -978, -858, -978\},\{ -739,-
+ 1398,-1428,-1308,-1428\},\{ -379,-1038,-1068, -948,-1068\}\},
+01422 \textcolor{comment}{/* GC.U..AU */}
+01423 \{\{ DEF, -499, -499, -499, -569\},\{ -649,-1098,-1098,-1098,-1168\},\{ -289, -738, -738, -738, -808\},\{ -739,-
+ 1188,-1188,-1188,-1258\},\{ -379, -828, -828, -828, -898\}\}
+01424 \},
+01425 \{
+01426 \textcolor{comment}{/* GC.@..UA */}
+01427 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01428 \textcolor{comment}{/* GC.A..UA */}
+01429 \{\{ DEF, -519, -879, -559, -879\},\{ -449, -918,-1278, -958,-1278\},\{ -479, -948,-1308, -988,-1308\},\{ -429, -
+ 898,-1258, -938,-1258\},\{ -329, -798,-1158, -838,-1158\}\},
+01430 \textcolor{comment}{/* GC.C..UA */}
+01431 \{\{ DEF, -719, -309, -309, -389\},\{ -679,-1348, -938, -938,-1018\},\{ -559,-1228, -818, -818, -898\},\{ -729,-
+ 1398, -988, -988,-1068\},\{ -189, -858, -448, -448, -528\}\},
+01432 \textcolor{comment}{/* GC.G..UA */}
+01433 \{\{ DEF, -709, -739, -619, -739\},\{ -939,-1598,-1628,-1508,-1628\},\{ -249, -908, -938, -818, -938\},\{ -939,-
+ 1598,-1628,-1508,-1628\},\{ -329, -988,-1018, -898,-1018\}\},
+01434 \textcolor{comment}{/* GC.U..UA */}
+01435 \{\{ DEF, -499, -499, -499, -569\},\{ -639,-1088,-1088,-1088,-1158\},\{ -229, -678, -678, -678, -748\},\{ -729,-
+ 1178,-1178,-1178,-1248\},\{ -190, -639, -639, -639, -709\}\}
+01436 \},
+01437 \{
+01438 \textcolor{comment}{/* GC.@.. @ */}
+01439 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01440 \textcolor{comment}{/* GC.A.. @ */}
+01441 \{\{ -100, -569, -929, -609, -929\},\{ -100, -569, -929, -609, -929\},\{ -100, -569, -929, -609, -929\},\{ -100, -
+ 569, -929, -609, -929\},\{ -100, -569, -929, -609, -929\}\},
+01442 \textcolor{comment}{/* GC.C.. @ */}
+01443 \{\{ -100, -769, -359, -359, -439\},\{ -100, -769, -359, -359, -439\},\{ -100, -769, -359, -359, -439\},\{ -100, -
+ 769, -359, -359, -439\},\{ -100, -769, -359, -359, -439\}\},
+01444 \textcolor{comment}{/* GC.G.. @ */}
+01445 \{\{ -100, -759, -789, -669, -789\},\{ -100, -759, -789, -669, -789\},\{ -100, -759, -789, -669, -789\},\{ -100, -
+ 759, -789, -669, -789\},\{ -100, -759, -789, -669, -789\}\},
+01446 \textcolor{comment}{/* GC.U.. @ */}
+01447 \{\{ -100, -549, -549, -549, -619\},\{ -100, -549, -549, -549, -619\},\{ -100, -549, -549, -549, -619\},\{ -100, -
+ 549, -549, -549, -619\},\{ -100, -549, -549, -549, -619\}\}
+01448 \}
+01449 \},
+01450 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01451 \{
+01452 \textcolor{comment}{/* GU.@..CG */}
+01453 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01454 \textcolor{comment}{/* GU.A..CG */}
+01455 \{\{ DEF, -429, -599, -599, -599\},\{-1079,-1458,-1628,-1628,-1628\},\{ -569, -948,-1118,-1118,-1118\},\{ -989,-
+ 1368,-1538,-1538,-1538\},\{ -859,-1238,-1408,-1408,-1408\}\},
+01456 \textcolor{comment}{/* GU.C..CG */}
+01457 \{\{ DEF, -259, -239, -239, -239\},\{ -999,-1208,-1188,-1188,-1188\},\{ -499, -708, -688, -688, -688\},\{ -989,-
+ 1198,-1178,-1178,-1178\},\{ -789, -998, -978, -978, -978\}\},
+01458 \textcolor{comment}{/* GU.G..CG */}
+01459 \{\{ DEF, -339, -689, -689, -689\},\{-1079,-1368,-1718,-1718,-1718\},\{ -569, -858,-1208,-1208,-1208\},\{ -989,-
+ 1278,-1628,-1628,-1628\},\{ -859,-1148,-1498,-1498,-1498\}\},
+01460 \textcolor{comment}{/* GU.U..CG */}
+01461 \{\{ DEF, -329, -329, -329, -329\},\{-1079,-1358,-1358,-1358,-1358\},\{ -719, -998, -998, -998, -998\},\{ -989,-
+ 1268,-1268,-1268,-1268\},\{ -909,-1188,-1188,-1188,-1188\}\}
+01462 \},
+01463 \{
+01464 \textcolor{comment}{/* GU.@..GC */}
+01465 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01466 \textcolor{comment}{/* GU.A..GC */}
+01467 \{\{ DEF, -429, -599, -599, -599\},\{ -569, -948,-1118,-1118,-1118\},\{ -769,-1148,-1318,-1318,-1318\},\{ -759,-
+ 1138,-1308,-1308,-1308\},\{ -549, -928,-1098,-1098,-1098\}\},
+01468 \textcolor{comment}{/* GU.C..GC */}
+01469 \{\{ DEF, -259, -239, -239, -239\},\{ -929,-1138,-1118,-1118,-1118\},\{ -359, -568, -548, -548, -548\},\{ -789, -
+ 998, -978, -978, -978\},\{ -549, -758, -738, -738, -738\}\},
+01470 \textcolor{comment}{/* GU.G..GC */}
+01471 \{\{ DEF, -339, -689, -689, -689\},\{ -609, -898,-1248,-1248,-1248\},\{ -359, -648, -998, -998, -998\},\{ -669, -
+ 958,-1308,-1308,-1308\},\{ -549, -838,-1188,-1188,-1188\}\},
+01472 \textcolor{comment}{/* GU.U..GC */}
+01473 \{\{ DEF, -329, -329, -329, -329\},\{ -929,-1208,-1208,-1208,-1208\},\{ -439, -718, -718, -718, -718\},\{ -789,-
+ 1068,-1068,-1068,-1068\},\{ -619, -898, -898, -898, -898\}\}
+01474 \},
+01475 \{
+01476 \textcolor{comment}{/* GU.@..GU */}
+01477 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01478 \textcolor{comment}{/* GU.A..GU */}
+01479 \{\{ DEF, -429, -599, -599, -599\},\{ -479, -858,-1028,-1028,-1028\},\{ -309, -688, -858, -858, -858\},\{ -389, -
+ 768, -938, -938, -938\},\{ -379, -758, -928, -928, -928\}\},
+01480 \textcolor{comment}{/* GU.C..GU */}
+01481 \{\{ DEF, -259, -239, -239, -239\},\{ -649, -858, -838, -838, -838\},\{ -289, -498, -478, -478, -478\},\{ -739, -
+ 948, -928, -928, -928\},\{ -379, -588, -568, -568, -568\}\},
+01482 \textcolor{comment}{/* GU.G..GU */}
+01483 \{\{ DEF, -339, -689, -689, -689\},\{ -649, -938,-1288,-1288,-1288\},\{ -289, -578, -928, -928, -928\},\{ -739,-
+ 1028,-1378,-1378,-1378\},\{ -379, -668,-1018,-1018,-1018\}\},
+01484 \textcolor{comment}{/* GU.U..GU */}
+01485 \{\{ DEF, -329, -329, -329, -329\},\{ -649, -928, -928, -928, -928\},\{ -289, -568, -568, -568, -568\},\{ -739,-
+ 1018,-1018,-1018,-1018\},\{ -379, -658, -658, -658, -658\}\}
+01486 \},
+01487 \{
+01488 \textcolor{comment}{/* GU.@..UG */}
+01489 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01490 \textcolor{comment}{/* GU.A..UG */}
+01491 \{\{ DEF, -429, -599, -599, -599\},\{ -769,-1148,-1318,-1318,-1318\},\{ -529, -908,-1078,-1078,-1078\},\{ -709,-
+ 1088,-1258,-1258,-1258\},\{ -599, -978,-1148,-1148,-1148\}\},
+01492 \textcolor{comment}{/* GU.C..UG */}
+01493 \{\{ DEF, -259, -239, -239, -239\},\{ -839,-1048,-1028,-1028,-1028\},\{ -529, -738, -718, -718, -718\},\{ -859,-
+ 1068,-1048,-1048,-1048\},\{ -489, -698, -678, -678, -678\}\},
+01494 \textcolor{comment}{/* GU.G..UG */}
+01495 \{\{ DEF, -339, -689, -689, -689\},\{-1009,-1298,-1648,-1648,-1648\},\{ -409, -698,-1048,-1048,-1048\},\{ -969,-
+ 1258,-1608,-1608,-1608\},\{ -599, -888,-1238,-1238,-1238\}\},
+01496 \textcolor{comment}{/* GU.U..UG */}
+01497 \{\{ DEF, -329, -329, -329, -329\},\{ -859,-1138,-1138,-1138,-1138\},\{ -529, -808, -808, -808, -808\},\{ -859,-
+ 1138,-1138,-1138,-1138\},\{ -409, -688, -688, -688, -688\}\}
+01498 \},
+01499 \{
+01500 \textcolor{comment}{/* GU.@..AU */}
+01501 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01502 \textcolor{comment}{/* GU.A..AU */}
+01503 \{\{ DEF, -429, -599, -599, -599\},\{ -479, -858,-1028,-1028,-1028\},\{ -309, -688, -858, -858, -858\},\{ -389, -
+ 768, -938, -938, -938\},\{ -379, -758, -928, -928, -928\}\},
+01504 \textcolor{comment}{/* GU.C..AU */}
+01505 \{\{ DEF, -259, -239, -239, -239\},\{ -649, -858, -838, -838, -838\},\{ -289, -498, -478, -478, -478\},\{ -739, -
+ 948, -928, -928, -928\},\{ -379, -588, -568, -568, -568\}\},
+01506 \textcolor{comment}{/* GU.G..AU */}
+01507 \{\{ DEF, -339, -689, -689, -689\},\{ -649, -938,-1288,-1288,-1288\},\{ -289, -578, -928, -928, -928\},\{ -739,-
+ 1028,-1378,-1378,-1378\},\{ -379, -668,-1018,-1018,-1018\}\},
+01508 \textcolor{comment}{/* GU.U..AU */}
+01509 \{\{ DEF, -329, -329, -329, -329\},\{ -649, -928, -928, -928, -928\},\{ -289, -568, -568, -568, -568\},\{ -739,-
+ 1018,-1018,-1018,-1018\},\{ -379, -658, -658, -658, -658\}\}
+01510 \},
+01511 \{
+01512 \textcolor{comment}{/* GU.@..UA */}
+01513 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01514 \textcolor{comment}{/* GU.A..UA */}
+01515 \{\{ DEF, -429, -599, -599, -599\},\{ -449, -828, -998, -998, -998\},\{ -479, -858,-1028,-1028,-1028\},\{ -429, -
+ 808, -978, -978, -978\},\{ -329, -708, -878, -878, -878\}\},
+01516 \textcolor{comment}{/* GU.C..UA */}
+01517 \{\{ DEF, -259, -239, -239, -239\},\{ -679, -888, -868, -868, -868\},\{ -559, -768, -748, -748, -748\},\{ -729, -
+ 938, -918, -918, -918\},\{ -189, -398, -378, -378, -378\}\},
+01518 \textcolor{comment}{/* GU.G..UA */}
+01519 \{\{ DEF, -339, -689, -689, -689\},\{ -939,-1228,-1578,-1578,-1578\},\{ -249, -538, -888, -888, -888\},\{ -939,-
+ 1228,-1578,-1578,-1578\},\{ -329, -618, -968, -968, -968\}\},
+01520 \textcolor{comment}{/* GU.U..UA */}
+01521 \{\{ DEF, -329, -329, -329, -329\},\{ -639, -918, -918, -918, -918\},\{ -229, -508, -508, -508, -508\},\{ -729,-
+ 1008,-1008,-1008,-1008\},\{ -190, -469, -469, -469, -469\}\}
+01522 \},
+01523 \{
+01524 \textcolor{comment}{/* GU.@.. @ */}
+01525 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01526 \textcolor{comment}{/* GU.A.. @ */}
+01527 \{\{ -100, -479, -649, -649, -649\},\{ -100, -479, -649, -649, -649\},\{ -100, -479, -649, -649, -649\},\{ -100, -
+ 479, -649, -649, -649\},\{ -100, -479, -649, -649, -649\}\},
+01528 \textcolor{comment}{/* GU.C.. @ */}
+01529 \{\{ -100, -309, -289, -289, -289\},\{ -100, -309, -289, -289, -289\},\{ -100, -309, -289, -289, -289\},\{ -100, -
+ 309, -289, -289, -289\},\{ -100, -309, -289, -289, -289\}\},
+01530 \textcolor{comment}{/* GU.G.. @ */}
+01531 \{\{ -100, -389, -739, -739, -739\},\{ -100, -389, -739, -739, -739\},\{ -100, -389, -739, -739, -739\},\{ -100, -
+ 389, -739, -739, -739\},\{ -100, -389, -739, -739, -739\}\},
+01532 \textcolor{comment}{/* GU.U.. @ */}
+01533 \{\{ -100, -379, -379, -379, -379\},\{ -100, -379, -379, -379, -379\},\{ -100, -379, -379, -379, -379\},\{ -100, -
+ 379, -379, -379, -379\},\{ -100, -379, -379, -379, -379\}\}
+01534 \}
+01535 \},
+01536 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01537 \{
+01538 \textcolor{comment}{/* UG.@..CG */}
+01539 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01540 \textcolor{comment}{/* UG.A..CG */}
+01541 \{\{ DEF, -719, -789, -959, -809\},\{-1079,-1748,-1818,-1988,-1838\},\{ -569,-1238,-1308,-1478,-1328\},\{ -989,-
+ 1658,-1728,-1898,-1748\},\{ -859,-1528,-1598,-1768,-1618\}\},
+01542 \textcolor{comment}{/* UG.C..CG */}
+01543 \{\{ DEF, -479, -479, -359, -479\},\{ -999,-1428,-1428,-1308,-1428\},\{ -499, -928, -928, -808, -928\},\{ -989,-
+ 1418,-1418,-1298,-1418\},\{ -789,-1218,-1218,-1098,-1218\}\},
+01544 \textcolor{comment}{/* UG.G..CG */}
+01545 \{\{ DEF, -659, -809, -919, -809\},\{-1079,-1688,-1838,-1948,-1838\},\{ -569,-1178,-1328,-1438,-1328\},\{ -989,-
+ 1598,-1748,-1858,-1748\},\{ -859,-1468,-1618,-1728,-1618\}\},
+01546 \textcolor{comment}{/* UG.U..CG */}
+01547 \{\{ DEF, -549, -439, -549, -359\},\{-1079,-1578,-1468,-1578,-1388\},\{ -719,-1218,-1108,-1218,-1028\},\{ -989,-
+ 1488,-1378,-1488,-1298\},\{ -909,-1408,-1298,-1408,-1218\}\}
+01548 \},
+01549 \{
+01550 \textcolor{comment}{/* UG.@..GC */}
+01551 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01552 \textcolor{comment}{/* UG.A..GC */}
+01553 \{\{ DEF, -719, -789, -959, -809\},\{ -569,-1238,-1308,-1478,-1328\},\{ -769,-1438,-1508,-1678,-1528\},\{ -759,-
+ 1428,-1498,-1668,-1518\},\{ -549,-1218,-1288,-1458,-1308\}\},
+01554 \textcolor{comment}{/* UG.C..GC */}
+01555 \{\{ DEF, -479, -479, -359, -479\},\{ -929,-1358,-1358,-1238,-1358\},\{ -359, -788, -788, -668, -788\},\{ -789,-
+ 1218,-1218,-1098,-1218\},\{ -549, -978, -978, -858, -978\}\},
+01556 \textcolor{comment}{/* UG.G..GC */}
+01557 \{\{ DEF, -659, -809, -919, -809\},\{ -609,-1218,-1368,-1478,-1368\},\{ -359, -968,-1118,-1228,-1118\},\{ -669,-
+ 1278,-1428,-1538,-1428\},\{ -549,-1158,-1308,-1418,-1308\}\},
+01558 \textcolor{comment}{/* UG.U..GC */}
+01559 \{\{ DEF, -549, -439, -549, -359\},\{ -929,-1428,-1318,-1428,-1238\},\{ -439, -938, -828, -938, -748\},\{ -789,-
+ 1288,-1178,-1288,-1098\},\{ -619,-1118,-1008,-1118, -928\}\}
+01560 \},
+01561 \{
+01562 \textcolor{comment}{/* UG.@..GU */}
+01563 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01564 \textcolor{comment}{/* UG.A..GU */}
+01565 \{\{ DEF, -719, -789, -959, -809\},\{ -479,-1148,-1218,-1388,-1238\},\{ -309, -978,-1048,-1218,-1068\},\{ -389,-
+ 1058,-1128,-1298,-1148\},\{ -379,-1048,-1118,-1288,-1138\}\},
+01566 \textcolor{comment}{/* UG.C..GU */}
+01567 \{\{ DEF, -479, -479, -359, -479\},\{ -649,-1078,-1078, -958,-1078\},\{ -289, -718, -718, -598, -718\},\{ -739,-
+ 1168,-1168,-1048,-1168\},\{ -379, -808, -808, -688, -808\}\},
+01568 \textcolor{comment}{/* UG.G..GU */}
+01569 \{\{ DEF, -659, -809, -919, -809\},\{ -649,-1258,-1408,-1518,-1408\},\{ -289, -898,-1048,-1158,-1048\},\{ -739,-
+ 1348,-1498,-1608,-1498\},\{ -379, -988,-1138,-1248,-1138\}\},
+01570 \textcolor{comment}{/* UG.U..GU */}
+01571 \{\{ DEF, -549, -439, -549, -359\},\{ -649,-1148,-1038,-1148, -958\},\{ -289, -788, -678, -788, -598\},\{ -739,-
+ 1238,-1128,-1238,-1048\},\{ -379, -878, -768, -878, -688\}\}
+01572 \},
+01573 \{
+01574 \textcolor{comment}{/* UG.@..UG */}
+01575 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01576 \textcolor{comment}{/* UG.A..UG */}
+01577 \{\{ DEF, -719, -789, -959, -809\},\{ -769,-1438,-1508,-1678,-1528\},\{ -529,-1198,-1268,-1438,-1288\},\{ -709,-
+ 1378,-1448,-1618,-1468\},\{ -599,-1268,-1338,-1508,-1358\}\},
+01578 \textcolor{comment}{/* UG.C..UG */}
+01579 \{\{ DEF, -479, -479, -359, -479\},\{ -839,-1268,-1268,-1148,-1268\},\{ -529, -958, -958, -838, -958\},\{ -859,-
+ 1288,-1288,-1168,-1288\},\{ -489, -918, -918, -798, -918\}\},
+01580 \textcolor{comment}{/* UG.G..UG */}
+01581 \{\{ DEF, -659, -809, -919, -809\},\{-1009,-1618,-1768,-1878,-1768\},\{ -409,-1018,-1168,-1278,-1168\},\{ -969,-
+ 1578,-1728,-1838,-1728\},\{ -599,-1208,-1358,-1468,-1358\}\},
+01582 \textcolor{comment}{/* UG.U..UG */}
+01583 \{\{ DEF, -549, -439, -549, -359\},\{ -859,-1358,-1248,-1358,-1168\},\{ -529,-1028, -918,-1028, -838\},\{ -859,-
+ 1358,-1248,-1358,-1168\},\{ -409, -908, -798, -908, -718\}\}
+01584 \},
+01585 \{
+01586 \textcolor{comment}{/* UG.@..AU */}
+01587 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01588 \textcolor{comment}{/* UG.A..AU */}
+01589 \{\{ DEF, -719, -789, -959, -809\},\{ -479,-1148,-1218,-1388,-1238\},\{ -309, -978,-1048,-1218,-1068\},\{ -389,-
+ 1058,-1128,-1298,-1148\},\{ -379,-1048,-1118,-1288,-1138\}\},
+01590 \textcolor{comment}{/* UG.C..AU */}
+01591 \{\{ DEF, -479, -479, -359, -479\},\{ -649,-1078,-1078, -958,-1078\},\{ -289, -718, -718, -598, -718\},\{ -739,-
+ 1168,-1168,-1048,-1168\},\{ -379, -808, -808, -688, -808\}\},
+01592 \textcolor{comment}{/* UG.G..AU */}
+01593 \{\{ DEF, -659, -809, -919, -809\},\{ -649,-1258,-1408,-1518,-1408\},\{ -289, -898,-1048,-1158,-1048\},\{ -739,-
+ 1348,-1498,-1608,-1498\},\{ -379, -988,-1138,-1248,-1138\}\},
+01594 \textcolor{comment}{/* UG.U..AU */}
+01595 \{\{ DEF, -549, -439, -549, -359\},\{ -649,-1148,-1038,-1148, -958\},\{ -289, -788, -678, -788, -598\},\{ -739,-
+ 1238,-1128,-1238,-1048\},\{ -379, -878, -768, -878, -688\}\}
+01596 \},
+01597 \{
+01598 \textcolor{comment}{/* UG.@..UA */}
+01599 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01600 \textcolor{comment}{/* UG.A..UA */}
+01601 \{\{ DEF, -719, -789, -959, -809\},\{ -449,-1118,-1188,-1358,-1208\},\{ -479,-1148,-1218,-1388,-1238\},\{ -429,-
+ 1098,-1168,-1338,-1188\},\{ -329, -998,-1068,-1238,-1088\}\},
+01602 \textcolor{comment}{/* UG.C..UA */}
+01603 \{\{ DEF, -479, -479, -359, -479\},\{ -679,-1108,-1108, -988,-1108\},\{ -559, -988, -988, -868, -988\},\{ -729,-
+ 1158,-1158,-1038,-1158\},\{ -189, -618, -618, -498, -618\}\},
+01604 \textcolor{comment}{/* UG.G..UA */}
+01605 \{\{ DEF, -659, -809, -919, -809\},\{ -939,-1548,-1698,-1808,-1698\},\{ -249, -858,-1008,-1118,-1008\},\{ -939,-
+ 1548,-1698,-1808,-1698\},\{ -329, -938,-1088,-1198,-1088\}\},
+01606 \textcolor{comment}{/* UG.U..UA */}
+01607 \{\{ DEF, -549, -439, -549, -359\},\{ -639,-1138,-1028,-1138, -948\},\{ -229, -728, -618, -728, -538\},\{ -729,-
+ 1228,-1118,-1228,-1038\},\{ -190, -689, -579, -689, -499\}\}
+01608 \},
+01609 \{
+01610 \textcolor{comment}{/* UG.@.. @ */}
+01611 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01612 \textcolor{comment}{/* UG.A.. @ */}
+01613 \{\{ -100, -769, -839,-1009, -859\},\{ -100, -769, -839,-1009, -859\},\{ -100, -769, -839,-1009, -859\},\{ -100, -
+ 769, -839,-1009, -859\},\{ -100, -769, -839,-1009, -859\}\},
+01614 \textcolor{comment}{/* UG.C.. @ */}
+01615 \{\{ -100, -529, -529, -409, -529\},\{ -100, -529, -529, -409, -529\},\{ -100, -529, -529, -409, -529\},\{ -100, -
+ 529, -529, -409, -529\},\{ -100, -529, -529, -409, -529\}\},
+01616 \textcolor{comment}{/* UG.G.. @ */}
+01617 \{\{ -100, -709, -859, -969, -859\},\{ -100, -709, -859, -969, -859\},\{ -100, -709, -859, -969, -859\},\{ -100, -
+ 709, -859, -969, -859\},\{ -100, -709, -859, -969, -859\}\},
+01618 \textcolor{comment}{/* UG.U.. @ */}
+01619 \{\{ -100, -599, -489, -599, -409\},\{ -100, -599, -489, -599, -409\},\{ -100, -599, -489, -599, -409\},\{ -100, -
+ 599, -489, -599, -409\},\{ -100, -599, -489, -599, -409\}\}
+01620 \}
+01621 \},
+01622 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01623 \{
+01624 \textcolor{comment}{/* AU.@..CG */}
+01625 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01626 \textcolor{comment}{/* AU.A..CG */}
+01627 \{\{ DEF, -429, -599, -599, -599\},\{-1079,-1458,-1628,-1628,-1628\},\{ -569, -948,-1118,-1118,-1118\},\{ -989,-
+ 1368,-1538,-1538,-1538\},\{ -859,-1238,-1408,-1408,-1408\}\},
+01628 \textcolor{comment}{/* AU.C..CG */}
+01629 \{\{ DEF, -259, -239, -239, -239\},\{ -999,-1208,-1188,-1188,-1188\},\{ -499, -708, -688, -688, -688\},\{ -989,-
+ 1198,-1178,-1178,-1178\},\{ -789, -998, -978, -978, -978\}\},
+01630 \textcolor{comment}{/* AU.G..CG */}
+01631 \{\{ DEF, -339, -689, -689, -689\},\{-1079,-1368,-1718,-1718,-1718\},\{ -569, -858,-1208,-1208,-1208\},\{ -989,-
+ 1278,-1628,-1628,-1628\},\{ -859,-1148,-1498,-1498,-1498\}\},
+01632 \textcolor{comment}{/* AU.U..CG */}
+01633 \{\{ DEF, -329, -329, -329, -329\},\{-1079,-1358,-1358,-1358,-1358\},\{ -719, -998, -998, -998, -998\},\{ -989,-
+ 1268,-1268,-1268,-1268\},\{ -909,-1188,-1188,-1188,-1188\}\}
+01634 \},
+01635 \{
+01636 \textcolor{comment}{/* AU.@..GC */}
+01637 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01638 \textcolor{comment}{/* AU.A..GC */}
+01639 \{\{ DEF, -429, -599, -599, -599\},\{ -569, -948,-1118,-1118,-1118\},\{ -769,-1148,-1318,-1318,-1318\},\{ -759,-
+ 1138,-1308,-1308,-1308\},\{ -549, -928,-1098,-1098,-1098\}\},
+01640 \textcolor{comment}{/* AU.C..GC */}
+01641 \{\{ DEF, -259, -239, -239, -239\},\{ -929,-1138,-1118,-1118,-1118\},\{ -359, -568, -548, -548, -548\},\{ -789, -
+ 998, -978, -978, -978\},\{ -549, -758, -738, -738, -738\}\},
+01642 \textcolor{comment}{/* AU.G..GC */}
+01643 \{\{ DEF, -339, -689, -689, -689\},\{ -609, -898,-1248,-1248,-1248\},\{ -359, -648, -998, -998, -998\},\{ -669, -
+ 958,-1308,-1308,-1308\},\{ -549, -838,-1188,-1188,-1188\}\},
+01644 \textcolor{comment}{/* AU.U..GC */}
+01645 \{\{ DEF, -329, -329, -329, -329\},\{ -929,-1208,-1208,-1208,-1208\},\{ -439, -718, -718, -718, -718\},\{ -789,-
+ 1068,-1068,-1068,-1068\},\{ -619, -898, -898, -898, -898\}\}
+01646 \},
+01647 \{
+01648 \textcolor{comment}{/* AU.@..GU */}
+01649 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01650 \textcolor{comment}{/* AU.A..GU */}
+01651 \{\{ DEF, -429, -599, -599, -599\},\{ -479, -858,-1028,-1028,-1028\},\{ -309, -688, -858, -858, -858\},\{ -389, -
+ 768, -938, -938, -938\},\{ -379, -758, -928, -928, -928\}\},
+01652 \textcolor{comment}{/* AU.C..GU */}
+01653 \{\{ DEF, -259, -239, -239, -239\},\{ -649, -858, -838, -838, -838\},\{ -289, -498, -478, -478, -478\},\{ -739, -
+ 948, -928, -928, -928\},\{ -379, -588, -568, -568, -568\}\},
+01654 \textcolor{comment}{/* AU.G..GU */}
+01655 \{\{ DEF, -339, -689, -689, -689\},\{ -649, -938,-1288,-1288,-1288\},\{ -289, -578, -928, -928, -928\},\{ -739,-
+ 1028,-1378,-1378,-1378\},\{ -379, -668,-1018,-1018,-1018\}\},
+01656 \textcolor{comment}{/* AU.U..GU */}
+01657 \{\{ DEF, -329, -329, -329, -329\},\{ -649, -928, -928, -928, -928\},\{ -289, -568, -568, -568, -568\},\{ -739,-
+ 1018,-1018,-1018,-1018\},\{ -379, -658, -658, -658, -658\}\}
+01658 \},
+01659 \{
+01660 \textcolor{comment}{/* AU.@..UG */}
+01661 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01662 \textcolor{comment}{/* AU.A..UG */}
+01663 \{\{ DEF, -429, -599, -599, -599\},\{ -769,-1148,-1318,-1318,-1318\},\{ -529, -908,-1078,-1078,-1078\},\{ -709,-
+ 1088,-1258,-1258,-1258\},\{ -599, -978,-1148,-1148,-1148\}\},
+01664 \textcolor{comment}{/* AU.C..UG */}
+01665 \{\{ DEF, -259, -239, -239, -239\},\{ -839,-1048,-1028,-1028,-1028\},\{ -529, -738, -718, -718, -718\},\{ -859,-
+ 1068,-1048,-1048,-1048\},\{ -489, -698, -678, -678, -678\}\},
+01666 \textcolor{comment}{/* AU.G..UG */}
+01667 \{\{ DEF, -339, -689, -689, -689\},\{-1009,-1298,-1648,-1648,-1648\},\{ -409, -698,-1048,-1048,-1048\},\{ -969,-
+ 1258,-1608,-1608,-1608\},\{ -599, -888,-1238,-1238,-1238\}\},
+01668 \textcolor{comment}{/* AU.U..UG */}
+01669 \{\{ DEF, -329, -329, -329, -329\},\{ -859,-1138,-1138,-1138,-1138\},\{ -529, -808, -808, -808, -808\},\{ -859,-
+ 1138,-1138,-1138,-1138\},\{ -409, -688, -688, -688, -688\}\}
+01670 \},
+01671 \{
+01672 \textcolor{comment}{/* AU.@..AU */}
+01673 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01674 \textcolor{comment}{/* AU.A..AU */}
+01675 \{\{ DEF, -429, -599, -599, -599\},\{ -479, -858,-1028,-1028,-1028\},\{ -309, -688, -858, -858, -858\},\{ -389, -
+ 768, -938, -938, -938\},\{ -379, -758, -928, -928, -928\}\},
+01676 \textcolor{comment}{/* AU.C..AU */}
+01677 \{\{ DEF, -259, -239, -239, -239\},\{ -649, -858, -838, -838, -838\},\{ -289, -498, -478, -478, -478\},\{ -739, -
+ 948, -928, -928, -928\},\{ -379, -588, -568, -568, -568\}\},
+01678 \textcolor{comment}{/* AU.G..AU */}
+01679 \{\{ DEF, -339, -689, -689, -689\},\{ -649, -938,-1288,-1288,-1288\},\{ -289, -578, -928, -928, -928\},\{ -739,-
+ 1028,-1378,-1378,-1378\},\{ -379, -668,-1018,-1018,-1018\}\},
+01680 \textcolor{comment}{/* AU.U..AU */}
+01681 \{\{ DEF, -329, -329, -329, -329\},\{ -649, -928, -928, -928, -928\},\{ -289, -568, -568, -568, -568\},\{ -739,-
+ 1018,-1018,-1018,-1018\},\{ -379, -658, -658, -658, -658\}\}
+01682 \},
+01683 \{
+01684 \textcolor{comment}{/* AU.@..UA */}
+01685 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01686 \textcolor{comment}{/* AU.A..UA */}
+01687 \{\{ DEF, -429, -599, -599, -599\},\{ -449, -828, -998, -998, -998\},\{ -479, -858,-1028,-1028,-1028\},\{ -429, -
+ 808, -978, -978, -978\},\{ -329, -708, -878, -878, -878\}\},
+01688 \textcolor{comment}{/* AU.C..UA */}
+01689 \{\{ DEF, -259, -239, -239, -239\},\{ -679, -888, -868, -868, -868\},\{ -559, -768, -748, -748, -748\},\{ -729, -
+ 938, -918, -918, -918\},\{ -189, -398, -378, -378, -378\}\},
+01690 \textcolor{comment}{/* AU.G..UA */}
+01691 \{\{ DEF, -339, -689, -689, -689\},\{ -939,-1228,-1578,-1578,-1578\},\{ -249, -538, -888, -888, -888\},\{ -939,-
+ 1228,-1578,-1578,-1578\},\{ -329, -618, -968, -968, -968\}\},
+01692 \textcolor{comment}{/* AU.U..UA */}
+01693 \{\{ DEF, -329, -329, -329, -329\},\{ -639, -918, -918, -918, -918\},\{ -229, -508, -508, -508, -508\},\{ -729,-
+ 1008,-1008,-1008,-1008\},\{ -190, -469, -469, -469, -469\}\}
+01694 \},
+01695 \{
+01696 \textcolor{comment}{/* AU.@.. @ */}
+01697 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01698 \textcolor{comment}{/* AU.A.. @ */}
+01699 \{\{ -100, -479, -649, -649, -649\},\{ -100, -479, -649, -649, -649\},\{ -100, -479, -649, -649, -649\},\{ -100, -
+ 479, -649, -649, -649\},\{ -100, -479, -649, -649, -649\}\},
+01700 \textcolor{comment}{/* AU.C.. @ */}
+01701 \{\{ -100, -309, -289, -289, -289\},\{ -100, -309, -289, -289, -289\},\{ -100, -309, -289, -289, -289\},\{ -100, -
+ 309, -289, -289, -289\},\{ -100, -309, -289, -289, -289\}\},
+01702 \textcolor{comment}{/* AU.G.. @ */}
+01703 \{\{ -100, -389, -739, -739, -739\},\{ -100, -389, -739, -739, -739\},\{ -100, -389, -739, -739, -739\},\{ -100, -
+ 389, -739, -739, -739\},\{ -100, -389, -739, -739, -739\}\},
+01704 \textcolor{comment}{/* AU.U.. @ */}
+01705 \{\{ -100, -379, -379, -379, -379\},\{ -100, -379, -379, -379, -379\},\{ -100, -379, -379, -379, -379\},\{ -100, -
+ 379, -379, -379, -379\},\{ -100, -379, -379, -379, -379\}\}
+01706 \}
+01707 \},
+01708 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01709 \{
+01710 \textcolor{comment}{/* UA.@..CG */}
+01711 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01712 \textcolor{comment}{/* UA.A..CG */}
+01713 \{\{ DEF, -399, -629, -889, -589\},\{-1079,-1428,-1658,-1918,-1618\},\{ -569, -918,-1148,-1408,-1108\},\{ -989,-
+ 1338,-1568,-1828,-1528\},\{ -859,-1208,-1438,-1698,-1398\}\},
+01714 \textcolor{comment}{/* UA.C..CG */}
+01715 \{\{ DEF, -429, -509, -199, -179\},\{ -999,-1378,-1458,-1148,-1128\},\{ -499, -878, -958, -648, -628\},\{ -989,-
+ 1368,-1448,-1138,-1118\},\{ -789,-1168,-1248, -938, -918\}\},
+01716 \textcolor{comment}{/* UA.G..CG */}
+01717 \{\{ DEF, -379, -679, -889, -679\},\{-1079,-1408,-1708,-1918,-1708\},\{ -569, -898,-1198,-1408,-1198\},\{ -989,-
+ 1318,-1618,-1828,-1618\},\{ -859,-1188,-1488,-1698,-1488\}\},
+01718 \textcolor{comment}{/* UA.U..CG */}
+01719 \{\{ DEF, -279, -139, -279, -140\},\{-1079,-1308,-1168,-1308,-1169\},\{ -719, -948, -808, -948, -809\},\{ -989,-
+ 1218,-1078,-1218,-1079\},\{ -909,-1138, -998,-1138, -999\}\}
+01720 \},
+01721 \{
+01722 \textcolor{comment}{/* UA.@..GC */}
+01723 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01724 \textcolor{comment}{/* UA.A..GC */}
+01725 \{\{ DEF, -399, -629, -889, -589\},\{ -569, -918,-1148,-1408,-1108\},\{ -769,-1118,-1348,-1608,-1308\},\{ -759,-
+ 1108,-1338,-1598,-1298\},\{ -549, -898,-1128,-1388,-1088\}\},
+01726 \textcolor{comment}{/* UA.C..GC */}
+01727 \{\{ DEF, -429, -509, -199, -179\},\{ -929,-1308,-1388,-1078,-1058\},\{ -359, -738, -818, -508, -488\},\{ -789,-
+ 1168,-1248, -938, -918\},\{ -549, -928,-1008, -698, -678\}\},
+01728 \textcolor{comment}{/* UA.G..GC */}
+01729 \{\{ DEF, -379, -679, -889, -679\},\{ -609, -938,-1238,-1448,-1238\},\{ -359, -688, -988,-1198, -988\},\{ -669, -
+ 998,-1298,-1508,-1298\},\{ -549, -878,-1178,-1388,-1178\}\},
+01730 \textcolor{comment}{/* UA.U..GC */}
+01731 \{\{ DEF, -279, -139, -279, -140\},\{ -929,-1158,-1018,-1158,-1019\},\{ -439, -668, -528, -668, -529\},\{ -789,-
+ 1018, -878,-1018, -879\},\{ -619, -848, -708, -848, -709\}\}
+01732 \},
+01733 \{
+01734 \textcolor{comment}{/* UA.@..GU */}
+01735 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01736 \textcolor{comment}{/* UA.A..GU */}
+01737 \{\{ DEF, -399, -629, -889, -589\},\{ -479, -828,-1058,-1318,-1018\},\{ -309, -658, -888,-1148, -848\},\{ -389, -
+ 738, -968,-1228, -928\},\{ -379, -728, -958,-1218, -918\}\},
+01738 \textcolor{comment}{/* UA.C..GU */}
+01739 \{\{ DEF, -429, -509, -199, -179\},\{ -649,-1028,-1108, -798, -778\},\{ -289, -668, -748, -438, -418\},\{ -739,-
+ 1118,-1198, -888, -868\},\{ -379, -758, -838, -528, -508\}\},
+01740 \textcolor{comment}{/* UA.G..GU */}
+01741 \{\{ DEF, -379, -679, -889, -679\},\{ -649, -978,-1278,-1488,-1278\},\{ -289, -618, -918,-1128, -918\},\{ -739,-
+ 1068,-1368,-1578,-1368\},\{ -379, -708,-1008,-1218,-1008\}\},
+01742 \textcolor{comment}{/* UA.U..GU */}
+01743 \{\{ DEF, -279, -139, -279, -140\},\{ -649, -878, -738, -878, -739\},\{ -289, -518, -378, -518, -379\},\{ -739, -
+ 968, -828, -968, -829\},\{ -379, -608, -468, -608, -469\}\}
+01744 \},
+01745 \{
+01746 \textcolor{comment}{/* UA.@..UG */}
+01747 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01748 \textcolor{comment}{/* UA.A..UG */}
+01749 \{\{ DEF, -399, -629, -889, -589\},\{ -769,-1118,-1348,-1608,-1308\},\{ -529, -878,-1108,-1368,-1068\},\{ -709,-
+ 1058,-1288,-1548,-1248\},\{ -599, -948,-1178,-1438,-1138\}\},
+01750 \textcolor{comment}{/* UA.C..UG */}
+01751 \{\{ DEF, -429, -509, -199, -179\},\{ -839,-1218,-1298, -988, -968\},\{ -529, -908, -988, -678, -658\},\{ -859,-
+ 1238,-1318,-1008, -988\},\{ -489, -868, -948, -638, -618\}\},
+01752 \textcolor{comment}{/* UA.G..UG */}
+01753 \{\{ DEF, -379, -679, -889, -679\},\{-1009,-1338,-1638,-1848,-1638\},\{ -409, -738,-1038,-1248,-1038\},\{ -969,-
+ 1298,-1598,-1808,-1598\},\{ -599, -928,-1228,-1438,-1228\}\},
+01754 \textcolor{comment}{/* UA.U..UG */}
+01755 \{\{ DEF, -279, -139, -279, -140\},\{ -859,-1088, -948,-1088, -949\},\{ -529, -758, -618, -758, -619\},\{ -859,-
+ 1088, -948,-1088, -949\},\{ -409, -638, -498, -638, -499\}\}
+01756 \},
+01757 \{
+01758 \textcolor{comment}{/* UA.@..AU */}
+01759 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01760 \textcolor{comment}{/* UA.A..AU */}
+01761 \{\{ DEF, -399, -629, -889, -589\},\{ -479, -828,-1058,-1318,-1018\},\{ -309, -658, -888,-1148, -848\},\{ -389, -
+ 738, -968,-1228, -928\},\{ -379, -728, -958,-1218, -918\}\},
+01762 \textcolor{comment}{/* UA.C..AU */}
+01763 \{\{ DEF, -429, -509, -199, -179\},\{ -649,-1028,-1108, -798, -778\},\{ -289, -668, -748, -438, -418\},\{ -739,-
+ 1118,-1198, -888, -868\},\{ -379, -758, -838, -528, -508\}\},
+01764 \textcolor{comment}{/* UA.G..AU */}
+01765 \{\{ DEF, -379, -679, -889, -679\},\{ -649, -978,-1278,-1488,-1278\},\{ -289, -618, -918,-1128, -918\},\{ -739,-
+ 1068,-1368,-1578,-1368\},\{ -379, -708,-1008,-1218,-1008\}\},
+01766 \textcolor{comment}{/* UA.U..AU */}
+01767 \{\{ DEF, -279, -139, -279, -140\},\{ -649, -878, -738, -878, -739\},\{ -289, -518, -378, -518, -379\},\{ -739, -
+ 968, -828, -968, -829\},\{ -379, -608, -468, -608, -469\}\}
+01768 \},
+01769 \{
+01770 \textcolor{comment}{/* UA.@..UA */}
+01771 \{\{ 0, 0, 0, 0, 0\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01772 \textcolor{comment}{/* UA.A..UA */}
+01773 \{\{ DEF, -399, -629, -889, -589\},\{ -449, -798,-1028,-1288, -988\},\{ -479, -828,-1058,-1318,-1018\},\{ -429, -
+ 778,-1008,-1268, -968\},\{ -329, -678, -908,-1168, -868\}\},
+01774 \textcolor{comment}{/* UA.C..UA */}
+01775 \{\{ DEF, -429, -509, -199, -179\},\{ -679,-1058,-1138, -828, -808\},\{ -559, -938,-1018, -708, -688\},\{ -729,-
+ 1108,-1188, -878, -858\},\{ -189, -568, -648, -338, -318\}\},
+01776 \textcolor{comment}{/* UA.G..UA */}
+01777 \{\{ DEF, -379, -679, -889, -679\},\{ -939,-1268,-1568,-1778,-1568\},\{ -249, -578, -878,-1088, -878\},\{ -939,-
+ 1268,-1568,-1778,-1568\},\{ -329, -658, -958,-1168, -958\}\},
+01778 \textcolor{comment}{/* UA.U..UA */}
+01779 \{\{ DEF, -279, -139, -279, -140\},\{ -639, -868, -728, -868, -729\},\{ -229, -458, -318, -458, -319\},\{ -729, -
+ 958, -818, -958, -819\},\{ -190, -419, -279, -419, -280\}\}
+01780 \},
+01781 \{
+01782 \textcolor{comment}{/* UA.@.. @ */}
+01783 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\},\{ DEF,
+ DEF, DEF, DEF, DEF\},\{ DEF, DEF, DEF, DEF, DEF\}\},
+01784 \textcolor{comment}{/* UA.A.. @ */}
+01785 \{\{ -100, -449, -679, -939, -639\},\{ -100, -449, -679, -939, -639\},\{ -100, -449, -679, -939, -639\},\{ -100, -
+ 449, -679, -939, -639\},\{ -100, -449, -679, -939, -639\}\},
+01786 \textcolor{comment}{/* UA.C.. @ */}
+01787 \{\{ -100, -479, -559, -249, -229\},\{ -100, -479, -559, -249, -229\},\{ -100, -479, -559, -249, -229\},\{ -100, -
+ 479, -559, -249, -229\},\{ -100, -479, -559, -249, -229\}\},
+01788 \textcolor{comment}{/* UA.G.. @ */}
+01789 \{\{ -100, -429, -729, -939, -729\},\{ -100, -429, -729, -939, -729\},\{ -100, -429, -729, -939, -729\},\{ -100, -
+ 429, -729, -939, -729\},\{ -100, -429, -729, -939, -729\}\},
+01790 \textcolor{comment}{/* UA.U.. @ */}
+01791 \{\{ -100, -329, -189, -329, -190\},\{ -100, -329, -189, -329, -190\},\{ -100, -329, -189, -329, -190\},\{ -100, -
+ 329, -189, -329, -190\},\{ -100, -329, -189, -329, -190\}\}
+01792 \}
+01793 \},
+01794 \{ \textcolor{comment}{/* noPair */} \{\{\{0\}\}\},
+01795 \{
+01796 \textcolor{comment}{/* @.@..CG */}
+01797 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01798 \textcolor{comment}{/* @.A..CG */}
+01799 \{\{ DEF, DEF, DEF, DEF, DEF\},\{-1079,-1079,-1079,-1079,-1079\},\{ -569, -569, -569, -569, -569\},\{ -989, -
+ 989, -989, -989, -989\},\{ -859, -859, -859, -859, -859\}\},
+01800 \textcolor{comment}{/* @.C..CG */}
+01801 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -999, -999, -999, -999, -999\},\{ -499, -499, -499, -499, -499\},\{ -989, -
+ 989, -989, -989, -989\},\{ -789, -789, -789, -789, -789\}\},
+01802 \textcolor{comment}{/* @.G..CG */}
+01803 \{\{ DEF, DEF, DEF, DEF, DEF\},\{-1079,-1079,-1079,-1079,-1079\},\{ -569, -569, -569, -569, -569\},\{ -989, -
+ 989, -989, -989, -989\},\{ -859, -859, -859, -859, -859\}\},
+01804 \textcolor{comment}{/* @.U..CG */}
+01805 \{\{ DEF, DEF, DEF, DEF, DEF\},\{-1079,-1079,-1079,-1079,-1079\},\{ -719, -719, -719, -719, -719\},\{ -989, -
+ 989, -989, -989, -989\},\{ -909, -909, -909, -909, -909\}\}
+01806 \},
+01807 \{
+01808 \textcolor{comment}{/* @.@..GC */}
+01809 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01810 \textcolor{comment}{/* @.A..GC */}
+01811 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -569, -569, -569, -569, -569\},\{ -769, -769, -769, -769, -769\},\{ -759, -
+ 759, -759, -759, -759\},\{ -549, -549, -549, -549, -549\}\},
+01812 \textcolor{comment}{/* @.C..GC */}
+01813 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -929, -929, -929, -929, -929\},\{ -359, -359, -359, -359, -359\},\{ -789, -
+ 789, -789, -789, -789\},\{ -549, -549, -549, -549, -549\}\},
+01814 \textcolor{comment}{/* @.G..GC */}
+01815 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -609, -609, -609, -609, -609\},\{ -359, -359, -359, -359, -359\},\{ -669, -
+ 669, -669, -669, -669\},\{ -549, -549, -549, -549, -549\}\},
+01816 \textcolor{comment}{/* @.U..GC */}
+01817 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -929, -929, -929, -929, -929\},\{ -439, -439, -439, -439, -439\},\{ -789, -
+ 789, -789, -789, -789\},\{ -619, -619, -619, -619, -619\}\}
+01818 \},
+01819 \{
+01820 \textcolor{comment}{/* @.@..GU */}
+01821 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01822 \textcolor{comment}{/* @.A..GU */}
+01823 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -479, -479, -479, -479, -479\},\{ -309, -309, -309, -309, -309\},\{ -389, -
+ 389, -389, -389, -389\},\{ -379, -379, -379, -379, -379\}\},
+01824 \textcolor{comment}{/* @.C..GU */}
+01825 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -649, -649, -649, -649, -649\},\{ -289, -289, -289, -289, -289\},\{ -739, -
+ 739, -739, -739, -739\},\{ -379, -379, -379, -379, -379\}\},
+01826 \textcolor{comment}{/* @.G..GU */}
+01827 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -649, -649, -649, -649, -649\},\{ -289, -289, -289, -289, -289\},\{ -739, -
+ 739, -739, -739, -739\},\{ -379, -379, -379, -379, -379\}\},
+01828 \textcolor{comment}{/* @.U..GU */}
+01829 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -649, -649, -649, -649, -649\},\{ -289, -289, -289, -289, -289\},\{ -739, -
+ 739, -739, -739, -739\},\{ -379, -379, -379, -379, -379\}\}
+01830 \},
+01831 \{
+01832 \textcolor{comment}{/* @.@..UG */}
+01833 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01834 \textcolor{comment}{/* @.A..UG */}
+01835 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -769, -769, -769, -769, -769\},\{ -529, -529, -529, -529, -529\},\{ -709, -
+ 709, -709, -709, -709\},\{ -599, -599, -599, -599, -599\}\},
+01836 \textcolor{comment}{/* @.C..UG */}
+01837 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -839, -839, -839, -839, -839\},\{ -529, -529, -529, -529, -529\},\{ -859, -
+ 859, -859, -859, -859\},\{ -489, -489, -489, -489, -489\}\},
+01838 \textcolor{comment}{/* @.G..UG */}
+01839 \{\{ DEF, DEF, DEF, DEF, DEF\},\{-1009,-1009,-1009,-1009,-1009\},\{ -409, -409, -409, -409, -409\},\{ -969, -
+ 969, -969, -969, -969\},\{ -599, -599, -599, -599, -599\}\},
+01840 \textcolor{comment}{/* @.U..UG */}
+01841 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -859, -859, -859, -859, -859\},\{ -529, -529, -529, -529, -529\},\{ -859, -
+ 859, -859, -859, -859\},\{ -409, -409, -409, -409, -409\}\}
+01842 \},
+01843 \{
+01844 \textcolor{comment}{/* @.@..AU */}
+01845 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01846 \textcolor{comment}{/* @.A..AU */}
+01847 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -479, -479, -479, -479, -479\},\{ -309, -309, -309, -309, -309\},\{ -389, -
+ 389, -389, -389, -389\},\{ -379, -379, -379, -379, -379\}\},
+01848 \textcolor{comment}{/* @.C..AU */}
+01849 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -649, -649, -649, -649, -649\},\{ -289, -289, -289, -289, -289\},\{ -739, -
+ 739, -739, -739, -739\},\{ -379, -379, -379, -379, -379\}\},
+01850 \textcolor{comment}{/* @.G..AU */}
+01851 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -649, -649, -649, -649, -649\},\{ -289, -289, -289, -289, -289\},\{ -739, -
+ 739, -739, -739, -739\},\{ -379, -379, -379, -379, -379\}\},
+01852 \textcolor{comment}{/* @.U..AU */}
+01853 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -649, -649, -649, -649, -649\},\{ -289, -289, -289, -289, -289\},\{ -739, -
+ 739, -739, -739, -739\},\{ -379, -379, -379, -379, -379\}\}
+01854 \},
+01855 \{
+01856 \textcolor{comment}{/* @.@..UA */}
+01857 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01858 \textcolor{comment}{/* @.A..UA */}
+01859 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -449, -449, -449, -449, -449\},\{ -479, -479, -479, -479, -479\},\{ -429, -
+ 429, -429, -429, -429\},\{ -329, -329, -329, -329, -329\}\},
+01860 \textcolor{comment}{/* @.C..UA */}
+01861 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -679, -679, -679, -679, -679\},\{ -559, -559, -559, -559, -559\},\{ -729, -
+ 729, -729, -729, -729\},\{ -189, -189, -189, -189, -189\}\},
+01862 \textcolor{comment}{/* @.G..UA */}
+01863 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -939, -939, -939, -939, -939\},\{ -249, -249, -249, -249, -249\},\{ -939, -
+ 939, -939, -939, -939\},\{ -329, -329, -329, -329, -329\}\},
+01864 \textcolor{comment}{/* @.U..UA */}
+01865 \{\{ DEF, DEF, DEF, DEF, DEF\},\{ -639, -639, -639, -639, -639\},\{ -229, -229, -229, -229, -229\},\{ -729, -
+ 729, -729, -729, -729\},\{ -190, -190, -190, -190, -190\}\}
+01866 \},
+01867 \{
+01868 \textcolor{comment}{/* @.@.. @ */}
+01869 \{\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01870 \textcolor{comment}{/* @.A.. @ */}
+01871 \{\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01872 \textcolor{comment}{/* @.C.. @ */}
+01873 \{\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01874 \textcolor{comment}{/* @.G.. @ */}
+01875 \{\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\},
+01876 \textcolor{comment}{/* @.U.. @ */}
+01877 \{\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\},\{ -100, -
+ 100, -100, -100, -100\},\{ -100, -100, -100, -100, -100\}\}
+01878 \}
+01879 \}
+01880 \};
+01881
+01882 PRIVATE \textcolor{keywordtype}{int} int22\_37\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5] = \{
+01883 \textcolor{comment}{/* noPair */} \{\{\{\{\{0\}\}\}\}\},
+01884 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+01885 \textcolor{comment}{/* CG....CG */}
+01886 \{\{
+01887 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01888 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01889 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01890 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01891 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+01892 \},
+01893 \{
+01894 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01895 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 160, 30, 200\},\{ 340, 120, 150, 20, 200\},\{ 340, 30, 60, -70, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+01896 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 200, 60, 200\},\{ 340, 210, 180, 150, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 190, 170, 130, 200\}\},
+01897 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 60, -70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 140, 0, 200
+ \},\{ 340, -40, -110, -60, 200\}\},
+01898 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 170, 130, 200\},\{ 340, 110, 40, 90, 200
+ \},\{ 340, 140, 80, 130, 200\}\}
+01899 \},
+01900 \{
+01901 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01902 \{\{ 340, 340, 340, 340, 340\},\{ 340, 120, 210, 200, 190\},\{ 340, 110, 140, 200, 120\},\{ 340, 20, 150, 200, 130
+ \},\{ 340, 200, 200, 200, 200\}\},
+01903 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 180, 200, 170\},\{ 340, 140, 170, 200, 150\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 120, 150, 200, 140\}\},
+01904 \{\{ 340, 340, 340, 340, 340\},\{ 340, 20, 150, 200, 130\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 180, 200, 170
+ \},\{ 340, -150, -20, 200, -40\}\},
+01905 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 150, 200, 140\},\{ 340, 0, 130, 200, 110
+ \},\{ 340, 30, 60, 200, 50\}\}
+01906 \},
+01907 \{
+01908 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01909 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 200, 100, 110\},\{ 340, 20, 200, 90, 0\},\{ 340, -70, 200, 0, 90
+ \},\{ 340, 200, 200, 200, 200\}\},
+01910 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 200, 140, 40\},\{ 340, 150, 200, 180, 130\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 130, 200, 170, 110\}\},
+01911 \{\{ 340, 340, 340, 340, 340\},\{ 340, -70, 200, 0, 90\},\{ 340, 200, 200, 200, 200\},\{ 340, 0, 200, 80, 90
+ \},\{ 340, -60, 200, -70, -260\}\},
+01912 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 200, 170, 110\},\{ 340, 90, 200, 90, -
+ 110\},\{ 340, 130, 200, 120, 110\}\}
+01913 \},
+01914 \{
+01915 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01916 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 190, -40, 140\},\{ 340, 200, 120, -150, 30\},\{ 340, 200, 130, -60,
+ 130\},\{ 340, 200, 200, 200, 200\}\},
+01917 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, -110, 80\},\{ 340, 200, 150, -20, 60\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 140, -40, 50\}\},
+01918 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 130, -60, 130\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 170, -70, 120
+ \},\{ 340, 200, -40, -420, -50\}\},
+01919 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 140, -40, 50\},\{ 340, 200, 110, -260,
+ 110\},\{ 340, 200, 50, -50, -40\}\}
+01920 \}
+01921 \},
+01922 \textcolor{comment}{/* CG....GC */}
+01923 \{\{
+01924 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01925 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01926 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01927 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01928 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+01929 \},
+01930 \{
+01931 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01932 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 60, 0, 200\},\{ 340, 110, 150, -70, 200\},\{ 340, -30, 10, -160,
+ 200\},\{ 340, 200, 200, 200, 200\}\},
+01933 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 110, -100, 200\},\{ 340, 170, 150, -60, 200\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 70, 50, 20, 200\}\},
+01934 \{\{ 340, 340, 340, 340, 340\},\{ 340, 40, 50, -70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 140, 0, 200
+ \},\{ 340, 10, -70, -80, 200\}\},
+01935 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 150, 120, 200\},\{ 340, -50, -60, -60, 200
+ \},\{ 340, 150, 0, 90, 200\}\}
+01936 \},
+01937 \{
+01938 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01939 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 220, 200, 200\},\{ 340, 100, 130, 200, 120\},\{ 340, -70, 70, 200, 40
+ \},\{ 340, 200, 200, 200, 200\}\},
+01940 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 190, 200, 110\},\{ 340, 100, 130, 200, 120\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 0, 30, 200, 170\}\},
+01941 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 70, 200, 100\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 180, 200, 170
+ \},\{ 340, -190, -30, 200, -70\}\},
+01942 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 140, 200, 120\},\{ 340, -150, -20, 200, -
+ 30\},\{ 340, -20, -10, 200, 20\}\}
+01943 \},
+01944 \{
+01945 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01946 \{\{ 340, 340, 340, 340, 340\},\{ 340, -20, 200, 110, 90\},\{ 340, -40, 200, 90, 0\},\{ 340, -170, 200, -90,
+ 30\},\{ 340, 200, 200, 200, 200\}\},
+01947 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 80, -10\},\{ 340, 110, 200, 150, 100\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 20, 200, 50, 0\}\},
+01948 \{\{ 340, 340, 340, 340, 340\},\{ 340, -50, 200, -20, 60\},\{ 340, 200, 200, 200, 200\},\{ 340, 0, 200, 80, 90
+ \},\{ 340, -90, 200, -100, -300\}\},
+01949 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 200, 150, 100\},\{ 340, -130, 200, -60, -
+ 240\},\{ 340, 90, 200, 110, 60\}\}
+01950 \},
+01951 \{
+01952 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01953 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, -10, 140\},\{ 340, 200, 120, -160, 30\},\{ 340, 200, 40, -160,
+ 50\},\{ 340, 200, 200, 200, 200\}\},
+01954 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 110, -160, 30\},\{ 340, 200, 120, -60, 30\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 20, -160, 10\}\},
+01955 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 50, -60, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 170, -70, 120
+ \},\{ 340, 200, -70, -440, -100\}\},
+01956 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 120, -50, 30\},\{ 340, 200, -10, -410,
+ 10\},\{ 340, 200, 40, -100, 60\}\}
+01957 \}
+01958 \},
+01959 \textcolor{comment}{/* CG....GU */}
+01960 \{\{
+01961 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01962 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01963 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01964 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01965 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+01966 \},
+01967 \{
+01968 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01969 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 100, 200\},\{ 340, 180, 210, 80, 200\},\{ 340, 80, 110, -20, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+01970 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 220, 90, 200\},\{ 340, 230, 210, 170, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 230, 210, 170, 200\}\},
+01971 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 110, -20, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 170, 30, 200
+ \},\{ 340, 60, 0, 40, 200\}\},
+01972 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 230, 210, 170, 200\},\{ 340, 160, 90, 140, 200
+ \},\{ 340, 190, 130, 180, 200\}\}
+01973 \},
+01974 \{
+01975 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01976 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 280, 200, 270\},\{ 340, 170, 200, 200, 180\},\{ 340, 70, 200, 200, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+01977 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 210, 200, 190\},\{ 340, 160, 190, 200, 180\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 160, 190, 200, 180\}\},
+01978 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 200, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 210, 200, 200
+ \},\{ 340, -50, 80, 200, 70\}\},
+01979 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 190, 200, 180\},\{ 340, 50, 180, 200, 160
+ \},\{ 340, 80, 110, 200, 100\}\}
+01980 \},
+01981 \{
+01982 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01983 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 180, 180\},\{ 340, 80, 200, 150, 60\},\{ 340, -20, 200, 50, 140
+ \},\{ 340, 200, 200, 200, 200\}\},
+01984 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 200, 160, 70\},\{ 340, 170, 200, 210, 150\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 170, 200, 210, 150\}\},
+01985 \{\{ 340, 340, 340, 340, 340\},\{ 340, -20, 200, 50, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 30, 200, 110, 110
+ \},\{ 340, 40, 200, 40, -160\}\},
+01986 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 200, 210, 150\},\{ 340, 140, 200, 130, -60
+ \},\{ 340, 180, 200, 170, 160\}\}
+01987 \},
+01988 \{
+01989 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01990 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 30, 220\},\{ 340, 200, 180, -90, 90\},\{ 340, 200, 180, -10, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+01991 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 190, -80, 100\},\{ 340, 200, 180, 0, 90\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 180, 0, 90\}\},
+01992 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 180, -10, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 200, -40, 150
+ \},\{ 340, 200, 70, -310, 60\}\},
+01993 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 180, 0, 90\},\{ 340, 200, 160, -210,
+ 160\},\{ 340, 200, 100, 0, 10\}\}
+01994 \}
+01995 \},
+01996 \textcolor{comment}{/* CG....UG */}
+01997 \{\{
+01998 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+01999 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02000 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02001 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02002 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02003 \},
+02004 \{
+02005 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02006 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 100, 200\},\{ 340, 160, 190, 60, 200\},\{ 340, 100, 130, 0, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02007 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 100, 200\},\{ 340, 260, 240, 200, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 260, 240, 200, 200\}\},
+02008 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 130, 0, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 140, 170, 40, 200
+ \},\{ 340, 20, -40, 0, 200\}\},
+02009 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 230, 210, 170, 200\},\{ 340, 150, 80, 130, 200
+ \},\{ 340, 220, 150, 200, 200\}\}
+02010 \},
+02011 \{
+02012 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02013 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 280, 200, 270\},\{ 340, 150, 180, 200, 160\},\{ 340, 90, 220, 200, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02014 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 220, 200, 210\},\{ 340, 190, 220, 200, 210\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 190, 220, 200, 210\}\},
+02015 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 220, 200, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 220, 200, 200
+ \},\{ 340, -90, 40, 200, 30\}\},
+02016 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 190, 200, 180\},\{ 340, 40, 170, 200, 150
+ \},\{ 340, 110, 140, 200, 120\}\}
+02017 \},
+02018 \{
+02019 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02020 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 180, 180\},\{ 340, 60, 200, 130, 40\},\{ 340, 0, 200, 70, 160
+ \},\{ 340, 200, 200, 200, 200\}\},
+02021 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 180, 80\},\{ 340, 200, 200, 240, 180\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 200, 240, 180\}\},
+02022 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, 200, 70, 160\},\{ 340, 200, 200, 200, 200\},\{ 340, 40, 200, 110, 120
+ \},\{ 340, 0, 200, 0, -200\}\},
+02023 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 200, 210, 150\},\{ 340, 130, 200, 120, -70
+ \},\{ 340, 200, 200, 190, 180\}\}
+02024 \},
+02025 \{
+02026 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02027 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 30, 220\},\{ 340, 200, 160, -110, 70\},\{ 340, 200, 200, 10,
+ 190\},\{ 340, 200, 200, 200, 200\}\},
+02028 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 210, -70, 120\},\{ 340, 200, 210, 30, 120\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 210, 30, 120\}\},
+02029 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 10, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 200, -30, 150
+ \},\{ 340, 200, 30, -350, 20\}\},
+02030 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 180, 0, 90\},\{ 340, 200, 150, -220,
+ 150\},\{ 340, 200, 120, 30, 30\}\}
+02031 \}
+02032 \},
+02033 \textcolor{comment}{/* CG....AU */}
+02034 \{\{
+02035 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02036 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02037 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02038 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02039 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02040 \},
+02041 \{
+02042 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02043 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 100, 200\},\{ 340, 180, 210, 80, 200\},\{ 340, 80, 110, -20, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02044 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 220, 90, 200\},\{ 340, 230, 210, 170, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 230, 210, 170, 200\}\},
+02045 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 110, -20, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 170, 30, 200
+ \},\{ 340, 60, 0, 40, 200\}\},
+02046 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 230, 210, 170, 200\},\{ 340, 160, 90, 140, 200
+ \},\{ 340, 190, 130, 180, 200\}\}
+02047 \},
+02048 \{
+02049 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02050 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 280, 200, 270\},\{ 340, 170, 200, 200, 180\},\{ 340, 70, 200, 200, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+02051 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 210, 200, 190\},\{ 340, 160, 190, 200, 180\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 160, 190, 200, 180\}\},
+02052 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 200, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 210, 200, 200
+ \},\{ 340, -50, 80, 200, 70\}\},
+02053 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 190, 200, 180\},\{ 340, 50, 180, 200, 160
+ \},\{ 340, 80, 110, 200, 100\}\}
+02054 \},
+02055 \{
+02056 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02057 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 180, 180\},\{ 340, 80, 200, 150, 60\},\{ 340, -20, 200, 50, 140
+ \},\{ 340, 200, 200, 200, 200\}\},
+02058 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 200, 160, 70\},\{ 340, 170, 200, 210, 150\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 170, 200, 210, 150\}\},
+02059 \{\{ 340, 340, 340, 340, 340\},\{ 340, -20, 200, 50, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 30, 200, 110, 110
+ \},\{ 340, 40, 200, 40, -160\}\},
+02060 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 200, 210, 150\},\{ 340, 140, 200, 130, -60
+ \},\{ 340, 180, 200, 170, 160\}\}
+02061 \},
+02062 \{
+02063 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02064 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 30, 220\},\{ 340, 200, 180, -90, 90\},\{ 340, 200, 180, -10, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+02065 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 190, -80, 100\},\{ 340, 200, 180, 0, 90\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 180, 0, 90\}\},
+02066 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 180, -10, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 200, -40, 150
+ \},\{ 340, 200, 70, -310, 60\}\},
+02067 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 180, 0, 90\},\{ 340, 200, 160, -210,
+ 160\},\{ 340, 200, 100, 0, 10\}\}
+02068 \}
+02069 \},
+02070 \textcolor{comment}{/* CG....UA */}
+02071 \{\{
+02072 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02073 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02074 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02075 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02076 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02077 \},
+02078 \{
+02079 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02080 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 100, 200\},\{ 340, 160, 190, 60, 200\},\{ 340, 100, 130, 0, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02081 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 100, 200\},\{ 340, 260, 240, 200, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 260, 240, 200, 200\}\},
+02082 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 130, 0, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 140, 170, 40, 200
+ \},\{ 340, 20, -40, 0, 200\}\},
+02083 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 230, 210, 170, 200\},\{ 340, 150, 80, 130, 200
+ \},\{ 340, 220, 150, 200, 200\}\}
+02084 \},
+02085 \{
+02086 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02087 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 280, 200, 270\},\{ 340, 150, 180, 200, 160\},\{ 340, 90, 220, 200, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02088 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 220, 200, 210\},\{ 340, 190, 220, 200, 210\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 190, 220, 200, 210\}\},
+02089 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 220, 200, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 220, 200, 200
+ \},\{ 340, -90, 40, 200, 30\}\},
+02090 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 190, 200, 180\},\{ 340, 40, 170, 200, 150
+ \},\{ 340, 110, 140, 200, 120\}\}
+02091 \},
+02092 \{
+02093 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02094 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 180, 180\},\{ 340, 60, 200, 130, 40\},\{ 340, 0, 200, 70, 160
+ \},\{ 340, 200, 200, 200, 200\}\},
+02095 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 180, 80\},\{ 340, 200, 200, 240, 180\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 200, 240, 180\}\},
+02096 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, 200, 70, 160\},\{ 340, 200, 200, 200, 200\},\{ 340, 40, 200, 110, 120
+ \},\{ 340, 0, 200, 0, -200\}\},
+02097 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 200, 210, 150\},\{ 340, 130, 200, 120, -70
+ \},\{ 340, 200, 200, 190, 180\}\}
+02098 \},
+02099 \{
+02100 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02101 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 30, 220\},\{ 340, 200, 160, -110, 70\},\{ 340, 200, 200, 10,
+ 190\},\{ 340, 200, 200, 200, 200\}\},
+02102 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 210, -70, 120\},\{ 340, 200, 210, 30, 120\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 210, 30, 120\}\},
+02103 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 10, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 200, -30, 150
+ \},\{ 340, 200, 30, -350, 20\}\},
+02104 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 180, 0, 90\},\{ 340, 200, 150, -220,
+ 150\},\{ 340, 200, 120, 30, 30\}\}
+02105 \}
+02106 \},
+02107 \textcolor{comment}{/* CG....?? */}
+02108 \{\{
+02109 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02110 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02111 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02112 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02113 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02114 \},
+02115 \{
+02116 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02117 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02118 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02119 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02120 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02121 \},
+02122 \{
+02123 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02124 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02125 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02126 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02127 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02128 \},
+02129 \{
+02130 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02131 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02132 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02133 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02134 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02135 \},
+02136 \{
+02137 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02138 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02139 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02140 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02141 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02142 \}
+02143 \}
+02144 \},
+02145 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+02146 \textcolor{comment}{/* GC....CG */}
+02147 \{\{
+02148 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02149 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02150 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02151 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02152 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02153 \},
+02154 \{
+02155 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02156 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 110, 40, 200\},\{ 340, 130, 100, 70, 200\},\{ 340, -20, 70, -50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02157 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 110, 50, 200\},\{ 340, 220, 190, 70, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 110, 50, 200\}\},
+02158 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, -100, -70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 80, -20,
+ 200\},\{ 340, -10, -160, -60, 200\}\},
+02159 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 110, 100, 200\},\{ 340, 90, -10, 60, 200
+ \},\{ 340, 140, 30, 140, 200\}\}
+02160 \},
+02161 \{
+02162 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02163 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 170, 200, 180\},\{ 340, 100, 100, 200, 110\},\{ 340, -40, 110, 200, 120
+ \},\{ 340, 200, 200, 200, 200\}\},
+02164 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 150, 200, 150\},\{ 340, 130, 130, 200, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 120, 120, 200, 120\}\},
+02165 \{\{ 340, 340, 340, 340, 340\},\{ 340, -70, -60, 200, 120\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 150, 200, 150
+ \},\{ 340, -160, -60, 200, -50\}\},
+02166 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 120, 200, 120\},\{ 340, 0, 100, 200, 100
+ \},\{ 340, 30, 30, 200, 30\}\}
+02167 \},
+02168 \{
+02169 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02170 \{\{ 340, 340, 340, 340, 340\},\{ 340, -30, 200, 100, -50\},\{ 340, -70, 200, 90, -150\},\{ 340, -170, 200, 0, -
+ 130\},\{ 340, 200, 200, 200, 200\}\},
+02171 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 140, -60\},\{ 340, 70, 200, 180, -20\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 40, 200, 170, -10\}\},
+02172 \{\{ 340, 340, 340, 340, 340\},\{ 340, -160, 200, 0, -60\},\{ 340, 200, 200, 200, 200\},\{ 340, -90, 200, 80, -
+ 60\},\{ 340, -160, 200, -70, -410\}\},
+02173 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 40, 200, 170, -30\},\{ 340, 30, 200, 90, -
+ 240\},\{ 340, 50, 200, 120, 10\}\}
+02174 \},
+02175 \{
+02176 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02177 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 70, 10, 150\},\{ 340, 200, 0, -190, -20\},\{ 340, 200, 20, -90,
+ 90\},\{ 340, 200, 200, 200, 200\}\},
+02178 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 50, -70, 0\},\{ 340, 200, 30, -30, -10\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 20, -70, 40\}\},
+02179 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 20, -80, 90\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 50, -100,
+ 110\},\{ 340, 200, -160, -440, -100\}\},
+02180 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 170, -70, 20\},\{ 340, 200, 0, -300,
+ 60\},\{ 340, 200, 10, -100, 60\}\}
+02181 \}
+02182 \},
+02183 \textcolor{comment}{/* GC....GC */}
+02184 \{\{
+02185 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02186 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02187 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02188 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02189 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02190 \},
+02191 \{
+02192 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02193 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 120, 10, 200\},\{ 340, 120, 90, -10, 200\},\{ 340, -50, -80, -190,
+ 200\},\{ 340, 200, 200, 200, 200\}\},
+02194 \{\{ 340, 340, 340, 340, 340\},\{ 340, 120, 90, -20, 200\},\{ 340, 180, 90, 90, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 80, 0, -10, 200\}\},
+02195 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, -20, -130, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 80, -20,
+ 200\},\{ 340, -70, -200, -130, 200\}\},
+02196 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 100, 90, 200\},\{ 340, -30, -160, -90,
+ 200\},\{ 340, 150, 20, 90, 200\}\}
+02197 \},
+02198 \{
+02199 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02200 \{\{ 340, 340, 340, 340, 340\},\{ 340, 120, 180, 200, 190\},\{ 340, 100, 100, 200, 100\},\{ 340, -80, 20, 200, 30
+ \},\{ 340, 200, 200, 200, 200\}\},
+02201 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 90, 200, 100\},\{ 340, 100, 100, 200, 100\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 0, 0, 200, 0\}\},
+02202 \{\{ 340, 340, 340, 340, 340\},\{ 340, -10, 90, 200, 90\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 150, 200, 150
+ \},\{ 340, -190, -90, 200, -90\}\},
+02203 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 100, 200, 110\},\{ 340, -150, -50, 200, -
+ 50\},\{ 340, 20, 20, 200, 30\}\}
+02204 \},
+02205 \{
+02206 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02207 \{\{ 340, 340, 340, 340, 340\},\{ 340, -50, 200, 110, -30\},\{ 340, -80, 200, 90, -150\},\{ 340, -260, 200, -90, -
+ 150\},\{ 340, 200, 200, 200, 200\}\},
+02208 \{\{ 340, 340, 340, 340, 340\},\{ 340, -80, 200, 80, -160\},\{ 340, 20, 200, 150, -50\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, -80, 200, 50, -150\}\},
+02209 \{\{ 340, 340, 340, 340, 340\},\{ 340, -190, 200, -20, -90\},\{ 340, 200, 200, 200, 200\},\{ 340, -90, 200, 80, -
+ 60\},\{ 340, -190, 200, -100, -450\}\},
+02210 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 30, 200, 150, -50\},\{ 340, -150, 200, -60, -
+ 410\},\{ 340, 30, 200, 110, -50\}\}
+02211 \},
+02212 \{
+02213 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02214 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 80, -70, 150\},\{ 340, 200, 0, -190, 20\},\{ 340, 200, -80, -190,
+ 30\},\{ 340, 200, 200, 200, 200\}\},
+02215 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 0, -200, 20\},\{ 340, 200, 0, -90, 20\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, -100, -190, -70\}\},
+02216 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, -10, -130, 90\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 50, -100,
+ 110\},\{ 340, 200, -190, -490, -90\}\},
+02217 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 0, -90, 30\},\{ 340, 200, -150, -450, -
+ 50\},\{ 340, 200, -70, -90, -50\}\}
+02218 \}
+02219 \},
+02220 \textcolor{comment}{/* GC....GU */}
+02221 \{\{
+02222 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02223 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02224 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02225 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02226 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02227 \},
+02228 \{
+02229 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02230 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 180, 70, 200\},\{ 340, 190, 160, 50, 200\},\{ 340, 90, 60, -50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02231 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, 60, 200\},\{ 340, 240, 150, 140, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 240, 150, 140, 200\}\},
+02232 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 60, -50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 140, 110, 0, 200
+ \},\{ 340, 70, -60, 10, 200\}\},
+02233 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 150, 140, 200\},\{ 340, 170, 40, 110, 200
+ \},\{ 340, 200, 70, 150, 200\}\}
+02234 \},
+02235 \{
+02236 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02237 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 250, 200, 250\},\{ 340, 160, 160, 200, 170\},\{ 340, 60, 160, 200, 170
+ \},\{ 340, 200, 200, 200, 200\}\},
+02238 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 170, 200, 180\},\{ 340, 160, 160, 200, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 160, 160, 200, 160\}\},
+02239 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 160, 200, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 180, 200, 180
+ \},\{ 340, -50, 50, 200, 50\}\},
+02240 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 160, 200, 160\},\{ 340, 40, 140, 200, 150
+ \},\{ 340, 80, 80, 200, 80\}\}
+02241 \},
+02242 \{
+02243 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02244 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 180, 40\},\{ 340, -10, 200, 150, -90\},\{ 340, -110, 200, 50, -
+ 10\},\{ 340, 200, 200, 200, 200\}\},
+02245 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, 200, 160, -80\},\{ 340, 80, 200, 210, 10\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 80, 200, 210, 10\}\},
+02246 \{\{ 340, 340, 340, 340, 340\},\{ 340, -110, 200, 50, -10\},\{ 340, 200, 200, 200, 200\},\{ 340, -60, 200, 110, -
+ 30\},\{ 340, -50, 200, 40, -310\}\},
+02247 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 210, 10\},\{ 340, 50, 200, 130, -
+ 210\},\{ 340, 80, 200, 170, 10\}\}
+02248 \},
+02249 \{
+02250 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02251 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 150, 0, 210\},\{ 340, 200, 60, -130, 90\},\{ 340, 200, 70, -50,
+ 170\},\{ 340, 200, 200, 200, 200\}\},
+02252 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 70, -120, 100\},\{ 340, 200, 60, -30, 80\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 60, -30, 80\}\},
+02253 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 70, -50, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 80, -70, 140
+ \},\{ 340, 200, -50, -350, 50\}\},
+02254 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 60, -30, 80\},\{ 340, 200, 50, -250,
+ 150\},\{ 340, 200, -20, -30, 0\}\}
+02255 \}
+02256 \},
+02257 \textcolor{comment}{/* GC....UG */}
+02258 \{\{
+02259 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02260 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02261 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02262 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02263 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02264 \},
+02265 \{
+02266 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02267 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 180, 70, 200\},\{ 340, 170, 140, 30, 200\},\{ 340, 110, 80, -30, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02268 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 180, 70, 200\},\{ 340, 270, 180, 170, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 180, 170, 200\}\},
+02269 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 80, -30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 120, 10, 200
+ \},\{ 340, 30, -100, -30, 200\}\},
+02270 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 150, 140, 200\},\{ 340, 160, 30, 100, 200
+ \},\{ 340, 230, 100, 170, 200\}\}
+02271 \},
+02272 \{
+02273 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02274 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 250, 200, 250\},\{ 340, 140, 140, 200, 150\},\{ 340, 80, 180, 200, 190
+ \},\{ 340, 200, 200, 200, 200\}\},
+02275 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 190, 200, 190\},\{ 340, 190, 190, 200, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 190, 190, 200, 190\}\},
+02276 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 180, 200, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 180, 200, 190
+ \},\{ 340, -90, 10, 200, 10\}\},
+02277 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 160, 200, 160\},\{ 340, 30, 130, 200, 140
+ \},\{ 340, 100, 100, 200, 110\}\}
+02278 \},
+02279 \{
+02280 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02281 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 180, 40\},\{ 340, -30, 200, 130, -110\},\{ 340, -90, 200, 70,
+ 10\},\{ 340, 200, 200, 200, 200\}\},
+02282 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 180, -60\},\{ 340, 110, 200, 240, 40\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 110, 200, 240, 40\}\},
+02283 \{\{ 340, 340, 340, 340, 340\},\{ 340, -90, 200, 70, 10\},\{ 340, 200, 200, 200, 200\},\{ 340, -50, 200, 110, -30
+ \},\{ 340, -90, 200, 0, -350\}\},
+02284 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 210, 10\},\{ 340, 40, 200, 120, -
+ 220\},\{ 340, 110, 200, 190, 30\}\}
+02285 \},
+02286 \{
+02287 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02288 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 150, 0, 210\},\{ 340, 200, 40, -150, 70\},\{ 340, 200, 90, -30,
+ 190\},\{ 340, 200, 200, 200, 200\}\},
+02289 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 90, -100, 110\},\{ 340, 200, 90, 0, 110\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 90, 0, 110\}\},
+02290 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 90, -30, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 80, -70, 150
+ \},\{ 340, 200, -90, -390, 10\}\},
+02291 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 60, -30, 80\},\{ 340, 200, 40, -260,
+ 140\},\{ 340, 200, 0, -10, 30\}\}
+02292 \}
+02293 \},
+02294 \textcolor{comment}{/* GC....AU */}
+02295 \{\{
+02296 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02297 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02298 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02299 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02300 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02301 \},
+02302 \{
+02303 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02304 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 180, 70, 200\},\{ 340, 190, 160, 50, 200\},\{ 340, 90, 60, -50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02305 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, 60, 200\},\{ 340, 240, 150, 140, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 240, 150, 140, 200\}\},
+02306 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 60, -50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 140, 110, 0, 200
+ \},\{ 340, 70, -60, 10, 200\}\},
+02307 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 150, 140, 200\},\{ 340, 170, 40, 110, 200
+ \},\{ 340, 200, 70, 150, 200\}\}
+02308 \},
+02309 \{
+02310 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02311 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 250, 200, 250\},\{ 340, 160, 160, 200, 170\},\{ 340, 60, 160, 200, 170
+ \},\{ 340, 200, 200, 200, 200\}\},
+02312 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 170, 200, 180\},\{ 340, 160, 160, 200, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 160, 160, 200, 160\}\},
+02313 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 160, 200, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 180, 200, 180
+ \},\{ 340, -50, 50, 200, 50\}\},
+02314 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 160, 200, 160\},\{ 340, 40, 140, 200, 150
+ \},\{ 340, 80, 80, 200, 80\}\}
+02315 \},
+02316 \{
+02317 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02318 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 180, 40\},\{ 340, -10, 200, 150, -90\},\{ 340, -110, 200, 50, -
+ 10\},\{ 340, 200, 200, 200, 200\}\},
+02319 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, 200, 160, -80\},\{ 340, 80, 200, 210, 10\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 80, 200, 210, 10\}\},
+02320 \{\{ 340, 340, 340, 340, 340\},\{ 340, -110, 200, 50, -10\},\{ 340, 200, 200, 200, 200\},\{ 340, -60, 200, 110, -
+ 30\},\{ 340, -50, 200, 40, -310\}\},
+02321 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 210, 10\},\{ 340, 50, 200, 130, -
+ 210\},\{ 340, 80, 200, 170, 10\}\}
+02322 \},
+02323 \{
+02324 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02325 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 150, 0, 210\},\{ 340, 200, 60, -130, 90\},\{ 340, 200, 70, -50,
+ 170\},\{ 340, 200, 200, 200, 200\}\},
+02326 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 70, -120, 100\},\{ 340, 200, 60, -30, 80\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 60, -30, 80\}\},
+02327 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 70, -50, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 80, -70, 140
+ \},\{ 340, 200, -50, -350, 50\}\},
+02328 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 60, -30, 80\},\{ 340, 200, 50, -250,
+ 150\},\{ 340, 200, -20, -30, 0\}\}
+02329 \}
+02330 \},
+02331 \textcolor{comment}{/* GC....UA */}
+02332 \{\{
+02333 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02334 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02335 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02336 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02337 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02338 \},
+02339 \{
+02340 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02341 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 180, 70, 200\},\{ 340, 170, 140, 30, 200\},\{ 340, 110, 80, -30, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02342 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 180, 70, 200\},\{ 340, 270, 180, 170, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 180, 170, 200\}\},
+02343 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 80, -30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 120, 10, 200
+ \},\{ 340, 30, -100, -30, 200\}\},
+02344 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 150, 140, 200\},\{ 340, 160, 30, 100, 200
+ \},\{ 340, 230, 100, 170, 200\}\}
+02345 \},
+02346 \{
+02347 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02348 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 250, 200, 250\},\{ 340, 140, 140, 200, 150\},\{ 340, 80, 180, 200, 190
+ \},\{ 340, 200, 200, 200, 200\}\},
+02349 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 190, 200, 190\},\{ 340, 190, 190, 200, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 190, 190, 200, 190\}\},
+02350 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 180, 200, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 120, 180, 200, 190
+ \},\{ 340, -90, 10, 200, 10\}\},
+02351 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 160, 200, 160\},\{ 340, 30, 130, 200, 140
+ \},\{ 340, 100, 100, 200, 110\}\}
+02352 \},
+02353 \{
+02354 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02355 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 180, 40\},\{ 340, -30, 200, 130, -110\},\{ 340, -90, 200, 70,
+ 10\},\{ 340, 200, 200, 200, 200\}\},
+02356 \{\{ 340, 340, 340, 340, 340\},\{ 340, 10, 200, 180, -60\},\{ 340, 110, 200, 240, 40\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 110, 200, 240, 40\}\},
+02357 \{\{ 340, 340, 340, 340, 340\},\{ 340, -90, 200, 70, 10\},\{ 340, 200, 200, 200, 200\},\{ 340, -50, 200, 110, -30
+ \},\{ 340, -90, 200, 0, -350\}\},
+02358 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 210, 10\},\{ 340, 40, 200, 120, -
+ 220\},\{ 340, 110, 200, 190, 30\}\}
+02359 \},
+02360 \{
+02361 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02362 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 150, 0, 210\},\{ 340, 200, 40, -150, 70\},\{ 340, 200, 90, -30,
+ 190\},\{ 340, 200, 200, 200, 200\}\},
+02363 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 90, -100, 110\},\{ 340, 200, 90, 0, 110\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 90, 0, 110\}\},
+02364 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 90, -30, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 80, -70, 150
+ \},\{ 340, 200, -90, -390, 10\}\},
+02365 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 60, -30, 80\},\{ 340, 200, 40, -260,
+ 140\},\{ 340, 200, 0, -10, 30\}\}
+02366 \}
+02367 \},
+02368 \textcolor{comment}{/* GC....?? */}
+02369 \{\{
+02370 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02371 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02372 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02373 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02374 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02375 \},
+02376 \{
+02377 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02378 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02379 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02380 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02381 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02382 \},
+02383 \{
+02384 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02385 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02386 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02387 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02388 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02389 \},
+02390 \{
+02391 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02392 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02393 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02394 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02395 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02396 \},
+02397 \{
+02398 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02399 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02400 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02401 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02402 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02403 \}
+02404 \}
+02405 \},
+02406 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+02407 \textcolor{comment}{/* GU....CG */}
+02408 \{\{
+02409 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02410 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02411 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02412 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02413 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02414 \},
+02415 \{
+02416 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02417 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 190, 80, 200\},\{ 340, 190, 180, 70, 200\},\{ 340, 100, 90, -20, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02418 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 220, 110, 200\},\{ 340, 280, 210, 200, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 190, 180, 200\}\},
+02419 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 90, -20, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 160, 50, 200
+ \},\{ 340, 30, -80, -10, 200\}\},
+02420 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 270, 190, 180, 200\},\{ 340, 180, 70, 140, 200
+ \},\{ 340, 220, 100, 180, 200\}\}
+02421 \},
+02422 \{
+02423 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02424 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 230, 200, 230\},\{ 340, 170, 160, 200, 160\},\{ 340, 80, 170, 200, 170
+ \},\{ 340, 200, 200, 200, 200\}\},
+02425 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 210, 200, 210\},\{ 340, 200, 190, 200, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 180, 180, 200, 180\}\},
+02426 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 170, 200, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 210, 200, 210
+ \},\{ 340, -90, 0, 200, 0\}\},
+02427 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 180, 200, 180\},\{ 340, 60, 150, 200, 150
+ \},\{ 340, 90, 90, 200, 90\}\}
+02428 \},
+02429 \{
+02430 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02431 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 200, 130, 160\},\{ 340, 70, 200, 120, 50\},\{ 340, -20, 200, 30, 140
+ \},\{ 340, 200, 200, 200, 200\}\},
+02432 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 200, 170, 90\},\{ 340, 200, 200, 210, 180\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 180, 200, 200, 160\}\},
+02433 \{\{ 340, 340, 340, 340, 340\},\{ 340, -20, 200, 30, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 50, 200, 110, 130
+ \},\{ 340, -10, 200, -40, -210\}\},
+02434 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 200, 200, 160\},\{ 340, 140, 200, 110, -60
+ \},\{ 340, 180, 200, 150, 160\}\}
+02435 \},
+02436 \{
+02437 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02438 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 230, 60, 190\},\{ 340, 200, 160, -50, 80\},\{ 340, 200, 170, 40, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+02439 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 210, 0, 130\},\{ 340, 200, 190, 80, 110\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 180, 70, 100\}\},
+02440 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, 40, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 210, 40, 170
+ \},\{ 340, 200, 0, -310, 0\}\},
+02441 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 180, 70, 100\},\{ 340, 200, 150, -160,
+ 160\},\{ 340, 200, 90, 60, 10\}\}
+02442 \}
+02443 \},
+02444 \textcolor{comment}{/* GU....GC */}
+02445 \{\{
+02446 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02447 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02448 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02449 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02450 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02451 \},
+02452 \{
+02453 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02454 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 200, 90, 200\},\{ 340, 190, 170, 60, 200\},\{ 340, 10, 0, -110,
+ 200\},\{ 340, 200, 200, 200, 200\}\},
+02455 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 170, 60, 200\},\{ 340, 250, 170, 160, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 150, 70, 70, 200\}\},
+02456 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 60, -50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 160, 50, 200
+ \},\{ 340, 0, -120, -50, 200\}\},
+02457 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 250, 180, 170, 200\},\{ 340, 40, -80, -10, 200
+ \},\{ 340, 210, 100, 170, 200\}\}
+02458 \},
+02459 \{
+02460 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02461 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 240, 200, 240\},\{ 340, 160, 160, 200, 160\},\{ 340, -10, 80, 200, 80
+ \},\{ 340, 200, 200, 200, 200\}\},
+02462 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 150, 200, 150\},\{ 340, 160, 160, 200, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 60, 60, 200, 60\}\},
+02463 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 140, 200, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 210, 200, 210
+ \},\{ 340, -130, -30, 200, -30\}\},
+02464 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 160, 200, 160\},\{ 340, -90, 10, 200, 10
+ \},\{ 340, 90, 80, 200, 80\}\}
+02465 \},
+02466 \{
+02467 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02468 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 200, 140, 170\},\{ 340, 60, 200, 120, 40\},\{ 340, -110, 200, -60,
+ 50\},\{ 340, 200, 200, 200, 200\}\},
+02469 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 200, 110, 40\},\{ 340, 160, 200, 180, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 70, 200, 80, 50\}\},
+02470 \{\{ 340, 340, 340, 340, 340\},\{ 340, -50, 200, 0, 110\},\{ 340, 200, 200, 200, 200\},\{ 340, 50, 200, 110, 130
+ \},\{ 340, -50, 200, -70, -250\}\},
+02471 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 200, 180, 150\},\{ 340, -10, 200, -30, -
+ 210\},\{ 340, 170, 200, 140, 150\}\}
+02472 \},
+02473 \{
+02474 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02475 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 70, 200\},\{ 340, 200, 160, -50, 80\},\{ 340, 200, 80, -50, 80
+ \},\{ 340, 200, 200, 200, 200\}\},
+02476 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 150, -60, 70\},\{ 340, 200, 160, 50, 80\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 60, -50, -20\}\},
+02477 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 140, 10, 150\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 210, 40, 170
+ \},\{ 340, 200, -30, -350, -30\}\},
+02478 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 160, 50, 80\},\{ 340, 200, 10, -310,
+ 10\},\{ 340, 200, 80, 50, 0\}\}
+02479 \}
+02480 \},
+02481 \textcolor{comment}{/* GU....GU */}
+02482 \{\{
+02483 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02484 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02485 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02486 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02487 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02488 \},
+02489 \{
+02490 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02491 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 250, 240, 130, 200\},\{ 340, 150, 140, 30, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02492 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 250, 140, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 230, 220, 200\}\},
+02493 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 140, 30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 190, 80, 200
+ \},\{ 340, 130, 20, 90, 200\}\},
+02494 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 230, 120, 190, 200
+ \},\{ 340, 270, 150, 220, 200\}\}
+02495 \},
+02496 \{
+02497 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02498 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 230, 220, 200, 220\},\{ 340, 130, 220, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+02499 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 230, 200, 230\},\{ 340, 220, 220, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 220, 200, 220\}\},
+02500 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 220, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 240, 200, 240
+ \},\{ 340, 10, 100, 200, 100\}\},
+02501 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 110, 200, 200, 200
+ \},\{ 340, 140, 140, 200, 140\}\}
+02502 \},
+02503 \{
+02504 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02505 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 130, 200, 180, 110\},\{ 340, 30, 200, 80, 190
+ \},\{ 340, 200, 200, 200, 200\}\},
+02506 \{\{ 340, 340, 340, 340, 340\},\{ 340, 140, 200, 190, 120\},\{ 340, 220, 200, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 200, 240, 200\}\},
+02507 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 200, 80, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 140, 160
+ \},\{ 340, 90, 200, 70, -110\}\},
+02508 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 190, 200, 160, -10
+ \},\{ 340, 220, 200, 200, 200\}\}
+02509 \},
+02510 \{
+02511 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02512 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 220, 10, 140\},\{ 340, 200, 220, 90, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+02513 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 230, 20, 150\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 220, 100, 140\}\},
+02514 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 220, 90, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 100, -210, 110\}\},
+02515 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, -110,
+ 200\},\{ 340, 200, 140, 110, 60\}\}
+02516 \}
+02517 \},
+02518 \textcolor{comment}{/* GU....UG */}
+02519 \{\{
+02520 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02521 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02522 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02523 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02524 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02525 \},
+02526 \{
+02527 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02528 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 230, 220, 110, 200\},\{ 340, 170, 160, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02529 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 340, 260, 250, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 260, 250, 200\}\},
+02530 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 160, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 200, 90, 200
+ \},\{ 340, 100, -20, 50, 200\}\},
+02531 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 220, 110, 180, 200
+ \},\{ 340, 290, 180, 250, 200\}\}
+02532 \},
+02533 \{
+02534 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02535 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 210, 200, 200, 200\},\{ 340, 150, 240, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+02536 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 250, 200, 250\},\{ 340, 250, 250, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 250, 200, 250\}\},
+02537 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 240, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 240, 200, 240
+ \},\{ 340, -30, 70, 200, 70\}\},
+02538 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 100, 190, 200, 190
+ \},\{ 340, 170, 160, 200, 160\}\}
+02539 \},
+02540 \{
+02541 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02542 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 110, 200, 160, 90\},\{ 340, 50, 200, 100, 210
+ \},\{ 340, 200, 200, 200, 200\}\},
+02543 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 130\},\{ 340, 250, 200, 270, 230\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 200, 270, 230\}\},
+02544 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 100, 210\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 200, 140, 170
+ \},\{ 340, 50, 200, 30, -150\}\},
+02545 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 180, 200, 150, -20
+ \},\{ 340, 250, 200, 220, 230\}\}
+02546 \},
+02547 \{
+02548 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02549 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 200, -10, 120\},\{ 340, 200, 240, 110, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+02550 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 30, 170\},\{ 340, 200, 250, 130, 170\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 130, 170\}\},
+02551 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 110, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 70, -250, 70\}\},
+02552 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 190, -120,
+ 190\},\{ 340, 200, 160, 130, 80\}\}
+02553 \}
+02554 \},
+02555 \textcolor{comment}{/* GU....AU */}
+02556 \{\{
+02557 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02558 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02559 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02560 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02561 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02562 \},
+02563 \{
+02564 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02565 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 250, 240, 130, 200\},\{ 340, 150, 140, 30, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02566 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 250, 140, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 230, 220, 200\}\},
+02567 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 140, 30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 190, 80, 200
+ \},\{ 340, 130, 20, 90, 200\}\},
+02568 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 230, 120, 190, 200
+ \},\{ 340, 270, 150, 220, 200\}\}
+02569 \},
+02570 \{
+02571 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02572 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 230, 220, 200, 220\},\{ 340, 130, 220, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+02573 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 230, 200, 230\},\{ 340, 220, 220, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 220, 200, 220\}\},
+02574 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 220, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 240, 200, 240
+ \},\{ 340, 10, 100, 200, 100\}\},
+02575 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 110, 200, 200, 200
+ \},\{ 340, 140, 140, 200, 140\}\}
+02576 \},
+02577 \{
+02578 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02579 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 130, 200, 180, 110\},\{ 340, 30, 200, 80, 190
+ \},\{ 340, 200, 200, 200, 200\}\},
+02580 \{\{ 340, 340, 340, 340, 340\},\{ 340, 140, 200, 190, 120\},\{ 340, 220, 200, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 200, 240, 200\}\},
+02581 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 200, 80, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 140, 160
+ \},\{ 340, 90, 200, 70, -110\}\},
+02582 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 190, 200, 160, -10
+ \},\{ 340, 220, 200, 200, 200\}\}
+02583 \},
+02584 \{
+02585 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02586 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 220, 10, 140\},\{ 340, 200, 220, 90, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+02587 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 230, 20, 150\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 220, 100, 140\}\},
+02588 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 220, 90, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 100, -210, 110\}\},
+02589 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, -110,
+ 200\},\{ 340, 200, 140, 110, 60\}\}
+02590 \}
+02591 \},
+02592 \textcolor{comment}{/* GU....UA */}
+02593 \{\{
+02594 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02595 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02596 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02597 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02598 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02599 \},
+02600 \{
+02601 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02602 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 230, 220, 110, 200\},\{ 340, 170, 160, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02603 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 340, 260, 250, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 260, 250, 200\}\},
+02604 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 160, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 200, 90, 200
+ \},\{ 340, 100, -20, 50, 200\}\},
+02605 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 220, 110, 180, 200
+ \},\{ 340, 290, 180, 250, 200\}\}
+02606 \},
+02607 \{
+02608 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02609 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 210, 200, 200, 200\},\{ 340, 150, 240, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+02610 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 250, 200, 250\},\{ 340, 250, 250, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 250, 200, 250\}\},
+02611 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 240, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 240, 200, 240
+ \},\{ 340, -30, 70, 200, 70\}\},
+02612 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 100, 190, 200, 190
+ \},\{ 340, 170, 160, 200, 160\}\}
+02613 \},
+02614 \{
+02615 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02616 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 110, 200, 160, 90\},\{ 340, 50, 200, 100, 210
+ \},\{ 340, 200, 200, 200, 200\}\},
+02617 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 130\},\{ 340, 250, 200, 270, 230\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 200, 270, 230\}\},
+02618 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 100, 210\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 200, 140, 170
+ \},\{ 340, 50, 200, 30, -150\}\},
+02619 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 180, 200, 150, -20
+ \},\{ 340, 250, 200, 220, 230\}\}
+02620 \},
+02621 \{
+02622 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02623 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 200, -10, 120\},\{ 340, 200, 240, 110, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+02624 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 30, 170\},\{ 340, 200, 250, 130, 170\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 130, 170\}\},
+02625 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 110, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 70, -250, 70\}\},
+02626 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 190, -120,
+ 190\},\{ 340, 200, 160, 130, 80\}\}
+02627 \}
+02628 \},
+02629 \textcolor{comment}{/* GU....?? */}
+02630 \{\{
+02631 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02632 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02633 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02634 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02635 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02636 \},
+02637 \{
+02638 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02639 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02640 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02641 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02642 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02643 \},
+02644 \{
+02645 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02646 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02647 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02648 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02649 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02650 \},
+02651 \{
+02652 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02653 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02654 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02655 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02656 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02657 \},
+02658 \{
+02659 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02660 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02661 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02662 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02663 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02664 \}
+02665 \}
+02666 \},
+02667 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+02668 \textcolor{comment}{/* UG....CG */}
+02669 \{\{
+02670 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02671 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02672 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02673 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02674 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02675 \},
+02676 \{
+02677 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02678 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 100, 200\},\{ 340, 190, 190, 90, 200\},\{ 340, 100, 100, 0, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02679 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 240, 130, 200\},\{ 340, 280, 220, 220, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 210, 200, 200\}\},
+02680 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 100, 0, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 180, 70, 200
+ \},\{ 340, 30, -70, 10, 200\}\},
+02681 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 270, 210, 200, 200\},\{ 340, 180, 80, 160, 200
+ \},\{ 340, 220, 120, 190, 200\}\}
+02682 \},
+02683 \{
+02684 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02685 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 260, 200, 230\},\{ 340, 150, 190, 200, 160\},\{ 340, 60, 200, 200, 170
+ \},\{ 340, 200, 200, 200, 200\}\},
+02686 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 240, 200, 210\},\{ 340, 180, 220, 200, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 160, 210, 200, 180\}\},
+02687 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 200, 200, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 240, 200, 210
+ \},\{ 340, -110, 30, 200, 0\}\},
+02688 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 210, 200, 180\},\{ 340, 40, 180, 200, 150
+ \},\{ 340, 70, 120, 200, 90\}\}
+02689 \},
+02690 \{
+02691 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02692 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 140, 150\},\{ 340, 90, 200, 130, 40\},\{ 340, 0, 200, 40, 130
+ \},\{ 340, 200, 200, 200, 200\}\},
+02693 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 200, 170, 80\},\{ 340, 220, 200, 220, 170\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 200, 200, 150\}\},
+02694 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, 200, 40, 130\},\{ 340, 200, 200, 200, 200\},\{ 340, 70, 200, 110, 120
+ \},\{ 340, 10, 200, -30, -220\}\},
+02695 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 200, 200, 150\},\{ 340, 160, 200, 120, -70
+ \},\{ 340, 190, 200, 150, 150\}\}
+02696 \},
+02697 \{
+02698 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02699 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 260, 20, 220\},\{ 340, 200, 190, -90, 110\},\{ 340, 200, 200, 0, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02700 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, -40, 150\},\{ 340, 200, 220, 40, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 210, 30, 120\}\},
+02701 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 0, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 0, 190
+ \},\{ 340, 200, 30, -350, 30\}\},
+02702 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 210, 30, 120\},\{ 340, 200, 180, -200,
+ 180\},\{ 340, 200, 120, 20, 30\}\}
+02703 \}
+02704 \},
+02705 \textcolor{comment}{/* UG....GC */}
+02706 \{\{
+02707 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02708 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02709 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02710 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02711 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02712 \},
+02713 \{
+02714 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02715 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 210, 110, 200\},\{ 340, 190, 190, 80, 200\},\{ 340, 10, 10, -90, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02716 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 180, 80, 200\},\{ 340, 250, 190, 180, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 150, 90, 90, 200\}\},
+02717 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 70, -30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 180, 70, 200
+ \},\{ 340, 0, -100, -30, 200\}\},
+02718 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 250, 190, 190, 200\},\{ 340, 40, -60, 10, 200
+ \},\{ 340, 210, 110, 190, 200\}\}
+02719 \},
+02720 \{
+02721 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02722 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 270, 200, 240\},\{ 340, 140, 190, 200, 160\},\{ 340, -30, 110, 200, 80
+ \},\{ 340, 200, 200, 200, 200\}\},
+02723 \{\{ 340, 340, 340, 340, 340\},\{ 340, 140, 180, 200, 150\},\{ 340, 140, 190, 200, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 40, 90, 200, 60\}\},
+02724 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 170, 200, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 240, 200, 210
+ \},\{ 340, -150, 0, 200, -30\}\},
+02725 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 190, 200, 160\},\{ 340, -110, 40, 200,
+ 10\},\{ 340, 70, 110, 200, 80\}\}
+02726 \},
+02727 \{
+02728 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02729 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 200, 150, 160\},\{ 340, 80, 200, 120, 30\},\{ 340, -90, 200, -50, 40
+ \},\{ 340, 200, 200, 200, 200\}\},
+02730 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 200, 120, 30\},\{ 340, 180, 200, 180, 130\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 90, 200, 80, 40\}\},
+02731 \{\{ 340, 340, 340, 340, 340\},\{ 340, -30, 200, 10, 100\},\{ 340, 200, 200, 200, 200\},\{ 340, 70, 200, 110, 120
+ \},\{ 340, -30, 200, -70, -260\}\},
+02732 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 200, 190, 140\},\{ 340, 10, 200, -30, -
+ 220\},\{ 340, 190, 200, 150, 140\}\}
+02733 \},
+02734 \{
+02735 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02736 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 30, 230\},\{ 340, 200, 190, -90, 100\},\{ 340, 200, 110, -90, 110
+ \},\{ 340, 200, 200, 200, 200\}\},
+02737 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 180, -100, 100\},\{ 340, 200, 190, 10, 100\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 90, -90, 0\}\},
+02738 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, -30, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 0, 190
+ \},\{ 340, 200, 0, -390, -10\}\},
+02739 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 190, 10, 110\},\{ 340, 200, 40, -350,
+ 30\},\{ 340, 200, 110, 10, 30\}\}
+02740 \}
+02741 \},
+02742 \textcolor{comment}{/* UG....GU */}
+02743 \{\{
+02744 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02745 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02746 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02747 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02748 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02749 \},
+02750 \{
+02751 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02752 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 250, 250, 150, 200\},\{ 340, 150, 150, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02753 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 260, 160, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 250, 240, 200\}\},
+02754 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 150, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 100, 200
+ \},\{ 340, 130, 30, 110, 200\}\},
+02755 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 230, 130, 210, 200
+ \},\{ 340, 270, 170, 240, 200\}\}
+02756 \},
+02757 \{
+02758 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02759 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 210, 250, 200, 220\},\{ 340, 110, 250, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+02760 \{\{ 340, 340, 340, 340, 340\},\{ 340, 220, 260, 200, 230\},\{ 340, 200, 250, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 200, 220\}\},
+02761 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 250, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 270, 200, 240
+ \},\{ 340, -10, 130, 200, 100\}\},
+02762 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 90, 230, 200, 200
+ \},\{ 340, 120, 170, 200, 140\}\}
+02763 \},
+02764 \{
+02765 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02766 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 150, 200, 190, 100\},\{ 340, 50, 200, 90, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+02767 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 200, 200, 110\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 240, 200, 240, 190\}\},
+02768 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 90, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 200, 140, 150
+ \},\{ 340, 110, 200, 70, -120\}\},
+02769 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 210, 200, 170, -20
+ \},\{ 340, 240, 200, 200, 190\}\}
+02770 \},
+02771 \{
+02772 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02773 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 250, -30, 170\},\{ 340, 200, 250, 50, 250
+ \},\{ 340, 200, 200, 200, 200\}\},
+02774 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 260, -20, 180\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 70, 160\}\},
+02775 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 50, 250\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 220
+ \},\{ 340, 200, 130, -250, 130\}\},
+02776 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 230, -150,
+ 230\},\{ 340, 200, 170, 70, 80\}\}
+02777 \}
+02778 \},
+02779 \textcolor{comment}{/* UG....UG */}
+02780 \{\{
+02781 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02782 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02783 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02784 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02785 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02786 \},
+02787 \{
+02788 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02789 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 230, 230, 130, 200\},\{ 340, 170, 170, 70, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02790 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 340, 280, 270, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 280, 270, 200\}\},
+02791 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 170, 70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 110, 200
+ \},\{ 340, 100, 0, 70, 200\}\},
+02792 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 220, 120, 200, 200
+ \},\{ 340, 290, 190, 270, 200\}\}
+02793 \},
+02794 \{
+02795 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02796 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 190, 230, 200, 200\},\{ 340, 130, 270, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+02797 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 280, 200, 250\},\{ 340, 230, 280, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 230, 280, 200, 250\}\},
+02798 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 270, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 270, 200, 240
+ \},\{ 340, -50, 100, 200, 70\}\},
+02799 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 80, 220, 200, 190
+ \},\{ 340, 150, 190, 200, 160\}\}
+02800 \},
+02801 \{
+02802 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02803 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 130, 200, 170, 80\},\{ 340, 70, 200, 110, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02804 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 120\},\{ 340, 270, 200, 270, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 200, 270, 220\}\},
+02805 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 110, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 200, 150, 160
+ \},\{ 340, 70, 200, 30, -160\}\},
+02806 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 160, -30
+ \},\{ 340, 270, 200, 230, 220\}\}
+02807 \},
+02808 \{
+02809 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02810 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 230, -50, 150\},\{ 340, 200, 270, 70, 270
+ \},\{ 340, 200, 200, 200, 200\}\},
+02811 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 280, 0, 190\},\{ 340, 200, 280, 100, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 280, 100, 190\}\},
+02812 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 70, 270\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 230
+ \},\{ 340, 200, 100, -290, 90\}\},
+02813 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 220, -160,
+ 220\},\{ 340, 200, 190, 90, 110\}\}
+02814 \}
+02815 \},
+02816 \textcolor{comment}{/* UG....AU */}
+02817 \{\{
+02818 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02819 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02820 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02821 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02822 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02823 \},
+02824 \{
+02825 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02826 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 250, 250, 150, 200\},\{ 340, 150, 150, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02827 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 260, 160, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 250, 240, 200\}\},
+02828 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 150, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 100, 200
+ \},\{ 340, 130, 30, 110, 200\}\},
+02829 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 230, 130, 210, 200
+ \},\{ 340, 270, 170, 240, 200\}\}
+02830 \},
+02831 \{
+02832 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02833 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 210, 250, 200, 220\},\{ 340, 110, 250, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+02834 \{\{ 340, 340, 340, 340, 340\},\{ 340, 220, 260, 200, 230\},\{ 340, 200, 250, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 200, 220\}\},
+02835 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 250, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 270, 200, 240
+ \},\{ 340, -10, 130, 200, 100\}\},
+02836 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 90, 230, 200, 200
+ \},\{ 340, 120, 170, 200, 140\}\}
+02837 \},
+02838 \{
+02839 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02840 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 150, 200, 190, 100\},\{ 340, 50, 200, 90, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+02841 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 200, 200, 110\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 240, 200, 240, 190\}\},
+02842 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 90, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 200, 140, 150
+ \},\{ 340, 110, 200, 70, -120\}\},
+02843 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 210, 200, 170, -20
+ \},\{ 340, 240, 200, 200, 190\}\}
+02844 \},
+02845 \{
+02846 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02847 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 250, -30, 170\},\{ 340, 200, 250, 50, 250
+ \},\{ 340, 200, 200, 200, 200\}\},
+02848 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 260, -20, 180\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 70, 160\}\},
+02849 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 50, 250\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 220
+ \},\{ 340, 200, 130, -250, 130\}\},
+02850 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 230, -150,
+ 230\},\{ 340, 200, 170, 70, 80\}\}
+02851 \}
+02852 \},
+02853 \textcolor{comment}{/* UG....UA */}
+02854 \{\{
+02855 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02856 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02857 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02858 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02859 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02860 \},
+02861 \{
+02862 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02863 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 230, 230, 130, 200\},\{ 340, 170, 170, 70, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02864 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 340, 280, 270, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 280, 270, 200\}\},
+02865 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 170, 70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 110, 200
+ \},\{ 340, 100, 0, 70, 200\}\},
+02866 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 220, 120, 200, 200
+ \},\{ 340, 290, 190, 270, 200\}\}
+02867 \},
+02868 \{
+02869 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02870 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 190, 230, 200, 200\},\{ 340, 130, 270, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+02871 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 280, 200, 250\},\{ 340, 230, 280, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 230, 280, 200, 250\}\},
+02872 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 270, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 270, 200, 240
+ \},\{ 340, -50, 100, 200, 70\}\},
+02873 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 80, 220, 200, 190
+ \},\{ 340, 150, 190, 200, 160\}\}
+02874 \},
+02875 \{
+02876 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02877 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 130, 200, 170, 80\},\{ 340, 70, 200, 110, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02878 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 120\},\{ 340, 270, 200, 270, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 200, 270, 220\}\},
+02879 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 110, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 200, 150, 160
+ \},\{ 340, 70, 200, 30, -160\}\},
+02880 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 160, -30
+ \},\{ 340, 270, 200, 230, 220\}\}
+02881 \},
+02882 \{
+02883 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02884 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 230, -50, 150\},\{ 340, 200, 270, 70, 270
+ \},\{ 340, 200, 200, 200, 200\}\},
+02885 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 280, 0, 190\},\{ 340, 200, 280, 100, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 280, 100, 190\}\},
+02886 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 70, 270\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 230
+ \},\{ 340, 200, 100, -290, 90\}\},
+02887 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 220, -160,
+ 220\},\{ 340, 200, 190, 90, 110\}\}
+02888 \}
+02889 \},
+02890 \textcolor{comment}{/* UG....?? */}
+02891 \{\{
+02892 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02893 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02894 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02895 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02896 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02897 \},
+02898 \{
+02899 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02900 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02901 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02902 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02903 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02904 \},
+02905 \{
+02906 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02907 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02908 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02909 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02910 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02911 \},
+02912 \{
+02913 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02914 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02915 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02916 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02917 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02918 \},
+02919 \{
+02920 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02921 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02922 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02923 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02924 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02925 \}
+02926 \}
+02927 \},
+02928 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+02929 \textcolor{comment}{/* AU....CG */}
+02930 \{\{
+02931 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02932 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02933 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02934 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02935 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02936 \},
+02937 \{
+02938 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02939 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 190, 80, 200\},\{ 340, 190, 180, 70, 200\},\{ 340, 100, 90, -20, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+02940 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 220, 110, 200\},\{ 340, 280, 210, 200, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 190, 180, 200\}\},
+02941 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 90, -20, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 160, 50, 200
+ \},\{ 340, 30, -80, -10, 200\}\},
+02942 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 270, 190, 180, 200\},\{ 340, 180, 70, 140, 200
+ \},\{ 340, 220, 100, 180, 200\}\}
+02943 \},
+02944 \{
+02945 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02946 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 230, 200, 230\},\{ 340, 170, 160, 200, 160\},\{ 340, 80, 170, 200, 170
+ \},\{ 340, 200, 200, 200, 200\}\},
+02947 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 210, 200, 210\},\{ 340, 200, 190, 200, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 180, 180, 200, 180\}\},
+02948 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 170, 200, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 210, 200, 210
+ \},\{ 340, -90, 0, 200, 0\}\},
+02949 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 180, 200, 180\},\{ 340, 60, 150, 200, 150
+ \},\{ 340, 90, 90, 200, 90\}\}
+02950 \},
+02951 \{
+02952 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02953 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 200, 130, 160\},\{ 340, 70, 200, 120, 50\},\{ 340, -20, 200, 30, 140
+ \},\{ 340, 200, 200, 200, 200\}\},
+02954 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 200, 170, 90\},\{ 340, 200, 200, 210, 180\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 180, 200, 200, 160\}\},
+02955 \{\{ 340, 340, 340, 340, 340\},\{ 340, -20, 200, 30, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 50, 200, 110, 130
+ \},\{ 340, -10, 200, -40, -210\}\},
+02956 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 200, 200, 160\},\{ 340, 140, 200, 110, -60
+ \},\{ 340, 180, 200, 150, 160\}\}
+02957 \},
+02958 \{
+02959 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02960 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 230, 60, 190\},\{ 340, 200, 160, -50, 80\},\{ 340, 200, 170, 40, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+02961 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 210, 0, 130\},\{ 340, 200, 190, 80, 110\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 180, 70, 100\}\},
+02962 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, 40, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 210, 40, 170
+ \},\{ 340, 200, 0, -310, 0\}\},
+02963 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 180, 70, 100\},\{ 340, 200, 150, -160,
+ 160\},\{ 340, 200, 90, 60, 10\}\}
+02964 \}
+02965 \},
+02966 \textcolor{comment}{/* AU....GC */}
+02967 \{\{
+02968 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02969 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02970 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02971 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02972 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+02973 \},
+02974 \{
+02975 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02976 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 200, 90, 200\},\{ 340, 190, 170, 60, 200\},\{ 340, 10, 0, -110,
+ 200\},\{ 340, 200, 200, 200, 200\}\},
+02977 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 170, 60, 200\},\{ 340, 250, 170, 160, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 150, 70, 70, 200\}\},
+02978 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 60, -50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 160, 50, 200
+ \},\{ 340, 0, -120, -50, 200\}\},
+02979 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 250, 180, 170, 200\},\{ 340, 40, -80, -10, 200
+ \},\{ 340, 210, 100, 170, 200\}\}
+02980 \},
+02981 \{
+02982 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02983 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 240, 200, 240\},\{ 340, 160, 160, 200, 160\},\{ 340, -10, 80, 200, 80
+ \},\{ 340, 200, 200, 200, 200\}\},
+02984 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 150, 200, 150\},\{ 340, 160, 160, 200, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 60, 60, 200, 60\}\},
+02985 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 140, 200, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 210, 200, 210
+ \},\{ 340, -130, -30, 200, -30\}\},
+02986 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 160, 200, 160\},\{ 340, -90, 10, 200, 10
+ \},\{ 340, 90, 80, 200, 80\}\}
+02987 \},
+02988 \{
+02989 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02990 \{\{ 340, 340, 340, 340, 340\},\{ 340, 90, 200, 140, 170\},\{ 340, 60, 200, 120, 40\},\{ 340, -110, 200, -60,
+ 50\},\{ 340, 200, 200, 200, 200\}\},
+02991 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 200, 110, 40\},\{ 340, 160, 200, 180, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 70, 200, 80, 50\}\},
+02992 \{\{ 340, 340, 340, 340, 340\},\{ 340, -50, 200, 0, 110\},\{ 340, 200, 200, 200, 200\},\{ 340, 50, 200, 110, 130
+ \},\{ 340, -50, 200, -70, -250\}\},
+02993 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 200, 180, 150\},\{ 340, -10, 200, -30, -
+ 210\},\{ 340, 170, 200, 140, 150\}\}
+02994 \},
+02995 \{
+02996 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+02997 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 70, 200\},\{ 340, 200, 160, -50, 80\},\{ 340, 200, 80, -50, 80
+ \},\{ 340, 200, 200, 200, 200\}\},
+02998 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 150, -60, 70\},\{ 340, 200, 160, 50, 80\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 60, -50, -20\}\},
+02999 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 140, 10, 150\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 210, 40, 170
+ \},\{ 340, 200, -30, -350, -30\}\},
+03000 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 160, 50, 80\},\{ 340, 200, 10, -310,
+ 10\},\{ 340, 200, 80, 50, 0\}\}
+03001 \}
+03002 \},
+03003 \textcolor{comment}{/* AU....GU */}
+03004 \{\{
+03005 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03006 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03007 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03008 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03009 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03010 \},
+03011 \{
+03012 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03013 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 250, 240, 130, 200\},\{ 340, 150, 140, 30, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03014 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 250, 140, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 230, 220, 200\}\},
+03015 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 140, 30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 190, 80, 200
+ \},\{ 340, 130, 20, 90, 200\}\},
+03016 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 230, 120, 190, 200
+ \},\{ 340, 270, 150, 220, 200\}\}
+03017 \},
+03018 \{
+03019 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03020 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 230, 220, 200, 220\},\{ 340, 130, 220, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+03021 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 230, 200, 230\},\{ 340, 220, 220, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 220, 200, 220\}\},
+03022 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 220, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 240, 200, 240
+ \},\{ 340, 10, 100, 200, 100\}\},
+03023 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 110, 200, 200, 200
+ \},\{ 340, 140, 140, 200, 140\}\}
+03024 \},
+03025 \{
+03026 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03027 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 130, 200, 180, 110\},\{ 340, 30, 200, 80, 190
+ \},\{ 340, 200, 200, 200, 200\}\},
+03028 \{\{ 340, 340, 340, 340, 340\},\{ 340, 140, 200, 190, 120\},\{ 340, 220, 200, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 200, 240, 200\}\},
+03029 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 200, 80, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 140, 160
+ \},\{ 340, 90, 200, 70, -110\}\},
+03030 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 190, 200, 160, -10
+ \},\{ 340, 220, 200, 200, 200\}\}
+03031 \},
+03032 \{
+03033 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03034 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 220, 10, 140\},\{ 340, 200, 220, 90, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+03035 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 230, 20, 150\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 220, 100, 140\}\},
+03036 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 220, 90, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 100, -210, 110\}\},
+03037 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, -110,
+ 200\},\{ 340, 200, 140, 110, 60\}\}
+03038 \}
+03039 \},
+03040 \textcolor{comment}{/* AU....UG */}
+03041 \{\{
+03042 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03043 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03044 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03045 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03046 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03047 \},
+03048 \{
+03049 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03050 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 230, 220, 110, 200\},\{ 340, 170, 160, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03051 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 340, 260, 250, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 260, 250, 200\}\},
+03052 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 160, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 200, 90, 200
+ \},\{ 340, 100, -20, 50, 200\}\},
+03053 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 220, 110, 180, 200
+ \},\{ 340, 290, 180, 250, 200\}\}
+03054 \},
+03055 \{
+03056 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03057 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 210, 200, 200, 200\},\{ 340, 150, 240, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+03058 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 250, 200, 250\},\{ 340, 250, 250, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 250, 200, 250\}\},
+03059 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 240, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 240, 200, 240
+ \},\{ 340, -30, 70, 200, 70\}\},
+03060 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 100, 190, 200, 190
+ \},\{ 340, 170, 160, 200, 160\}\}
+03061 \},
+03062 \{
+03063 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03064 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 110, 200, 160, 90\},\{ 340, 50, 200, 100, 210
+ \},\{ 340, 200, 200, 200, 200\}\},
+03065 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 130\},\{ 340, 250, 200, 270, 230\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 200, 270, 230\}\},
+03066 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 100, 210\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 200, 140, 170
+ \},\{ 340, 50, 200, 30, -150\}\},
+03067 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 180, 200, 150, -20
+ \},\{ 340, 250, 200, 220, 230\}\}
+03068 \},
+03069 \{
+03070 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03071 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 200, -10, 120\},\{ 340, 200, 240, 110, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+03072 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 30, 170\},\{ 340, 200, 250, 130, 170\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 130, 170\}\},
+03073 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 110, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 70, -250, 70\}\},
+03074 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 190, -120,
+ 190\},\{ 340, 200, 160, 130, 80\}\}
+03075 \}
+03076 \},
+03077 \textcolor{comment}{/* AU....AU */}
+03078 \{\{
+03079 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03080 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03081 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03082 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03083 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03084 \},
+03085 \{
+03086 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03087 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 250, 240, 130, 200\},\{ 340, 150, 140, 30, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03088 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 250, 140, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 230, 220, 200\}\},
+03089 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 140, 30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 190, 80, 200
+ \},\{ 340, 130, 20, 90, 200\}\},
+03090 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 230, 120, 190, 200
+ \},\{ 340, 270, 150, 220, 200\}\}
+03091 \},
+03092 \{
+03093 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03094 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 230, 220, 200, 220\},\{ 340, 130, 220, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+03095 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 230, 200, 230\},\{ 340, 220, 220, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 220, 200, 220\}\},
+03096 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 220, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 240, 200, 240
+ \},\{ 340, 10, 100, 200, 100\}\},
+03097 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 110, 200, 200, 200
+ \},\{ 340, 140, 140, 200, 140\}\}
+03098 \},
+03099 \{
+03100 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03101 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 130, 200, 180, 110\},\{ 340, 30, 200, 80, 190
+ \},\{ 340, 200, 200, 200, 200\}\},
+03102 \{\{ 340, 340, 340, 340, 340\},\{ 340, 140, 200, 190, 120\},\{ 340, 220, 200, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 220, 200, 240, 200\}\},
+03103 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 200, 80, 190\},\{ 340, 200, 200, 200, 200\},\{ 340, 80, 200, 140, 160
+ \},\{ 340, 90, 200, 70, -110\}\},
+03104 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 190, 200, 160, -10
+ \},\{ 340, 220, 200, 200, 200\}\}
+03105 \},
+03106 \{
+03107 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03108 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 220, 10, 140\},\{ 340, 200, 220, 90, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+03109 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 230, 20, 150\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 220, 100, 140\}\},
+03110 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 220, 90, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 100, -210, 110\}\},
+03111 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 200, -110,
+ 200\},\{ 340, 200, 140, 110, 60\}\}
+03112 \}
+03113 \},
+03114 \textcolor{comment}{/* AU....UA */}
+03115 \{\{
+03116 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03117 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03118 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03119 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03120 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03121 \},
+03122 \{
+03123 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03124 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 230, 220, 110, 200\},\{ 340, 170, 160, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03125 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 260, 150, 200\},\{ 340, 340, 260, 250, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 260, 250, 200\}\},
+03126 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 160, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 200, 90, 200
+ \},\{ 340, 100, -20, 50, 200\}\},
+03127 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 230, 220, 200\},\{ 340, 220, 110, 180, 200
+ \},\{ 340, 290, 180, 250, 200\}\}
+03128 \},
+03129 \{
+03130 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03131 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 310, 200, 310\},\{ 340, 210, 200, 200, 200\},\{ 340, 150, 240, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+03132 \{\{ 340, 340, 340, 340, 340\},\{ 340, 250, 250, 200, 250\},\{ 340, 250, 250, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 250, 200, 250\}\},
+03133 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 240, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 240, 200, 240
+ \},\{ 340, -30, 70, 200, 70\}\},
+03134 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 220, 200, 220\},\{ 340, 100, 190, 200, 190
+ \},\{ 340, 170, 160, 200, 160\}\}
+03135 \},
+03136 \{
+03137 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03138 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 230\},\{ 340, 110, 200, 160, 90\},\{ 340, 50, 200, 100, 210
+ \},\{ 340, 200, 200, 200, 200\}\},
+03139 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 200, 210, 130\},\{ 340, 250, 200, 270, 230\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 250, 200, 270, 230\}\},
+03140 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 100, 210\},\{ 340, 200, 200, 200, 200\},\{ 340, 90, 200, 140, 170
+ \},\{ 340, 50, 200, 30, -150\}\},
+03141 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 220, 200, 240, 200\},\{ 340, 180, 200, 150, -20
+ \},\{ 340, 250, 200, 220, 230\}\}
+03142 \},
+03143 \{
+03144 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03145 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 310, 130, 270\},\{ 340, 200, 200, -10, 120\},\{ 340, 200, 240, 110, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+03146 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 30, 170\},\{ 340, 200, 250, 130, 170\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 130, 170\}\},
+03147 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, 110, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 70, 200
+ \},\{ 340, 200, 70, -250, 70\}\},
+03148 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 220, 100, 140\},\{ 340, 200, 190, -120,
+ 190\},\{ 340, 200, 160, 130, 80\}\}
+03149 \}
+03150 \},
+03151 \textcolor{comment}{/* AU....?? */}
+03152 \{\{
+03153 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03154 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03155 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03156 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03157 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03158 \},
+03159 \{
+03160 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03161 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03162 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03163 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03164 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03165 \},
+03166 \{
+03167 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03168 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03169 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03170 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03171 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03172 \},
+03173 \{
+03174 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03175 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03176 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03177 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03178 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03179 \},
+03180 \{
+03181 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03182 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03183 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03184 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03185 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03186 \}
+03187 \}
+03188 \},
+03189 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+03190 \textcolor{comment}{/* UA....CG */}
+03191 \{\{
+03192 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03193 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03194 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03195 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03196 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03197 \},
+03198 \{
+03199 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03200 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 100, 200\},\{ 340, 190, 190, 90, 200\},\{ 340, 100, 100, 0, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03201 \{\{ 340, 340, 340, 340, 340\},\{ 340, 240, 240, 130, 200\},\{ 340, 280, 220, 220, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 210, 200, 200\}\},
+03202 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 100, 0, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 180, 70, 200
+ \},\{ 340, 30, -70, 10, 200\}\},
+03203 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 270, 210, 200, 200\},\{ 340, 180, 80, 160, 200
+ \},\{ 340, 220, 120, 190, 200\}\}
+03204 \},
+03205 \{
+03206 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03207 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 260, 200, 230\},\{ 340, 150, 190, 200, 160\},\{ 340, 60, 200, 200, 170
+ \},\{ 340, 200, 200, 200, 200\}\},
+03208 \{\{ 340, 340, 340, 340, 340\},\{ 340, 190, 240, 200, 210\},\{ 340, 180, 220, 200, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 160, 210, 200, 180\}\},
+03209 \{\{ 340, 340, 340, 340, 340\},\{ 340, 60, 200, 200, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 240, 200, 210
+ \},\{ 340, -110, 30, 200, 0\}\},
+03210 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 210, 200, 180\},\{ 340, 40, 180, 200, 150
+ \},\{ 340, 70, 120, 200, 90\}\}
+03211 \},
+03212 \{
+03213 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03214 \{\{ 340, 340, 340, 340, 340\},\{ 340, 100, 200, 140, 150\},\{ 340, 90, 200, 130, 40\},\{ 340, 0, 200, 40, 130
+ \},\{ 340, 200, 200, 200, 200\}\},
+03215 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 200, 170, 80\},\{ 340, 220, 200, 220, 170\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 200, 200, 150\}\},
+03216 \{\{ 340, 340, 340, 340, 340\},\{ 340, 0, 200, 40, 130\},\{ 340, 200, 200, 200, 200\},\{ 340, 70, 200, 110, 120
+ \},\{ 340, 10, 200, -30, -220\}\},
+03217 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 200, 200, 150\},\{ 340, 160, 200, 120, -70
+ \},\{ 340, 190, 200, 150, 150\}\}
+03218 \},
+03219 \{
+03220 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03221 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 260, 20, 220\},\{ 340, 200, 190, -90, 110\},\{ 340, 200, 200, 0, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03222 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 240, -40, 150\},\{ 340, 200, 220, 40, 140\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 210, 30, 120\}\},
+03223 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 0, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 0, 190
+ \},\{ 340, 200, 30, -350, 30\}\},
+03224 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 210, 30, 120\},\{ 340, 200, 180, -200,
+ 180\},\{ 340, 200, 120, 20, 30\}\}
+03225 \}
+03226 \},
+03227 \textcolor{comment}{/* UA....GC */}
+03228 \{\{
+03229 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03230 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03231 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03232 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03233 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03234 \},
+03235 \{
+03236 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03237 \{\{ 340, 340, 340, 340, 340\},\{ 340, 210, 210, 110, 200\},\{ 340, 190, 190, 80, 200\},\{ 340, 10, 10, -90, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03238 \{\{ 340, 340, 340, 340, 340\},\{ 340, 180, 180, 80, 200\},\{ 340, 250, 190, 180, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 150, 90, 90, 200\}\},
+03239 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 70, -30, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 180, 180, 70, 200
+ \},\{ 340, 0, -100, -30, 200\}\},
+03240 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 250, 190, 190, 200\},\{ 340, 40, -60, 10, 200
+ \},\{ 340, 210, 110, 190, 200\}\}
+03241 \},
+03242 \{
+03243 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03244 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 270, 200, 240\},\{ 340, 140, 190, 200, 160\},\{ 340, -30, 110, 200, 80
+ \},\{ 340, 200, 200, 200, 200\}\},
+03245 \{\{ 340, 340, 340, 340, 340\},\{ 340, 140, 180, 200, 150\},\{ 340, 140, 190, 200, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 40, 90, 200, 60\}\},
+03246 \{\{ 340, 340, 340, 340, 340\},\{ 340, 30, 170, 200, 140\},\{ 340, 200, 200, 200, 200\},\{ 340, 130, 240, 200, 210
+ \},\{ 340, -150, 0, 200, -30\}\},
+03247 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 150, 190, 200, 160\},\{ 340, -110, 40, 200,
+ 10\},\{ 340, 70, 110, 200, 80\}\}
+03248 \},
+03249 \{
+03250 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03251 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 200, 150, 160\},\{ 340, 80, 200, 120, 30\},\{ 340, -90, 200, -50, 40
+ \},\{ 340, 200, 200, 200, 200\}\},
+03252 \{\{ 340, 340, 340, 340, 340\},\{ 340, 80, 200, 120, 30\},\{ 340, 180, 200, 180, 130\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 90, 200, 80, 40\}\},
+03253 \{\{ 340, 340, 340, 340, 340\},\{ 340, -30, 200, 10, 100\},\{ 340, 200, 200, 200, 200\},\{ 340, 70, 200, 110, 120
+ \},\{ 340, -30, 200, -70, -260\}\},
+03254 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 190, 200, 190, 140\},\{ 340, 10, 200, -30, -
+ 220\},\{ 340, 190, 200, 150, 140\}\}
+03255 \},
+03256 \{
+03257 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03258 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 30, 230\},\{ 340, 200, 190, -90, 100\},\{ 340, 200, 110, -90, 110
+ \},\{ 340, 200, 200, 200, 200\}\},
+03259 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 180, -100, 100\},\{ 340, 200, 190, 10, 100\},\{ 340, 200, 200, 200,
+ 200\},\{ 340, 200, 90, -90, 0\}\},
+03260 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 170, -30, 170\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 240, 0, 190
+ \},\{ 340, 200, 0, -390, -10\}\},
+03261 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 190, 10, 110\},\{ 340, 200, 40, -350,
+ 30\},\{ 340, 200, 110, 10, 30\}\}
+03262 \}
+03263 \},
+03264 \textcolor{comment}{/* UA....GU */}
+03265 \{\{
+03266 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03267 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03268 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03269 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03270 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03271 \},
+03272 \{
+03273 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03274 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 250, 250, 150, 200\},\{ 340, 150, 150, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03275 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 260, 160, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 250, 240, 200\}\},
+03276 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 150, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 100, 200
+ \},\{ 340, 130, 30, 110, 200\}\},
+03277 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 230, 130, 210, 200
+ \},\{ 340, 270, 170, 240, 200\}\}
+03278 \},
+03279 \{
+03280 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03281 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 210, 250, 200, 220\},\{ 340, 110, 250, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+03282 \{\{ 340, 340, 340, 340, 340\},\{ 340, 220, 260, 200, 230\},\{ 340, 200, 250, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 200, 220\}\},
+03283 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 250, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 270, 200, 240
+ \},\{ 340, -10, 130, 200, 100\}\},
+03284 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 90, 230, 200, 200
+ \},\{ 340, 120, 170, 200, 140\}\}
+03285 \},
+03286 \{
+03287 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03288 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 150, 200, 190, 100\},\{ 340, 50, 200, 90, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+03289 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 200, 200, 110\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 240, 200, 240, 190\}\},
+03290 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 90, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 200, 140, 150
+ \},\{ 340, 110, 200, 70, -120\}\},
+03291 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 210, 200, 170, -20
+ \},\{ 340, 240, 200, 200, 190\}\}
+03292 \},
+03293 \{
+03294 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03295 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 250, -30, 170\},\{ 340, 200, 250, 50, 250
+ \},\{ 340, 200, 200, 200, 200\}\},
+03296 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 260, -20, 180\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 70, 160\}\},
+03297 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 50, 250\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 220
+ \},\{ 340, 200, 130, -250, 130\}\},
+03298 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 230, -150,
+ 230\},\{ 340, 200, 170, 70, 80\}\}
+03299 \}
+03300 \},
+03301 \textcolor{comment}{/* UA....UG */}
+03302 \{\{
+03303 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03304 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03305 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03306 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03307 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03308 \},
+03309 \{
+03310 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03311 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 230, 230, 130, 200\},\{ 340, 170, 170, 70, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03312 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 340, 280, 270, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 280, 270, 200\}\},
+03313 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 170, 70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 110, 200
+ \},\{ 340, 100, 0, 70, 200\}\},
+03314 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 220, 120, 200, 200
+ \},\{ 340, 290, 190, 270, 200\}\}
+03315 \},
+03316 \{
+03317 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03318 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 190, 230, 200, 200\},\{ 340, 130, 270, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+03319 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 280, 200, 250\},\{ 340, 230, 280, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 230, 280, 200, 250\}\},
+03320 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 270, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 270, 200, 240
+ \},\{ 340, -50, 100, 200, 70\}\},
+03321 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 80, 220, 200, 190
+ \},\{ 340, 150, 190, 200, 160\}\}
+03322 \},
+03323 \{
+03324 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03325 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 130, 200, 170, 80\},\{ 340, 70, 200, 110, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03326 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 120\},\{ 340, 270, 200, 270, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 200, 270, 220\}\},
+03327 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 110, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 200, 150, 160
+ \},\{ 340, 70, 200, 30, -160\}\},
+03328 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 160, -30
+ \},\{ 340, 270, 200, 230, 220\}\}
+03329 \},
+03330 \{
+03331 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03332 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 230, -50, 150\},\{ 340, 200, 270, 70, 270
+ \},\{ 340, 200, 200, 200, 200\}\},
+03333 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 280, 0, 190\},\{ 340, 200, 280, 100, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 280, 100, 190\}\},
+03334 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 70, 270\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 230
+ \},\{ 340, 200, 100, -290, 90\}\},
+03335 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 220, -160,
+ 220\},\{ 340, 200, 190, 90, 110\}\}
+03336 \}
+03337 \},
+03338 \textcolor{comment}{/* UA....AU */}
+03339 \{\{
+03340 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03341 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03342 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03343 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03344 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03345 \},
+03346 \{
+03347 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03348 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 250, 250, 150, 200\},\{ 340, 150, 150, 50, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03349 \{\{ 340, 340, 340, 340, 340\},\{ 340, 260, 260, 160, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 310, 250, 240, 200\}\},
+03350 \{\{ 340, 340, 340, 340, 340\},\{ 340, 150, 150, 50, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 100, 200
+ \},\{ 340, 130, 30, 110, 200\}\},
+03351 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 230, 130, 210, 200
+ \},\{ 340, 270, 170, 240, 200\}\}
+03352 \},
+03353 \{
+03354 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03355 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 210, 250, 200, 220\},\{ 340, 110, 250, 200, 220
+ \},\{ 340, 200, 200, 200, 200\}\},
+03356 \{\{ 340, 340, 340, 340, 340\},\{ 340, 220, 260, 200, 230\},\{ 340, 200, 250, 200, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 200, 220\}\},
+03357 \{\{ 340, 340, 340, 340, 340\},\{ 340, 110, 250, 200, 220\},\{ 340, 200, 200, 200, 200\},\{ 340, 160, 270, 200, 240
+ \},\{ 340, -10, 130, 200, 100\}\},
+03358 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 90, 230, 200, 200
+ \},\{ 340, 120, 170, 200, 140\}\}
+03359 \},
+03360 \{
+03361 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03362 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 150, 200, 190, 100\},\{ 340, 50, 200, 90, 180
+ \},\{ 340, 200, 200, 200, 200\}\},
+03363 \{\{ 340, 340, 340, 340, 340\},\{ 340, 160, 200, 200, 110\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 240, 200, 240, 190\}\},
+03364 \{\{ 340, 340, 340, 340, 340\},\{ 340, 50, 200, 90, 180\},\{ 340, 200, 200, 200, 200\},\{ 340, 100, 200, 140, 150
+ \},\{ 340, 110, 200, 70, -120\}\},
+03365 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 210, 200, 170, -20
+ \},\{ 340, 240, 200, 200, 190\}\}
+03366 \},
+03367 \{
+03368 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03369 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 250, -30, 170\},\{ 340, 200, 250, 50, 250
+ \},\{ 340, 200, 200, 200, 200\}\},
+03370 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 260, -20, 180\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 250, 70, 160\}\},
+03371 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 250, 50, 250\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 220
+ \},\{ 340, 200, 130, -250, 130\}\},
+03372 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 230, -150,
+ 230\},\{ 340, 200, 170, 70, 80\}\}
+03373 \}
+03374 \},
+03375 \textcolor{comment}{/* UA....UA */}
+03376 \{\{
+03377 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03378 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03379 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03380 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03381 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03382 \},
+03383 \{
+03384 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03385 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 230, 230, 130, 200\},\{ 340, 170, 170, 70, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03386 \{\{ 340, 340, 340, 340, 340\},\{ 340, 280, 280, 170, 200\},\{ 340, 340, 280, 270, 200\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 340, 280, 270, 200\}\},
+03387 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 170, 70, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 210, 210, 110, 200
+ \},\{ 340, 100, 0, 70, 200\}\},
+03388 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 310, 250, 240, 200\},\{ 340, 220, 120, 200, 200
+ \},\{ 340, 290, 190, 270, 200\}\}
+03389 \},
+03390 \{
+03391 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03392 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 340, 200, 310\},\{ 340, 190, 230, 200, 200\},\{ 340, 130, 270, 200, 240
+ \},\{ 340, 200, 200, 200, 200\}\},
+03393 \{\{ 340, 340, 340, 340, 340\},\{ 340, 230, 280, 200, 250\},\{ 340, 230, 280, 200, 250\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 230, 280, 200, 250\}\},
+03394 \{\{ 340, 340, 340, 340, 340\},\{ 340, 130, 270, 200, 240\},\{ 340, 200, 200, 200, 200\},\{ 340, 170, 270, 200, 240
+ \},\{ 340, -50, 100, 200, 70\}\},
+03395 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 200, 220\},\{ 340, 80, 220, 200, 190
+ \},\{ 340, 150, 190, 200, 160\}\}
+03396 \},
+03397 \{
+03398 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03399 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 220\},\{ 340, 130, 200, 170, 80\},\{ 340, 70, 200, 110, 200
+ \},\{ 340, 200, 200, 200, 200\}\},
+03400 \{\{ 340, 340, 340, 340, 340\},\{ 340, 170, 200, 210, 120\},\{ 340, 270, 200, 270, 220\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 270, 200, 270, 220\}\},
+03401 \{\{ 340, 340, 340, 340, 340\},\{ 340, 70, 200, 110, 200\},\{ 340, 200, 200, 200, 200\},\{ 340, 110, 200, 150, 160
+ \},\{ 340, 70, 200, 30, -160\}\},
+03402 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 240, 200, 240, 190\},\{ 340, 200, 200, 160, -30
+ \},\{ 340, 270, 200, 230, 220\}\}
+03403 \},
+03404 \{
+03405 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03406 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 340, 100, 290\},\{ 340, 200, 230, -50, 150\},\{ 340, 200, 270, 70, 270
+ \},\{ 340, 200, 200, 200, 200\}\},
+03407 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 280, 0, 190\},\{ 340, 200, 280, 100, 190\},\{ 340, 200, 200, 200, 200
+ \},\{ 340, 200, 280, 100, 190\}\},
+03408 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 270, 70, 270\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 270, 30, 230
+ \},\{ 340, 200, 100, -290, 90\}\},
+03409 \{\{ 340, 340, 340, 340, 340\},\{ 340, 200, 200, 200, 200\},\{ 340, 200, 250, 70, 160\},\{ 340, 200, 220, -160,
+ 220\},\{ 340, 200, 190, 90, 110\}\}
+03410 \}
+03411 \},
+03412 \textcolor{comment}{/* UA....?? */}
+03413 \{\{
+03414 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03415 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03416 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03417 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03418 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03419 \},
+03420 \{
+03421 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03422 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03423 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03424 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03425 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03426 \},
+03427 \{
+03428 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03429 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03430 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03431 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03432 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03433 \},
+03434 \{
+03435 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03436 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03437 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03438 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03439 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03440 \},
+03441 \{
+03442 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03443 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03444 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03445 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03446 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03447 \}
+03448 \}
+03449 \},
+03450 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+03451 \textcolor{comment}{/* ??....CG */}
+03452 \{\{
+03453 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03454 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03455 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03456 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03457 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03458 \},
+03459 \{
+03460 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03461 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03462 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03463 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03464 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03465 \},
+03466 \{
+03467 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03468 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03469 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03470 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03471 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03472 \},
+03473 \{
+03474 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03475 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03476 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03477 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03478 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03479 \},
+03480 \{
+03481 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03482 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03483 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03484 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03485 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03486 \}
+03487 \},
+03488 \textcolor{comment}{/* ??....GC */}
+03489 \{\{
+03490 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03491 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03492 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03493 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03494 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03495 \},
+03496 \{
+03497 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03498 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03499 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03500 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03501 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03502 \},
+03503 \{
+03504 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03505 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03506 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03507 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03508 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03509 \},
+03510 \{
+03511 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03512 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03513 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03514 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03515 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03516 \},
+03517 \{
+03518 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03519 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03520 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03521 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03522 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03523 \}
+03524 \},
+03525 \textcolor{comment}{/* ??....GU */}
+03526 \{\{
+03527 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03528 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03529 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03530 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03531 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03532 \},
+03533 \{
+03534 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03535 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03536 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03537 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03538 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03539 \},
+03540 \{
+03541 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03542 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03543 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03544 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03545 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03546 \},
+03547 \{
+03548 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03549 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03550 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03551 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03552 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03553 \},
+03554 \{
+03555 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03556 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03557 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03558 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03559 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03560 \}
+03561 \},
+03562 \textcolor{comment}{/* ??....UG */}
+03563 \{\{
+03564 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03565 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03566 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03567 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03568 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03569 \},
+03570 \{
+03571 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03572 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03573 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03574 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03575 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03576 \},
+03577 \{
+03578 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03579 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03580 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03581 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03582 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03583 \},
+03584 \{
+03585 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03586 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03587 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03588 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03589 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03590 \},
+03591 \{
+03592 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03593 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03594 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03595 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03596 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03597 \}
+03598 \},
+03599 \textcolor{comment}{/* ??....AU */}
+03600 \{\{
+03601 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03602 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03603 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03604 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03605 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03606 \},
+03607 \{
+03608 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03609 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03610 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03611 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03612 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03613 \},
+03614 \{
+03615 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03616 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03617 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03618 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03619 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03620 \},
+03621 \{
+03622 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03623 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03624 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03625 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03626 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03627 \},
+03628 \{
+03629 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03630 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03631 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03632 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03633 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03634 \}
+03635 \},
+03636 \textcolor{comment}{/* ??....UA */}
+03637 \{\{
+03638 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03639 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03640 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03641 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03642 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03643 \},
+03644 \{
+03645 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03646 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03647 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03648 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03649 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03650 \},
+03651 \{
+03652 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03653 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03654 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03655 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03656 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03657 \},
+03658 \{
+03659 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03660 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03661 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03662 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03663 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03664 \},
+03665 \{
+03666 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03667 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03668 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03669 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03670 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03671 \}
+03672 \},
+03673 \textcolor{comment}{/* ??....?? */}
+03674 \{\{
+03675 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03676 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03677 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03678 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03679 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03680 \},
+03681 \{
+03682 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03683 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03684 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03685 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03686 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03687 \},
+03688 \{
+03689 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03690 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03691 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03692 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03693 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03694 \},
+03695 \{
+03696 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03697 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03698 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03699 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03700 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03701 \},
+03702 \{
+03703 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03704 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03705 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03706 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\},
+03707 \{\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340\},\{ 340, 340, 340, 340, 340
+ \},\{ 340, 340, 340, 340, 340\}\}
+03708 \}
+03709 \}
+03710 \}
+03711 \};
+03712
+03713 PRIVATE \textcolor{keywordtype}{int} int22\_H\_184[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5] =
+03714 \{ \textcolor{comment}{/* noPair */} \{\{\{\{\{0\}\}\}\}\},
+03715 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+03716 \textcolor{comment}{/* CG.@@..CG */}
+03717 \{ \{ \{ \{ 0, 0, 0, 0, 0\},
+03718 \{ DEF, DEF, DEF, DEF, DEF\},
+03719 \{ DEF, DEF, DEF, DEF, DEF\},
+03720 \{ DEF, DEF, DEF, DEF, DEF\},
+03721 \{ DEF, DEF, DEF, DEF, DEF\}\},
+03722 \textcolor{comment}{/* CG.@A..CG */}
+03723 \{ \{ 0, 0, 0, 0, 0\},
+03724 \{-1029,-1029,-1029,-1029,-1029\},
+03725 \{ -519, -519, -519, -519, -519\},
+03726 \{ -939, -939, -939, -939, -939\},
+03727 \{ -809, -809, -809, -809, -809\}\},
+03728 \textcolor{comment}{/* CG.@C..CG */}
+03729 \{ \{ 0, 0, 0, 0, 0\},
+03730 \{ -949, -949, -949, -949, -949\},
+03731 \{ -449, -449, -449, -449, -449\},
+03732 \{ -939, -939, -939, -939, -939\},
+03733 \{ -739, -739, -739, -739, -739\}\},
+03734 \textcolor{comment}{/* CG.@G..CG */}
+03735 \{ \{ 0, 0, 0, 0, 0\},
+03736 \{-1029,-1029,-1029,-1029,-1029\},
+03737 \{ -519, -519, -519, -519, -519\},
+03738 \{ -939, -939, -939, -939, -939\},
+03739 \{ -809, -809, -809, -809, -809\}\},
+03740 \textcolor{comment}{/* CG.@U..CG */}
+03741 \{ \{ 0, 0, 0, 0, 0\},
+03742 \{-1029,-1029,-1029,-1029,-1029\},
+03743 \{ -669, -669, -669, -669, -669\},
+03744 \{ -939, -939, -939, -939, -939\},
+03745 \{ -859, -859, -859, -859, -859\}\}\},
+03746 \textcolor{comment}{/* CG.A@..CG */}
+03747 \{\{\{ DEF,-1029, -949,-1029,-1029\},
+03748 \{ -100,-1079, -999,-1079,-1079\},
+03749 \{ -100,-1079, -999,-1079,-1079\},
+03750 \{ -100,-1079, -999,-1079,-1079\},
+03751 \{ -100,-1079, -999,-1079,-1079\}\},
+03752 \textcolor{comment}{/* CG.AA..CG */}
+03753 \{\{ DEF,-1029, -949,-1029,-1029\},
+03754 \{-1079,-2058,-1978,-2058,-2058\},
+03755 \{ -569,-1548,-1468,-1548,-1548\},
+03756 \{ -989,-1968,-1888,-1968,-1968\},
+03757 \{ -859,-1838,-1758,-1838,-1838\}\},
+03758 \textcolor{comment}{/* CG.AC..CG */}
+03759 \{\{ DEF,-1029, -949,-1029,-1029\},
+03760 \{ -999,-1978,-1898,-1978,-1978\},
+03761 \{ -499,-1478,-1398,-1478,-1478\},
+03762 \{ -989,-1968,-1888,-1968,-1968\},
+03763 \{ -789,-1768,-1688,-1768,-1768\}\},
+03764 \textcolor{comment}{/* CG.AG..CG */}
+03765 \{\{ DEF,-1029, -949,-1029,-1029\},
+03766 \{-1079,-2058,-1978,-2058,-2058\},
+03767 \{ -569,-1548,-1468,-1548,-1548\},
+03768 \{ -989,-1968,-1888,-1968,-1968\},
+03769 \{ -859,-1838,-1758,-1838,-1838\}\},
+03770 \textcolor{comment}{/* CG.AU..CG */}
+03771 \{\{ DEF,-1029, -949,-1029,-1029\},
+03772 \{-1079,-2058,-1978,-2058,-2058\},
+03773 \{ -719,-1698,-1618,-1698,-1698\},
+03774 \{ -989,-1968,-1888,-1968,-1968\},
+03775 \{ -909,-1888,-1808,-1888,-1888\}\}\},
+03776 \textcolor{comment}{/* CG.C@..CG */}
+03777 \{\{\{ DEF, -519, -449, -519, -669\},
+03778 \{ -100, -569, -499, -569, -719\},
+03779 \{ -100, -569, -499, -569, -719\},
+03780 \{ -100, -569, -499, -569, -719\},
+03781 \{ -100, -569, -499, -569, -719\}\},
+03782 \textcolor{comment}{/* CG.CA..CG */}
+03783 \{\{ DEF, -519, -449, -519, -669\},
+03784 \{-1079,-1548,-1478,-1548,-1698\},
+03785 \{ -569,-1038, -968,-1038,-1188\},
+03786 \{ -989,-1458,-1388,-1458,-1608\},
+03787 \{ -859,-1328,-1258,-1328,-1478\}\},
+03788 \textcolor{comment}{/* CG.CC..CG */}
+03789 \{\{ DEF, -519, -449, -519, -669\},
+03790 \{ -999,-1468,-1398,-1468,-1618\},
+03791 \{ -499, -968, -898, -968,-1118\},
+03792 \{ -989,-1458,-1388,-1458,-1608\},
+03793 \{ -789,-1258,-1188,-1258,-1408\}\},
+03794 \textcolor{comment}{/* CG.CG..CG */}
+03795 \{\{ DEF, -519, -449, -519, -669\},
+03796 \{-1079,-1548,-1478,-1548,-1698\},
+03797 \{ -569,-1038, -968,-1038,-1188\},
+03798 \{ -989,-1458,-1388,-1458,-1608\},
+03799 \{ -859,-1328,-1258,-1328,-1478\}\},
+03800 \textcolor{comment}{/* CG.CU..CG */}
+03801 \{\{ DEF, -519, -449, -519, -669\},
+03802 \{-1079,-1548,-1478,-1548,-1698\},
+03803 \{ -719,-1188,-1118,-1188,-1338\},
+03804 \{ -989,-1458,-1388,-1458,-1608\},
+03805 \{ -909,-1378,-1308,-1378,-1528\}\}\},
+03806 \textcolor{comment}{/* CG.G@..CG */}
+03807 \{\{\{ DEF, -939, -939, -939, -939\},
+03808 \{ -100, -989, -989, -989, -989\},
+03809 \{ -100, -989, -989, -989, -989\},
+03810 \{ -100, -989, -989, -989, -989\},
+03811 \{ -100, -989, -989, -989, -989\}\},
+03812 \textcolor{comment}{/* CG.GA..CG */}
+03813 \{\{ DEF, -939, -939, -939, -939\},
+03814 \{-1079,-1968,-1968,-1968,-1968\},
+03815 \{ -569,-1458,-1458,-1458,-1458\},
+03816 \{ -989,-1878,-1878,-1878,-1878\},
+03817 \{ -859,-1748,-1748,-1748,-1748\}\},
+03818 \textcolor{comment}{/* CG.GC..CG */}
+03819 \{\{ DEF, -939, -939, -939, -939\},
+03820 \{ -999,-1888,-1888,-1888,-1888\},
+03821 \{ -499,-1388,-1388,-1388,-1388\},
+03822 \{ -989,-1878,-1878,-1878,-1878\},
+03823 \{ -789,-1678,-1678,-1678,-1678\}\},
+03824 \textcolor{comment}{/* CG.GG..CG */}
+03825 \{\{ DEF, -939, -939, -939, -939\},
+03826 \{-1079,-1968,-1968,-1968,-1968\},
+03827 \{ -569,-1458,-1458,-1458,-1458\},
+03828 \{ -989,-1878,-1878,-1878,-1878\},
+03829 \{ -859,-1748,-1748,-1748,-1748\}\},
+03830 \textcolor{comment}{/* CG.GU..CG */}
+03831 \{\{ DEF, -939, -939, -939, -939\},
+03832 \{-1079,-1968,-1968,-1968,-1968\},
+03833 \{ -719,-1608,-1608,-1608,-1608\},
+03834 \{ -989,-1878,-1878,-1878,-1878\},
+03835 \{ -909,-1798,-1798,-1798,-1798\}\}\},
+03836 \textcolor{comment}{/* CG.U@..CG */}
+03837 \{\{\{ DEF, -809, -739, -809, -859\},
+03838 \{ -100, -859, -789, -859, -909\},
+03839 \{ -100, -859, -789, -859, -909\},
+03840 \{ -100, -859, -789, -859, -909\},
+03841 \{ -100, -859, -789, -859, -909\}\},
+03842 \textcolor{comment}{/* CG.UA..CG */}
+03843 \{\{ DEF, -809, -739, -809, -859\},
+03844 \{-1079,-1838,-1768,-1838,-1888\},
+03845 \{ -569,-1328,-1258,-1328,-1378\},
+03846 \{ -989,-1748,-1678,-1748,-1798\},
+03847 \{ -859,-1618,-1548,-1618,-1668\}\},
+03848 \textcolor{comment}{/* CG.UC..CG */}
+03849 \{\{ DEF, -809, -739, -809, -859\},
+03850 \{ -999,-1758,-1688,-1758,-1808\},
+03851 \{ -499,-1258,-1188,-1258,-1308\},
+03852 \{ -989,-1748,-1678,-1748,-1798\},
+03853 \{ -789,-1548,-1478,-1548,-1598\}\},
+03854 \textcolor{comment}{/* CG.UG..CG */}
+03855 \{\{ DEF, -809, -739, -809, -859\},
+03856 \{-1079,-1838,-1768,-1838,-1888\},
+03857 \{ -569,-1328,-1258,-1328,-1378\},
+03858 \{ -989,-1748,-1678,-1748,-1798\},
+03859 \{ -859,-1618,-1548,-1618,-1668\}\},
+03860 \textcolor{comment}{/* CG.UU..CG */}
+03861 \{\{ DEF, -809, -739, -809, -859\},
+03862 \{-1079,-1838,-1768,-1838,-1888\},
+03863 \{ -719,-1478,-1408,-1478,-1528\},
+03864 \{ -989,-1748,-1678,-1748,-1798\},
+03865 \{ -909,-1668,-1598,-1668,-1718\}\}\}\},
+03866 \textcolor{comment}{/* CG.@@..GC */}
+03867 \{\{\{\{ 0, 0, 0, 0, 0\},
+03868 \{ DEF, DEF, DEF, DEF, DEF\},
+03869 \{ DEF, DEF, DEF, DEF, DEF\},
+03870 \{ DEF, DEF, DEF, DEF, DEF\},
+03871 \{ DEF, DEF, DEF, DEF, DEF\}\},
+03872 \textcolor{comment}{/* CG.@A..GC */}
+03873 \{\{ 0, 0, 0, 0, 0\},
+03874 \{ -519, -519, -519, -519, -519\},
+03875 \{ -719, -719, -719, -719, -719\},
+03876 \{ -709, -709, -709, -709, -709\},
+03877 \{ -499, -499, -499, -499, -499\}\},
+03878 \textcolor{comment}{/* CG.@C..GC */}
+03879 \{\{ 0, 0, 0, 0, 0\},
+03880 \{ -879, -879, -879, -879, -879\},
+03881 \{ -309, -309, -309, -309, -309\},
+03882 \{ -739, -739, -739, -739, -739\},
+03883 \{ -499, -499, -499, -499, -499\}\},
+03884 \textcolor{comment}{/* CG.@G..GC */}
+03885 \{\{ 0, 0, 0, 0, 0\},
+03886 \{ -559, -559, -559, -559, -559\},
+03887 \{ -309, -309, -309, -309, -309\},
+03888 \{ -619, -619, -619, -619, -619\},
+03889 \{ -499, -499, -499, -499, -499\}\},
+03890 \textcolor{comment}{/* CG.@U..GC */}
+03891 \{\{ 0, 0, 0, 0, 0\},
+03892 \{ -879, -879, -879, -879, -879\},
+03893 \{ -389, -389, -389, -389, -389\},
+03894 \{ -739, -739, -739, -739, -739\},
+03895 \{ -569, -569, -569, -569, -569\}\}\},
+03896 \textcolor{comment}{/* CG.A@..GC */}
+03897 \{\{\{ DEF,-1029, -949,-1029,-1029\},
+03898 \{ -100,-1079, -999,-1079,-1079\},
+03899 \{ -100,-1079, -999,-1079,-1079\},
+03900 \{ -100,-1079, -999,-1079,-1079\},
+03901 \{ -100,-1079, -999,-1079,-1079\}\},
+03902 \textcolor{comment}{/* CG.AA..GC */}
+03903 \{\{ DEF,-1029, -949,-1029,-1029\},
+03904 \{ -569,-1548,-1468,-1548,-1548\},
+03905 \{ -769,-1748,-1668,-1748,-1748\},
+03906 \{ -759,-1738,-1658,-1738,-1738\},
+03907 \{ -549,-1528,-1448,-1528,-1528\}\},
+03908 \textcolor{comment}{/* CG.AC..GC */}
+03909 \{\{ DEF,-1029, -949,-1029,-1029\},
+03910 \{ -929,-1908,-1828,-1908,-1908\},
+03911 \{ -359,-1338,-1258,-1338,-1338\},
+03912 \{ -789,-1768,-1688,-1768,-1768\},
+03913 \{ -549,-1528,-1448,-1528,-1528\}\},
+03914 \textcolor{comment}{/* CG.AG..GC */}
+03915 \{\{ DEF,-1029, -949,-1029,-1029\},
+03916 \{ -609,-1588,-1508,-1588,-1588\},
+03917 \{ -359,-1338,-1258,-1338,-1338\},
+03918 \{ -669,-1648,-1568,-1648,-1648\},
+03919 \{ -549,-1528,-1448,-1528,-1528\}\},
+03920 \textcolor{comment}{/* CG.AU..GC */}
+03921 \{\{ DEF,-1029, -949,-1029,-1029\},
+03922 \{ -929,-1908,-1828,-1908,-1908\},
+03923 \{ -439,-1418,-1338,-1418,-1418\},
+03924 \{ -789,-1768,-1688,-1768,-1768\},
+03925 \{ -619,-1598,-1518,-1598,-1598\}\}\},
+03926 \textcolor{comment}{/* CG.C@..GC */}
+03927 \{\{\{ DEF, -519, -449, -519, -669\},
+03928 \{ -100, -569, -499, -569, -719\},
+03929 \{ -100, -569, -499, -569, -719\},
+03930 \{ -100, -569, -499, -569, -719\},
+03931 \{ -100, -569, -499, -569, -719\}\},
+03932 \textcolor{comment}{/* CG.CA..GC */}
+03933 \{\{ DEF, -519, -449, -519, -669\},
+03934 \{ -569,-1038, -968,-1038,-1188\},
+03935 \{ -769,-1238,-1168,-1238,-1388\},
+03936 \{ -759,-1228,-1158,-1228,-1378\},
+03937 \{ -549,-1018, -948,-1018,-1168\}\},
+03938 \textcolor{comment}{/* CG.CC..GC */}
+03939 \{\{ DEF, -519, -449, -519, -669\},
+03940 \{ -929,-1398,-1328,-1398,-1548\},
+03941 \{ -359, -828, -758, -828, -978\},
+03942 \{ -789,-1258,-1188,-1258,-1408\},
+03943 \{ -549,-1018, -948,-1018,-1168\}\},
+03944 \textcolor{comment}{/* CG.CG..GC */}
+03945 \{\{ DEF, -519, -449, -519, -669\},
+03946 \{ -609,-1078,-1008,-1078,-1228\},
+03947 \{ -359, -828, -758, -828, -978\},
+03948 \{ -669,-1138,-1068,-1138,-1288\},
+03949 \{ -549,-1018, -948,-1018,-1168\}\},
+03950 \textcolor{comment}{/* CG.CU..GC */}
+03951 \{\{ DEF, -519, -449, -519, -669\},
+03952 \{ -929,-1398,-1328,-1398,-1548\},
+03953 \{ -439, -908, -838, -908,-1058\},
+03954 \{ -789,-1258,-1188,-1258,-1408\},
+03955 \{ -619,-1088,-1018,-1088,-1238\}\}\},
+03956 \textcolor{comment}{/* CG.G@..GC */}
+03957 \{\{\{ DEF, -939, -939, -939, -939\},
+03958 \{ -100, -989, -989, -989, -989\},
+03959 \{ -100, -989, -989, -989, -989\},
+03960 \{ -100, -989, -989, -989, -989\},
+03961 \{ -100, -989, -989, -989, -989\}\},
+03962 \textcolor{comment}{/* CG.GA..GC */}
+03963 \{\{ DEF, -939, -939, -939, -939\},
+03964 \{ -569,-1458,-1458,-1458,-1458\},
+03965 \{ -769,-1658,-1658,-1658,-1658\},
+03966 \{ -759,-1648,-1648,-1648,-1648\},
+03967 \{ -549,-1438,-1438,-1438,-1438\}\},
+03968 \textcolor{comment}{/* CG.GC..GC */}
+03969 \{\{ DEF, -939, -939, -939, -939\},
+03970 \{ -929,-1818,-1818,-1818,-1818\},
+03971 \{ -359,-1248,-1248,-1248,-1248\},
+03972 \{ -789,-1678,-1678,-1678,-1678\},
+03973 \{ -549,-1438,-1438,-1438,-1438\}\},
+03974 \textcolor{comment}{/* CG.GG..GC */}
+03975 \{\{ DEF, -939, -939, -939, -939\},
+03976 \{ -609,-1498,-1498,-1498,-1498\},
+03977 \{ -359,-1248,-1248,-1248,-1248\},
+03978 \{ -669,-1558,-1558,-1558,-1558\},
+03979 \{ -549,-1438,-1438,-1438,-1438\}\},
+03980 \textcolor{comment}{/* CG.GU..GC */}
+03981 \{\{ DEF, -939, -939, -939, -939\},
+03982 \{ -929,-1818,-1818,-1818,-1818\},
+03983 \{ -439,-1328,-1328,-1328,-1328\},
+03984 \{ -789,-1678,-1678,-1678,-3080\},
+03985 \{ -619,-1508,-1508,-1508,-1508\}\}\},
+03986 \textcolor{comment}{/* CG.U@..GC */}
+03987 \{\{\{ DEF, -809, -739, -809, -859\},
+03988 \{ -100, -859, -789, -859, -909\},
+03989 \{ -100, -859, -789, -859, -909\},
+03990 \{ -100, -859, -789, -859, -909\},
+03991 \{ -100, -859, -789, -859, -909\}\},
+03992 \textcolor{comment}{/* CG.UA..GC */}
+03993 \{\{ DEF, -809, -739, -809, -859\},
+03994 \{ -569,-1328,-1258,-1328,-1378\},
+03995 \{ -769,-1528,-1458,-1528,-1578\},
+03996 \{ -759,-1518,-1448,-1518,-1568\},
+03997 \{ -549,-1308,-1238,-1308,-1358\}\},
+03998 \textcolor{comment}{/* CG.UC..GC */}
+03999 \{\{ DEF, -809, -739, -809, -859\},
+04000 \{ -929,-1688,-1618,-1688,-1738\},
+04001 \{ -359,-1118,-1048,-1118,-1168\},
+04002 \{ -789,-1548,-1478,-1548,-1598\},
+04003 \{ -549,-1308,-1238,-1308,-1358\}\},
+04004 \textcolor{comment}{/* CG.UG..GC */}
+04005 \{\{ DEF, -809, -739, -809, -859\},
+04006 \{ -609,-1368,-1298,-1368,-1418\},
+04007 \{ -359,-1118,-1048,-1118,-1168\},
+04008 \{ -669,-1428,-1358,-1428,-1478\},
+04009 \{ -549,-1308,-1238,-1308,-1358\}\},
+04010 \textcolor{comment}{/* CG.UU..GC */}
+04011 \{\{ DEF, -809, -739, -809, -859\},
+04012 \{ -929,-1688,-1618,-1688,-1738\},
+04013 \{ -439,-1198,-1128,-1198,-1248\},
+04014 \{ -789,-1548,-1478,-1548,-1598\},
+04015 \{ -619,-1378,-1308,-1378,-1428\}\}\}\},
+04016 \textcolor{comment}{/* CG.@@..GU */}
+04017 \{\{\{\{ 0, 0, 0, 0, 0\},
+04018 \{ DEF, DEF, DEF, DEF, DEF\},
+04019 \{ DEF, DEF, DEF, DEF, DEF\},
+04020 \{ DEF, DEF, DEF, DEF, DEF\},
+04021 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04022 \textcolor{comment}{/* CG.@A..GU */}
+04023 \{\{ 0, 0, 0, 0, 0\},
+04024 \{ -429, -429, -429, -429, -429\},
+04025 \{ -259, -259, -259, -259, -259\},
+04026 \{ -339, -339, -339, -339, -339\},
+04027 \{ -329, -329, -329, -329, -329\}\},
+04028 \textcolor{comment}{/* CG.@C..GU */}
+04029 \{\{ 0, 0, 0, 0, 0\},
+04030 \{ -599, -599, -599, -599, -599\},
+04031 \{ -239, -239, -239, -239, -239\},
+04032 \{ -689, -689, -689, -689, -689\},
+04033 \{ -329, -329, -329, -329, -329\}\},
+04034 \textcolor{comment}{/* CG.@G..GU */}
+04035 \{\{ 0, 0, 0, 0, 0\},
+04036 \{ -599, -599, -599, -599, -599\},
+04037 \{ -239, -239, -239, -239, -239\},
+04038 \{ -689, -689, -689, -689, -689\},
+04039 \{ -329, -329, -329, -329, -329\}\},
+04040 \textcolor{comment}{/* CG.@U..GU */}
+04041 \{\{ 0, 0, 0, 0, 0\},
+04042 \{ -599, -599, -599, -599, -599\},
+04043 \{ -239, -239, -239, -239, -239\},
+04044 \{ -689, -689, -689, -689, -689\},
+04045 \{ -329, -329, -329, -329, -329\}\}\},
+04046 \textcolor{comment}{/* CG.A@..GU */}
+04047 \{\{\{ DEF,-1029, -949,-1029,-1029\},
+04048 \{ -100,-1079, -999,-1079,-1079\},
+04049 \{ -100,-1079, -999,-1079,-1079\},
+04050 \{ -100,-1079, -999,-1079,-1079\},
+04051 \{ -100,-1079, -999,-1079,-1079\}\},
+04052 \textcolor{comment}{/* CG.AA..GU */}
+04053 \{\{ DEF,-1029, -949,-1029,-1029\},
+04054 \{ -479,-1458,-1378,-1458,-1458\},
+04055 \{ -309,-1288,-1208,-1288,-1288\},
+04056 \{ -389,-1368,-1288,-1368,-1368\},
+04057 \{ -379,-1358,-1278,-1358,-1358\}\},
+04058 \textcolor{comment}{/* CG.AC..GU */}
+04059 \{\{ DEF,-1029, -949,-1029,-1029\},
+04060 \{ -649,-1628,-1548,-1628,-1628\},
+04061 \{ -289,-1268,-1188,-1268,-1268\},
+04062 \{ -739,-1718,-1638,-1718,-1718\},
+04063 \{ -379,-1358,-1278,-1358,-1358\}\},
+04064 \textcolor{comment}{/* CG.AG..GU */}
+04065 \{\{ DEF,-1029, -949,-1029,-1029\},
+04066 \{ -649,-1628,-1548,-1628,-1628\},
+04067 \{ -289,-1268,-1188,-1268,-1268\},
+04068 \{ -739,-1718,-1638,-1718,-1718\},
+04069 \{ -379,-1358,-1278,-1358,-1358\}\},
+04070 \textcolor{comment}{/* CG.AU..GU */}
+04071 \{\{ DEF,-1029, -949,-1029,-1029\},
+04072 \{ -649,-1628,-1548,-1628,-1628\},
+04073 \{ -289,-1268,-1188,-1268,-1268\},
+04074 \{ -739,-1718,-1638,-1718,-1718\},
+04075 \{ -379,-1358,-1278,-1358,-1358\}\}\},
+04076 \textcolor{comment}{/* CG.C@..GU */}
+04077 \{\{\{ DEF, -519, -449, -519, -669\},
+04078 \{ -100, -569, -499, -569, -719\},
+04079 \{ -100, -569, -499, -569, -719\},
+04080 \{ -100, -569, -499, -569, -719\},
+04081 \{ -100, -569, -499, -569, -719\}\},
+04082 \textcolor{comment}{/* CG.CA..GU */}
+04083 \{\{ DEF, -519, -449, -519, -669\},
+04084 \{ -479, -948, -878, -948,-1098\},
+04085 \{ -309, -778, -708, -778, -928\},
+04086 \{ -389, -858, -788, -858,-1008\},
+04087 \{ -379, -848, -778, -848, -998\}\},
+04088 \textcolor{comment}{/* CG.CC..GU */}
+04089 \{\{ DEF, -519, -449, -519, -669\},
+04090 \{ -649,-1118,-1048,-1118,-1268\},
+04091 \{ -289, -758, -688, -758, -908\},
+04092 \{ -739,-1208,-1138,-1208,-1358\},
+04093 \{ -379, -848, -778, -848, -998\}\},
+04094 \textcolor{comment}{/* CG.CG..GU */}
+04095 \{\{ DEF, -519, -449, -519, -669\},
+04096 \{ -649,-1118,-1048,-1118,-1268\},
+04097 \{ -289, -758, -688, -758, -908\},
+04098 \{ -739,-1208,-1138,-1208,-1358\},
+04099 \{ -379, -848, -778, -848, -998\}\},
+04100 \textcolor{comment}{/* CG.CU..GU */}
+04101 \{\{ DEF, -519, -449, -519, -669\},
+04102 \{ -649,-1118,-1048,-1118,-1268\},
+04103 \{ -289, -758, -688, -758, -908\},
+04104 \{ -739,-1208,-1138,-1208,-1358\},
+04105 \{ -379, -848, -778, -848, -998\}\}\},
+04106 \textcolor{comment}{/* CG.G@..GU */}
+04107 \{\{\{ DEF, -939, -939, -939, -939\},
+04108 \{ -100, -989, -989, -989, -989\},
+04109 \{ -100, -989, -989, -989, -989\},
+04110 \{ -100, -989, -989, -989, -989\},
+04111 \{ -100, -989, -989, -989, -989\}\},
+04112 \textcolor{comment}{/* CG.GA..GU */}
+04113 \{\{ DEF, -939, -939, -939, -939\},
+04114 \{ -479,-1368,-1368,-1368,-1368\},
+04115 \{ -309,-1198,-1198,-1198,-1198\},
+04116 \{ -389,-1278,-1278,-1278,-1278\},
+04117 \{ -379,-1268,-1268,-1268,-1268\}\},
+04118 \textcolor{comment}{/* CG.GC..GU */}
+04119 \{\{ DEF, -939, -939, -939, -939\},
+04120 \{ -649,-1538,-1538,-1538,-1538\},
+04121 \{ -289,-1178,-1178,-1178,-1178\},
+04122 \{ -739,-1628,-1628,-1628,-1628\},
+04123 \{ -379,-1268,-1268,-1268,-1268\}\},
+04124 \textcolor{comment}{/* CG.GG..GU */}
+04125 \{\{ DEF, -939, -939, -939, -939\},
+04126 \{ -649,-1538,-1538,-1538,-1538\},
+04127 \{ -289,-1178,-1178,-1178,-1178\},
+04128 \{ -739,-1628,-1628,-1628,-1628\},
+04129 \{ -379,-1268,-1268,-1268,-1268\}\},
+04130 \textcolor{comment}{/* CG.GU..GU */}
+04131 \{\{ DEF, -939, -939, -939, -939\},
+04132 \{ -649,-1538,-1538,-1538,-1538\},
+04133 \{ -289,-1178,-1178,-1178,-1178\},
+04134 \{ -739,-1628,-1628,-1628,-1628\},
+04135 \{ -379,-1268,-1268,-1268,-1268\}\}\},
+04136 \textcolor{comment}{/* CG.U@..GU */}
+04137 \{\{\{ DEF, -809, -739, -809, -859\},
+04138 \{ -100, -859, -789, -859, -909\},
+04139 \{ -100, -859, -789, -859, -909\},
+04140 \{ -100, -859, -789, -859, -909\},
+04141 \{ -100, -859, -789, -859, -909\}\},
+04142 \textcolor{comment}{/* CG.UA..GU */}
+04143 \{\{ DEF, -809, -739, -809, -859\},
+04144 \{ -479,-1238,-1168,-1238,-1288\},
+04145 \{ -309,-1068, -998,-1068,-1118\},
+04146 \{ -389,-1148,-1078,-1148,-1198\},
+04147 \{ -379,-1138,-1068,-1138,-1188\}\},
+04148 \textcolor{comment}{/* CG.UC..GU */}
+04149 \{\{ DEF, -809, -739, -809, -859\},
+04150 \{ -649,-1408,-1338,-1408,-1458\},
+04151 \{ -289,-1048, -978,-1048,-1098\},
+04152 \{ -739,-1498,-1428,-1498,-1548\},
+04153 \{ -379,-1138,-1068,-1138,-1188\}\},
+04154 \textcolor{comment}{/* CG.UG..GU */}
+04155 \{\{ DEF, -809, -739, -809, -859\},
+04156 \{ -649,-1408,-1338,-1408,-1458\},
+04157 \{ -289,-1048, -978,-1048,-1098\},
+04158 \{ -739,-1498,-1428,-1498,-1548\},
+04159 \{ -379,-1138,-1068,-1138,-1188\}\},
+04160 \textcolor{comment}{/* CG.UU..GU */}
+04161 \{\{ DEF, -809, -739, -809, -859\},
+04162 \{ -649,-1408,-1338,-1408,-1458\},
+04163 \{ -289,-1048, -978,-1048,-1098\},
+04164 \{ -739,-1498,-1428,-1498,-1548\},
+04165 \{ -379,-1138,-1068,-1138,-1188\}\}\}\},
+04166 \textcolor{comment}{/* CG.@@..UG */}
+04167 \{\{\{\{ 0, 0, 0, 0, 0\},
+04168 \{ DEF, DEF, DEF, DEF, DEF\},
+04169 \{ DEF, DEF, DEF, DEF, DEF\},
+04170 \{ DEF, DEF, DEF, DEF, DEF\},
+04171 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04172 \textcolor{comment}{/* CG.@A..UG */}
+04173 \{\{ 0, 0, 0, 0, 0\},
+04174 \{ -719, -719, -719, -719, -719\},
+04175 \{ -479, -479, -479, -479, -479\},
+04176 \{ -659, -659, -659, -659, -659\},
+04177 \{ -549, -549, -549, -549, -549\}\},
+04178 \textcolor{comment}{/* CG.@C..UG */}
+04179 \{\{ 0, 0, 0, 0, 0\},
+04180 \{ -789, -789, -789, -789, -789\},
+04181 \{ -479, -479, -479, -479, -479\},
+04182 \{ -809, -809, -809, -809, -809\},
+04183 \{ -439, -439, -439, -439, -439\}\},
+04184 \textcolor{comment}{/* CG.@G..UG */}
+04185 \{\{ 0, 0, 0, 0, 0\},
+04186 \{ -959, -959, -959, -959, -959\},
+04187 \{ -359, -359, -359, -359, -359\},
+04188 \{ -919, -919, -919, -919, -919\},
+04189 \{ -549, -549, -549, -549, -549\}\},
+04190 \textcolor{comment}{/* CG.@U..UG */}
+04191 \{\{ 0, 0, 0, 0, 0\},
+04192 \{ -809, -809, -809, -809, -809\},
+04193 \{ -479, -479, -479, -479, -479\},
+04194 \{ -809, -809, -809, -809, -809\},
+04195 \{ -359, -359, -359, -359, -359\}\}\},
+04196 \textcolor{comment}{/* CG.A@..UG */}
+04197 \{\{\{ DEF,-1029, -949,-1029,-1029\},
+04198 \{ -100,-1079, -999,-1079,-1079\},
+04199 \{ -100,-1079, -999,-1079,-1079\},
+04200 \{ -100,-1079, -999,-1079,-1079\},
+04201 \{ -100,-1079, -999,-1079,-1079\}\},
+04202 \textcolor{comment}{/* CG.AA..UG */}
+04203 \{\{ DEF,-1029, -949,-1029,-1029\},
+04204 \{ -769,-1748,-1668,-1748,-1748\},
+04205 \{ -529,-1508,-1428,-1508,-1508\},
+04206 \{ -709,-1688,-1608,-1688,-1688\},
+04207 \{ -599,-1578,-1498,-1578,-1578\}\},
+04208 \textcolor{comment}{/* CG.AC..UG */}
+04209 \{\{ DEF,-1029, -949,-1029,-1029\},
+04210 \{ -839,-1818,-1738,-1818,-1818\},
+04211 \{ -529,-1508,-1428,-1508,-1508\},
+04212 \{ -859,-1838,-1758,-1838,-1838\},
+04213 \{ -489,-1468,-1388,-1468,-1468\}\},
+04214 \textcolor{comment}{/* CG.AG..UG */}
+04215 \{\{ DEF,-1029, -949,-1029,-1029\},
+04216 \{-1009,-1988,-1908,-1988,-1988\},
+04217 \{ -409,-1388,-1308,-1388,-1388\},
+04218 \{ -969,-1948,-1868,-1948,-1948\},
+04219 \{ -599,-1578,-1498,-1578,-1578\}\},
+04220 \textcolor{comment}{/* CG.AU..UG */}
+04221 \{\{ DEF,-1029, -949,-1029,-1029\},
+04222 \{ -859,-1838,-1758,-1838,-1838\},
+04223 \{ -529,-1508,-1428,-1508,-1508\},
+04224 \{ -859,-1838,-1758,-1838,-1838\},
+04225 \{ -409,-1388,-1308,-1388,-1388\}\}\},
+04226 \textcolor{comment}{/* CG.C@..UG */}
+04227 \{\{\{ DEF, -519, -449, -519, -669\},
+04228 \{ -100, -569, -499, -569, -719\},
+04229 \{ -100, -569, -499, -569, -719\},
+04230 \{ -100, -569, -499, -569, -719\},
+04231 \{ -100, -569, -499, -569, -719\}\},
+04232 \textcolor{comment}{/* CG.CA..UG */}
+04233 \{\{ DEF, -519, -449, -519, -669\},
+04234 \{ -769,-1238,-1168,-1238,-1388\},
+04235 \{ -529, -998, -928, -998,-1148\},
+04236 \{ -709,-1178,-1108,-1178,-1328\},
+04237 \{ -599,-1068, -998,-1068,-1218\}\},
+04238 \textcolor{comment}{/* CG.CC..UG */}
+04239 \{\{ DEF, -519, -449, -519, -669\},
+04240 \{ -839,-1308,-1238,-1308,-1458\},
+04241 \{ -529, -998, -928, -998,-1148\},
+04242 \{ -859,-1328,-1258,-1328,-1478\},
+04243 \{ -489, -958, -888, -958,-1108\}\},
+04244 \textcolor{comment}{/* CG.CG..UG */}
+04245 \{\{ DEF, -519, -449, -519, -669\},
+04246 \{-1009,-1478,-1408,-1478,-1628\},
+04247 \{ -409, -878, -808, -878,-1028\},
+04248 \{ -969,-1438,-1368,-1438,-1588\},
+04249 \{ -599,-1068, -998,-1068,-1218\}\},
+04250 \textcolor{comment}{/* CG.CU..UG */}
+04251 \{\{ DEF, -519, -449, -519, -669\},
+04252 \{ -859,-1328,-1258,-1328,-1478\},
+04253 \{ -529, -998, -928, -998,-1148\},
+04254 \{ -859,-1328,-1258,-1328,-1478\},
+04255 \{ -409, -878, -808, -878,-1028\}\}\},
+04256 \textcolor{comment}{/* CG.G@..UG */}
+04257 \{\{\{ DEF, -939, -939, -939, -939\},
+04258 \{ -100, -989, -989, -989, -989\},
+04259 \{ -100, -989, -989, -989, -989\},
+04260 \{ -100, -989, -989, -989, -989\},
+04261 \{ -100, -989, -989, -989, -989\}\},
+04262 \textcolor{comment}{/* CG.GA..UG */}
+04263 \{\{ DEF, -939, -939, -939, -939\},
+04264 \{ -769,-1658,-1658,-1658,-1658\},
+04265 \{ -529,-1418,-1418,-1418,-1418\},
+04266 \{ -709,-1598,-1598,-1598,-1598\},
+04267 \{ -599,-1488,-1488,-1488,-1488\}\},
+04268 \textcolor{comment}{/* CG.GC..UG */}
+04269 \{\{ DEF, -939, -939, -939, -939\},
+04270 \{ -839,-1728,-1728,-1728,-1728\},
+04271 \{ -529,-1418,-1418,-1418,-1418\},
+04272 \{ -859,-1748,-1748,-1748,-1748\},
+04273 \{ -489,-1378,-1378,-1378,-1378\}\},
+04274 \textcolor{comment}{/* CG.GG..UG */}
+04275 \{\{ DEF, -939, -939, -939, -939\},
+04276 \{-1009,-1898,-1898,-1898,-1898\},
+04277 \{ -409,-1298,-1298,-1298,-1298\},
+04278 \{ -969,-1858,-1858,-1858,-1858\},
+04279 \{ -599,-1488,-1488,-1488,-1488\}\},
+04280 \textcolor{comment}{/* CG.GU..UG */}
+04281 \{\{ DEF, -939, -939, -939, -939\},
+04282 \{ -859,-1748,-1748,-1748,-1748\},
+04283 \{ -529,-1418,-1418,-1418,-1418\},
+04284 \{ -859,-1748,-1748,-1748,-1748\},
+04285 \{ -409,-1298,-1298,-1298,-1298\}\}\},
+04286 \textcolor{comment}{/* CG.U@..UG */}
+04287 \{\{\{ DEF, -809, -739, -809, -859\},
+04288 \{ -100, -859, -789, -859, -909\},
+04289 \{ -100, -859, -789, -859, -909\},
+04290 \{ -100, -859, -789, -859, -909\},
+04291 \{ -100, -859, -789, -859, -909\}\},
+04292 \textcolor{comment}{/* CG.UA..UG */}
+04293 \{\{ DEF, -809, -739, -809, -859\},
+04294 \{ -769,-1528,-1458,-1528,-1578\},
+04295 \{ -529,-1288,-1218,-1288,-1338\},
+04296 \{ -709,-1468,-1398,-1468,-1518\},
+04297 \{ -599,-1358,-1288,-1358,-1408\}\},
+04298 \textcolor{comment}{/* CG.UC..UG */}
+04299 \{\{ DEF, -809, -739, -809, -859\},
+04300 \{ -839,-1598,-1528,-1598,-1648\},
+04301 \{ -529,-1288,-1218,-1288,-1338\},
+04302 \{ -859,-1618,-1548,-1618,-1668\},
+04303 \{ -489,-1248,-1178,-1248,-1298\}\},
+04304 \textcolor{comment}{/* CG.UG..UG */}
+04305 \{\{ DEF, -809, -739, -809, -859\},
+04306 \{-1009,-1768,-1698,-1768,-1818\},
+04307 \{ -409,-1168,-1098,-1168,-1218\},
+04308 \{ -969,-1728,-1658,-1728,-1778\},
+04309 \{ -599,-1358,-1288,-1358,-1408\}\},
+04310 \textcolor{comment}{/* CG.UU..UG */}
+04311 \{\{ DEF, -809, -739, -809, -859\},
+04312 \{ -859,-1618,-1548,-1618,-1668\},
+04313 \{ -529,-1288,-1218,-1288,-1338\},
+04314 \{ -859,-1618,-1548,-1618,-1668\},
+04315 \{ -409,-1168,-1098,-1168,-1218\}\}\}\},
+04316 \textcolor{comment}{/* CG.@@..AU */}
+04317 \{\{\{\{ 0, 0, 0, 0, 0\},
+04318 \{ DEF, DEF, DEF, DEF, DEF\},
+04319 \{ DEF, DEF, DEF, DEF, DEF\},
+04320 \{ DEF, DEF, DEF, DEF, DEF\},
+04321 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04322 \textcolor{comment}{/* CG.@A..AU */}
+04323 \{\{ 0, 0, 0, 0, 0\},
+04324 \{ -429, -429, -429, -429, -429\},
+04325 \{ -259, -259, -259, -259, -259\},
+04326 \{ -339, -339, -339, -339, -339\},
+04327 \{ -329, -329, -329, -329, -329\}\},
+04328 \textcolor{comment}{/* CG.@C..AU */}
+04329 \{\{ 0, 0, 0, 0, 0\},
+04330 \{ -599, -599, -599, -599, -599\},
+04331 \{ -239, -239, -239, -239, -239\},
+04332 \{ -689, -689, -689, -689, -689\},
+04333 \{ -329, -329, -329, -329, -329\}\},
+04334 \textcolor{comment}{/* CG.@G..AU */}
+04335 \{\{ 0, 0, 0, 0, 0\},
+04336 \{ -599, -599, -599, -599, -599\},
+04337 \{ -239, -239, -239, -239, -239\},
+04338 \{ -689, -689, -689, -689, -689\},
+04339 \{ -329, -329, -329, -329, -329\}\},
+04340 \textcolor{comment}{/* CG.@U..AU */}
+04341 \{\{ 0, 0, 0, 0, 0\},
+04342 \{ -599, -599, -599, -599, -599\},
+04343 \{ -239, -239, -239, -239, -239\},
+04344 \{ -689, -689, -689, -689, -689\},
+04345 \{ -329, -329, -329, -329, -329\}\}\},
+04346 \textcolor{comment}{/* CG.A@..AU */}
+04347 \{\{\{ DEF,-1029, -949,-1029,-1029\},
+04348 \{ -100,-1079, -999,-1079,-1079\},
+04349 \{ -100,-1079, -999,-1079,-1079\},
+04350 \{ -100,-1079, -999,-1079,-1079\},
+04351 \{ -100,-1079, -999,-1079,-1079\}\},
+04352 \textcolor{comment}{/* CG.AA..AU */}
+04353 \{\{ DEF,-1029, -949,-1029,-1029\},
+04354 \{ -479,-1458,-1378,-1458,-1458\},
+04355 \{ -309,-1288,-1208,-1288,-1288\},
+04356 \{ -389,-1368,-1288,-1368,-1368\},
+04357 \{ -379,-1358,-1278,-1358,-1358\}\},
+04358 \textcolor{comment}{/* CG.AC..AU */}
+04359 \{\{ DEF,-1029, -949,-1029,-1029\},
+04360 \{ -649,-1628,-1548,-1628,-1628\},
+04361 \{ -289,-1268,-1188,-1268,-1268\},
+04362 \{ -739,-1718,-1638,-1718,-1718\},
+04363 \{ -379,-1358,-1278,-1358,-1358\}\},
+04364 \textcolor{comment}{/* CG.AG..AU */}
+04365 \{\{ DEF,-1029, -949,-1029,-1029\},
+04366 \{ -649,-1628,-1548,-1628,-1628\},
+04367 \{ -289,-1268,-1188,-1268,-1268\},
+04368 \{ -739,-1718,-1638,-1718,-1718\},
+04369 \{ -379,-1358,-1278,-1358,-1358\}\},
+04370 \textcolor{comment}{/* CG.AU..AU */}
+04371 \{\{ DEF,-1029, -949,-1029,-1029\},
+04372 \{ -649,-1628,-1548,-1628,-1628\},
+04373 \{ -289,-1268,-1188,-1268,-1268\},
+04374 \{ -739,-1718,-1638,-1718,-1718\},
+04375 \{ -379,-1358,-1278,-1358,-1358\}\}\},
+04376 \textcolor{comment}{/* CG.C@..AU */}
+04377 \{\{\{ DEF, -519, -449, -519, -669\},
+04378 \{ -100, -569, -499, -569, -719\},
+04379 \{ -100, -569, -499, -569, -719\},
+04380 \{ -100, -569, -499, -569, -719\},
+04381 \{ -100, -569, -499, -569, -719\}\},
+04382 \textcolor{comment}{/* CG.CA..AU */}
+04383 \{\{ DEF, -519, -449, -519, -669\},
+04384 \{ -479, -948, -878, -948,-1098\},
+04385 \{ -309, -778, -708, -778, -928\},
+04386 \{ -389, -858, -788, -858,-1008\},
+04387 \{ -379, -848, -778, -848, -998\}\},
+04388 \textcolor{comment}{/* CG.CC..AU */}
+04389 \{\{ DEF, -519, -449, -519, -669\},
+04390 \{ -649,-1118,-1048,-1118,-1268\},
+04391 \{ -289, -758, -688, -758, -908\},
+04392 \{ -739,-1208,-1138,-1208,-1358\},
+04393 \{ -379, -848, -778, -848, -998\}\},
+04394 \textcolor{comment}{/* CG.CG..AU */}
+04395 \{\{ DEF, -519, -449, -519, -669\},
+04396 \{ -649,-1118,-1048,-1118,-1268\},
+04397 \{ -289, -758, -688, -758, -908\},
+04398 \{ -739,-1208,-1138,-1208,-1358\},
+04399 \{ -379, -848, -778, -848, -998\}\},
+04400 \textcolor{comment}{/* CG.CU..AU */}
+04401 \{\{ DEF, -519, -449, -519, -669\},
+04402 \{ -649,-1118,-1048,-1118,-1268\},
+04403 \{ -289, -758, -688, -758, -908\},
+04404 \{ -739,-1208,-1138,-1208,-1358\},
+04405 \{ -379, -848, -778, -848, -998\}\}\},
+04406 \textcolor{comment}{/* CG.G@..AU */}
+04407 \{\{\{ DEF, -939, -939, -939, -939\},
+04408 \{ -100, -989, -989, -989, -989\},
+04409 \{ -100, -989, -989, -989, -989\},
+04410 \{ -100, -989, -989, -989, -989\},
+04411 \{ -100, -989, -989, -989, -989\}\},
+04412 \textcolor{comment}{/* CG.GA..AU */}
+04413 \{\{ DEF, -939, -939, -939, -939\},
+04414 \{ -479,-1368,-1368,-1368,-1368\},
+04415 \{ -309,-1198,-1198,-1198,-1198\},
+04416 \{ -389,-1278,-1278,-1278,-1278\},
+04417 \{ -379,-1268,-1268,-1268,-1268\}\},
+04418 \textcolor{comment}{/* CG.GC..AU */}
+04419 \{\{ DEF, -939, -939, -939, -939\},
+04420 \{ -649,-1538,-1538,-1538,-1538\},
+04421 \{ -289,-1178,-1178,-1178,-1178\},
+04422 \{ -739,-1628,-1628,-1628,-1628\},
+04423 \{ -379,-1268,-1268,-1268,-1268\}\},
+04424 \textcolor{comment}{/* CG.GG..AU */}
+04425 \{\{ DEF, -939, -939, -939, -939\},
+04426 \{ -649,-1538,-1538,-1538,-1538\},
+04427 \{ -289,-1178,-1178,-1178,-1178\},
+04428 \{ -739,-1628,-1628,-1628,-1628\},
+04429 \{ -379,-1268,-1268,-1268,-1268\}\},
+04430 \textcolor{comment}{/* CG.GU..AU */}
+04431 \{\{ DEF, -939, -939, -939, -939\},
+04432 \{ -649,-1538,-1538,-1538,-1538\},
+04433 \{ -289,-1178,-1178,-1178,-1178\},
+04434 \{ -739,-1628,-1628,-1628,-1628\},
+04435 \{ -379,-1268,-1268,-1268,-1268\}\}\},
+04436 \textcolor{comment}{/* CG.U@..AU */}
+04437 \{\{\{ DEF, -809, -739, -809, -859\},
+04438 \{ -100, -859, -789, -859, -909\},
+04439 \{ -100, -859, -789, -859, -909\},
+04440 \{ -100, -859, -789, -859, -909\},
+04441 \{ -100, -859, -789, -859, -909\}\},
+04442 \textcolor{comment}{/* CG.UA..AU */}
+04443 \{\{ DEF, -809, -739, -809, -859\},
+04444 \{ -479,-1238,-1168,-1238,-1288\},
+04445 \{ -309,-1068, -998,-1068,-1118\},
+04446 \{ -389,-1148,-1078,-1148,-1198\},
+04447 \{ -379,-1138,-1068,-1138,-1188\}\},
+04448 \textcolor{comment}{/* CG.UC..AU */}
+04449 \{\{ DEF, -809, -739, -809, -859\},
+04450 \{ -649,-1408,-1338,-1408,-1458\},
+04451 \{ -289,-1048, -978,-1048,-1098\},
+04452 \{ -739,-1498,-1428,-1498,-1548\},
+04453 \{ -379,-1138,-1068,-1138,-1188\}\},
+04454 \textcolor{comment}{/* CG.UG..AU */}
+04455 \{\{ DEF, -809, -739, -809, -859\},
+04456 \{ -649,-1408,-1338,-1408,-1458\},
+04457 \{ -289,-1048, -978,-1048,-1098\},
+04458 \{ -739,-1498,-1428,-1498,-1548\},
+04459 \{ -379,-1138,-1068,-1138,-1188\}\},
+04460 \textcolor{comment}{/* CG.UU..AU */}
+04461 \{\{ DEF, -809, -739, -809, -859\},
+04462 \{ -649,-1408,-1338,-1408,-1458\},
+04463 \{ -289,-1048, -978,-1048,-1098\},
+04464 \{ -739,-1498,-1428,-1498,-1548\},
+04465 \{ -379,-1138,-1068,-1138,-1188\}\}\}\},
+04466 \textcolor{comment}{/* CG.@@..UA */}
+04467 \{\{\{\{ 0, 0, 0, 0, 0\},
+04468 \{ DEF, DEF, DEF, DEF, DEF\},
+04469 \{ DEF, DEF, DEF, DEF, DEF\},
+04470 \{ DEF, DEF, DEF, DEF, DEF\},
+04471 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04472 \textcolor{comment}{/* CG.@A..UA */}
+04473 \{\{ 0, 0, 0, 0, 0\},
+04474 \{ -399, -399, -399, -399, -399\},
+04475 \{ -429, -429, -429, -429, -429\},
+04476 \{ -379, -379, -379, -379, -379\},
+04477 \{ -279, -279, -279, -279, -279\}\},
+04478 \textcolor{comment}{/* CG.@C..UA */}
+04479 \{\{ 0, 0, 0, 0, 0\},
+04480 \{ -629, -629, -629, -629, -629\},
+04481 \{ -509, -509, -509, -509, -509\},
+04482 \{ -679, -679, -679, -679, -679\},
+04483 \{ -139, -139, -139, -139, -139\}\},
+04484 \textcolor{comment}{/* CG.@G..UA */}
+04485 \{\{ 0, 0, 0, 0, 0\},
+04486 \{ -889, -889, -889, -889, -889\},
+04487 \{ -199, -199, -199, -199, -199\},
+04488 \{ -889, -889, -889, -889, -889\},
+04489 \{ -279, -279, -279, -279, -279\}\},
+04490 \textcolor{comment}{/* CG.@U..UA */}
+04491 \{\{ 0, 0, 0, 0, 0\},
+04492 \{ -589, -589, -589, -589, -589\},
+04493 \{ -179, -179, -179, -179, -179\},
+04494 \{ -679, -679, -679, -679, -679\},
+04495 \{ -140, -140, -140, -140, -140\}\}\},
+04496 \textcolor{comment}{/* CG.A@..UA */}
+04497 \{\{\{ DEF,-1029, -949,-1029,-1029\},
+04498 \{ -100,-1079, -999,-1079,-1079\},
+04499 \{ -100,-1079, -999,-1079,-1079\},
+04500 \{ -100,-1079, -999,-1079,-1079\},
+04501 \{ -100,-1079, -999,-1079,-1079\}\},
+04502 \textcolor{comment}{/* CG.AA..UA */}
+04503 \{\{ DEF,-1029, -949,-1029,-1029\},
+04504 \{ -449,-1428,-1348,-1428,-1428\},
+04505 \{ -479,-1458,-1378,-1458,-1458\},
+04506 \{ -429,-1408,-1328,-1408,-1408\},
+04507 \{ -329,-1308,-1228,-1308,-1308\}\},
+04508 \textcolor{comment}{/* CG.AC..UA */}
+04509 \{\{ DEF,-1029, -949,-1029,-1029\},
+04510 \{ -679,-1658,-1578,-1658,-1658\},
+04511 \{ -559,-1538,-1458,-1538,-1538\},
+04512 \{ -729,-1708,-1628,-1708,-1708\},
+04513 \{ -189,-1168,-1088,-1168,-1168\}\},
+04514 \textcolor{comment}{/* CG.AG..UA */}
+04515 \{\{ DEF,-1029, -949,-1029,-1029\},
+04516 \{ -939,-1918,-1838,-1918,-1918\},
+04517 \{ -249,-1228,-1148,-1228,-1228\},
+04518 \{ -939,-1918,-1838,-1918,-1918\},
+04519 \{ -329,-1308,-1228,-1308,-1308\}\},
+04520 \textcolor{comment}{/* CG.AU..UA */}
+04521 \{\{ DEF,-1029, -949,-1029,-1029\},
+04522 \{ -639,-1618,-1538,-1618,-1618\},
+04523 \{ -229,-1208,-1128,-1208,-1208\},
+04524 \{ -729,-1708,-1628,-1708,-1708\},
+04525 \{ -190,-1169,-1089,-1169,-1169\}\}\},
+04526 \textcolor{comment}{/* CG.C@..UA */}
+04527 \{\{\{ DEF, -519, -449, -519, -669\},
+04528 \{ -100, -569, -499, -569, -719\},
+04529 \{ -100, -569, -499, -569, -719\},
+04530 \{ -100, -569, -499, -569, -719\},
+04531 \{ -100, -569, -499, -569, -719\}\},
+04532 \textcolor{comment}{/* CG.CA..UA */}
+04533 \{\{ DEF, -519, -449, -519, -669\},
+04534 \{ -449, -918, -848, -918,-1068\},
+04535 \{ -479, -948, -878, -948,-1098\},
+04536 \{ -429, -898, -828, -898,-1048\},
+04537 \{ -329, -798, -728, -798, -948\}\},
+04538 \textcolor{comment}{/* CG.CC..UA */}
+04539 \{\{ DEF, -519, -449, -519, -669\},
+04540 \{ -679,-1148,-1078,-1148,-1298\},
+04541 \{ -559,-1028, -958,-1028,-1178\},
+04542 \{ -729,-1198,-1128,-1198,-1348\},
+04543 \{ -189, -658, -588, -658, -808\}\},
+04544 \textcolor{comment}{/* CG.CG..UA */}
+04545 \{\{ DEF, -519, -449, -519, -669\},
+04546 \{ -939,-1408,-1338,-1408,-1558\},
+04547 \{ -249, -718, -648, -718, -868\},
+04548 \{ -939,-1408,-1338,-1408,-1558\},
+04549 \{ -329, -798, -728, -798, -948\}\},
+04550 \textcolor{comment}{/* CG.CU..UA */}
+04551 \{\{ DEF, -519, -449, -519, -669\},
+04552 \{ -639,-1108,-1038,-1108,-1258\},
+04553 \{ -229, -698, -628, -698, -848\},
+04554 \{ -729,-1198,-1128,-1198,-1348\},
+04555 \{ -190, -659, -589, -659, -809\}\}\},
+04556 \textcolor{comment}{/* CG.G@..UA */}
+04557 \{\{\{ DEF, -939, -939, -939, -939\},
+04558 \{ -100, -989, -989, -989, -989\},
+04559 \{ -100, -989, -989, -989, -989\},
+04560 \{ -100, -989, -989, -989, -989\},
+04561 \{ -100, -989, -989, -989, -989\}\},
+04562 \textcolor{comment}{/* CG.GA..UA */}
+04563 \{\{ DEF, -939, -939, -939, -939\},
+04564 \{ -449,-1338,-1338,-1338,-1338\},
+04565 \{ -479,-1368,-1368,-1368,-1368\},
+04566 \{ -429,-1318,-1318,-1318,-1318\},
+04567 \{ -329,-1218,-1218,-1218,-1218\}\},
+04568 \textcolor{comment}{/* CG.GC..UA */}
+04569 \{\{ DEF, -939, -939, -939, -939\},
+04570 \{ -679,-1568,-1568,-1568,-1568\},
+04571 \{ -559,-1448,-1448,-1448,-1448\},
+04572 \{ -729,-1618,-1618,-1618,-1618\},
+04573 \{ -189,-1078,-1078,-1078,-1078\}\},
+04574 \textcolor{comment}{/* CG.GG..UA */}
+04575 \{\{ DEF, -939, -939, -939, -939\},
+04576 \{ -939,-1828,-1828,-1828,-1828\},
+04577 \{ -249,-1138,-1138,-1138,-1138\},
+04578 \{ -939,-1828,-1828,-1828,-1828\},
+04579 \{ -329,-1218,-1218,-1218,-1218\}\},
+04580 \textcolor{comment}{/* CG.GU..UA */}
+04581 \{\{ DEF, -939, -939, -939, -939\},
+04582 \{ -639,-1528,-1528,-1528,-1528\},
+04583 \{ -229,-1118,-1118,-1118,-1118\},
+04584 \{ -729,-1618,-1618,-1618,-1618\},
+04585 \{ -190,-1079,-1079,-1079,-1079\}\}\},
+04586 \textcolor{comment}{/* CG.U@..UA */}
+04587 \{\{\{ DEF, -809, -739, -809, -859\},
+04588 \{ -100, -859, -789, -859, -909\},
+04589 \{ -100, -859, -789, -859, -909\},
+04590 \{ -100, -859, -789, -859, -909\},
+04591 \{ -100, -859, -789, -859, -909\}\},
+04592 \textcolor{comment}{/* CG.UA..UA */}
+04593 \{\{ DEF, -809, -739, -809, -859\},
+04594 \{ -449,-1208,-1138,-1208,-1258\},
+04595 \{ -479,-1238,-1168,-1238,-1288\},
+04596 \{ -429,-1188,-1118,-1188,-1238\},
+04597 \{ -329,-1088,-1018,-1088,-1138\}\},
+04598 \textcolor{comment}{/* CG.UC..UA */}
+04599 \{\{ DEF, -809, -739, -809, -859\},
+04600 \{ -679,-1438,-1368,-1438,-1488\},
+04601 \{ -559,-1318,-1248,-1318,-1368\},
+04602 \{ -729,-1488,-1418,-1488,-1538\},
+04603 \{ -189, -948, -878, -948, -998\}\},
+04604 \textcolor{comment}{/* CG.UG..UA */}
+04605 \{\{ DEF, -809, -739, -809, -859\},
+04606 \{ -939,-1698,-1628,-1698,-1748\},
+04607 \{ -249,-1008, -938,-1008,-1058\},
+04608 \{ -939,-1698,-1628,-1698,-1748\},
+04609 \{ -329,-1088,-1018,-1088,-1138\}\},
+04610 \textcolor{comment}{/* CG.UU..UA */}
+04611 \{\{ DEF, -809, -739, -809, -859\},
+04612 \{ -639,-1398,-1328,-1398,-1448\},
+04613 \{ -229, -988, -918, -988,-1038\},
+04614 \{ -729,-1488,-1418,-1488,-1538\},
+04615 \{ -190, -949, -879, -949, -999\}\}\}\},
+04616 \textcolor{comment}{/* CG.@@.. @ */}
+04617 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+04618 \{ DEF, DEF, DEF, DEF, DEF\},
+04619 \{ DEF, DEF, DEF, DEF, DEF\},
+04620 \{ DEF, DEF, DEF, DEF, DEF\},
+04621 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04622 \textcolor{comment}{/* CG.@A.. @ */}
+04623 \{\{ DEF, DEF, DEF, DEF, DEF\},
+04624 \{ DEF, DEF, DEF, DEF, DEF\},
+04625 \{ DEF, DEF, DEF, DEF, DEF\},
+04626 \{ DEF, DEF, DEF, DEF, DEF\},
+04627 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04628 \textcolor{comment}{/* CG.@C.. @ */}
+04629 \{\{ DEF, DEF, DEF, DEF, DEF\},
+04630 \{ DEF, DEF, DEF, DEF, DEF\},
+04631 \{ DEF, DEF, DEF, DEF, DEF\},
+04632 \{ DEF, DEF, DEF, DEF, DEF\},
+04633 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04634 \textcolor{comment}{/* CG.@G.. @ */}
+04635 \{\{ DEF, DEF, DEF, DEF, DEF\},
+04636 \{ DEF, DEF, DEF, DEF, DEF\},
+04637 \{ DEF, DEF, DEF, DEF, DEF\},
+04638 \{ DEF, DEF, DEF, DEF, DEF\},
+04639 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04640 \textcolor{comment}{/* CG.@U.. @ */}
+04641 \{\{ DEF, DEF, DEF, DEF, DEF\},
+04642 \{ DEF, DEF, DEF, DEF, DEF\},
+04643 \{ DEF, DEF, DEF, DEF, DEF\},
+04644 \{ DEF, DEF, DEF, DEF, DEF\},
+04645 \{ DEF, DEF, DEF, DEF, DEF\}\}\},
+04646 \textcolor{comment}{/* CG.A@.. @ */}
+04647 \{\{\{ -100,-1079, -999,-1079,-1079\},
+04648 \{ -100,-1079, -999,-1079,-1079\},
+04649 \{ -100,-1079, -999,-1079,-1079\},
+04650 \{ -100,-1079, -999,-1079,-1079\},
+04651 \{ -100,-1079, -999,-1079,-1079\}\},
+04652 \textcolor{comment}{/* CG.AA.. @ */}
+04653 \{\{ -100,-1079, -999,-1079,-1079\},
+04654 \{ -100,-1079, -999,-1079,-1079\},
+04655 \{ -100,-1079, -999,-1079,-1079\},
+04656 \{ -100,-1079, -999,-1079,-1079\},
+04657 \{ -100,-1079, -999,-1079,-1079\}\},
+04658 \textcolor{comment}{/* CG.AC.. @ */}
+04659 \{\{ -100,-1079, -999,-1079,-1079\},
+04660 \{ -100,-1079, -999,-1079,-1079\},
+04661 \{ -100,-1079, -999,-1079,-1079\},
+04662 \{ -100,-1079, -999,-1079,-1079\},
+04663 \{ -100,-1079, -999,-1079,-1079\}\},
+04664 \textcolor{comment}{/* CG.AG.. @ */}
+04665 \{\{ -100,-1079, -999,-1079,-1079\},
+04666 \{ -100,-1079, -999,-1079,-1079\},
+04667 \{ -100,-1079, -999,-1079,-1079\},
+04668 \{ -100,-1079, -999,-1079,-1079\},
+04669 \{ -100,-1079, -999,-1079,-1079\}\},
+04670 \textcolor{comment}{/* CG.AU.. @ */}
+04671 \{\{ -100,-1079, -999,-1079,-1079\},
+04672 \{ -100,-1079, -999,-1079,-1079\},
+04673 \{ -100,-1079, -999,-1079,-1079\},
+04674 \{ -100,-1079, -999,-1079,-1079\},
+04675 \{ -100,-1079, -999,-1079,-1079\}\}\},
+04676 \textcolor{comment}{/* CG.C@.. @ */}
+04677 \{\{\{ -100, -569, -499, -569, -719\},
+04678 \{ -100, -569, -499, -569, -719\},
+04679 \{ -100, -569, -499, -569, -719\},
+04680 \{ -100, -569, -499, -569, -719\},
+04681 \{ -100, -569, -499, -569, -719\}\},
+04682 \textcolor{comment}{/* CG.CA.. @ */}
+04683 \{\{ -100, -569, -499, -569, -719\},
+04684 \{ -100, -569, -499, -569, -719\},
+04685 \{ -100, -569, -499, -569, -719\},
+04686 \{ -100, -569, -499, -569, -719\},
+04687 \{ -100, -569, -499, -569, -719\}\},
+04688 \textcolor{comment}{/* CG.CC.. @ */}
+04689 \{\{ -100, -569, -499, -569, -719\},
+04690 \{ -100, -569, -499, -569, -719\},
+04691 \{ -100, -569, -499, -569, -719\},
+04692 \{ -100, -569, -499, -569, -719\},
+04693 \{ -100, -569, -499, -569, -719\}\},
+04694 \textcolor{comment}{/* CG.CG.. @ */}
+04695 \{\{ -100, -569, -499, -569, -719\},
+04696 \{ -100, -569, -499, -569, -719\},
+04697 \{ -100, -569, -499, -569, -719\},
+04698 \{ -100, -569, -499, -569, -719\},
+04699 \{ -100, -569, -499, -569, -719\}\},
+04700 \textcolor{comment}{/* CG.CU.. @ */}
+04701 \{\{ -100, -569, -499, -569, -719\},
+04702 \{ -100, -569, -499, -569, -719\},
+04703 \{ -100, -569, -499, -569, -719\},
+04704 \{ -100, -569, -499, -569, -719\},
+04705 \{ -100, -569, -499, -569, -719\}\}\},
+04706 \textcolor{comment}{/* CG.G@.. @ */}
+04707 \{\{\{ -100, -989, -989, -989, -989\},
+04708 \{ -100, -989, -989, -989, -989\},
+04709 \{ -100, -989, -989, -989, -989\},
+04710 \{ -100, -989, -989, -989, -989\},
+04711 \{ -100, -989, -989, -989, -989\}\},
+04712 \textcolor{comment}{/* CG.GA.. @ */}
+04713 \{\{ -100, -989, -989, -989, -989\},
+04714 \{ -100, -989, -989, -989, -989\},
+04715 \{ -100, -989, -989, -989, -989\},
+04716 \{ -100, -989, -989, -989, -989\},
+04717 \{ -100, -989, -989, -989, -989\}\},
+04718 \textcolor{comment}{/* CG.GC.. @ */}
+04719 \{\{ -100, -989, -989, -989, -989\},
+04720 \{ -100, -989, -989, -989, -989\},
+04721 \{ -100, -989, -989, -989, -989\},
+04722 \{ -100, -989, -989, -989, -989\},
+04723 \{ -100, -989, -989, -989, -989\}\},
+04724 \textcolor{comment}{/* CG.GG.. @ */}
+04725 \{\{ -100, -989, -989, -989, -989\},
+04726 \{ -100, -989, -989, -989, -989\},
+04727 \{ -100, -989, -989, -989, -989\},
+04728 \{ -100, -989, -989, -989, -989\},
+04729 \{ -100, -989, -989, -989, -989\}\},
+04730 \textcolor{comment}{/* CG.GU.. @ */}
+04731 \{\{ -100, -989, -989, -989, -989\},
+04732 \{ -100, -989, -989, -989, -989\},
+04733 \{ -100, -989, -989, -989, -989\},
+04734 \{ -100, -989, -989, -989, -989\},
+04735 \{ -100, -989, -989, -989, -989\}\}\},
+04736 \textcolor{comment}{/* CG.U@.. @ */}
+04737 \{\{\{ -100, -859, -789, -859, -909\},
+04738 \{ -100, -859, -789, -859, -909\},
+04739 \{ -100, -859, -789, -859, -909\},
+04740 \{ -100, -859, -789, -859, -909\},
+04741 \{ -100, -859, -789, -859, -909\}\},
+04742 \textcolor{comment}{/* CG.UA.. @ */}
+04743 \{\{ -100, -859, -789, -859, -909\},
+04744 \{ -100, -859, -789, -859, -909\},
+04745 \{ -100, -859, -789, -859, -909\},
+04746 \{ -100, -859, -789, -859, -909\},
+04747 \{ -100, -859, -789, -859, -909\}\},
+04748 \textcolor{comment}{/* CG.UC.. @ */}
+04749 \{\{ -100, -859, -789, -859, -909\},
+04750 \{ -100, -859, -789, -859, -909\},
+04751 \{ -100, -859, -789, -859, -909\},
+04752 \{ -100, -859, -789, -859, -909\},
+04753 \{ -100, -859, -789, -859, -909\}\},
+04754 \textcolor{comment}{/* CG.UG.. @ */}
+04755 \{\{ -100, -859, -789, -859, -909\},
+04756 \{ -100, -859, -789, -859, -909\},
+04757 \{ -100, -859, -789, -859, -909\},
+04758 \{ -100, -859, -789, -859, -909\},
+04759 \{ -100, -859, -789, -859, -909\}\},
+04760 \textcolor{comment}{/* CG.UU.. @ */}
+04761 \{\{ -100, -859, -789, -859, -909\},
+04762 \{ -100, -859, -789, -859, -909\},
+04763 \{ -100, -859, -789, -859, -909\},
+04764 \{ -100, -859, -789, -859, -909\},
+04765 \{ -100, -859, -789, -859, -909\}\}\}\}\},
+04766 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+04767 \textcolor{comment}{/* GC.@@..CG */}
+04768 \{\{\{\{ 0, 0, 0, 0, 0\},
+04769 \{ DEF, DEF, DEF, DEF, DEF\},
+04770 \{ DEF, DEF, DEF, DEF, DEF\},
+04771 \{ DEF, DEF, DEF, DEF, DEF\},
+04772 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04773 \textcolor{comment}{/* GC.@A..CG */}
+04774 \{\{ 0, 0, 0, 0, 0\},
+04775 \{-1029,-1029,-1029,-1029,-1029\},
+04776 \{ -519, -519, -519, -519, -519\},
+04777 \{ -939, -939, -939, -939, -939\},
+04778 \{ -809, -809, -809, -809, -809\}\},
+04779 \textcolor{comment}{/* GC.@C..CG */}
+04780 \{\{ 0, 0, 0, 0, 0\},
+04781 \{ -949, -949, -949, -949, -949\},
+04782 \{ -449, -449, -449, -449, -449\},
+04783 \{ -939, -939, -939, -939, -939\},
+04784 \{ -739, -739, -739, -739, -739\}\},
+04785 \textcolor{comment}{/* GC.@G..CG */}
+04786 \{\{ 0, 0, 0, 0, 0\},
+04787 \{-1029,-1029,-1029,-1029,-1029\},
+04788 \{ -519, -519, -519, -519, -519\},
+04789 \{ -939, -939, -939, -939, -939\},
+04790 \{ -809, -809, -809, -809, -809\}\},
+04791 \textcolor{comment}{/* GC.@U..CG */}
+04792 \{\{ 0, 0, 0, 0, 0\},
+04793 \{-1029,-1029,-1029,-1029,-1029\},
+04794 \{ -669, -669, -669, -669, -669\},
+04795 \{ -939, -939, -939, -939, -939\},
+04796 \{ -859, -859, -859, -859, -859\}\}\},
+04797 \textcolor{comment}{/* GC.A@..CG */}
+04798 \{\{\{ DEF, -519, -879, -559, -879\},
+04799 \{ -100, -569, -929, -609, -929\},
+04800 \{ -100, -569, -929, -609, -929\},
+04801 \{ -100, -569, -929, -609, -929\},
+04802 \{ -100, -569, -929, -609, -929\}\},
+04803 \textcolor{comment}{/* GC.AA..CG */}
+04804 \{\{ DEF, -519, -879, -559, -879\},
+04805 \{-1079,-1548,-1908,-1588,-1908\},
+04806 \{ -569,-1038,-1398,-1078,-1398\},
+04807 \{ -989,-1458,-1818,-1498,-1818\},
+04808 \{ -859,-1328,-1688,-1368,-1688\}\},
+04809 \textcolor{comment}{/* GC.AC..CG */}
+04810 \{\{ DEF, -519, -879, -559, -879\},
+04811 \{ -999,-1468,-1828,-1508,-1828\},
+04812 \{ -499, -968,-1328,-1008,-1328\},
+04813 \{ -989,-1458,-1818,-1498,-1818\},
+04814 \{ -789,-1258,-1618,-1298,-1618\}\},
+04815 \textcolor{comment}{/* GC.AG..CG */}
+04816 \{\{ DEF, -519, -879, -559, -879\},
+04817 \{-1079,-1548,-1908,-1588,-1908\},
+04818 \{ -569,-1038,-1398,-1078,-1398\},
+04819 \{ -989,-1458,-1818,-1498,-1818\},
+04820 \{ -859,-1328,-1688,-1368,-1688\}\},
+04821 \textcolor{comment}{/* GC.AU..CG */}
+04822 \{\{ DEF, -519, -879, -559, -879\},
+04823 \{-1079,-1548,-1908,-1588,-1908\},
+04824 \{ -719,-1188,-1548,-1228,-1548\},
+04825 \{ -989,-1458,-1818,-1498,-1818\},
+04826 \{ -909,-1378,-1738,-1418,-1738\}\}\},
+04827 \textcolor{comment}{/* GC.C@..CG */}
+04828 \{\{\{ DEF, -719, -309, -309, -389\},
+04829 \{ -100, -769, -359, -359, -439\},
+04830 \{ -100, -769, -359, -359, -439\},
+04831 \{ -100, -769, -359, -359, -439\},
+04832 \{ -100, -769, -359, -359, -439\}\},
+04833 \textcolor{comment}{/* GC.CA..CG */}
+04834 \{\{ DEF, -719, -309, -309, -389\},
+04835 \{-1079,-1748,-1338,-1338,-1418\},
+04836 \{ -569,-1238, -828, -828, -908\},
+04837 \{ -989,-1658,-1248,-1248,-1328\},
+04838 \{ -859,-1528,-1118,-1118,-1198\}\},
+04839 \textcolor{comment}{/* GC.CC..CG */}
+04840 \{\{ DEF, -719, -309, -309, -389\},
+04841 \{ -999,-1668,-1258,-1258,-1338\},
+04842 \{ -499,-1168, -758, -758, -838\},
+04843 \{ -989,-1658,-1248,-1248,-1328\},
+04844 \{ -789,-1458,-1048,-1048,-1128\}\},
+04845 \textcolor{comment}{/* GC.CG..CG */}
+04846 \{\{ DEF, -719, -309, -309, -389\},
+04847 \{-1079,-1748,-1338,-1338,-1418\},
+04848 \{ -569,-1238, -828, -828, -908\},
+04849 \{ -989,-1658,-1248,-1248,-1328\},
+04850 \{ -859,-1528,-1118,-1118,-1198\}\},
+04851 \textcolor{comment}{/* GC.CU..CG */}
+04852 \{\{ DEF, -719, -309, -309, -389\},
+04853 \{-1079,-1748,-1338,-1338,-1418\},
+04854 \{ -719,-1388, -978, -978,-1058\},
+04855 \{ -989,-1658,-1248,-1248,-1328\},
+04856 \{ -909,-1578,-1168,-1168,-1248\}\}\},
+04857 \textcolor{comment}{/* GC.G@..CG */}
+04858 \{\{\{ DEF, -709, -739, -619, -739\},
+04859 \{ -100, -759, -789, -669, -789\},
+04860 \{ -100, -759, -789, -669, -789\},
+04861 \{ -100, -759, -789, -669, -789\},
+04862 \{ -100, -759, -789, -669, -789\}\},
+04863 \textcolor{comment}{/* GC.GA..CG */}
+04864 \{\{ DEF, -709, -739, -619, -739\},
+04865 \{-1079,-1738,-1768,-1648,-1768\},
+04866 \{ -569,-1228,-1258,-1138,-1258\},
+04867 \{ -989,-1648,-1678,-1558,-1678\},
+04868 \{ -859,-1518,-1548,-1428,-1548\}\},
+04869 \textcolor{comment}{/* GC.GC..CG */}
+04870 \{\{ DEF, -709, -739, -619, -739\},
+04871 \{ -999,-1658,-1688,-1568,-1688\},
+04872 \{ -499,-1158,-1188,-1068,-1188\},
+04873 \{ -989,-1648,-1678,-1558,-1678\},
+04874 \{ -789,-1448,-1478,-1358,-1478\}\},
+04875 \textcolor{comment}{/* GC.GG..CG */}
+04876 \{\{ DEF, -709, -739, -619, -739\},
+04877 \{-1079,-1738,-1768,-1648,-1768\},
+04878 \{ -569,-1228,-1258,-1138,-1258\},
+04879 \{ -989,-1648,-1678,-1558,-1678\},
+04880 \{ -859,-1518,-1548,-1428,-1548\}\},
+04881 \textcolor{comment}{/* GC.GU..CG */}
+04882 \{\{ DEF, -709, -739, -619, -739\},
+04883 \{-1079,-1738,-1768,-1648,-1768\},
+04884 \{ -719,-1378,-1408,-1288,-1408\},
+04885 \{ -989,-1648,-1678,-1558,-3080\},
+04886 \{ -909,-1568,-1598,-1478,-1598\}\}\},
+04887 \textcolor{comment}{/* GC.U@..CG */}
+04888 \{\{\{ DEF, -499, -499, -499, -569\},
+04889 \{ -100, -549, -549, -549, -619\},
+04890 \{ -100, -549, -549, -549, -619\},
+04891 \{ -100, -549, -549, -549, -619\},
+04892 \{ -100, -549, -549, -549, -619\}\},
+04893 \textcolor{comment}{/* GC.UA..CG */}
+04894 \{\{ DEF, -499, -499, -499, -569\},
+04895 \{-1079,-1528,-1528,-1528,-1598\},
+04896 \{ -569,-1018,-1018,-1018,-1088\},
+04897 \{ -989,-1438,-1438,-1438,-1508\},
+04898 \{ -859,-1308,-1308,-1308,-1378\}\},
+04899 \textcolor{comment}{/* GC.UC..CG */}
+04900 \{\{ DEF, -499, -499, -499, -569\},
+04901 \{ -999,-1448,-1448,-1448,-1518\},
+04902 \{ -499, -948, -948, -948,-1018\},
+04903 \{ -989,-1438,-1438,-1438,-1508\},
+04904 \{ -789,-1238,-1238,-1238,-1308\}\},
+04905 \textcolor{comment}{/* GC.UG..CG */}
+04906 \{\{ DEF, -499, -499, -499, -569\},
+04907 \{-1079,-1528,-1528,-1528,-1598\},
+04908 \{ -569,-1018,-1018,-1018,-1088\},
+04909 \{ -989,-1438,-1438,-1438,-1508\},
+04910 \{ -859,-1308,-1308,-1308,-1378\}\},
+04911 \textcolor{comment}{/* GC.UU..CG */}
+04912 \{\{ DEF, -499, -499, -499, -569\},
+04913 \{-1079,-1528,-1528,-1528,-1598\},
+04914 \{ -719,-1168,-1168,-1168,-1238\},
+04915 \{ -989,-1438,-1438,-1438,-1508\},
+04916 \{ -909,-1358,-1358,-1358,-1428\}\}\}\},
+04917 \textcolor{comment}{/* GC.@@..GC */}
+04918 \{\{\{\{ 0, 0, 0, 0, 0\},
+04919 \{ DEF, DEF, DEF, DEF, DEF\},
+04920 \{ DEF, DEF, DEF, DEF, DEF\},
+04921 \{ DEF, DEF, DEF, DEF, DEF\},
+04922 \{ DEF, DEF, DEF, DEF, DEF\}\},
+04923 \textcolor{comment}{/* GC.@A..GC */}
+04924 \{\{ 0, 0, 0, 0, 0\},
+04925 \{ -519, -519, -519, -519, -519\},
+04926 \{ -719, -719, -719, -719, -719\},
+04927 \{ -709, -709, -709, -709, -709\},
+04928 \{ -499, -499, -499, -499, -499\}\},
+04929 \textcolor{comment}{/* GC.@C..GC */}
+04930 \{\{ 0, 0, 0, 0, 0\},
+04931 \{ -879, -879, -879, -879, -879\},
+04932 \{ -309, -309, -309, -309, -309\},
+04933 \{ -739, -739, -739, -739, -739\},
+04934 \{ -499, -499, -499, -499, -499\}\},
+04935 \textcolor{comment}{/* GC.@G..GC */}
+04936 \{\{ 0, 0, 0, 0, 0\},
+04937 \{ -559, -559, -559, -559, -559\},
+04938 \{ -309, -309, -309, -309, -309\},
+04939 \{ -619, -619, -619, -619, -619\},
+04940 \{ -499, -499, -499, -499, -499\}\},
+04941 \textcolor{comment}{/* GC.@U..GC */}
+04942 \{\{ 0, 0, 0, 0, 0\},
+04943 \{ -879, -879, -879, -879, -879\},
+04944 \{ -389, -389, -389, -389, -389\},
+04945 \{ -739, -739, -739, -739, -739\},
+04946 \{ -569, -569, -569, -569, -569\}\}\},
+04947 \textcolor{comment}{/* GC.A@..GC */}
+04948 \{\{\{ DEF, -519, -879, -559, -879\},
+04949 \{ -100, -569, -929, -609, -929\},
+04950 \{ -100, -569, -929, -609, -929\},
+04951 \{ -100, -569, -929, -609, -929\},
+04952 \{ -100, -569, -929, -609, -929\}\},
+04953 \textcolor{comment}{/* GC.AA..GC */}
+04954 \{\{ DEF, -519, -879, -559, -879\},
+04955 \{ -569,-1038,-1398,-1078,-1398\},
+04956 \{ -769,-1238,-1598,-1278,-1598\},
+04957 \{ -759,-1228,-1588,-1268,-1588\},
+04958 \{ -549,-1018,-1378,-1058,-1378\}\},
+04959 \textcolor{comment}{/* GC.AC..GC */}
+04960 \{\{ DEF, -519, -879, -559, -879\},
+04961 \{ -929,-1398,-1758,-1438,-1758\},
+04962 \{ -359, -828,-1188, -868,-1188\},
+04963 \{ -789,-1258,-1618,-1298,-1618\},
+04964 \{ -549,-1018,-1378,-1058,-1378\}\},
+04965 \textcolor{comment}{/* GC.AG..GC */}
+04966 \{\{ DEF, -519, -879, -559, -879\},
+04967 \{ -609,-1078,-1438,-1118,-1438\},
+04968 \{ -359, -828,-1188, -868,-1188\},
+04969 \{ -669,-1138,-1498,-1178,-1498\},
+04970 \{ -549,-1018,-1378,-1058,-1378\}\},
+04971 \textcolor{comment}{/* GC.AU..GC */}
+04972 \{\{ DEF, -519, -879, -559, -879\},
+04973 \{ -929,-1398,-1758,-1438,-1758\},
+04974 \{ -439, -908,-1268, -948,-1268\},
+04975 \{ -789,-1258,-1618,-1298,-1618\},
+04976 \{ -619,-1088,-1448,-1128,-1448\}\}\},
+04977 \textcolor{comment}{/* GC.C@..GC */}
+04978 \{\{\{ DEF, -719, -309, -309, -389\},
+04979 \{ -100, -769, -359, -359, -439\},
+04980 \{ -100, -769, -359, -359, -439\},
+04981 \{ -100, -769, -359, -359, -439\},
+04982 \{ -100, -769, -359, -359, -439\}\},
+04983 \textcolor{comment}{/* GC.CA..GC */}
+04984 \{\{ DEF, -719, -309, -309, -389\},
+04985 \{ -569,-1238, -828, -828, -908\},
+04986 \{ -769,-1438,-1028,-1028,-1108\},
+04987 \{ -759,-1428,-1018,-1018,-1098\},
+04988 \{ -549,-1218, -808, -808, -888\}\},
+04989 \textcolor{comment}{/* GC.CC..GC */}
+04990 \{\{ DEF, -719, -309, -309, -389\},
+04991 \{ -929,-1598,-1188,-1188,-1268\},
+04992 \{ -359,-1028, -618, -618, -698\},
+04993 \{ -789,-1458,-1048,-1048,-1128\},
+04994 \{ -549,-1218, -808, -808, -888\}\},
+04995 \textcolor{comment}{/* GC.CG..GC */}
+04996 \{\{ DEF, -719, -309, -309, -389\},
+04997 \{ -609,-1278, -868, -868, -948\},
+04998 \{ -359,-1028, -618, -618, -698\},
+04999 \{ -669,-1338, -928, -928,-1008\},
+05000 \{ -549,-1218, -808, -808, -888\}\},
+05001 \textcolor{comment}{/* GC.CU..GC */}
+05002 \{\{ DEF, -719, -309, -309, -389\},
+05003 \{ -929,-1598,-1188,-1188,-1268\},
+05004 \{ -439,-1108, -698, -698, -778\},
+05005 \{ -789,-1458,-1048,-1048,-1128\},
+05006 \{ -619,-1288, -878, -878, -958\}\}\},
+05007 \textcolor{comment}{/* GC.G@..GC */}
+05008 \{\{\{ DEF, -709, -739, -619, -739\},
+05009 \{ -100, -759, -789, -669, -789\},
+05010 \{ -100, -759, -789, -669, -789\},
+05011 \{ -100, -759, -789, -669, -789\},
+05012 \{ -100, -759, -789, -669, -789\}\},
+05013 \textcolor{comment}{/* GC.GA..GC */}
+05014 \{\{ DEF, -709, -739, -619, -739\},
+05015 \{ -569,-1228,-1258,-1138,-1258\},
+05016 \{ -769,-1428,-1458,-1338,-1458\},
+05017 \{ -759,-1418,-1448,-1328,-1448\},
+05018 \{ -549,-1208,-1238,-1118,-1238\}\},
+05019 \textcolor{comment}{/* GC.GC..GC */}
+05020 \{\{ DEF, -709, -739, -619, -739\},
+05021 \{ -929,-1588,-1618,-1498,-1618\},
+05022 \{ -359,-1018,-1048, -928,-1048\},
+05023 \{ -789,-1448,-1478,-1358,-1478\},
+05024 \{ -549,-1208,-1238,-1118,-1238\}\},
+05025 \textcolor{comment}{/* GC.GG..GC */}
+05026 \{\{ DEF, -709, -739, -619, -739\},
+05027 \{ -609,-1268,-1298,-1178,-1298\},
+05028 \{ -359,-1018,-1048, -928,-1048\},
+05029 \{ -669,-1328,-1358,-1238,-1358\},
+05030 \{ -549,-1208,-1238,-1118,-1238\}\},
+05031 \textcolor{comment}{/* GC.GU..GC */}
+05032 \{\{ DEF, -709, -739, -619, -739\},
+05033 \{ -929,-1588,-1618,-1498,-1618\},
+05034 \{ -439,-1098,-1128,-1008,-1128\},
+05035 \{ -789,-1448,-1478,-1358,-3080\},
+05036 \{ -619,-1278,-1308,-1188,-1308\}\}\},
+05037 \textcolor{comment}{/* GC.U@..GC */}
+05038 \{\{\{ DEF, -499, -499, -499, -569\},
+05039 \{ -100, -549, -549, -549, -619\},
+05040 \{ -100, -549, -549, -549, -619\},
+05041 \{ -100, -549, -549, -549, -619\},
+05042 \{ -100, -549, -549, -549, -619\}\},
+05043 \textcolor{comment}{/* GC.UA..GC */}
+05044 \{\{ DEF, -499, -499, -499, -569\},
+05045 \{ -569,-1018,-1018,-1018,-1088\},
+05046 \{ -769,-1218,-1218,-1218,-1288\},
+05047 \{ -759,-1208,-1208,-1208,-1278\},
+05048 \{ -549, -998, -998, -998,-1068\}\},
+05049 \textcolor{comment}{/* GC.UC..GC */}
+05050 \{\{ DEF, -499, -499, -499, -569\},
+05051 \{ -929,-1378,-1378,-1378,-1448\},
+05052 \{ -359, -808, -808, -808, -878\},
+05053 \{ -789,-1238,-1238,-1238,-1308\},
+05054 \{ -549, -998, -998, -998,-1068\}\},
+05055 \textcolor{comment}{/* GC.UG..GC */}
+05056 \{\{ DEF, -499, -499, -499, -569\},
+05057 \{ -609,-1058,-1058,-1058,-1128\},
+05058 \{ -359, -808, -808, -808, -878\},
+05059 \{ -669,-1118,-1118,-1118,-1188\},
+05060 \{ -549, -998, -998, -998,-1068\}\},
+05061 \textcolor{comment}{/* GC.UU..GC */}
+05062 \{\{ DEF, -499, -499, -499, -569\},
+05063 \{ -929,-1378,-1378,-1378,-1448\},
+05064 \{ -439, -888, -888, -888, -958\},
+05065 \{ -789,-1238,-1238,-1238,-1308\},
+05066 \{ -619,-1068,-1068,-1068,-1138\}\}\}\},
+05067 \textcolor{comment}{/* GC.@@..GU */}
+05068 \{\{\{\{ 0, 0, 0, 0, 0\},
+05069 \{ DEF, DEF, DEF, DEF, DEF\},
+05070 \{ DEF, DEF, DEF, DEF, DEF\},
+05071 \{ DEF, DEF, DEF, DEF, DEF\},
+05072 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05073 \textcolor{comment}{/* GC.@A..GU */}
+05074 \{\{ 0, 0, 0, 0, 0\},
+05075 \{ -429, -429, -429, -429, -429\},
+05076 \{ -259, -259, -259, -259, -259\},
+05077 \{ -339, -339, -339, -339, -339\},
+05078 \{ -329, -329, -329, -329, -329\}\},
+05079 \textcolor{comment}{/* GC.@C..GU */}
+05080 \{\{ 0, 0, 0, 0, 0\},
+05081 \{ -599, -599, -599, -599, -599\},
+05082 \{ -239, -239, -239, -239, -239\},
+05083 \{ -689, -689, -689, -689, -689\},
+05084 \{ -329, -329, -329, -329, -329\}\},
+05085 \textcolor{comment}{/* GC.@G..GU */}
+05086 \{\{ 0, 0, 0, 0, 0\},
+05087 \{ -599, -599, -599, -599, -599\},
+05088 \{ -239, -239, -239, -239, -239\},
+05089 \{ -689, -689, -689, -689, -689\},
+05090 \{ -329, -329, -329, -329, -329\}\},
+05091 \textcolor{comment}{/* GC.@U..GU */}
+05092 \{\{ 0, 0, 0, 0, 0\},
+05093 \{ -599, -599, -599, -599, -599\},
+05094 \{ -239, -239, -239, -239, -239\},
+05095 \{ -689, -689, -689, -689, -689\},
+05096 \{ -329, -329, -329, -329, -329\}\}\},
+05097 \textcolor{comment}{/* GC.A@..GU */}
+05098 \{\{\{ DEF, -519, -879, -559, -879\},
+05099 \{ -100, -569, -929, -609, -929\},
+05100 \{ -100, -569, -929, -609, -929\},
+05101 \{ -100, -569, -929, -609, -929\},
+05102 \{ -100, -569, -929, -609, -929\}\},
+05103 \textcolor{comment}{/* GC.AA..GU */}
+05104 \{\{ DEF, -519, -879, -559, -879\},
+05105 \{ -479, -948,-1308, -988,-1308\},
+05106 \{ -309, -778,-1138, -818,-1138\},
+05107 \{ -389, -858,-1218, -898,-1218\},
+05108 \{ -379, -848,-1208, -888,-1208\}\},
+05109 \textcolor{comment}{/* GC.AC..GU */}
+05110 \{\{ DEF, -519, -879, -559, -879\},
+05111 \{ -649,-1118,-1478,-1158,-1478\},
+05112 \{ -289, -758,-1118, -798,-1118\},
+05113 \{ -739,-1208,-1568,-1248,-1568\},
+05114 \{ -379, -848,-1208, -888,-1208\}\},
+05115 \textcolor{comment}{/* GC.AG..GU */}
+05116 \{\{ DEF, -519, -879, -559, -879\},
+05117 \{ -649,-1118,-1478,-1158,-1478\},
+05118 \{ -289, -758,-1118, -798,-1118\},
+05119 \{ -739,-1208,-1568,-1248,-1568\},
+05120 \{ -379, -848,-1208, -888,-1208\}\},
+05121 \textcolor{comment}{/* GC.AU..GU */}
+05122 \{\{ DEF, -519, -879, -559, -879\},
+05123 \{ -649,-1118,-1478,-1158,-1478\},
+05124 \{ -289, -758,-1118, -798,-1118\},
+05125 \{ -739,-1208,-1568,-1248,-1568\},
+05126 \{ -379, -848,-1208, -888,-1208\}\}\},
+05127 \textcolor{comment}{/* GC.C@..GU */}
+05128 \{\{\{ DEF, -719, -309, -309, -389\},
+05129 \{ -100, -769, -359, -359, -439\},
+05130 \{ -100, -769, -359, -359, -439\},
+05131 \{ -100, -769, -359, -359, -439\},
+05132 \{ -100, -769, -359, -359, -439\}\},
+05133 \textcolor{comment}{/* GC.CA..GU */}
+05134 \{\{ DEF, -719, -309, -309, -389\},
+05135 \{ -479,-1148, -738, -738, -818\},
+05136 \{ -309, -978, -568, -568, -648\},
+05137 \{ -389,-1058, -648, -648, -728\},
+05138 \{ -379,-1048, -638, -638, -718\}\},
+05139 \textcolor{comment}{/* GC.CC..GU */}
+05140 \{\{ DEF, -719, -309, -309, -389\},
+05141 \{ -649,-1318, -908, -908, -988\},
+05142 \{ -289, -958, -548, -548, -628\},
+05143 \{ -739,-1408, -998, -998,-1078\},
+05144 \{ -379,-1048, -638, -638, -718\}\},
+05145 \textcolor{comment}{/* GC.CG..GU */}
+05146 \{\{ DEF, -719, -309, -309, -389\},
+05147 \{ -649,-1318, -908, -908, -988\},
+05148 \{ -289, -958, -548, -548, -628\},
+05149 \{ -739,-1408, -998, -998,-1078\},
+05150 \{ -379,-1048, -638, -638, -718\}\},
+05151 \textcolor{comment}{/* GC.CU..GU */}
+05152 \{\{ DEF, -719, -309, -309, -389\},
+05153 \{ -649,-1318, -908, -908, -988\},
+05154 \{ -289, -958, -548, -548, -628\},
+05155 \{ -739,-1408, -998, -998,-1078\},
+05156 \{ -379,-1048, -638, -638, -718\}\}\},
+05157 \textcolor{comment}{/* GC.G@..GU */}
+05158 \{\{\{ DEF, -709, -739, -619, -739\},
+05159 \{ -100, -759, -789, -669, -789\},
+05160 \{ -100, -759, -789, -669, -789\},
+05161 \{ -100, -759, -789, -669, -789\},
+05162 \{ -100, -759, -789, -669, -789\}\},
+05163 \textcolor{comment}{/* GC.GA..GU */}
+05164 \{\{ DEF, -709, -739, -619, -739\},
+05165 \{ -479,-1138,-1168,-1048,-1168\},
+05166 \{ -309, -968, -998, -878, -998\},
+05167 \{ -389,-1048,-1078, -958,-1078\},
+05168 \{ -379,-1038,-1068, -948,-1068\}\},
+05169 \textcolor{comment}{/* GC.GC..GU */}
+05170 \{\{ DEF, -709, -739, -619, -739\},
+05171 \{ -649,-1308,-1338,-1218,-1338\},
+05172 \{ -289, -948, -978, -858, -978\},
+05173 \{ -739,-1398,-1428,-1308,-1428\},
+05174 \{ -379,-1038,-1068, -948,-1068\}\},
+05175 \textcolor{comment}{/* GC.GG..GU */}
+05176 \{\{ DEF, -709, -739, -619, -739\},
+05177 \{ -649,-1308,-1338,-1218,-1338\},
+05178 \{ -289, -948, -978, -858, -978\},
+05179 \{ -739,-1398,-1428,-1308,-1428\},
+05180 \{ -379,-1038,-1068, -948,-1068\}\},
+05181 \textcolor{comment}{/* GC.GU..GU */}
+05182 \{\{ DEF, -709, -739, -619, -739\},
+05183 \{ -649,-1308,-1338,-1218,-1338\},
+05184 \{ -289, -948, -978, -858, -978\},
+05185 \{ -739,-1398,-1428,-1308,-1428\},
+05186 \{ -379,-1038,-1068, -948,-1068\}\}\},
+05187 \textcolor{comment}{/* GC.U@..GU */}
+05188 \{\{\{ DEF, -499, -499, -499, -569\},
+05189 \{ -100, -549, -549, -549, -619\},
+05190 \{ -100, -549, -549, -549, -619\},
+05191 \{ -100, -549, -549, -549, -619\},
+05192 \{ -100, -549, -549, -549, -619\}\},
+05193 \textcolor{comment}{/* GC.UA..GU */}
+05194 \{\{ DEF, -499, -499, -499, -569\},
+05195 \{ -479, -928, -928, -928, -998\},
+05196 \{ -309, -758, -758, -758, -828\},
+05197 \{ -389, -838, -838, -838, -908\},
+05198 \{ -379, -828, -828, -828, -898\}\},
+05199 \textcolor{comment}{/* GC.UC..GU */}
+05200 \{\{ DEF, -499, -499, -499, -569\},
+05201 \{ -649,-1098,-1098,-1098,-1168\},
+05202 \{ -289, -738, -738, -738, -808\},
+05203 \{ -739,-1188,-1188,-1188,-1258\},
+05204 \{ -379, -828, -828, -828, -898\}\},
+05205 \textcolor{comment}{/* GC.UG..GU */}
+05206 \{\{ DEF, -499, -499, -499, -569\},
+05207 \{ -649,-1098,-1098,-1098,-1168\},
+05208 \{ -289, -738, -738, -738, -808\},
+05209 \{ -739,-1188,-1188,-1188,-1258\},
+05210 \{ -379, -828, -828, -828, -898\}\},
+05211 \textcolor{comment}{/* GC.UU..GU */}
+05212 \{\{ DEF, -499, -499, -499, -569\},
+05213 \{ -649,-1098,-1098,-1098,-1168\},
+05214 \{ -289, -738, -738, -738, -808\},
+05215 \{ -739,-1188,-1188,-1188,-1258\},
+05216 \{ -379, -828, -828, -828, -898\}\}\}\},
+05217 \textcolor{comment}{/* GC.@@..UG */}
+05218 \{\{\{\{ 0, 0, 0, 0, 0\},
+05219 \{ DEF, DEF, DEF, DEF, DEF\},
+05220 \{ DEF, DEF, DEF, DEF, DEF\},
+05221 \{ DEF, DEF, DEF, DEF, DEF\},
+05222 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05223 \textcolor{comment}{/* GC.@A..UG */}
+05224 \{\{ 0, 0, 0, 0, 0\},
+05225 \{ -719, -719, -719, -719, -719\},
+05226 \{ -479, -479, -479, -479, -479\},
+05227 \{ -659, -659, -659, -659, -659\},
+05228 \{ -549, -549, -549, -549, -549\}\},
+05229 \textcolor{comment}{/* GC.@C..UG */}
+05230 \{\{ 0, 0, 0, 0, 0\},
+05231 \{ -789, -789, -789, -789, -789\},
+05232 \{ -479, -479, -479, -479, -479\},
+05233 \{ -809, -809, -809, -809, -809\},
+05234 \{ -439, -439, -439, -439, -439\}\},
+05235 \textcolor{comment}{/* GC.@G..UG */}
+05236 \{\{ 0, 0, 0, 0, 0\},
+05237 \{ -959, -959, -959, -959, -959\},
+05238 \{ -359, -359, -359, -359, -359\},
+05239 \{ -919, -919, -919, -919, -919\},
+05240 \{ -549, -549, -549, -549, -549\}\},
+05241 \textcolor{comment}{/* GC.@U..UG */}
+05242 \{\{ 0, 0, 0, 0, 0\},
+05243 \{ -809, -809, -809, -809, -809\},
+05244 \{ -479, -479, -479, -479, -479\},
+05245 \{ -809, -809, -809, -809, -809\},
+05246 \{ -359, -359, -359, -359, -359\}\}\},
+05247 \textcolor{comment}{/* GC.A@..UG */}
+05248 \{\{\{ DEF, -519, -879, -559, -879\},
+05249 \{ -100, -569, -929, -609, -929\},
+05250 \{ -100, -569, -929, -609, -929\},
+05251 \{ -100, -569, -929, -609, -929\},
+05252 \{ -100, -569, -929, -609, -929\}\},
+05253 \textcolor{comment}{/* GC.AA..UG */}
+05254 \{\{ DEF, -519, -879, -559, -879\},
+05255 \{ -769,-1238,-1598,-1278,-1598\},
+05256 \{ -529, -998,-1358,-1038,-1358\},
+05257 \{ -709,-1178,-1538,-1218,-1538\},
+05258 \{ -599,-1068,-1428,-1108,-1428\}\},
+05259 \textcolor{comment}{/* GC.AC..UG */}
+05260 \{\{ DEF, -519, -879, -559, -879\},
+05261 \{ -839,-1308,-1668,-1348,-1668\},
+05262 \{ -529, -998,-1358,-1038,-1358\},
+05263 \{ -859,-1328,-1688,-1368,-1688\},
+05264 \{ -489, -958,-1318, -998,-1318\}\},
+05265 \textcolor{comment}{/* GC.AG..UG */}
+05266 \{\{ DEF, -519, -879, -559, -879\},
+05267 \{-1009,-1478,-1838,-1518,-1838\},
+05268 \{ -409, -878,-1238, -918,-1238\},
+05269 \{ -969,-1438,-1798,-1478,-1798\},
+05270 \{ -599,-1068,-1428,-1108,-1428\}\},
+05271 \textcolor{comment}{/* GC.AU..UG */}
+05272 \{\{ DEF, -519, -879, -559, -879\},
+05273 \{ -859,-1328,-1688,-1368,-1688\},
+05274 \{ -529, -998,-1358,-1038,-1358\},
+05275 \{ -859,-1328,-1688,-1368,-1688\},
+05276 \{ -409, -878,-1238, -918,-1238\}\}\},
+05277 \textcolor{comment}{/* GC.C@..UG */}
+05278 \{\{\{ DEF, -719, -309, -309, -389\},
+05279 \{ -100, -769, -359, -359, -439\},
+05280 \{ -100, -769, -359, -359, -439\},
+05281 \{ -100, -769, -359, -359, -439\},
+05282 \{ -100, -769, -359, -359, -439\}\},
+05283 \textcolor{comment}{/* GC.CA..UG */}
+05284 \{\{ DEF, -719, -309, -309, -389\},
+05285 \{ -769,-1438,-1028,-1028,-1108\},
+05286 \{ -529,-1198, -788, -788, -868\},
+05287 \{ -709,-1378, -968, -968,-1048\},
+05288 \{ -599,-1268, -858, -858, -938\}\},
+05289 \textcolor{comment}{/* GC.CC..UG */}
+05290 \{\{ DEF, -719, -309, -309, -389\},
+05291 \{ -839,-1508,-1098,-1098,-1178\},
+05292 \{ -529,-1198, -788, -788, -868\},
+05293 \{ -859,-1528,-1118,-1118,-1198\},
+05294 \{ -489,-1158, -748, -748, -828\}\},
+05295 \textcolor{comment}{/* GC.CG..UG */}
+05296 \{\{ DEF, -719, -309, -309, -389\},
+05297 \{-1009,-1678,-1268,-1268,-1348\},
+05298 \{ -409,-1078, -668, -668, -748\},
+05299 \{ -969,-1638,-1228,-1228,-1308\},
+05300 \{ -599,-1268, -858, -858, -938\}\},
+05301 \textcolor{comment}{/* GC.CU..UG */}
+05302 \{\{ DEF, -719, -309, -309, -389\},
+05303 \{ -859,-1528,-1118,-1118,-1198\},
+05304 \{ -529,-1198, -788, -788, -868\},
+05305 \{ -859,-1528,-1118,-1118,-1198\},
+05306 \{ -409,-1078, -668, -668, -748\}\}\},
+05307 \textcolor{comment}{/* GC.G@..UG */}
+05308 \{\{\{ DEF, -709, -739, -619, -739\},
+05309 \{ -100, -759, -789, -669, -789\},
+05310 \{ -100, -759, -789, -669, -789\},
+05311 \{ -100, -759, -789, -669, -789\},
+05312 \{ -100, -759, -789, -669, -789\}\},
+05313 \textcolor{comment}{/* GC.GA..UG */}
+05314 \{\{ DEF, -709, -739, -619, -739\},
+05315 \{ -769,-1428,-1458,-1338,-1458\},
+05316 \{ -529,-1188,-1218,-1098,-1218\},
+05317 \{ -709,-1368,-1398,-1278,-1398\},
+05318 \{ -599,-1258,-1288,-1168,-1288\}\},
+05319 \textcolor{comment}{/* GC.GC..UG */}
+05320 \{\{ DEF, -709, -739, -619, -739\},
+05321 \{ -839,-1498,-1528,-1408,-1528\},
+05322 \{ -529,-1188,-1218,-1098,-1218\},
+05323 \{ -859,-1518,-1548,-1428,-1548\},
+05324 \{ -489,-1148,-1178,-1058,-1178\}\},
+05325 \textcolor{comment}{/* GC.GG..UG */}
+05326 \{\{ DEF, -709, -739, -619, -739\},
+05327 \{-1009,-1668,-1698,-1578,-1698\},
+05328 \{ -409,-1068,-1098, -978,-1098\},
+05329 \{ -969,-1628,-1658,-1538,-1658\},
+05330 \{ -599,-1258,-1288,-1168,-1288\}\},
+05331 \textcolor{comment}{/* GC.GU..UG */}
+05332 \{\{ DEF, -709, -739, -619, -739\},
+05333 \{ -859,-1518,-1548,-1428,-1548\},
+05334 \{ -529,-1188,-1218,-1098,-1218\},
+05335 \{ -859,-1518,-1548,-1428,-1548\},
+05336 \{ -409,-1068,-1098, -978,-1098\}\}\},
+05337 \textcolor{comment}{/* GC.U@..UG */}
+05338 \{\{\{ DEF, -499, -499, -499, -569\},
+05339 \{ -100, -549, -549, -549, -619\},
+05340 \{ -100, -549, -549, -549, -619\},
+05341 \{ -100, -549, -549, -549, -619\},
+05342 \{ -100, -549, -549, -549, -619\}\},
+05343 \textcolor{comment}{/* GC.UA..UG */}
+05344 \{\{ DEF, -499, -499, -499, -569\},
+05345 \{ -769,-1218,-1218,-1218,-1288\},
+05346 \{ -529, -978, -978, -978,-1048\},
+05347 \{ -709,-1158,-1158,-1158,-1228\},
+05348 \{ -599,-1048,-1048,-1048,-1118\}\},
+05349 \textcolor{comment}{/* GC.UC..UG */}
+05350 \{\{ DEF, -499, -499, -499, -569\},
+05351 \{ -839,-1288,-1288,-1288,-1358\},
+05352 \{ -529, -978, -978, -978,-1048\},
+05353 \{ -859,-1308,-1308,-1308,-1378\},
+05354 \{ -489, -938, -938, -938,-1008\}\},
+05355 \textcolor{comment}{/* GC.UG..UG */}
+05356 \{\{ DEF, -499, -499, -499, -569\},
+05357 \{-1009,-1458,-1458,-1458,-1528\},
+05358 \{ -409, -858, -858, -858, -928\},
+05359 \{ -969,-1418,-1418,-1418,-1488\},
+05360 \{ -599,-1048,-1048,-1048,-1118\}\},
+05361 \textcolor{comment}{/* GC.UU..UG */}
+05362 \{\{ DEF, -499, -499, -499, -569\},
+05363 \{ -859,-1308,-1308,-1308,-1378\},
+05364 \{ -529, -978, -978, -978,-1048\},
+05365 \{ -859,-1308,-1308,-1308,-1378\},
+05366 \{ -409, -858, -858, -858, -928\}\}\}\},
+05367 \textcolor{comment}{/* GC.@@..AU */}
+05368 \{\{\{\{ 0, 0, 0, 0, 0\},
+05369 \{ DEF, DEF, DEF, DEF, DEF\},
+05370 \{ DEF, DEF, DEF, DEF, DEF\},
+05371 \{ DEF, DEF, DEF, DEF, DEF\},
+05372 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05373 \textcolor{comment}{/* GC.@A..AU */}
+05374 \{\{ 0, 0, 0, 0, 0\},
+05375 \{ -429, -429, -429, -429, -429\},
+05376 \{ -259, -259, -259, -259, -259\},
+05377 \{ -339, -339, -339, -339, -339\},
+05378 \{ -329, -329, -329, -329, -329\}\},
+05379 \textcolor{comment}{/* GC.@C..AU */}
+05380 \{\{ 0, 0, 0, 0, 0\},
+05381 \{ -599, -599, -599, -599, -599\},
+05382 \{ -239, -239, -239, -239, -239\},
+05383 \{ -689, -689, -689, -689, -689\},
+05384 \{ -329, -329, -329, -329, -329\}\},
+05385 \textcolor{comment}{/* GC.@G..AU */}
+05386 \{\{ 0, 0, 0, 0, 0\},
+05387 \{ -599, -599, -599, -599, -599\},
+05388 \{ -239, -239, -239, -239, -239\},
+05389 \{ -689, -689, -689, -689, -689\},
+05390 \{ -329, -329, -329, -329, -329\}\},
+05391 \textcolor{comment}{/* GC.@U..AU */}
+05392 \{\{ 0, 0, 0, 0, 0\},
+05393 \{ -599, -599, -599, -599, -599\},
+05394 \{ -239, -239, -239, -239, -239\},
+05395 \{ -689, -689, -689, -689, -689\},
+05396 \{ -329, -329, -329, -329, -329\}\}\},
+05397 \textcolor{comment}{/* GC.A@..AU */}
+05398 \{\{\{ DEF, -519, -879, -559, -879\},
+05399 \{ -100, -569, -929, -609, -929\},
+05400 \{ -100, -569, -929, -609, -929\},
+05401 \{ -100, -569, -929, -609, -929\},
+05402 \{ -100, -569, -929, -609, -929\}\},
+05403 \textcolor{comment}{/* GC.AA..AU */}
+05404 \{\{ DEF, -519, -879, -559, -879\},
+05405 \{ -479, -948,-1308, -988,-1308\},
+05406 \{ -309, -778,-1138, -818,-1138\},
+05407 \{ -389, -858,-1218, -898,-1218\},
+05408 \{ -379, -848,-1208, -888,-1208\}\},
+05409 \textcolor{comment}{/* GC.AC..AU */}
+05410 \{\{ DEF, -519, -879, -559, -879\},
+05411 \{ -649,-1118,-1478,-1158,-1478\},
+05412 \{ -289, -758,-1118, -798,-1118\},
+05413 \{ -739,-1208,-1568,-1248,-1568\},
+05414 \{ -379, -848,-1208, -888,-1208\}\},
+05415 \textcolor{comment}{/* GC.AG..AU */}
+05416 \{\{ DEF, -519, -879, -559, -879\},
+05417 \{ -649,-1118,-1478,-1158,-1478\},
+05418 \{ -289, -758,-1118, -798,-1118\},
+05419 \{ -739,-1208,-1568,-1248,-1568\},
+05420 \{ -379, -848,-1208, -888,-1208\}\},
+05421 \textcolor{comment}{/* GC.AU..AU */}
+05422 \{\{ DEF, -519, -879, -559, -879\},
+05423 \{ -649,-1118,-1478,-1158,-1478\},
+05424 \{ -289, -758,-1118, -798,-1118\},
+05425 \{ -739,-1208,-1568,-1248,-1568\},
+05426 \{ -379, -848,-1208, -888,-1208\}\}\},
+05427 \textcolor{comment}{/* GC.C@..AU */}
+05428 \{\{\{ DEF, -719, -309, -309, -389\},
+05429 \{ -100, -769, -359, -359, -439\},
+05430 \{ -100, -769, -359, -359, -439\},
+05431 \{ -100, -769, -359, -359, -439\},
+05432 \{ -100, -769, -359, -359, -439\}\},
+05433 \textcolor{comment}{/* GC.CA..AU */}
+05434 \{\{ DEF, -719, -309, -309, -389\},
+05435 \{ -479,-1148, -738, -738, -818\},
+05436 \{ -309, -978, -568, -568, -648\},
+05437 \{ -389,-1058, -648, -648, -728\},
+05438 \{ -379,-1048, -638, -638, -718\}\},
+05439 \textcolor{comment}{/* GC.CC..AU */}
+05440 \{\{ DEF, -719, -309, -309, -389\},
+05441 \{ -649,-1318, -908, -908, -988\},
+05442 \{ -289, -958, -548, -548, -628\},
+05443 \{ -739,-1408, -998, -998,-1078\},
+05444 \{ -379,-1048, -638, -638, -718\}\},
+05445 \textcolor{comment}{/* GC.CG..AU */}
+05446 \{\{ DEF, -719, -309, -309, -389\},
+05447 \{ -649,-1318, -908, -908, -988\},
+05448 \{ -289, -958, -548, -548, -628\},
+05449 \{ -739,-1408, -998, -998,-1078\},
+05450 \{ -379,-1048, -638, -638, -718\}\},
+05451 \textcolor{comment}{/* GC.CU..AU */}
+05452 \{\{ DEF, -719, -309, -309, -389\},
+05453 \{ -649,-1318, -908, -908, -988\},
+05454 \{ -289, -958, -548, -548, -628\},
+05455 \{ -739,-1408, -998, -998,-1078\},
+05456 \{ -379,-1048, -638, -638, -718\}\}\},
+05457 \textcolor{comment}{/* GC.G@..AU */}
+05458 \{\{\{ DEF, -709, -739, -619, -739\},
+05459 \{ -100, -759, -789, -669, -789\},
+05460 \{ -100, -759, -789, -669, -789\},
+05461 \{ -100, -759, -789, -669, -789\},
+05462 \{ -100, -759, -789, -669, -789\}\},
+05463 \textcolor{comment}{/* GC.GA..AU */}
+05464 \{\{ DEF, -709, -739, -619, -739\},
+05465 \{ -479,-1138,-1168,-1048,-1168\},
+05466 \{ -309, -968, -998, -878, -998\},
+05467 \{ -389,-1048,-1078, -958,-1078\},
+05468 \{ -379,-1038,-1068, -948,-1068\}\},
+05469 \textcolor{comment}{/* GC.GC..AU */}
+05470 \{\{ DEF, -709, -739, -619, -739\},
+05471 \{ -649,-1308,-1338,-1218,-1338\},
+05472 \{ -289, -948, -978, -858, -978\},
+05473 \{ -739,-1398,-1428,-1308,-1428\},
+05474 \{ -379,-1038,-1068, -948,-1068\}\},
+05475 \textcolor{comment}{/* GC.GG..AU */}
+05476 \{\{ DEF, -709, -739, -619, -739\},
+05477 \{ -649,-1308,-1338,-1218,-1338\},
+05478 \{ -289, -948, -978, -858, -978\},
+05479 \{ -739,-1398,-1428,-1308,-1428\},
+05480 \{ -379,-1038,-1068, -948,-1068\}\},
+05481 \textcolor{comment}{/* GC.GU..AU */}
+05482 \{\{ DEF, -709, -739, -619, -739\},
+05483 \{ -649,-1308,-1338,-1218,-1338\},
+05484 \{ -289, -948, -978, -858, -978\},
+05485 \{ -739,-1398,-1428,-1308,-1428\},
+05486 \{ -379,-1038,-1068, -948,-1068\}\}\},
+05487 \textcolor{comment}{/* GC.U@..AU */}
+05488 \{\{\{ DEF, -499, -499, -499, -569\},
+05489 \{ -100, -549, -549, -549, -619\},
+05490 \{ -100, -549, -549, -549, -619\},
+05491 \{ -100, -549, -549, -549, -619\},
+05492 \{ -100, -549, -549, -549, -619\}\},
+05493 \textcolor{comment}{/* GC.UA..AU */}
+05494 \{\{ DEF, -499, -499, -499, -569\},
+05495 \{ -479, -928, -928, -928, -998\},
+05496 \{ -309, -758, -758, -758, -828\},
+05497 \{ -389, -838, -838, -838, -908\},
+05498 \{ -379, -828, -828, -828, -898\}\},
+05499 \textcolor{comment}{/* GC.UC..AU */}
+05500 \{\{ DEF, -499, -499, -499, -569\},
+05501 \{ -649,-1098,-1098,-1098,-1168\},
+05502 \{ -289, -738, -738, -738, -808\},
+05503 \{ -739,-1188,-1188,-1188,-1258\},
+05504 \{ -379, -828, -828, -828, -898\}\},
+05505 \textcolor{comment}{/* GC.UG..AU */}
+05506 \{\{ DEF, -499, -499, -499, -569\},
+05507 \{ -649,-1098,-1098,-1098,-1168\},
+05508 \{ -289, -738, -738, -738, -808\},
+05509 \{ -739,-1188,-1188,-1188,-1258\},
+05510 \{ -379, -828, -828, -828, -898\}\},
+05511 \textcolor{comment}{/* GC.UU..AU */}
+05512 \{\{ DEF, -499, -499, -499, -569\},
+05513 \{ -649,-1098,-1098,-1098,-1168\},
+05514 \{ -289, -738, -738, -738, -808\},
+05515 \{ -739,-1188,-1188,-1188,-1258\},
+05516 \{ -379, -828, -828, -828, -898\}\}\}\},
+05517 \textcolor{comment}{/* GC.@@..UA */}
+05518 \{\{\{\{ 0, 0, 0, 0, 0\},
+05519 \{ DEF, DEF, DEF, DEF, DEF\},
+05520 \{ DEF, DEF, DEF, DEF, DEF\},
+05521 \{ DEF, DEF, DEF, DEF, DEF\},
+05522 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05523 \textcolor{comment}{/* GC.@A..UA */}
+05524 \{\{ 0, 0, 0, 0, 0\},
+05525 \{ -399, -399, -399, -399, -399\},
+05526 \{ -429, -429, -429, -429, -429\},
+05527 \{ -379, -379, -379, -379, -379\},
+05528 \{ -279, -279, -279, -279, -279\}\},
+05529 \textcolor{comment}{/* GC.@C..UA */}
+05530 \{\{ 0, 0, 0, 0, 0\},
+05531 \{ -629, -629, -629, -629, -629\},
+05532 \{ -509, -509, -509, -509, -509\},
+05533 \{ -679, -679, -679, -679, -679\},
+05534 \{ -139, -139, -139, -139, -139\}\},
+05535 \textcolor{comment}{/* GC.@G..UA */}
+05536 \{\{ 0, 0, 0, 0, 0\},
+05537 \{ -889, -889, -889, -889, -889\},
+05538 \{ -199, -199, -199, -199, -199\},
+05539 \{ -889, -889, -889, -889, -889\},
+05540 \{ -279, -279, -279, -279, -279\}\},
+05541 \textcolor{comment}{/* GC.@U..UA */}
+05542 \{\{ 0, 0, 0, 0, 0\},
+05543 \{ -589, -589, -589, -589, -589\},
+05544 \{ -179, -179, -179, -179, -179\},
+05545 \{ -679, -679, -679, -679, -679\},
+05546 \{ -140, -140, -140, -140, -140\}\}\},
+05547 \textcolor{comment}{/* GC.A@..UA */}
+05548 \{\{\{ DEF, -519, -879, -559, -879\},
+05549 \{ -100, -569, -929, -609, -929\},
+05550 \{ -100, -569, -929, -609, -929\},
+05551 \{ -100, -569, -929, -609, -929\},
+05552 \{ -100, -569, -929, -609, -929\}\},
+05553 \textcolor{comment}{/* GC.AA..UA */}
+05554 \{\{ DEF, -519, -879, -559, -879\},
+05555 \{ -449, -918,-1278, -958,-1278\},
+05556 \{ -479, -948,-1308, -988,-1308\},
+05557 \{ -429, -898,-1258, -938,-1258\},
+05558 \{ -329, -798,-1158, -838,-1158\}\},
+05559 \textcolor{comment}{/* GC.AC..UA */}
+05560 \{\{ DEF, -519, -879, -559, -879\},
+05561 \{ -679,-1148,-1508,-1188,-1508\},
+05562 \{ -559,-1028,-1388,-1068,-1388\},
+05563 \{ -729,-1198,-1558,-1238,-1558\},
+05564 \{ -189, -658,-1018, -698,-1018\}\},
+05565 \textcolor{comment}{/* GC.AG..UA */}
+05566 \{\{ DEF, -519, -879, -559, -879\},
+05567 \{ -939,-1408,-1768,-1448,-1768\},
+05568 \{ -249, -718,-1078, -758,-1078\},
+05569 \{ -939,-1408,-1768,-1448,-1768\},
+05570 \{ -329, -798,-1158, -838,-1158\}\},
+05571 \textcolor{comment}{/* GC.AU..UA */}
+05572 \{\{ DEF, -519, -879, -559, -879\},
+05573 \{ -639,-1108,-1468,-1148,-1468\},
+05574 \{ -229, -698,-1058, -738,-1058\},
+05575 \{ -729,-1198,-1558,-1238,-1558\},
+05576 \{ -190, -659,-1019, -699,-1019\}\}\},
+05577 \textcolor{comment}{/* GC.C@..UA */}
+05578 \{\{\{ DEF, -719, -309, -309, -389\},
+05579 \{ -100, -769, -359, -359, -439\},
+05580 \{ -100, -769, -359, -359, -439\},
+05581 \{ -100, -769, -359, -359, -439\},
+05582 \{ -100, -769, -359, -359, -439\}\},
+05583 \textcolor{comment}{/* GC.CA..UA */}
+05584 \{\{ DEF, -719, -309, -309, -389\},
+05585 \{ -449,-1118, -708, -708, -788\},
+05586 \{ -479,-1148, -738, -738, -818\},
+05587 \{ -429,-1098, -688, -688, -768\},
+05588 \{ -329, -998, -588, -588, -668\}\},
+05589 \textcolor{comment}{/* GC.CC..UA */}
+05590 \{\{ DEF, -719, -309, -309, -389\},
+05591 \{ -679,-1348, -938, -938,-1018\},
+05592 \{ -559,-1228, -818, -818, -898\},
+05593 \{ -729,-1398, -988, -988,-1068\},
+05594 \{ -189, -858, -448, -448, -528\}\},
+05595 \textcolor{comment}{/* GC.CG..UA */}
+05596 \{\{ DEF, -719, -309, -309, -389\},
+05597 \{ -939,-1608,-1198,-1198,-1278\},
+05598 \{ -249, -918, -508, -508, -588\},
+05599 \{ -939,-1608,-1198,-1198,-1278\},
+05600 \{ -329, -998, -588, -588, -668\}\},
+05601 \textcolor{comment}{/* GC.CU..UA */}
+05602 \{\{ DEF, -719, -309, -309, -389\},
+05603 \{ -639,-1308, -898, -898, -978\},
+05604 \{ -229, -898, -488, -488, -568\},
+05605 \{ -729,-1398, -988, -988,-1068\},
+05606 \{ -190, -859, -449, -449, -529\}\}\},
+05607 \textcolor{comment}{/* GC.G@..UA */}
+05608 \{\{\{ DEF, -709, -739, -619, -739\},
+05609 \{ -100, -759, -789, -669, -789\},
+05610 \{ -100, -759, -789, -669, -789\},
+05611 \{ -100, -759, -789, -669, -789\},
+05612 \{ -100, -759, -789, -669, -789\}\},
+05613 \textcolor{comment}{/* GC.GA..UA */}
+05614 \{\{ DEF, -709, -739, -619, -739\},
+05615 \{ -449,-1108,-1138,-1018,-1138\},
+05616 \{ -479,-1138,-1168,-1048,-1168\},
+05617 \{ -429,-1088,-1118, -998,-1118\},
+05618 \{ -329, -988,-1018, -898,-1018\}\},
+05619 \textcolor{comment}{/* GC.GC..UA */}
+05620 \{\{ DEF, -709, -739, -619, -739\},
+05621 \{ -679,-1338,-1368,-1248,-1368\},
+05622 \{ -559,-1218,-1248,-1128,-1248\},
+05623 \{ -729,-1388,-1418,-1298,-1418\},
+05624 \{ -189, -848, -878, -758, -878\}\},
+05625 \textcolor{comment}{/* GC.GG..UA */}
+05626 \{\{ DEF, -709, -739, -619, -739\},
+05627 \{ -939,-1598,-1628,-1508,-1628\},
+05628 \{ -249, -908, -938, -818, -938\},
+05629 \{ -939,-1598,-1628,-1508,-1628\},
+05630 \{ -329, -988,-1018, -898,-1018\}\},
+05631 \textcolor{comment}{/* GC.GU..UA */}
+05632 \{\{ DEF, -709, -739, -619, -739\},
+05633 \{ -639,-1298,-1328,-1208,-1328\},
+05634 \{ -229, -888, -918, -798, -918\},
+05635 \{ -729,-1388,-1418,-1298,-1418\},
+05636 \{ -190, -849, -879, -759, -879\}\}\},
+05637 \textcolor{comment}{/* GC.U@..UA */}
+05638 \{\{\{ DEF, -499, -499, -499, -569\},
+05639 \{ -100, -549, -549, -549, -619\},
+05640 \{ -100, -549, -549, -549, -619\},
+05641 \{ -100, -549, -549, -549, -619\},
+05642 \{ -100, -549, -549, -549, -619\}\},
+05643 \textcolor{comment}{/* GC.UA..UA */}
+05644 \{\{ DEF, -499, -499, -499, -569\},
+05645 \{ -449, -898, -898, -898, -968\},
+05646 \{ -479, -928, -928, -928, -998\},
+05647 \{ -429, -878, -878, -878, -948\},
+05648 \{ -329, -778, -778, -778, -848\}\},
+05649 \textcolor{comment}{/* GC.UC..UA */}
+05650 \{\{ DEF, -499, -499, -499, -569\},
+05651 \{ -679,-1128,-1128,-1128,-1198\},
+05652 \{ -559,-1008,-1008,-1008,-1078\},
+05653 \{ -729,-1178,-1178,-1178,-1248\},
+05654 \{ -189, -638, -638, -638, -708\}\},
+05655 \textcolor{comment}{/* GC.UG..UA */}
+05656 \{\{ DEF, -499, -499, -499, -569\},
+05657 \{ -939,-1388,-1388,-1388,-1458\},
+05658 \{ -249, -698, -698, -698, -768\},
+05659 \{ -939,-1388,-1388,-1388,-1458\},
+05660 \{ -329, -778, -778, -778, -848\}\},
+05661 \textcolor{comment}{/* GC.UU..UA */}
+05662 \{\{ DEF, -499, -499, -499, -569\},
+05663 \{ -639,-1088,-1088,-1088,-1158\},
+05664 \{ -229, -678, -678, -678, -748\},
+05665 \{ -729,-1178,-1178,-1178,-1248\},
+05666 \{ -190, -639, -639, -639, -709\}\}\}\},
+05667 \textcolor{comment}{/* GC.@@.. @ */}
+05668 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+05669 \{ DEF, DEF, DEF, DEF, DEF\},
+05670 \{ DEF, DEF, DEF, DEF, DEF\},
+05671 \{ DEF, DEF, DEF, DEF, DEF\},
+05672 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05673 \textcolor{comment}{/* GC.@A.. @ */}
+05674 \{\{ DEF, DEF, DEF, DEF, DEF\},
+05675 \{ DEF, DEF, DEF, DEF, DEF\},
+05676 \{ DEF, DEF, DEF, DEF, DEF\},
+05677 \{ DEF, DEF, DEF, DEF, DEF\},
+05678 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05679 \textcolor{comment}{/* GC.@C.. @ */}
+05680 \{\{ DEF, DEF, DEF, DEF, DEF\},
+05681 \{ DEF, DEF, DEF, DEF, DEF\},
+05682 \{ DEF, DEF, DEF, DEF, DEF\},
+05683 \{ DEF, DEF, DEF, DEF, DEF\},
+05684 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05685 \textcolor{comment}{/* GC.@G.. @ */}
+05686 \{\{ DEF, DEF, DEF, DEF, DEF\},
+05687 \{ DEF, DEF, DEF, DEF, DEF\},
+05688 \{ DEF, DEF, DEF, DEF, DEF\},
+05689 \{ DEF, DEF, DEF, DEF, DEF\},
+05690 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05691 \textcolor{comment}{/* GC.@U.. @ */}
+05692 \{\{ DEF, DEF, DEF, DEF, DEF\},
+05693 \{ DEF, DEF, DEF, DEF, DEF\},
+05694 \{ DEF, DEF, DEF, DEF, DEF\},
+05695 \{ DEF, DEF, DEF, DEF, DEF\},
+05696 \{ DEF, DEF, DEF, DEF, DEF\}\}\},
+05697 \textcolor{comment}{/* GC.A@.. @ */}
+05698 \{\{\{ -100, -569, -929, -609, -929\},
+05699 \{ -100, -569, -929, -609, -929\},
+05700 \{ -100, -569, -929, -609, -929\},
+05701 \{ -100, -569, -929, -609, -929\},
+05702 \{ -100, -569, -929, -609, -929\}\},
+05703 \textcolor{comment}{/* GC.AA.. @ */}
+05704 \{\{ -100, -569, -929, -609, -929\},
+05705 \{ -100, -569, -929, -609, -929\},
+05706 \{ -100, -569, -929, -609, -929\},
+05707 \{ -100, -569, -929, -609, -929\},
+05708 \{ -100, -569, -929, -609, -929\}\},
+05709 \textcolor{comment}{/* GC.AC.. @ */}
+05710 \{\{ -100, -569, -929, -609, -929\},
+05711 \{ -100, -569, -929, -609, -929\},
+05712 \{ -100, -569, -929, -609, -929\},
+05713 \{ -100, -569, -929, -609, -929\},
+05714 \{ -100, -569, -929, -609, -929\}\},
+05715 \textcolor{comment}{/* GC.AG.. @ */}
+05716 \{\{ -100, -569, -929, -609, -929\},
+05717 \{ -100, -569, -929, -609, -929\},
+05718 \{ -100, -569, -929, -609, -929\},
+05719 \{ -100, -569, -929, -609, -929\},
+05720 \{ -100, -569, -929, -609, -929\}\},
+05721 \textcolor{comment}{/* GC.AU.. @ */}
+05722 \{\{ -100, -569, -929, -609, -929\},
+05723 \{ -100, -569, -929, -609, -929\},
+05724 \{ -100, -569, -929, -609, -929\},
+05725 \{ -100, -569, -929, -609, -929\},
+05726 \{ -100, -569, -929, -609, -929\}\}\},
+05727 \textcolor{comment}{/* GC.C@.. @ */}
+05728 \{\{\{ -100, -769, -359, -359, -439\},
+05729 \{ -100, -769, -359, -359, -439\},
+05730 \{ -100, -769, -359, -359, -439\},
+05731 \{ -100, -769, -359, -359, -439\},
+05732 \{ -100, -769, -359, -359, -439\}\},
+05733 \textcolor{comment}{/* GC.CA.. @ */}
+05734 \{\{ -100, -769, -359, -359, -439\},
+05735 \{ -100, -769, -359, -359, -439\},
+05736 \{ -100, -769, -359, -359, -439\},
+05737 \{ -100, -769, -359, -359, -439\},
+05738 \{ -100, -769, -359, -359, -439\}\},
+05739 \textcolor{comment}{/* GC.CC.. @ */}
+05740 \{\{ -100, -769, -359, -359, -439\},
+05741 \{ -100, -769, -359, -359, -439\},
+05742 \{ -100, -769, -359, -359, -439\},
+05743 \{ -100, -769, -359, -359, -439\},
+05744 \{ -100, -769, -359, -359, -439\}\},
+05745 \textcolor{comment}{/* GC.CG.. @ */}
+05746 \{\{ -100, -769, -359, -359, -439\},
+05747 \{ -100, -769, -359, -359, -439\},
+05748 \{ -100, -769, -359, -359, -439\},
+05749 \{ -100, -769, -359, -359, -439\},
+05750 \{ -100, -769, -359, -359, -439\}\},
+05751 \textcolor{comment}{/* GC.CU.. @ */}
+05752 \{\{ -100, -769, -359, -359, -439\},
+05753 \{ -100, -769, -359, -359, -439\},
+05754 \{ -100, -769, -359, -359, -439\},
+05755 \{ -100, -769, -359, -359, -439\},
+05756 \{ -100, -769, -359, -359, -439\}\}\},
+05757 \textcolor{comment}{/* GC.G@.. @ */}
+05758 \{\{\{ -100, -759, -789, -669, -789\},
+05759 \{ -100, -759, -789, -669, -789\},
+05760 \{ -100, -759, -789, -669, -789\},
+05761 \{ -100, -759, -789, -669, -789\},
+05762 \{ -100, -759, -789, -669, -789\}\},
+05763 \textcolor{comment}{/* GC.GA.. @ */}
+05764 \{\{ -100, -759, -789, -669, -789\},
+05765 \{ -100, -759, -789, -669, -789\},
+05766 \{ -100, -759, -789, -669, -789\},
+05767 \{ -100, -759, -789, -669, -789\},
+05768 \{ -100, -759, -789, -669, -789\}\},
+05769 \textcolor{comment}{/* GC.GC.. @ */}
+05770 \{\{ -100, -759, -789, -669, -789\},
+05771 \{ -100, -759, -789, -669, -789\},
+05772 \{ -100, -759, -789, -669, -789\},
+05773 \{ -100, -759, -789, -669, -789\},
+05774 \{ -100, -759, -789, -669, -789\}\},
+05775 \textcolor{comment}{/* GC.GG.. @ */}
+05776 \{\{ -100, -759, -789, -669, -789\},
+05777 \{ -100, -759, -789, -669, -789\},
+05778 \{ -100, -759, -789, -669, -789\},
+05779 \{ -100, -759, -789, -669, -789\},
+05780 \{ -100, -759, -789, -669, -789\}\},
+05781 \textcolor{comment}{/* GC.GU.. @ */}
+05782 \{\{ -100, -759, -789, -669, -789\},
+05783 \{ -100, -759, -789, -669, -789\},
+05784 \{ -100, -759, -789, -669, -789\},
+05785 \{ -100, -759, -789, -669, -789\},
+05786 \{ -100, -759, -789, -669, -789\}\}\},
+05787 \textcolor{comment}{/* GC.U@.. @ */}
+05788 \{\{\{ -100, -549, -549, -549, -619\},
+05789 \{ -100, -549, -549, -549, -619\},
+05790 \{ -100, -549, -549, -549, -619\},
+05791 \{ -100, -549, -549, -549, -619\},
+05792 \{ -100, -549, -549, -549, -619\}\},
+05793 \textcolor{comment}{/* GC.UA.. @ */}
+05794 \{\{ -100, -549, -549, -549, -619\},
+05795 \{ -100, -549, -549, -549, -619\},
+05796 \{ -100, -549, -549, -549, -619\},
+05797 \{ -100, -549, -549, -549, -619\},
+05798 \{ -100, -549, -549, -549, -619\}\},
+05799 \textcolor{comment}{/* GC.UC.. @ */}
+05800 \{\{ -100, -549, -549, -549, -619\},
+05801 \{ -100, -549, -549, -549, -619\},
+05802 \{ -100, -549, -549, -549, -619\},
+05803 \{ -100, -549, -549, -549, -619\},
+05804 \{ -100, -549, -549, -549, -619\}\},
+05805 \textcolor{comment}{/* GC.UG.. @ */}
+05806 \{\{ -100, -549, -549, -549, -619\},
+05807 \{ -100, -549, -549, -549, -619\},
+05808 \{ -100, -549, -549, -549, -619\},
+05809 \{ -100, -549, -549, -549, -619\},
+05810 \{ -100, -549, -549, -549, -619\}\},
+05811 \textcolor{comment}{/* GC.UU.. @ */}
+05812 \{\{ -100, -549, -549, -549, -619\},
+05813 \{ -100, -549, -549, -549, -619\},
+05814 \{ -100, -549, -549, -549, -619\},
+05815 \{ -100, -549, -549, -549, -619\},
+05816 \{ -100, -549, -549, -549, -619\}\}\}\}\},
+05817 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+05818 \textcolor{comment}{/* GU.@@..CG */}
+05819 \{\{\{\{ 0, 0, 0, 0, 0\},
+05820 \{ DEF, DEF, DEF, DEF, DEF\},
+05821 \{ DEF, DEF, DEF, DEF, DEF\},
+05822 \{ DEF, DEF, DEF, DEF, DEF\},
+05823 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05824 \textcolor{comment}{/* GU.@A..CG */}
+05825 \{\{ 0, 0, 0, 0, 0\},
+05826 \{-1029,-1029,-1029,-1029,-1029\},
+05827 \{ -519, -519, -519, -519, -519\},
+05828 \{ -939, -939, -939, -939, -939\},
+05829 \{ -809, -809, -809, -809, -809\}\},
+05830 \textcolor{comment}{/* GU.@C..CG */}
+05831 \{\{ 0, 0, 0, 0, 0\},
+05832 \{ -949, -949, -949, -949, -949\},
+05833 \{ -449, -449, -449, -449, -449\},
+05834 \{ -939, -939, -939, -939, -939\},
+05835 \{ -739, -739, -739, -739, -739\}\},
+05836 \textcolor{comment}{/* GU.@G..CG */}
+05837 \{\{ 0, 0, 0, 0, 0\},
+05838 \{-1029,-1029,-1029,-1029,-1029\},
+05839 \{ -519, -519, -519, -519, -519\},
+05840 \{ -939, -939, -939, -939, -939\},
+05841 \{ -809, -809, -809, -809, -809\}\},
+05842 \textcolor{comment}{/* GU.@U..CG */}
+05843 \{\{ 0, 0, 0, 0, 0\},
+05844 \{-1029,-1029,-1029,-1029,-1029\},
+05845 \{ -669, -669, -669, -669, -669\},
+05846 \{ -939, -939, -939, -939, -939\},
+05847 \{ -859, -859, -859, -859, -859\}\}\},
+05848 \textcolor{comment}{/* GU.A@..CG */}
+05849 \{\{\{ DEF, -429, -599, -599, -599\},
+05850 \{ -100, -479, -649, -649, -649\},
+05851 \{ -100, -479, -649, -649, -649\},
+05852 \{ -100, -479, -649, -649, -649\},
+05853 \{ -100, -479, -649, -649, -649\}\},
+05854 \textcolor{comment}{/* GU.AA..CG */}
+05855 \{\{ DEF, -429, -599, -599, -599\},
+05856 \{-1079,-1458,-1628,-1628,-1628\},
+05857 \{ -569, -948,-1118,-1118,-1118\},
+05858 \{ -989,-1368,-1538,-1538,-1538\},
+05859 \{ -859,-1238,-1408,-1408,-1408\}\},
+05860 \textcolor{comment}{/* GU.AC..CG */}
+05861 \{\{ DEF, -429, -599, -599, -599\},
+05862 \{ -999,-1378,-1548,-1548,-1548\},
+05863 \{ -499, -878,-1048,-1048,-1048\},
+05864 \{ -989,-1368,-1538,-1538,-1538\},
+05865 \{ -789,-1168,-1338,-1338,-1338\}\},
+05866 \textcolor{comment}{/* GU.AG..CG */}
+05867 \{\{ DEF, -429, -599, -599, -599\},
+05868 \{-1079,-1458,-1628,-1628,-1628\},
+05869 \{ -569, -948,-1118,-1118,-1118\},
+05870 \{ -989,-1368,-1538,-1538,-1538\},
+05871 \{ -859,-1238,-1408,-1408,-1408\}\},
+05872 \textcolor{comment}{/* GU.AU..CG */}
+05873 \{\{ DEF, -429, -599, -599, -599\},
+05874 \{-1079,-1458,-1628,-1628,-1628\},
+05875 \{ -719,-1098,-1268,-1268,-1268\},
+05876 \{ -989,-1368,-1538,-1538,-1538\},
+05877 \{ -909,-1288,-1458,-1458,-1458\}\}\},
+05878 \textcolor{comment}{/* GU.C@..CG */}
+05879 \{\{\{ DEF, -259, -239, -239, -239\},
+05880 \{ -100, -309, -289, -289, -289\},
+05881 \{ -100, -309, -289, -289, -289\},
+05882 \{ -100, -309, -289, -289, -289\},
+05883 \{ -100, -309, -289, -289, -289\}\},
+05884 \textcolor{comment}{/* GU.CA..CG */}
+05885 \{\{ DEF, -259, -239, -239, -239\},
+05886 \{-1079,-1288,-1268,-1268,-1268\},
+05887 \{ -569, -778, -758, -758, -758\},
+05888 \{ -989,-1198,-1178,-1178,-1178\},
+05889 \{ -859,-1068,-1048,-1048,-1048\}\},
+05890 \textcolor{comment}{/* GU.CC..CG */}
+05891 \{\{ DEF, -259, -239, -239, -239\},
+05892 \{ -999,-1208,-1188,-1188,-1188\},
+05893 \{ -499, -708, -688, -688, -688\},
+05894 \{ -989,-1198,-1178,-1178,-1178\},
+05895 \{ -789, -998, -978, -978, -978\}\},
+05896 \textcolor{comment}{/* GU.CG..CG */}
+05897 \{\{ DEF, -259, -239, -239, -239\},
+05898 \{-1079,-1288,-1268,-1268,-1268\},
+05899 \{ -569, -778, -758, -758, -758\},
+05900 \{ -989,-1198,-1178,-1178,-1178\},
+05901 \{ -859,-1068,-1048,-1048,-1048\}\},
+05902 \textcolor{comment}{/* GU.CU..CG */}
+05903 \{\{ DEF, -259, -239, -239, -239\},
+05904 \{-1079,-1288,-1268,-1268,-1268\},
+05905 \{ -719, -928, -908, -908, -908\},
+05906 \{ -989,-1198,-1178,-1178,-1178\},
+05907 \{ -909,-1118,-1098,-1098,-1098\}\}\},
+05908 \textcolor{comment}{/* GU.G@..CG */}
+05909 \{\{\{ DEF, -339, -689, -689, -689\},
+05910 \{ -100, -389, -739, -739, -739\},
+05911 \{ -100, -389, -739, -739, -739\},
+05912 \{ -100, -389, -739, -739, -739\},
+05913 \{ -100, -389, -739, -739, -739\}\},
+05914 \textcolor{comment}{/* GU.GA..CG */}
+05915 \{\{ DEF, -339, -689, -689, -689\},
+05916 \{-1079,-1368,-1718,-1718,-1718\},
+05917 \{ -569, -858,-1208,-1208,-1208\},
+05918 \{ -989,-1278,-1628,-1628,-1628\},
+05919 \{ -859,-1148,-1498,-1498,-1498\}\},
+05920 \textcolor{comment}{/* GU.GC..CG */}
+05921 \{\{ DEF, -339, -689, -689, -689\},
+05922 \{ -999,-1288,-1638,-1638,-1638\},
+05923 \{ -499, -788,-1138,-1138,-1138\},
+05924 \{ -989,-1278,-1628,-1628,-1628\},
+05925 \{ -789,-1078,-1428,-1428,-1428\}\},
+05926 \textcolor{comment}{/* GU.GG..CG */}
+05927 \{\{ DEF, -339, -689, -689, -689\},
+05928 \{-1079,-1368,-1718,-1718,-1718\},
+05929 \{ -569, -858,-1208,-1208,-1208\},
+05930 \{ -989,-1278,-1628,-1628,-1628\},
+05931 \{ -859,-1148,-1498,-1498,-1498\}\},
+05932 \textcolor{comment}{/* GU.GU..CG */}
+05933 \{\{ DEF, -339, -689, -689, -689\},
+05934 \{-1079,-1368,-1718,-1718,-1718\},
+05935 \{ -719,-1008,-1358,-1358,-1358\},
+05936 \{ -989,-1278,-1628,-1628,-1628\},
+05937 \{ -909,-1198,-1548,-1548,-1548\}\}\},
+05938 \textcolor{comment}{/* GU.U@..CG */}
+05939 \{\{\{ DEF, -329, -329, -329, -329\},
+05940 \{ -100, -379, -379, -379, -379\},
+05941 \{ -100, -379, -379, -379, -379\},
+05942 \{ -100, -379, -379, -379, -379\},
+05943 \{ -100, -379, -379, -379, -379\}\},
+05944 \textcolor{comment}{/* GU.UA..CG */}
+05945 \{\{ DEF, -329, -329, -329, -329\},
+05946 \{-1079,-1358,-1358,-1358,-1358\},
+05947 \{ -569, -848, -848, -848, -848\},
+05948 \{ -989,-1268,-1268,-1268,-1268\},
+05949 \{ -859,-1138,-1138,-1138,-1138\}\},
+05950 \textcolor{comment}{/* GU.UC..CG */}
+05951 \{\{ DEF, -329, -329, -329, -329\},
+05952 \{ -999,-1278,-1278,-1278,-1278\},
+05953 \{ -499, -778, -778, -778, -778\},
+05954 \{ -989,-1268,-1268,-1268,-1268\},
+05955 \{ -789,-1068,-1068,-1068,-1068\}\},
+05956 \textcolor{comment}{/* GU.UG..CG */}
+05957 \{\{ DEF, -329, -329, -329, -329\},
+05958 \{-1079,-1358,-1358,-1358,-1358\},
+05959 \{ -569, -848, -848, -848, -848\},
+05960 \{ -989,-1268,-1268,-1268,-1268\},
+05961 \{ -859,-1138,-1138,-1138,-1138\}\},
+05962 \textcolor{comment}{/* GU.UU..CG */}
+05963 \{\{ DEF, -329, -329, -329, -329\},
+05964 \{-1079,-1358,-1358,-1358,-1358\},
+05965 \{ -719, -998, -998, -998, -998\},
+05966 \{ -989,-1268,-1268,-1268,-1268\},
+05967 \{ -909,-1188,-1188,-1188,-1188\}\}\}\},
+05968 \textcolor{comment}{/* GU.@@..GC */}
+05969 \{\{\{\{ 0, 0, 0, 0, 0\},
+05970 \{ DEF, DEF, DEF, DEF, DEF\},
+05971 \{ DEF, DEF, DEF, DEF, DEF\},
+05972 \{ DEF, DEF, DEF, DEF, DEF\},
+05973 \{ DEF, DEF, DEF, DEF, DEF\}\},
+05974 \textcolor{comment}{/* GU.@A..GC */}
+05975 \{\{ 0, 0, 0, 0, 0\},
+05976 \{ -519, -519, -519, -519, -519\},
+05977 \{ -719, -719, -719, -719, -719\},
+05978 \{ -709, -709, -709, -709, -709\},
+05979 \{ -499, -499, -499, -499, -499\}\},
+05980 \textcolor{comment}{/* GU.@C..GC */}
+05981 \{\{ 0, 0, 0, 0, 0\},
+05982 \{ -879, -879, -879, -879, -879\},
+05983 \{ -309, -309, -309, -309, -309\},
+05984 \{ -739, -739, -739, -739, -739\},
+05985 \{ -499, -499, -499, -499, -499\}\},
+05986 \textcolor{comment}{/* GU.@G..GC */}
+05987 \{\{ 0, 0, 0, 0, 0\},
+05988 \{ -559, -559, -559, -559, -559\},
+05989 \{ -309, -309, -309, -309, -309\},
+05990 \{ -619, -619, -619, -619, -619\},
+05991 \{ -499, -499, -499, -499, -499\}\},
+05992 \textcolor{comment}{/* GU.@U..GC */}
+05993 \{\{ 0, 0, 0, 0, 0\},
+05994 \{ -879, -879, -879, -879, -879\},
+05995 \{ -389, -389, -389, -389, -389\},
+05996 \{ -739, -739, -739, -739, -739\},
+05997 \{ -569, -569, -569, -569, -569\}\}\},
+05998 \textcolor{comment}{/* GU.A@..GC */}
+05999 \{\{\{ DEF, -429, -599, -599, -599\},
+06000 \{ -100, -479, -649, -649, -649\},
+06001 \{ -100, -479, -649, -649, -649\},
+06002 \{ -100, -479, -649, -649, -649\},
+06003 \{ -100, -479, -649, -649, -649\}\},
+06004 \textcolor{comment}{/* GU.AA..GC */}
+06005 \{\{ DEF, -429, -599, -599, -599\},
+06006 \{ -569, -948,-1118,-1118,-1118\},
+06007 \{ -769,-1148,-1318,-1318,-1318\},
+06008 \{ -759,-1138,-1308,-1308,-1308\},
+06009 \{ -549, -928,-1098,-1098,-1098\}\},
+06010 \textcolor{comment}{/* GU.AC..GC */}
+06011 \{\{ DEF, -429, -599, -599, -599\},
+06012 \{ -929,-1308,-1478,-1478,-1478\},
+06013 \{ -359, -738, -908, -908, -908\},
+06014 \{ -789,-1168,-1338,-1338,-1338\},
+06015 \{ -549, -928,-1098,-1098,-1098\}\},
+06016 \textcolor{comment}{/* GU.AG..GC */}
+06017 \{\{ DEF, -429, -599, -599, -599\},
+06018 \{ -609, -988,-1158,-1158,-1158\},
+06019 \{ -359, -738, -908, -908, -908\},
+06020 \{ -669,-1048,-1218,-1218,-1218\},
+06021 \{ -549, -928,-1098,-1098,-1098\}\},
+06022 \textcolor{comment}{/* GU.AU..GC */}
+06023 \{\{ DEF, -429, -599, -599, -599\},
+06024 \{ -929,-1308,-1478,-1478,-1478\},
+06025 \{ -439, -818, -988, -988, -988\},
+06026 \{ -789,-1168,-1338,-1338,-1338\},
+06027 \{ -619, -998,-1168,-1168,-1168\}\}\},
+06028 \textcolor{comment}{/* GU.C@..GC */}
+06029 \{\{\{ DEF, -259, -239, -239, -239\},
+06030 \{ -100, -309, -289, -289, -289\},
+06031 \{ -100, -309, -289, -289, -289\},
+06032 \{ -100, -309, -289, -289, -289\},
+06033 \{ -100, -309, -289, -289, -289\}\},
+06034 \textcolor{comment}{/* GU.CA..GC */}
+06035 \{\{ DEF, -259, -239, -239, -239\},
+06036 \{ -569, -778, -758, -758, -758\},
+06037 \{ -769, -978, -958, -958, -958\},
+06038 \{ -759, -968, -948, -948, -948\},
+06039 \{ -549, -758, -738, -738, -738\}\},
+06040 \textcolor{comment}{/* GU.CC..GC */}
+06041 \{\{ DEF, -259, -239, -239, -239\},
+06042 \{ -929,-1138,-1118,-1118,-1118\},
+06043 \{ -359, -568, -548, -548, -548\},
+06044 \{ -789, -998, -978, -978, -978\},
+06045 \{ -549, -758, -738, -738, -738\}\},
+06046 \textcolor{comment}{/* GU.CG..GC */}
+06047 \{\{ DEF, -259, -239, -239, -239\},
+06048 \{ -609, -818, -798, -798, -798\},
+06049 \{ -359, -568, -548, -548, -548\},
+06050 \{ -669, -878, -858, -858, -858\},
+06051 \{ -549, -758, -738, -738, -738\}\},
+06052 \textcolor{comment}{/* GU.CU..GC */}
+06053 \{\{ DEF, -259, -239, -239, -239\},
+06054 \{ -929,-1138,-1118,-1118,-1118\},
+06055 \{ -439, -648, -628, -628, -628\},
+06056 \{ -789, -998, -978, -978, -978\},
+06057 \{ -619, -828, -808, -808, -808\}\}\},
+06058 \textcolor{comment}{/* GU.G@..GC */}
+06059 \{\{\{ DEF, -339, -689, -689, -689\},
+06060 \{ -100, -389, -739, -739, -739\},
+06061 \{ -100, -389, -739, -739, -739\},
+06062 \{ -100, -389, -739, -739, -739\},
+06063 \{ -100, -389, -739, -739, -739\}\},
+06064 \textcolor{comment}{/* GU.GA..GC */}
+06065 \{\{ DEF, -339, -689, -689, -689\},
+06066 \{ -569, -858,-1208,-1208,-1208\},
+06067 \{ -769,-1058,-1408,-1408,-1408\},
+06068 \{ -759,-1048,-1398,-1398,-1398\},
+06069 \{ -549, -838,-1188,-1188,-1188\}\},
+06070 \textcolor{comment}{/* GU.GC..GC */}
+06071 \{\{ DEF, -339, -689, -689, -689\},
+06072 \{ -929,-1218,-1568,-1568,-1568\},
+06073 \{ -359, -648, -998, -998, -998\},
+06074 \{ -789,-1078,-1428,-1428,-1428\},
+06075 \{ -549, -838,-1188,-1188,-1188\}\},
+06076 \textcolor{comment}{/* GU.GG..GC */}
+06077 \{\{ DEF, -339, -689, -689, -689\},
+06078 \{ -609, -898,-1248,-1248,-1248\},
+06079 \{ -359, -648, -998, -998, -998\},
+06080 \{ -669, -958,-1308,-1308,-1308\},
+06081 \{ -549, -838,-1188,-1188,-1188\}\},
+06082 \textcolor{comment}{/* GU.GU..GC */}
+06083 \{\{ DEF, -339, -689, -689, -689\},
+06084 \{ -929,-1218,-1568,-1568,-1568\},
+06085 \{ -439, -728,-1078,-1078,-1078\},
+06086 \{ -789,-1078,-1428,-1428,-1428\},
+06087 \{ -619, -908,-1258,-1258,-1258\}\}\},
+06088 \textcolor{comment}{/* GU.U@..GC */}
+06089 \{\{\{ DEF, -329, -329, -329, -329\},
+06090 \{ -100, -379, -379, -379, -379\},
+06091 \{ -100, -379, -379, -379, -379\},
+06092 \{ -100, -379, -379, -379, -379\},
+06093 \{ -100, -379, -379, -379, -379\}\},
+06094 \textcolor{comment}{/* GU.UA..GC */}
+06095 \{\{ DEF, -329, -329, -329, -329\},
+06096 \{ -569, -848, -848, -848, -848\},
+06097 \{ -769,-1048,-1048,-1048,-1048\},
+06098 \{ -759,-1038,-1038,-1038,-1038\},
+06099 \{ -549, -828, -828, -828, -828\}\},
+06100 \textcolor{comment}{/* GU.UC..GC */}
+06101 \{\{ DEF, -329, -329, -329, -329\},
+06102 \{ -929,-1208,-1208,-1208,-1208\},
+06103 \{ -359, -638, -638, -638, -638\},
+06104 \{ -789,-1068,-1068,-1068,-1068\},
+06105 \{ -549, -828, -828, -828, -828\}\},
+06106 \textcolor{comment}{/* GU.UG..GC */}
+06107 \{\{ DEF, -329, -329, -329, -329\},
+06108 \{ -609, -888, -888, -888, -888\},
+06109 \{ -359, -638, -638, -638, -638\},
+06110 \{ -669, -948, -948, -948, -948\},
+06111 \{ -549, -828, -828, -828, -828\}\},
+06112 \textcolor{comment}{/* GU.UU..GC */}
+06113 \{\{ DEF, -329, -329, -329, -329\},
+06114 \{ -929,-1208,-1208,-1208,-1208\},
+06115 \{ -439, -718, -718, -718, -718\},
+06116 \{ -789,-1068,-1068,-1068,-1068\},
+06117 \{ -619, -898, -898, -898, -898\}\}\}\},
+06118 \textcolor{comment}{/* GU.@@..GU */}
+06119 \{\{\{\{ 0, 0, 0, 0, 0\},
+06120 \{ DEF, DEF, DEF, DEF, DEF\},
+06121 \{ DEF, DEF, DEF, DEF, DEF\},
+06122 \{ DEF, DEF, DEF, DEF, DEF\},
+06123 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06124 \textcolor{comment}{/* GU.@A..GU */}
+06125 \{\{ 0, 0, 0, 0, 0\},
+06126 \{ -429, -429, -429, -429, -429\},
+06127 \{ -259, -259, -259, -259, -259\},
+06128 \{ -339, -339, -339, -339, -339\},
+06129 \{ -329, -329, -329, -329, -329\}\},
+06130 \textcolor{comment}{/* GU.@C..GU */}
+06131 \{\{ 0, 0, 0, 0, 0\},
+06132 \{ -599, -599, -599, -599, -599\},
+06133 \{ -239, -239, -239, -239, -239\},
+06134 \{ -689, -689, -689, -689, -689\},
+06135 \{ -329, -329, -329, -329, -329\}\},
+06136 \textcolor{comment}{/* GU.@G..GU */}
+06137 \{\{ 0, 0, 0, 0, 0\},
+06138 \{ -599, -599, -599, -599, -599\},
+06139 \{ -239, -239, -239, -239, -239\},
+06140 \{ -689, -689, -689, -689, -689\},
+06141 \{ -329, -329, -329, -329, -329\}\},
+06142 \textcolor{comment}{/* GU.@U..GU */}
+06143 \{\{ 0, 0, 0, 0, 0\},
+06144 \{ -599, -599, -599, -599, -599\},
+06145 \{ -239, -239, -239, -239, -239\},
+06146 \{ -689, -689, -689, -689, -689\},
+06147 \{ -329, -329, -329, -329, -329\}\}\},
+06148 \textcolor{comment}{/* GU.A@..GU */}
+06149 \{\{\{ DEF, -429, -599, -599, -599\},
+06150 \{ -100, -479, -649, -649, -649\},
+06151 \{ -100, -479, -649, -649, -649\},
+06152 \{ -100, -479, -649, -649, -649\},
+06153 \{ -100, -479, -649, -649, -649\}\},
+06154 \textcolor{comment}{/* GU.AA..GU */}
+06155 \{\{ DEF, -429, -599, -599, -599\},
+06156 \{ -479, -858,-1028,-1028,-1028\},
+06157 \{ -309, -688, -858, -858, -858\},
+06158 \{ -389, -768, -938, -938, -938\},
+06159 \{ -379, -758, -928, -928, -928\}\},
+06160 \textcolor{comment}{/* GU.AC..GU */}
+06161 \{\{ DEF, -429, -599, -599, -599\},
+06162 \{ -649,-1028,-1198,-1198,-1198\},
+06163 \{ -289, -668, -838, -838, -838\},
+06164 \{ -739,-1118,-1288,-1288,-1288\},
+06165 \{ -379, -758, -928, -928, -928\}\},
+06166 \textcolor{comment}{/* GU.AG..GU */}
+06167 \{\{ DEF, -429, -599, -599, -599\},
+06168 \{ -649,-1028,-1198,-1198,-1198\},
+06169 \{ -289, -668, -838, -838, -838\},
+06170 \{ -739,-1118,-1288,-1288,-1288\},
+06171 \{ -379, -758, -928, -928, -928\}\},
+06172 \textcolor{comment}{/* GU.AU..GU */}
+06173 \{\{ DEF, -429, -599, -599, -599\},
+06174 \{ -649,-1028,-1198,-1198,-1198\},
+06175 \{ -289, -668, -838, -838, -838\},
+06176 \{ -739,-1118,-1288,-1288,-1288\},
+06177 \{ -379, -758, -928, -928, -928\}\}\},
+06178 \textcolor{comment}{/* GU.C@..GU */}
+06179 \{\{\{ DEF, -259, -239, -239, -239\},
+06180 \{ -100, -309, -289, -289, -289\},
+06181 \{ -100, -309, -289, -289, -289\},
+06182 \{ -100, -309, -289, -289, -289\},
+06183 \{ -100, -309, -289, -289, -289\}\},
+06184 \textcolor{comment}{/* GU.CA..GU */}
+06185 \{\{ DEF, -259, -239, -239, -239\},
+06186 \{ -479, -688, -668, -668, -668\},
+06187 \{ -309, -518, -498, -498, -498\},
+06188 \{ -389, -598, -578, -578, -578\},
+06189 \{ -379, -588, -568, -568, -568\}\},
+06190 \textcolor{comment}{/* GU.CC..GU */}
+06191 \{\{ DEF, -259, -239, -239, -239\},
+06192 \{ -649, -858, -838, -838, -838\},
+06193 \{ -289, -498, -478, -478, -478\},
+06194 \{ -739, -948, -928, -928, -928\},
+06195 \{ -379, -588, -568, -568, -568\}\},
+06196 \textcolor{comment}{/* GU.CG..GU */}
+06197 \{\{ DEF, -259, -239, -239, -239\},
+06198 \{ -649, -858, -838, -838, -838\},
+06199 \{ -289, -498, -478, -478, -478\},
+06200 \{ -739, -948, -928, -928, -928\},
+06201 \{ -379, -588, -568, -568, -568\}\},
+06202 \textcolor{comment}{/* GU.CU..GU */}
+06203 \{\{ DEF, -259, -239, -239, -239\},
+06204 \{ -649, -858, -838, -838, -838\},
+06205 \{ -289, -498, -478, -478, -478\},
+06206 \{ -739, -948, -928, -928, -928\},
+06207 \{ -379, -588, -568, -568, -568\}\}\},
+06208 \textcolor{comment}{/* GU.G@..GU */}
+06209 \{\{\{ DEF, -339, -689, -689, -689\},
+06210 \{ -100, -389, -739, -739, -739\},
+06211 \{ -100, -389, -739, -739, -739\},
+06212 \{ -100, -389, -739, -739, -739\},
+06213 \{ -100, -389, -739, -739, -739\}\},
+06214 \textcolor{comment}{/* GU.GA..GU */}
+06215 \{\{ DEF, -339, -689, -689, -689\},
+06216 \{ -479, -768,-1118,-1118,-1118\},
+06217 \{ -309, -598, -948, -948, -948\},
+06218 \{ -389, -678,-1028,-1028,-1028\},
+06219 \{ -379, -668,-1018,-1018,-1018\}\},
+06220 \textcolor{comment}{/* GU.GC..GU */}
+06221 \{\{ DEF, -339, -689, -689, -689\},
+06222 \{ -649, -938,-1288,-1288,-1288\},
+06223 \{ -289, -578, -928, -928, -928\},
+06224 \{ -739,-1028,-1378,-1378,-1378\},
+06225 \{ -379, -668,-1018,-1018,-1018\}\},
+06226 \textcolor{comment}{/* GU.GG..GU */}
+06227 \{\{ DEF, -339, -689, -689, -689\},
+06228 \{ -649, -938,-1288,-1288,-1288\},
+06229 \{ -289, -578, -928, -928, -928\},
+06230 \{ -739,-1028,-1378,-1378,-1378\},
+06231 \{ -379, -668,-1018,-1018,-1018\}\},
+06232 \textcolor{comment}{/* GU.GU..GU */}
+06233 \{\{ DEF, -339, -689, -689, -689\},
+06234 \{ -649, -938,-1288,-1288,-1288\},
+06235 \{ -289, -578, -928, -928, -928\},
+06236 \{ -739,-1028,-1378,-1378,-1378\},
+06237 \{ -379, -668,-1018,-1018,-1018\}\}\},
+06238 \textcolor{comment}{/* GU.U@..GU */}
+06239 \{\{\{ DEF, -329, -329, -329, -329\},
+06240 \{ -100, -379, -379, -379, -379\},
+06241 \{ -100, -379, -379, -379, -379\},
+06242 \{ -100, -379, -379, -379, -379\},
+06243 \{ -100, -379, -379, -379, -379\}\},
+06244 \textcolor{comment}{/* GU.UA..GU */}
+06245 \{\{ DEF, -329, -329, -329, -329\},
+06246 \{ -479, -758, -758, -758, -758\},
+06247 \{ -309, -588, -588, -588, -588\},
+06248 \{ -389, -668, -668, -668, -668\},
+06249 \{ -379, -658, -658, -658, -658\}\},
+06250 \textcolor{comment}{/* GU.UC..GU */}
+06251 \{\{ DEF, -329, -329, -329, -329\},
+06252 \{ -649, -928, -928, -928, -928\},
+06253 \{ -289, -568, -568, -568, -568\},
+06254 \{ -739,-1018,-1018,-1018,-1018\},
+06255 \{ -379, -658, -658, -658, -658\}\},
+06256 \textcolor{comment}{/* GU.UG..GU */}
+06257 \{\{ DEF, -329, -329, -329, -329\},
+06258 \{ -649, -928, -928, -928, -928\},
+06259 \{ -289, -568, -568, -568, -568\},
+06260 \{ -739,-1018,-1018,-1018,-1018\},
+06261 \{ -379, -658, -658, -658, -658\}\},
+06262 \textcolor{comment}{/* GU.UU..GU */}
+06263 \{\{ DEF, -329, -329, -329, -329\},
+06264 \{ -649, -928, -928, -928, -928\},
+06265 \{ -289, -568, -568, -568, -568\},
+06266 \{ -739,-1018,-1018,-1018,-1018\},
+06267 \{ -379, -658, -658, -658, -658\}\}\}\},
+06268 \textcolor{comment}{/* GU.@@..UG */}
+06269 \{\{\{\{ 0, 0, 0, 0, 0\},
+06270 \{ DEF, DEF, DEF, DEF, DEF\},
+06271 \{ DEF, DEF, DEF, DEF, DEF\},
+06272 \{ DEF, DEF, DEF, DEF, DEF\},
+06273 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06274 \textcolor{comment}{/* GU.@A..UG */}
+06275 \{\{ 0, 0, 0, 0, 0\},
+06276 \{ -719, -719, -719, -719, -719\},
+06277 \{ -479, -479, -479, -479, -479\},
+06278 \{ -659, -659, -659, -659, -659\},
+06279 \{ -549, -549, -549, -549, -549\}\},
+06280 \textcolor{comment}{/* GU.@C..UG */}
+06281 \{\{ 0, 0, 0, 0, 0\},
+06282 \{ -789, -789, -789, -789, -789\},
+06283 \{ -479, -479, -479, -479, -479\},
+06284 \{ -809, -809, -809, -809, -809\},
+06285 \{ -439, -439, -439, -439, -439\}\},
+06286 \textcolor{comment}{/* GU.@G..UG */}
+06287 \{\{ 0, 0, 0, 0, 0\},
+06288 \{ -959, -959, -959, -959, -959\},
+06289 \{ -359, -359, -359, -359, -359\},
+06290 \{ -919, -919, -919, -919, -919\},
+06291 \{ -549, -549, -549, -549, -549\}\},
+06292 \textcolor{comment}{/* GU.@U..UG */}
+06293 \{\{ 0, 0, 0, 0, 0\},
+06294 \{ -809, -809, -809, -809, -809\},
+06295 \{ -479, -479, -479, -479, -479\},
+06296 \{ -809, -809, -809, -809, -809\},
+06297 \{ -359, -359, -359, -359, -359\}\}\},
+06298 \textcolor{comment}{/* GU.A@..UG */}
+06299 \{\{\{ DEF, -429, -599, -599, -599\},
+06300 \{ -100, -479, -649, -649, -649\},
+06301 \{ -100, -479, -649, -649, -649\},
+06302 \{ -100, -479, -649, -649, -649\},
+06303 \{ -100, -479, -649, -649, -649\}\},
+06304 \textcolor{comment}{/* GU.AA..UG */}
+06305 \{\{ DEF, -429, -599, -599, -599\},
+06306 \{ -769,-1148,-1318,-1318,-1318\},
+06307 \{ -529, -908,-1078,-1078,-1078\},
+06308 \{ -709,-1088,-1258,-1258,-1258\},
+06309 \{ -599, -978,-1148,-1148,-1148\}\},
+06310 \textcolor{comment}{/* GU.AC..UG */}
+06311 \{\{ DEF, -429, -599, -599, -599\},
+06312 \{ -839,-1218,-1388,-1388,-1388\},
+06313 \{ -529, -908,-1078,-1078,-1078\},
+06314 \{ -859,-1238,-1408,-1408,-1408\},
+06315 \{ -489, -868,-1038,-1038,-1038\}\},
+06316 \textcolor{comment}{/* GU.AG..UG */}
+06317 \{\{ DEF, -429, -599, -599, -599\},
+06318 \{-1009,-1388,-1558,-1558,-1558\},
+06319 \{ -409, -788, -958, -958, -958\},
+06320 \{ -969,-1348,-1518,-1518,-1518\},
+06321 \{ -599, -978,-1148,-1148,-1148\}\},
+06322 \textcolor{comment}{/* GU.AU..UG */}
+06323 \{\{ DEF, -429, -599, -599, -599\},
+06324 \{ -859,-1238,-1408,-1408,-1408\},
+06325 \{ -529, -908,-1078,-1078,-1078\},
+06326 \{ -859,-1238,-1408,-1408,-1408\},
+06327 \{ -409, -788, -958, -958, -958\}\}\},
+06328 \textcolor{comment}{/* GU.C@..UG */}
+06329 \{\{\{ DEF, -259, -239, -239, -239\},
+06330 \{ -100, -309, -289, -289, -289\},
+06331 \{ -100, -309, -289, -289, -289\},
+06332 \{ -100, -309, -289, -289, -289\},
+06333 \{ -100, -309, -289, -289, -289\}\},
+06334 \textcolor{comment}{/* GU.CA..UG */}
+06335 \{\{ DEF, -259, -239, -239, -239\},
+06336 \{ -769, -978, -958, -958, -958\},
+06337 \{ -529, -738, -718, -718, -718\},
+06338 \{ -709, -918, -898, -898, -898\},
+06339 \{ -599, -808, -788, -788, -788\}\},
+06340 \textcolor{comment}{/* GU.CC..UG */}
+06341 \{\{ DEF, -259, -239, -239, -239\},
+06342 \{ -839,-1048,-1028,-1028,-1028\},
+06343 \{ -529, -738, -718, -718, -718\},
+06344 \{ -859,-1068,-1048,-1048,-1048\},
+06345 \{ -489, -698, -678, -678, -678\}\},
+06346 \textcolor{comment}{/* GU.CG..UG */}
+06347 \{\{ DEF, -259, -239, -239, -239\},
+06348 \{-1009,-1218,-1198,-1198,-1198\},
+06349 \{ -409, -618, -598, -598, -598\},
+06350 \{ -969,-1178,-1158,-1158,-1158\},
+06351 \{ -599, -808, -788, -788, -788\}\},
+06352 \textcolor{comment}{/* GU.CU..UG */}
+06353 \{\{ DEF, -259, -239, -239, -239\},
+06354 \{ -859,-1068,-1048,-1048,-1048\},
+06355 \{ -529, -738, -718, -718, -718\},
+06356 \{ -859,-1068,-1048,-1048,-1048\},
+06357 \{ -409, -618, -598, -598, -598\}\}\},
+06358 \textcolor{comment}{/* GU.G@..UG */}
+06359 \{\{\{ DEF, -339, -689, -689, -689\},
+06360 \{ -100, -389, -739, -739, -739\},
+06361 \{ -100, -389, -739, -739, -739\},
+06362 \{ -100, -389, -739, -739, -739\},
+06363 \{ -100, -389, -739, -739, -739\}\},
+06364 \textcolor{comment}{/* GU.GA..UG */}
+06365 \{\{ DEF, -339, -689, -689, -689\},
+06366 \{ -769,-1058,-1408,-1408,-1408\},
+06367 \{ -529, -818,-1168,-1168,-1168\},
+06368 \{ -709, -998,-1348,-1348,-1348\},
+06369 \{ -599, -888,-1238,-1238,-1238\}\},
+06370 \textcolor{comment}{/* GU.GC..UG */}
+06371 \{\{ DEF, -339, -689, -689, -689\},
+06372 \{ -839,-1128,-1478,-1478,-1478\},
+06373 \{ -529, -818,-1168,-1168,-1168\},
+06374 \{ -859,-1148,-1498,-1498,-1498\},
+06375 \{ -489, -778,-1128,-1128,-1128\}\},
+06376 \textcolor{comment}{/* GU.GG..UG */}
+06377 \{\{ DEF, -339, -689, -689, -689\},
+06378 \{-1009,-1298,-1648,-1648,-1648\},
+06379 \{ -409, -698,-1048,-1048,-1048\},
+06380 \{ -969,-1258,-1608,-1608,-1608\},
+06381 \{ -599, -888,-1238,-1238,-1238\}\},
+06382 \textcolor{comment}{/* GU.GU..UG */}
+06383 \{\{ DEF, -339, -689, -689, -689\},
+06384 \{ -859,-1148,-1498,-1498,-1498\},
+06385 \{ -529, -818,-1168,-1168,-1168\},
+06386 \{ -859,-1148,-1498,-1498,-1498\},
+06387 \{ -409, -698,-1048,-1048,-1048\}\}\},
+06388 \textcolor{comment}{/* GU.U@..UG */}
+06389 \{\{\{ DEF, -329, -329, -329, -329\},
+06390 \{ -100, -379, -379, -379, -379\},
+06391 \{ -100, -379, -379, -379, -379\},
+06392 \{ -100, -379, -379, -379, -379\},
+06393 \{ -100, -379, -379, -379, -379\}\},
+06394 \textcolor{comment}{/* GU.UA..UG */}
+06395 \{\{ DEF, -329, -329, -329, -329\},
+06396 \{ -769,-1048,-1048,-1048,-1048\},
+06397 \{ -529, -808, -808, -808, -808\},
+06398 \{ -709, -988, -988, -988, -988\},
+06399 \{ -599, -878, -878, -878, -878\}\},
+06400 \textcolor{comment}{/* GU.UC..UG */}
+06401 \{\{ DEF, -329, -329, -329, -329\},
+06402 \{ -839,-1118,-1118,-1118,-1118\},
+06403 \{ -529, -808, -808, -808, -808\},
+06404 \{ -859,-1138,-1138,-1138,-1138\},
+06405 \{ -489, -768, -768, -768, -768\}\},
+06406 \textcolor{comment}{/* GU.UG..UG */}
+06407 \{\{ DEF, -329, -329, -329, -329\},
+06408 \{-1009,-1288,-1288,-1288,-1288\},
+06409 \{ -409, -688, -688, -688, -688\},
+06410 \{ -969,-1248,-1248,-1248,-1248\},
+06411 \{ -599, -878, -878, -878, -878\}\},
+06412 \textcolor{comment}{/* GU.UU..UG */}
+06413 \{\{ DEF, -329, -329, -329, -329\},
+06414 \{ -859,-1138,-1138,-1138,-1138\},
+06415 \{ -529, -808, -808, -808, -808\},
+06416 \{ -859,-1138,-1138,-1138,-1138\},
+06417 \{ -409, -688, -688, -688, -688\}\}\}\},
+06418 \textcolor{comment}{/* GU.@@..AU */}
+06419 \{\{\{\{ 0, 0, 0, 0, 0\},
+06420 \{ DEF, DEF, DEF, DEF, DEF\},
+06421 \{ DEF, DEF, DEF, DEF, DEF\},
+06422 \{ DEF, DEF, DEF, DEF, DEF\},
+06423 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06424 \textcolor{comment}{/* GU.@A..AU */}
+06425 \{\{ 0, 0, 0, 0, 0\},
+06426 \{ -429, -429, -429, -429, -429\},
+06427 \{ -259, -259, -259, -259, -259\},
+06428 \{ -339, -339, -339, -339, -339\},
+06429 \{ -329, -329, -329, -329, -329\}\},
+06430 \textcolor{comment}{/* GU.@C..AU */}
+06431 \{\{ 0, 0, 0, 0, 0\},
+06432 \{ -599, -599, -599, -599, -599\},
+06433 \{ -239, -239, -239, -239, -239\},
+06434 \{ -689, -689, -689, -689, -689\},
+06435 \{ -329, -329, -329, -329, -329\}\},
+06436 \textcolor{comment}{/* GU.@G..AU */}
+06437 \{\{ 0, 0, 0, 0, 0\},
+06438 \{ -599, -599, -599, -599, -599\},
+06439 \{ -239, -239, -239, -239, -239\},
+06440 \{ -689, -689, -689, -689, -689\},
+06441 \{ -329, -329, -329, -329, -329\}\},
+06442 \textcolor{comment}{/* GU.@U..AU */}
+06443 \{\{ 0, 0, 0, 0, 0\},
+06444 \{ -599, -599, -599, -599, -599\},
+06445 \{ -239, -239, -239, -239, -239\},
+06446 \{ -689, -689, -689, -689, -689\},
+06447 \{ -329, -329, -329, -329, -329\}\}\},
+06448 \textcolor{comment}{/* GU.A@..AU */}
+06449 \{\{\{ DEF, -429, -599, -599, -599\},
+06450 \{ -100, -479, -649, -649, -649\},
+06451 \{ -100, -479, -649, -649, -649\},
+06452 \{ -100, -479, -649, -649, -649\},
+06453 \{ -100, -479, -649, -649, -649\}\},
+06454 \textcolor{comment}{/* GU.AA..AU */}
+06455 \{\{ DEF, -429, -599, -599, -599\},
+06456 \{ -479, -858,-1028,-1028,-1028\},
+06457 \{ -309, -688, -858, -858, -858\},
+06458 \{ -389, -768, -938, -938, -938\},
+06459 \{ -379, -758, -928, -928, -928\}\},
+06460 \textcolor{comment}{/* GU.AC..AU */}
+06461 \{\{ DEF, -429, -599, -599, -599\},
+06462 \{ -649,-1028,-1198,-1198,-1198\},
+06463 \{ -289, -668, -838, -838, -838\},
+06464 \{ -739,-1118,-1288,-1288,-1288\},
+06465 \{ -379, -758, -928, -928, -928\}\},
+06466 \textcolor{comment}{/* GU.AG..AU */}
+06467 \{\{ DEF, -429, -599, -599, -599\},
+06468 \{ -649,-1028,-1198,-1198,-1198\},
+06469 \{ -289, -668, -838, -838, -838\},
+06470 \{ -739,-1118,-1288,-1288,-1288\},
+06471 \{ -379, -758, -928, -928, -928\}\},
+06472 \textcolor{comment}{/* GU.AU..AU */}
+06473 \{\{ DEF, -429, -599, -599, -599\},
+06474 \{ -649,-1028,-1198,-1198,-1198\},
+06475 \{ -289, -668, -838, -838, -838\},
+06476 \{ -739,-1118,-1288,-1288,-1288\},
+06477 \{ -379, -758, -928, -928, -928\}\}\},
+06478 \textcolor{comment}{/* GU.C@..AU */}
+06479 \{\{\{ DEF, -259, -239, -239, -239\},
+06480 \{ -100, -309, -289, -289, -289\},
+06481 \{ -100, -309, -289, -289, -289\},
+06482 \{ -100, -309, -289, -289, -289\},
+06483 \{ -100, -309, -289, -289, -289\}\},
+06484 \textcolor{comment}{/* GU.CA..AU */}
+06485 \{\{ DEF, -259, -239, -239, -239\},
+06486 \{ -479, -688, -668, -668, -668\},
+06487 \{ -309, -518, -498, -498, -498\},
+06488 \{ -389, -598, -578, -578, -578\},
+06489 \{ -379, -588, -568, -568, -568\}\},
+06490 \textcolor{comment}{/* GU.CC..AU */}
+06491 \{\{ DEF, -259, -239, -239, -239\},
+06492 \{ -649, -858, -838, -838, -838\},
+06493 \{ -289, -498, -478, -478, -478\},
+06494 \{ -739, -948, -928, -928, -928\},
+06495 \{ -379, -588, -568, -568, -568\}\},
+06496 \textcolor{comment}{/* GU.CG..AU */}
+06497 \{\{ DEF, -259, -239, -239, -239\},
+06498 \{ -649, -858, -838, -838, -838\},
+06499 \{ -289, -498, -478, -478, -478\},
+06500 \{ -739, -948, -928, -928, -928\},
+06501 \{ -379, -588, -568, -568, -568\}\},
+06502 \textcolor{comment}{/* GU.CU..AU */}
+06503 \{\{ DEF, -259, -239, -239, -239\},
+06504 \{ -649, -858, -838, -838, -838\},
+06505 \{ -289, -498, -478, -478, -478\},
+06506 \{ -739, -948, -928, -928, -928\},
+06507 \{ -379, -588, -568, -568, -568\}\}\},
+06508 \textcolor{comment}{/* GU.G@..AU */}
+06509 \{\{\{ DEF, -339, -689, -689, -689\},
+06510 \{ -100, -389, -739, -739, -739\},
+06511 \{ -100, -389, -739, -739, -739\},
+06512 \{ -100, -389, -739, -739, -739\},
+06513 \{ -100, -389, -739, -739, -739\}\},
+06514 \textcolor{comment}{/* GU.GA..AU */}
+06515 \{\{ DEF, -339, -689, -689, -689\},
+06516 \{ -479, -768,-1118,-1118,-1118\},
+06517 \{ -309, -598, -948, -948, -948\},
+06518 \{ -389, -678,-1028,-1028,-1028\},
+06519 \{ -379, -668,-1018,-1018,-1018\}\},
+06520 \textcolor{comment}{/* GU.GC..AU */}
+06521 \{\{ DEF, -339, -689, -689, -689\},
+06522 \{ -649, -938,-1288,-1288,-1288\},
+06523 \{ -289, -578, -928, -928, -928\},
+06524 \{ -739,-1028,-1378,-1378,-1378\},
+06525 \{ -379, -668,-1018,-1018,-1018\}\},
+06526 \textcolor{comment}{/* GU.GG..AU */}
+06527 \{\{ DEF, -339, -689, -689, -689\},
+06528 \{ -649, -938,-1288,-1288,-1288\},
+06529 \{ -289, -578, -928, -928, -928\},
+06530 \{ -739,-1028,-1378,-1378,-1378\},
+06531 \{ -379, -668,-1018,-1018,-1018\}\},
+06532 \textcolor{comment}{/* GU.GU..AU */}
+06533 \{\{ DEF, -339, -689, -689, -689\},
+06534 \{ -649, -938,-1288,-1288,-1288\},
+06535 \{ -289, -578, -928, -928, -928\},
+06536 \{ -739,-1028,-1378,-1378,-1378\},
+06537 \{ -379, -668,-1018,-1018,-1018\}\}\},
+06538 \textcolor{comment}{/* GU.U@..AU */}
+06539 \{\{\{ DEF, -329, -329, -329, -329\},
+06540 \{ -100, -379, -379, -379, -379\},
+06541 \{ -100, -379, -379, -379, -379\},
+06542 \{ -100, -379, -379, -379, -379\},
+06543 \{ -100, -379, -379, -379, -379\}\},
+06544 \textcolor{comment}{/* GU.UA..AU */}
+06545 \{\{ DEF, -329, -329, -329, -329\},
+06546 \{ -479, -758, -758, -758, -758\},
+06547 \{ -309, -588, -588, -588, -588\},
+06548 \{ -389, -668, -668, -668, -668\},
+06549 \{ -379, -658, -658, -658, -658\}\},
+06550 \textcolor{comment}{/* GU.UC..AU */}
+06551 \{\{ DEF, -329, -329, -329, -329\},
+06552 \{ -649, -928, -928, -928, -928\},
+06553 \{ -289, -568, -568, -568, -568\},
+06554 \{ -739,-1018,-1018,-1018,-1018\},
+06555 \{ -379, -658, -658, -658, -658\}\},
+06556 \textcolor{comment}{/* GU.UG..AU */}
+06557 \{\{ DEF, -329, -329, -329, -329\},
+06558 \{ -649, -928, -928, -928, -928\},
+06559 \{ -289, -568, -568, -568, -568\},
+06560 \{ -739,-1018,-1018,-1018,-1018\},
+06561 \{ -379, -658, -658, -658, -658\}\},
+06562 \textcolor{comment}{/* GU.UU..AU */}
+06563 \{\{ DEF, -329, -329, -329, -329\},
+06564 \{ -649, -928, -928, -928, -928\},
+06565 \{ -289, -568, -568, -568, -568\},
+06566 \{ -739,-1018,-1018,-1018,-1018\},
+06567 \{ -379, -658, -658, -658, -658\}\}\}\},
+06568 \textcolor{comment}{/* GU.@@..UA */}
+06569 \{\{\{\{ 0, 0, 0, 0, 0\},
+06570 \{ DEF, DEF, DEF, DEF, DEF\},
+06571 \{ DEF, DEF, DEF, DEF, DEF\},
+06572 \{ DEF, DEF, DEF, DEF, DEF\},
+06573 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06574 \textcolor{comment}{/* GU.@A..UA */}
+06575 \{\{ 0, 0, 0, 0, 0\},
+06576 \{ -399, -399, -399, -399, -399\},
+06577 \{ -429, -429, -429, -429, -429\},
+06578 \{ -379, -379, -379, -379, -379\},
+06579 \{ -279, -279, -279, -279, -279\}\},
+06580 \textcolor{comment}{/* GU.@C..UA */}
+06581 \{\{ 0, 0, 0, 0, 0\},
+06582 \{ -629, -629, -629, -629, -629\},
+06583 \{ -509, -509, -509, -509, -509\},
+06584 \{ -679, -679, -679, -679, -679\},
+06585 \{ -139, -139, -139, -139, -139\}\},
+06586 \textcolor{comment}{/* GU.@G..UA */}
+06587 \{\{ 0, 0, 0, 0, 0\},
+06588 \{ -889, -889, -889, -889, -889\},
+06589 \{ -199, -199, -199, -199, -199\},
+06590 \{ -889, -889, -889, -889, -889\},
+06591 \{ -279, -279, -279, -279, -279\}\},
+06592 \textcolor{comment}{/* GU.@U..UA */}
+06593 \{\{ 0, 0, 0, 0, 0\},
+06594 \{ -589, -589, -589, -589, -589\},
+06595 \{ -179, -179, -179, -179, -179\},
+06596 \{ -679, -679, -679, -679, -679\},
+06597 \{ -140, -140, -140, -140, -140\}\}\},
+06598 \textcolor{comment}{/* GU.A@..UA */}
+06599 \{\{\{ DEF, -429, -599, -599, -599\},
+06600 \{ -100, -479, -649, -649, -649\},
+06601 \{ -100, -479, -649, -649, -649\},
+06602 \{ -100, -479, -649, -649, -649\},
+06603 \{ -100, -479, -649, -649, -649\}\},
+06604 \textcolor{comment}{/* GU.AA..UA */}
+06605 \{\{ DEF, -429, -599, -599, -599\},
+06606 \{ -449, -828, -998, -998, -998\},
+06607 \{ -479, -858,-1028,-1028,-1028\},
+06608 \{ -429, -808, -978, -978, -978\},
+06609 \{ -329, -708, -878, -878, -878\}\},
+06610 \textcolor{comment}{/* GU.AC..UA */}
+06611 \{\{ DEF, -429, -599, -599, -599\},
+06612 \{ -679,-1058,-1228,-1228,-1228\},
+06613 \{ -559, -938,-1108,-1108,-1108\},
+06614 \{ -729,-1108,-1278,-1278,-1278\},
+06615 \{ -189, -568, -738, -738, -738\}\},
+06616 \textcolor{comment}{/* GU.AG..UA */}
+06617 \{\{ DEF, -429, -599, -599, -599\},
+06618 \{ -939,-1318,-1488,-1488,-1488\},
+06619 \{ -249, -628, -798, -798, -798\},
+06620 \{ -939,-1318,-1488,-1488,-1488\},
+06621 \{ -329, -708, -878, -878, -878\}\},
+06622 \textcolor{comment}{/* GU.AU..UA */}
+06623 \{\{ DEF, -429, -599, -599, -599\},
+06624 \{ -639,-1018,-1188,-1188,-1188\},
+06625 \{ -229, -608, -778, -778, -778\},
+06626 \{ -729,-1108,-1278,-1278,-1278\},
+06627 \{ -190, -569, -739, -739, -739\}\}\},
+06628 \textcolor{comment}{/* GU.C@..UA */}
+06629 \{\{\{ DEF, -259, -239, -239, -239\},
+06630 \{ -100, -309, -289, -289, -289\},
+06631 \{ -100, -309, -289, -289, -289\},
+06632 \{ -100, -309, -289, -289, -289\},
+06633 \{ -100, -309, -289, -289, -289\}\},
+06634 \textcolor{comment}{/* GU.CA..UA */}
+06635 \{\{ DEF, -259, -239, -239, -239\},
+06636 \{ -449, -658, -638, -638, -638\},
+06637 \{ -479, -688, -668, -668, -668\},
+06638 \{ -429, -638, -618, -618, -618\},
+06639 \{ -329, -538, -518, -518, -518\}\},
+06640 \textcolor{comment}{/* GU.CC..UA */}
+06641 \{\{ DEF, -259, -239, -239, -239\},
+06642 \{ -679, -888, -868, -868, -868\},
+06643 \{ -559, -768, -748, -748, -748\},
+06644 \{ -729, -938, -918, -918, -918\},
+06645 \{ -189, -398, -378, -378, -378\}\},
+06646 \textcolor{comment}{/* GU.CG..UA */}
+06647 \{\{ DEF, -259, -239, -239, -239\},
+06648 \{ -939,-1148,-1128,-1128,-1128\},
+06649 \{ -249, -458, -438, -438, -438\},
+06650 \{ -939,-1148,-1128,-1128,-1128\},
+06651 \{ -329, -538, -518, -518, -518\}\},
+06652 \textcolor{comment}{/* GU.CU..UA */}
+06653 \{\{ DEF, -259, -239, -239, -239\},
+06654 \{ -639, -848, -828, -828, -828\},
+06655 \{ -229, -438, -418, -418, -418\},
+06656 \{ -729, -938, -918, -918, -918\},
+06657 \{ -190, -399, -379, -379, -379\}\}\},
+06658 \textcolor{comment}{/* GU.G@..UA */}
+06659 \{\{\{ DEF, -339, -689, -689, -689\},
+06660 \{ -100, -389, -739, -739, -739\},
+06661 \{ -100, -389, -739, -739, -739\},
+06662 \{ -100, -389, -739, -739, -739\},
+06663 \{ -100, -389, -739, -739, -739\}\},
+06664 \textcolor{comment}{/* GU.GA..UA */}
+06665 \{\{ DEF, -339, -689, -689, -689\},
+06666 \{ -449, -738,-1088,-1088,-1088\},
+06667 \{ -479, -768,-1118,-1118,-1118\},
+06668 \{ -429, -718,-1068,-1068,-1068\},
+06669 \{ -329, -618, -968, -968, -968\}\},
+06670 \textcolor{comment}{/* GU.GC..UA */}
+06671 \{\{ DEF, -339, -689, -689, -689\},
+06672 \{ -679, -968,-1318,-1318,-1318\},
+06673 \{ -559, -848,-1198,-1198,-1198\},
+06674 \{ -729,-1018,-1368,-1368,-1368\},
+06675 \{ -189, -478, -828, -828, -828\}\},
+06676 \textcolor{comment}{/* GU.GG..UA */}
+06677 \{\{ DEF, -339, -689, -689, -689\},
+06678 \{ -939,-1228,-1578,-1578,-1578\},
+06679 \{ -249, -538, -888, -888, -888\},
+06680 \{ -939,-1228,-1578,-1578,-1578\},
+06681 \{ -329, -618, -968, -968, -968\}\},
+06682 \textcolor{comment}{/* GU.GU..UA */}
+06683 \{\{ DEF, -339, -689, -689, -689\},
+06684 \{ -639, -928,-1278,-1278,-1278\},
+06685 \{ -229, -518, -868, -868, -868\},
+06686 \{ -729,-1018,-1368,-1368,-1368\},
+06687 \{ -190, -479, -829, -829, -829\}\}\},
+06688 \textcolor{comment}{/* GU.U@..UA */}
+06689 \{\{\{ DEF, -329, -329, -329, -329\},
+06690 \{ -100, -379, -379, -379, -379\},
+06691 \{ -100, -379, -379, -379, -379\},
+06692 \{ -100, -379, -379, -379, -379\},
+06693 \{ -100, -379, -379, -379, -379\}\},
+06694 \textcolor{comment}{/* GU.UA..UA */}
+06695 \{\{ DEF, -329, -329, -329, -329\},
+06696 \{ -449, -728, -728, -728, -728\},
+06697 \{ -479, -758, -758, -758, -758\},
+06698 \{ -429, -708, -708, -708, -708\},
+06699 \{ -329, -608, -608, -608, -608\}\},
+06700 \textcolor{comment}{/* GU.UC..UA */}
+06701 \{\{ DEF, -329, -329, -329, -329\},
+06702 \{ -679, -958, -958, -958, -958\},
+06703 \{ -559, -838, -838, -838, -838\},
+06704 \{ -729,-1008,-1008,-1008,-1008\},
+06705 \{ -189, -468, -468, -468, -468\}\},
+06706 \textcolor{comment}{/* GU.UG..UA */}
+06707 \{\{ DEF, -329, -329, -329, -329\},
+06708 \{ -939,-1218,-1218,-1218,-1218\},
+06709 \{ -249, -528, -528, -528, -528\},
+06710 \{ -939,-1218,-1218,-1218,-1218\},
+06711 \{ -329, -608, -608, -608, -608\}\},
+06712 \textcolor{comment}{/* GU.UU..UA */}
+06713 \{\{ DEF, -329, -329, -329, -329\},
+06714 \{ -639, -918, -918, -918, -918\},
+06715 \{ -229, -508, -508, -508, -508\},
+06716 \{ -729,-1008,-1008,-1008,-1008\},
+06717 \{ -190, -469, -469, -469, -469\}\}\}\},
+06718 \textcolor{comment}{/* GU.@@.. @ */}
+06719 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+06720 \{ DEF, DEF, DEF, DEF, DEF\},
+06721 \{ DEF, DEF, DEF, DEF, DEF\},
+06722 \{ DEF, DEF, DEF, DEF, DEF\},
+06723 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06724 \textcolor{comment}{/* GU.@A.. @ */}
+06725 \{\{ DEF, DEF, DEF, DEF, DEF\},
+06726 \{ DEF, DEF, DEF, DEF, DEF\},
+06727 \{ DEF, DEF, DEF, DEF, DEF\},
+06728 \{ DEF, DEF, DEF, DEF, DEF\},
+06729 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06730 \textcolor{comment}{/* GU.@C.. @ */}
+06731 \{\{ DEF, DEF, DEF, DEF, DEF\},
+06732 \{ DEF, DEF, DEF, DEF, DEF\},
+06733 \{ DEF, DEF, DEF, DEF, DEF\},
+06734 \{ DEF, DEF, DEF, DEF, DEF\},
+06735 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06736 \textcolor{comment}{/* GU.@G.. @ */}
+06737 \{\{ DEF, DEF, DEF, DEF, DEF\},
+06738 \{ DEF, DEF, DEF, DEF, DEF\},
+06739 \{ DEF, DEF, DEF, DEF, DEF\},
+06740 \{ DEF, DEF, DEF, DEF, DEF\},
+06741 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06742 \textcolor{comment}{/* GU.@U.. @ */}
+06743 \{\{ DEF, DEF, DEF, DEF, DEF\},
+06744 \{ DEF, DEF, DEF, DEF, DEF\},
+06745 \{ DEF, DEF, DEF, DEF, DEF\},
+06746 \{ DEF, DEF, DEF, DEF, DEF\},
+06747 \{ DEF, DEF, DEF, DEF, DEF\}\}\},
+06748 \textcolor{comment}{/* GU.A@.. @ */}
+06749 \{\{\{ -100, -479, -649, -649, -649\},
+06750 \{ -100, -479, -649, -649, -649\},
+06751 \{ -100, -479, -649, -649, -649\},
+06752 \{ -100, -479, -649, -649, -649\},
+06753 \{ -100, -479, -649, -649, -649\}\},
+06754 \textcolor{comment}{/* GU.AA.. @ */}
+06755 \{\{ -100, -479, -649, -649, -649\},
+06756 \{ -100, -479, -649, -649, -649\},
+06757 \{ -100, -479, -649, -649, -649\},
+06758 \{ -100, -479, -649, -649, -649\},
+06759 \{ -100, -479, -649, -649, -649\}\},
+06760 \textcolor{comment}{/* GU.AC.. @ */}
+06761 \{\{ -100, -479, -649, -649, -649\},
+06762 \{ -100, -479, -649, -649, -649\},
+06763 \{ -100, -479, -649, -649, -649\},
+06764 \{ -100, -479, -649, -649, -649\},
+06765 \{ -100, -479, -649, -649, -649\}\},
+06766 \textcolor{comment}{/* GU.AG.. @ */}
+06767 \{\{ -100, -479, -649, -649, -649\},
+06768 \{ -100, -479, -649, -649, -649\},
+06769 \{ -100, -479, -649, -649, -649\},
+06770 \{ -100, -479, -649, -649, -649\},
+06771 \{ -100, -479, -649, -649, -649\}\},
+06772 \textcolor{comment}{/* GU.AU.. @ */}
+06773 \{\{ -100, -479, -649, -649, -649\},
+06774 \{ -100, -479, -649, -649, -649\},
+06775 \{ -100, -479, -649, -649, -649\},
+06776 \{ -100, -479, -649, -649, -649\},
+06777 \{ -100, -479, -649, -649, -649\}\}\},
+06778 \textcolor{comment}{/* GU.C@.. @ */}
+06779 \{\{\{ -100, -309, -289, -289, -289\},
+06780 \{ -100, -309, -289, -289, -289\},
+06781 \{ -100, -309, -289, -289, -289\},
+06782 \{ -100, -309, -289, -289, -289\},
+06783 \{ -100, -309, -289, -289, -289\}\},
+06784 \textcolor{comment}{/* GU.CA.. @ */}
+06785 \{\{ -100, -309, -289, -289, -289\},
+06786 \{ -100, -309, -289, -289, -289\},
+06787 \{ -100, -309, -289, -289, -289\},
+06788 \{ -100, -309, -289, -289, -289\},
+06789 \{ -100, -309, -289, -289, -289\}\},
+06790 \textcolor{comment}{/* GU.CC.. @ */}
+06791 \{\{ -100, -309, -289, -289, -289\},
+06792 \{ -100, -309, -289, -289, -289\},
+06793 \{ -100, -309, -289, -289, -289\},
+06794 \{ -100, -309, -289, -289, -289\},
+06795 \{ -100, -309, -289, -289, -289\}\},
+06796 \textcolor{comment}{/* GU.CG.. @ */}
+06797 \{\{ -100, -309, -289, -289, -289\},
+06798 \{ -100, -309, -289, -289, -289\},
+06799 \{ -100, -309, -289, -289, -289\},
+06800 \{ -100, -309, -289, -289, -289\},
+06801 \{ -100, -309, -289, -289, -289\}\},
+06802 \textcolor{comment}{/* GU.CU.. @ */}
+06803 \{\{ -100, -309, -289, -289, -289\},
+06804 \{ -100, -309, -289, -289, -289\},
+06805 \{ -100, -309, -289, -289, -289\},
+06806 \{ -100, -309, -289, -289, -289\},
+06807 \{ -100, -309, -289, -289, -289\}\}\},
+06808 \textcolor{comment}{/* GU.G@.. @ */}
+06809 \{\{\{ -100, -389, -739, -739, -739\},
+06810 \{ -100, -389, -739, -739, -739\},
+06811 \{ -100, -389, -739, -739, -739\},
+06812 \{ -100, -389, -739, -739, -739\},
+06813 \{ -100, -389, -739, -739, -739\}\},
+06814 \textcolor{comment}{/* GU.GA.. @ */}
+06815 \{\{ -100, -389, -739, -739, -739\},
+06816 \{ -100, -389, -739, -739, -739\},
+06817 \{ -100, -389, -739, -739, -739\},
+06818 \{ -100, -389, -739, -739, -739\},
+06819 \{ -100, -389, -739, -739, -739\}\},
+06820 \textcolor{comment}{/* GU.GC.. @ */}
+06821 \{\{ -100, -389, -739, -739, -739\},
+06822 \{ -100, -389, -739, -739, -739\},
+06823 \{ -100, -389, -739, -739, -739\},
+06824 \{ -100, -389, -739, -739, -739\},
+06825 \{ -100, -389, -739, -739, -739\}\},
+06826 \textcolor{comment}{/* GU.GG.. @ */}
+06827 \{\{ -100, -389, -739, -739, -739\},
+06828 \{ -100, -389, -739, -739, -739\},
+06829 \{ -100, -389, -739, -739, -739\},
+06830 \{ -100, -389, -739, -739, -739\},
+06831 \{ -100, -389, -739, -739, -739\}\},
+06832 \textcolor{comment}{/* GU.GU.. @ */}
+06833 \{\{ -100, -389, -739, -739, -739\},
+06834 \{ -100, -389, -739, -739, -739\},
+06835 \{ -100, -389, -739, -739, -739\},
+06836 \{ -100, -389, -739, -739, -739\},
+06837 \{ -100, -389, -739, -739, -739\}\}\},
+06838 \textcolor{comment}{/* GU.U@.. @ */}
+06839 \{\{\{ -100, -379, -379, -379, -379\},
+06840 \{ -100, -379, -379, -379, -379\},
+06841 \{ -100, -379, -379, -379, -379\},
+06842 \{ -100, -379, -379, -379, -379\},
+06843 \{ -100, -379, -379, -379, -379\}\},
+06844 \textcolor{comment}{/* GU.UA.. @ */}
+06845 \{\{ -100, -379, -379, -379, -379\},
+06846 \{ -100, -379, -379, -379, -379\},
+06847 \{ -100, -379, -379, -379, -379\},
+06848 \{ -100, -379, -379, -379, -379\},
+06849 \{ -100, -379, -379, -379, -379\}\},
+06850 \textcolor{comment}{/* GU.UC.. @ */}
+06851 \{\{ -100, -379, -379, -379, -379\},
+06852 \{ -100, -379, -379, -379, -379\},
+06853 \{ -100, -379, -379, -379, -379\},
+06854 \{ -100, -379, -379, -379, -379\},
+06855 \{ -100, -379, -379, -379, -379\}\},
+06856 \textcolor{comment}{/* GU.UG.. @ */}
+06857 \{\{ -100, -379, -379, -379, -379\},
+06858 \{ -100, -379, -379, -379, -379\},
+06859 \{ -100, -379, -379, -379, -379\},
+06860 \{ -100, -379, -379, -379, -379\},
+06861 \{ -100, -379, -379, -379, -379\}\},
+06862 \textcolor{comment}{/* GU.UU.. @ */}
+06863 \{\{ -100, -379, -379, -379, -379\},
+06864 \{ -100, -379, -379, -379, -379\},
+06865 \{ -100, -379, -379, -379, -379\},
+06866 \{ -100, -379, -379, -379, -379\},
+06867 \{ -100, -379, -379, -379, -379\}\}\}\}\},
+06868 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+06869 \textcolor{comment}{/* UG.@@..CG */}
+06870 \{\{\{\{ 0, 0, 0, 0, 0\},
+06871 \{ DEF, DEF, DEF, DEF, DEF\},
+06872 \{ DEF, DEF, DEF, DEF, DEF\},
+06873 \{ DEF, DEF, DEF, DEF, DEF\},
+06874 \{ DEF, DEF, DEF, DEF, DEF\}\},
+06875 \textcolor{comment}{/* UG.@A..CG */}
+06876 \{\{ 0, 0, 0, 0, 0\},
+06877 \{-1029,-1029,-1029,-1029,-1029\},
+06878 \{ -519, -519, -519, -519, -519\},
+06879 \{ -939, -939, -939, -939, -939\},
+06880 \{ -809, -809, -809, -809, -809\}\},
+06881 \textcolor{comment}{/* UG.@C..CG */}
+06882 \{\{ 0, 0, 0, 0, 0\},
+06883 \{ -949, -949, -949, -949, -949\},
+06884 \{ -449, -449, -449, -449, -449\},
+06885 \{ -939, -939, -939, -939, -939\},
+06886 \{ -739, -739, -739, -739, -739\}\},
+06887 \textcolor{comment}{/* UG.@G..CG */}
+06888 \{\{ 0, 0, 0, 0, 0\},
+06889 \{-1029,-1029,-1029,-1029,-1029\},
+06890 \{ -519, -519, -519, -519, -519\},
+06891 \{ -939, -939, -939, -939, -939\},
+06892 \{ -809, -809, -809, -809, -809\}\},
+06893 \textcolor{comment}{/* UG.@U..CG */}
+06894 \{\{ 0, 0, 0, 0, 0\},
+06895 \{-1029,-1029,-1029,-1029,-1029\},
+06896 \{ -669, -669, -669, -669, -669\},
+06897 \{ -939, -939, -939, -939, -939\},
+06898 \{ -859, -859, -859, -859, -859\}\}\},
+06899 \textcolor{comment}{/* UG.A@..CG */}
+06900 \{\{\{ DEF, -719, -789, -959, -809\},
+06901 \{ -100, -769, -839,-1009, -859\},
+06902 \{ -100, -769, -839,-1009, -859\},
+06903 \{ -100, -769, -839,-1009, -859\},
+06904 \{ -100, -769, -839,-1009, -859\}\},
+06905 \textcolor{comment}{/* UG.AA..CG */}
+06906 \{\{ DEF, -719, -789, -959, -809\},
+06907 \{-1079,-1748,-1818,-1988,-1838\},
+06908 \{ -569,-1238,-1308,-1478,-1328\},
+06909 \{ -989,-1658,-1728,-1898,-1748\},
+06910 \{ -859,-1528,-1598,-1768,-1618\}\},
+06911 \textcolor{comment}{/* UG.AC..CG */}
+06912 \{\{ DEF, -719, -789, -959, -809\},
+06913 \{ -999,-1668,-1738,-1908,-1758\},
+06914 \{ -499,-1168,-1238,-1408,-1258\},
+06915 \{ -989,-1658,-1728,-1898,-1748\},
+06916 \{ -789,-1458,-1528,-1698,-1548\}\},
+06917 \textcolor{comment}{/* UG.AG..CG */}
+06918 \{\{ DEF, -719, -789, -959, -809\},
+06919 \{-1079,-1748,-1818,-1988,-1838\},
+06920 \{ -569,-1238,-1308,-1478,-1328\},
+06921 \{ -989,-1658,-1728,-1898,-1748\},
+06922 \{ -859,-1528,-1598,-1768,-1618\}\},
+06923 \textcolor{comment}{/* UG.AU..CG */}
+06924 \{\{ DEF, -719, -789, -959, -809\},
+06925 \{-1079,-1748,-1818,-1988,-1838\},
+06926 \{ -719,-1388,-1458,-1628,-1478\},
+06927 \{ -989,-1658,-1728,-1898,-1748\},
+06928 \{ -909,-1578,-1648,-1818,-1668\}\}\},
+06929 \textcolor{comment}{/* UG.C@..CG */}
+06930 \{\{\{ DEF, -479, -479, -359, -479\},
+06931 \{ -100, -529, -529, -409, -529\},
+06932 \{ -100, -529, -529, -409, -529\},
+06933 \{ -100, -529, -529, -409, -529\},
+06934 \{ -100, -529, -529, -409, -529\}\},
+06935 \textcolor{comment}{/* UG.CA..CG */}
+06936 \{\{ DEF, -479, -479, -359, -479\},
+06937 \{-1079,-1508,-1508,-1388,-1508\},
+06938 \{ -569, -998, -998, -878, -998\},
+06939 \{ -989,-1418,-1418,-1298,-1418\},
+06940 \{ -859,-1288,-1288,-1168,-1288\}\},
+06941 \textcolor{comment}{/* UG.CC..CG */}
+06942 \{\{ DEF, -479, -479, -359, -479\},
+06943 \{ -999,-1428,-1428,-1308,-1428\},
+06944 \{ -499, -928, -928, -808, -928\},
+06945 \{ -989,-1418,-1418,-1298,-1418\},
+06946 \{ -789,-1218,-1218,-1098,-1218\}\},
+06947 \textcolor{comment}{/* UG.CG..CG */}
+06948 \{\{ DEF, -479, -479, -359, -479\},
+06949 \{-1079,-1508,-1508,-1388,-1508\},
+06950 \{ -569, -998, -998, -878, -998\},
+06951 \{ -989,-1418,-1418,-1298,-1418\},
+06952 \{ -859,-1288,-1288,-1168,-1288\}\},
+06953 \textcolor{comment}{/* UG.CU..CG */}
+06954 \{\{ DEF, -479, -479, -359, -479\},
+06955 \{-1079,-1508,-1508,-1388,-1508\},
+06956 \{ -719,-1148,-1148,-1028,-1148\},
+06957 \{ -989,-1418,-1418,-1298,-1418\},
+06958 \{ -909,-1338,-1338,-1218,-1338\}\}\},
+06959 \textcolor{comment}{/* UG.G@..CG */}
+06960 \{\{\{ DEF, -659, -809, -919, -809\},
+06961 \{ -100, -709, -859, -969, -859\},
+06962 \{ -100, -709, -859, -969, -859\},
+06963 \{ -100, -709, -859, -969, -859\},
+06964 \{ -100, -709, -859, -969, -859\}\},
+06965 \textcolor{comment}{/* UG.GA..CG */}
+06966 \{\{ DEF, -659, -809, -919, -809\},
+06967 \{-1079,-1688,-1838,-1948,-1838\},
+06968 \{ -569,-1178,-1328,-1438,-1328\},
+06969 \{ -989,-1598,-1748,-1858,-1748\},
+06970 \{ -859,-1468,-1618,-1728,-1618\}\},
+06971 \textcolor{comment}{/* UG.GC..CG */}
+06972 \{\{ DEF, -659, -809, -919, -809\},
+06973 \{ -999,-1608,-1758,-1868,-1758\},
+06974 \{ -499,-1108,-1258,-1368,-1258\},
+06975 \{ -989,-1598,-1748,-1858,-1748\},
+06976 \{ -789,-1398,-1548,-1658,-1548\}\},
+06977 \textcolor{comment}{/* UG.GG..CG */}
+06978 \{\{ DEF, -659, -809, -919, -809\},
+06979 \{-1079,-1688,-1838,-1948,-1838\},
+06980 \{ -569,-1178,-1328,-1438,-1328\},
+06981 \{ -989,-1598,-1748,-1858,-1748\},
+06982 \{ -859,-1468,-1618,-1728,-1618\}\},
+06983 \textcolor{comment}{/* UG.GU..CG */}
+06984 \{\{ DEF, -659, -809, -919, -809\},
+06985 \{-1079,-1688,-1838,-1948,-1838\},
+06986 \{ -719,-1328,-1478,-1588,-1478\},
+06987 \{ -989,-1598,-1748,-1858,-1748\},
+06988 \{ -909,-1518,-1668,-1778,-1668\}\}\},
+06989 \textcolor{comment}{/* UG.U@..CG */}
+06990 \{\{\{ DEF, -549, -439, -549, -359\},
+06991 \{ -100, -599, -489, -599, -409\},
+06992 \{ -100, -599, -489, -599, -409\},
+06993 \{ -100, -599, -489, -599, -409\},
+06994 \{ -100, -599, -489, -599, -409\}\},
+06995 \textcolor{comment}{/* UG.UA..CG */}
+06996 \{\{ DEF, -549, -439, -549, -359\},
+06997 \{-1079,-1578,-1468,-1578,-1388\},
+06998 \{ -569,-1068, -958,-1068, -878\},
+06999 \{ -989,-1488,-1378,-1488,-1298\},
+07000 \{ -859,-1358,-1248,-1358,-1168\}\},
+07001 \textcolor{comment}{/* UG.UC..CG */}
+07002 \{\{ DEF, -549, -439, -549, -359\},
+07003 \{ -999,-1498,-1388,-1498,-1308\},
+07004 \{ -499, -998, -888, -998, -808\},
+07005 \{ -989,-1488,-1378,-1488,-1298\},
+07006 \{ -789,-1288,-1178,-1288,-1098\}\},
+07007 \textcolor{comment}{/* UG.UG..CG */}
+07008 \{\{ DEF, -549, -439, -549, -359\},
+07009 \{-1079,-1578,-1468,-1578,-1388\},
+07010 \{ -569,-1068, -958,-1068, -878\},
+07011 \{ -989,-1488,-1378,-1488,-1298\},
+07012 \{ -859,-1358,-1248,-1358,-1168\}\},
+07013 \textcolor{comment}{/* UG.UU..CG */}
+07014 \{\{ DEF, -549, -439, -549, -359\},
+07015 \{-1079,-1578,-1468,-1578,-1388\},
+07016 \{ -719,-1218,-1108,-1218,-1028\},
+07017 \{ -989,-1488,-1378,-1488,-1298\},
+07018 \{ -909,-1408,-1298,-1408,-1218\}\}\}\},
+07019 \textcolor{comment}{/* UG.@@..GC */}
+07020 \{\{\{\{ 0, 0, 0, 0, 0\},
+07021 \{ DEF, DEF, DEF, DEF, DEF\},
+07022 \{ DEF, DEF, DEF, DEF, DEF\},
+07023 \{ DEF, DEF, DEF, DEF, DEF\},
+07024 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07025 \textcolor{comment}{/* UG.@A..GC */}
+07026 \{\{ 0, 0, 0, 0, 0\},
+07027 \{ -519, -519, -519, -519, -519\},
+07028 \{ -719, -719, -719, -719, -719\},
+07029 \{ -709, -709, -709, -709, -709\},
+07030 \{ -499, -499, -499, -499, -499\}\},
+07031 \textcolor{comment}{/* UG.@C..GC */}
+07032 \{\{ 0, 0, 0, 0, 0\},
+07033 \{ -879, -879, -879, -879, -879\},
+07034 \{ -309, -309, -309, -309, -309\},
+07035 \{ -739, -739, -739, -739, -739\},
+07036 \{ -499, -499, -499, -499, -499\}\},
+07037 \textcolor{comment}{/* UG.@G..GC */}
+07038 \{\{ 0, 0, 0, 0, 0\},
+07039 \{ -559, -559, -559, -559, -559\},
+07040 \{ -309, -309, -309, -309, -309\},
+07041 \{ -619, -619, -619, -619, -619\},
+07042 \{ -499, -499, -499, -499, -499\}\},
+07043 \textcolor{comment}{/* UG.@U..GC */}
+07044 \{\{ 0, 0, 0, 0, 0\},
+07045 \{ -879, -879, -879, -879, -879\},
+07046 \{ -389, -389, -389, -389, -389\},
+07047 \{ -739, -739, -739, -739, -739\},
+07048 \{ -569, -569, -569, -569, -569\}\}\},
+07049 \textcolor{comment}{/* UG.A@..GC */}
+07050 \{\{\{ DEF, -719, -789, -959, -809\},
+07051 \{ -100, -769, -839,-1009, -859\},
+07052 \{ -100, -769, -839,-1009, -859\},
+07053 \{ -100, -769, -839,-1009, -859\},
+07054 \{ -100, -769, -839,-1009, -859\}\},
+07055 \textcolor{comment}{/* UG.AA..GC */}
+07056 \{\{ DEF, -719, -789, -959, -809\},
+07057 \{ -569,-1238,-1308,-1478,-1328\},
+07058 \{ -769,-1438,-1508,-1678,-1528\},
+07059 \{ -759,-1428,-1498,-1668,-1518\},
+07060 \{ -549,-1218,-1288,-1458,-1308\}\},
+07061 \textcolor{comment}{/* UG.AC..GC */}
+07062 \{\{ DEF, -719, -789, -959, -809\},
+07063 \{ -929,-1598,-1668,-1838,-1688\},
+07064 \{ -359,-1028,-1098,-1268,-1118\},
+07065 \{ -789,-1458,-1528,-1698,-1548\},
+07066 \{ -549,-1218,-1288,-1458,-1308\}\},
+07067 \textcolor{comment}{/* UG.AG..GC */}
+07068 \{\{ DEF, -719, -789, -959, -809\},
+07069 \{ -609,-1278,-1348,-1518,-1368\},
+07070 \{ -359,-1028,-1098,-1268,-1118\},
+07071 \{ -669,-1338,-1408,-1578,-1428\},
+07072 \{ -549,-1218,-1288,-1458,-1308\}\},
+07073 \textcolor{comment}{/* UG.AU..GC */}
+07074 \{\{ DEF, -719, -789, -959, -809\},
+07075 \{ -929,-1598,-1668,-1838,-1688\},
+07076 \{ -439,-1108,-1178,-1348,-1198\},
+07077 \{ -789,-1458,-1528,-1698,-1548\},
+07078 \{ -619,-1288,-1358,-1528,-1378\}\}\},
+07079 \textcolor{comment}{/* UG.C@..GC */}
+07080 \{\{\{ DEF, -479, -479, -359, -479\},
+07081 \{ -100, -529, -529, -409, -529\},
+07082 \{ -100, -529, -529, -409, -529\},
+07083 \{ -100, -529, -529, -409, -529\},
+07084 \{ -100, -529, -529, -409, -529\}\},
+07085 \textcolor{comment}{/* UG.CA..GC */}
+07086 \{\{ DEF, -479, -479, -359, -479\},
+07087 \{ -569, -998, -998, -878, -998\},
+07088 \{ -769,-1198,-1198,-1078,-1198\},
+07089 \{ -759,-1188,-1188,-1068,-1188\},
+07090 \{ -549, -978, -978, -858, -978\}\},
+07091 \textcolor{comment}{/* UG.CC..GC */}
+07092 \{\{ DEF, -479, -479, -359, -479\},
+07093 \{ -929,-1358,-1358,-1238,-1358\},
+07094 \{ -359, -788, -788, -668, -788\},
+07095 \{ -789,-1218,-1218,-1098,-1218\},
+07096 \{ -549, -978, -978, -858, -978\}\},
+07097 \textcolor{comment}{/* UG.CG..GC */}
+07098 \{\{ DEF, -479, -479, -359, -479\},
+07099 \{ -609,-1038,-1038, -918,-1038\},
+07100 \{ -359, -788, -788, -668, -788\},
+07101 \{ -669,-1098,-1098, -978,-1098\},
+07102 \{ -549, -978, -978, -858, -978\}\},
+07103 \textcolor{comment}{/* UG.CU..GC */}
+07104 \{\{ DEF, -479, -479, -359, -479\},
+07105 \{ -929,-1358,-1358,-1238,-1358\},
+07106 \{ -439, -868, -868, -748, -868\},
+07107 \{ -789,-1218,-1218,-1098,-1218\},
+07108 \{ -619,-1048,-1048, -928,-1048\}\}\},
+07109 \textcolor{comment}{/* UG.G@..GC */}
+07110 \{\{\{ DEF, -659, -809, -919, -809\},
+07111 \{ -100, -709, -859, -969, -859\},
+07112 \{ -100, -709, -859, -969, -859\},
+07113 \{ -100, -709, -859, -969, -859\},
+07114 \{ -100, -709, -859, -969, -859\}\},
+07115 \textcolor{comment}{/* UG.GA..GC */}
+07116 \{\{ DEF, -659, -809, -919, -809\},
+07117 \{ -569,-1178,-1328,-1438,-1328\},
+07118 \{ -769,-1378,-1528,-1638,-1528\},
+07119 \{ -759,-1368,-1518,-1628,-1518\},
+07120 \{ -549,-1158,-1308,-1418,-1308\}\},
+07121 \textcolor{comment}{/* UG.GC..GC */}
+07122 \{\{ DEF, -659, -809, -919, -809\},
+07123 \{ -929,-1538,-1688,-1798,-1688\},
+07124 \{ -359, -968,-1118,-1228,-1118\},
+07125 \{ -789,-1398,-1548,-1658,-1548\},
+07126 \{ -549,-1158,-1308,-1418,-1308\}\},
+07127 \textcolor{comment}{/* UG.GG..GC */}
+07128 \{\{ DEF, -659, -809, -919, -809\},
+07129 \{ -609,-1218,-1368,-1478,-1368\},
+07130 \{ -359, -968,-1118,-1228,-1118\},
+07131 \{ -669,-1278,-1428,-1538,-1428\},
+07132 \{ -549,-1158,-1308,-1418,-1308\}\},
+07133 \textcolor{comment}{/* UG.GU..GC */}
+07134 \{\{ DEF, -659, -809, -919, -809\},
+07135 \{ -929,-1538,-1688,-1798,-1688\},
+07136 \{ -439,-1048,-1198,-1308,-1198\},
+07137 \{ -789,-1398,-1548,-1658,-1548\},
+07138 \{ -619,-1228,-1378,-1488,-1378\}\}\},
+07139 \textcolor{comment}{/* UG.U@..GC */}
+07140 \{\{\{ DEF, -549, -439, -549, -359\},
+07141 \{ -100, -599, -489, -599, -409\},
+07142 \{ -100, -599, -489, -599, -409\},
+07143 \{ -100, -599, -489, -599, -409\},
+07144 \{ -100, -599, -489, -599, -409\}\},
+07145 \textcolor{comment}{/* UG.UA..GC */}
+07146 \{\{ DEF, -549, -439, -549, -359\},
+07147 \{ -569,-1068, -958,-1068, -878\},
+07148 \{ -769,-1268,-1158,-1268,-1078\},
+07149 \{ -759,-1258,-1148,-1258,-1068\},
+07150 \{ -549,-1048, -938,-1048, -858\}\},
+07151 \textcolor{comment}{/* UG.UC..GC */}
+07152 \{\{ DEF, -549, -439, -549, -359\},
+07153 \{ -929,-1428,-1318,-1428,-1238\},
+07154 \{ -359, -858, -748, -858, -668\},
+07155 \{ -789,-1288,-1178,-1288,-1098\},
+07156 \{ -549,-1048, -938,-1048, -858\}\},
+07157 \textcolor{comment}{/* UG.UG..GC */}
+07158 \{\{ DEF, -549, -439, -549, -359\},
+07159 \{ -609,-1108, -998,-1108, -918\},
+07160 \{ -359, -858, -748, -858, -668\},
+07161 \{ -669,-1168,-1058,-1168, -978\},
+07162 \{ -549,-1048, -938,-1048, -858\}\},
+07163 \textcolor{comment}{/* UG.UU..GC */}
+07164 \{\{ DEF, -549, -439, -549, -359\},
+07165 \{ -929,-1428,-1318,-1428,-1238\},
+07166 \{ -439, -938, -828, -938, -748\},
+07167 \{ -789,-1288,-1178,-1288,-1098\},
+07168 \{ -619,-1118,-1008,-1118, -928\}\}\}\},
+07169 \textcolor{comment}{/* UG.@@..GU */}
+07170 \{\{\{\{ 0, 0, 0, 0, 0\},
+07171 \{ DEF, DEF, DEF, DEF, DEF\},
+07172 \{ DEF, DEF, DEF, DEF, DEF\},
+07173 \{ DEF, DEF, DEF, DEF, DEF\},
+07174 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07175 \textcolor{comment}{/* UG.@A..GU */}
+07176 \{\{ 0, 0, 0, 0, 0\},
+07177 \{ -429, -429, -429, -429, -429\},
+07178 \{ -259, -259, -259, -259, -259\},
+07179 \{ -339, -339, -339, -339, -339\},
+07180 \{ -329, -329, -329, -329, -329\}\},
+07181 \textcolor{comment}{/* UG.@C..GU */}
+07182 \{\{ 0, 0, 0, 0, 0\},
+07183 \{ -599, -599, -599, -599, -599\},
+07184 \{ -239, -239, -239, -239, -239\},
+07185 \{ -689, -689, -689, -689, -689\},
+07186 \{ -329, -329, -329, -329, -329\}\},
+07187 \textcolor{comment}{/* UG.@G..GU */}
+07188 \{\{ 0, 0, 0, 0, 0\},
+07189 \{ -599, -599, -599, -599, -599\},
+07190 \{ -239, -239, -239, -239, -239\},
+07191 \{ -689, -689, -689, -689, -689\},
+07192 \{ -329, -329, -329, -329, -329\}\},
+07193 \textcolor{comment}{/* UG.@U..GU */}
+07194 \{\{ 0, 0, 0, 0, 0\},
+07195 \{ -599, -599, -599, -599, -599\},
+07196 \{ -239, -239, -239, -239, -239\},
+07197 \{ -689, -689, -689, -689, -689\},
+07198 \{ -329, -329, -329, -329, -329\}\}\},
+07199 \textcolor{comment}{/* UG.A@..GU */}
+07200 \{\{\{ DEF, -719, -789, -959, -809\},
+07201 \{ -100, -769, -839,-1009, -859\},
+07202 \{ -100, -769, -839,-1009, -859\},
+07203 \{ -100, -769, -839,-1009, -859\},
+07204 \{ -100, -769, -839,-1009, -859\}\},
+07205 \textcolor{comment}{/* UG.AA..GU */}
+07206 \{\{ DEF, -719, -789, -959, -809\},
+07207 \{ -479,-1148,-1218,-1388,-1238\},
+07208 \{ -309, -978,-1048,-1218,-1068\},
+07209 \{ -389,-1058,-1128,-1298,-1148\},
+07210 \{ -379,-1048,-1118,-1288,-1138\}\},
+07211 \textcolor{comment}{/* UG.AC..GU */}
+07212 \{\{ DEF, -719, -789, -959, -809\},
+07213 \{ -649,-1318,-1388,-1558,-1408\},
+07214 \{ -289, -958,-1028,-1198,-1048\},
+07215 \{ -739,-1408,-1478,-1648,-1498\},
+07216 \{ -379,-1048,-1118,-1288,-1138\}\},
+07217 \textcolor{comment}{/* UG.AG..GU */}
+07218 \{\{ DEF, -719, -789, -959, -809\},
+07219 \{ -649,-1318,-1388,-1558,-1408\},
+07220 \{ -289, -958,-1028,-1198,-1048\},
+07221 \{ -739,-1408,-1478,-1648,-1498\},
+07222 \{ -379,-1048,-1118,-1288,-1138\}\},
+07223 \textcolor{comment}{/* UG.AU..GU */}
+07224 \{\{ DEF, -719, -789, -959, -809\},
+07225 \{ -649,-1318,-1388,-1558,-1408\},
+07226 \{ -289, -958,-1028,-1198,-1048\},
+07227 \{ -739,-1408,-1478,-1648,-1498\},
+07228 \{ -379,-1048,-1118,-1288,-1138\}\}\},
+07229 \textcolor{comment}{/* UG.C@..GU */}
+07230 \{\{\{ DEF, -479, -479, -359, -479\},
+07231 \{ -100, -529, -529, -409, -529\},
+07232 \{ -100, -529, -529, -409, -529\},
+07233 \{ -100, -529, -529, -409, -529\},
+07234 \{ -100, -529, -529, -409, -529\}\},
+07235 \textcolor{comment}{/* UG.CA..GU */}
+07236 \{\{ DEF, -479, -479, -359, -479\},
+07237 \{ -479, -908, -908, -788, -908\},
+07238 \{ -309, -738, -738, -618, -738\},
+07239 \{ -389, -818, -818, -698, -818\},
+07240 \{ -379, -808, -808, -688, -808\}\},
+07241 \textcolor{comment}{/* UG.CC..GU */}
+07242 \{\{ DEF, -479, -479, -359, -479\},
+07243 \{ -649,-1078,-1078, -958,-1078\},
+07244 \{ -289, -718, -718, -598, -718\},
+07245 \{ -739,-1168,-1168,-1048,-1168\},
+07246 \{ -379, -808, -808, -688, -808\}\},
+07247 \textcolor{comment}{/* UG.CG..GU */}
+07248 \{\{ DEF, -479, -479, -359, -479\},
+07249 \{ -649,-1078,-1078, -958,-1078\},
+07250 \{ -289, -718, -718, -598, -718\},
+07251 \{ -739,-1168,-1168,-1048,-1168\},
+07252 \{ -379, -808, -808, -688, -808\}\},
+07253 \textcolor{comment}{/* UG.CU..GU */}
+07254 \{\{ DEF, -479, -479, -359, -479\},
+07255 \{ -649,-1078,-1078, -958,-1078\},
+07256 \{ -289, -718, -718, -598, -718\},
+07257 \{ -739,-1168,-1168,-1048,-1168\},
+07258 \{ -379, -808, -808, -688, -808\}\}\},
+07259 \textcolor{comment}{/* UG.G@..GU */}
+07260 \{\{\{ DEF, -659, -809, -919, -809\},
+07261 \{ -100, -709, -859, -969, -859\},
+07262 \{ -100, -709, -859, -969, -859\},
+07263 \{ -100, -709, -859, -969, -859\},
+07264 \{ -100, -709, -859, -969, -859\}\},
+07265 \textcolor{comment}{/* UG.GA..GU */}
+07266 \{\{ DEF, -659, -809, -919, -809\},
+07267 \{ -479,-1088,-1238,-1348,-1238\},
+07268 \{ -309, -918,-1068,-1178,-1068\},
+07269 \{ -389, -998,-1148,-1258,-1148\},
+07270 \{ -379, -988,-1138,-1248,-1138\}\},
+07271 \textcolor{comment}{/* UG.GC..GU */}
+07272 \{\{ DEF, -659, -809, -919, -809\},
+07273 \{ -649,-1258,-1408,-1518,-1408\},
+07274 \{ -289, -898,-1048,-1158,-1048\},
+07275 \{ -739,-1348,-1498,-1608,-1498\},
+07276 \{ -379, -988,-1138,-1248,-1138\}\},
+07277 \textcolor{comment}{/* UG.GG..GU */}
+07278 \{\{ DEF, -659, -809, -919, -809\},
+07279 \{ -649,-1258,-1408,-1518,-1408\},
+07280 \{ -289, -898,-1048,-1158,-1048\},
+07281 \{ -739,-1348,-1498,-1608,-1498\},
+07282 \{ -379, -988,-1138,-1248,-1138\}\},
+07283 \textcolor{comment}{/* UG.GU..GU */}
+07284 \{\{ DEF, -659, -809, -919, -809\},
+07285 \{ -649,-1258,-1408,-1518,-1408\},
+07286 \{ -289, -898,-1048,-1158,-1048\},
+07287 \{ -739,-1348,-1498,-1608,-1498\},
+07288 \{ -379, -988,-1138,-1248,-1138\}\}\},
+07289 \textcolor{comment}{/* UG.U@..GU */}
+07290 \{\{\{ DEF, -549, -439, -549, -359\},
+07291 \{ -100, -599, -489, -599, -409\},
+07292 \{ -100, -599, -489, -599, -409\},
+07293 \{ -100, -599, -489, -599, -409\},
+07294 \{ -100, -599, -489, -599, -409\}\},
+07295 \textcolor{comment}{/* UG.UA..GU */}
+07296 \{\{ DEF, -549, -439, -549, -359\},
+07297 \{ -479, -978, -868, -978, -788\},
+07298 \{ -309, -808, -698, -808, -618\},
+07299 \{ -389, -888, -778, -888, -698\},
+07300 \{ -379, -878, -768, -878, -688\}\},
+07301 \textcolor{comment}{/* UG.UC..GU */}
+07302 \{\{ DEF, -549, -439, -549, -359\},
+07303 \{ -649,-1148,-1038,-1148, -958\},
+07304 \{ -289, -788, -678, -788, -598\},
+07305 \{ -739,-1238,-1128,-1238,-1048\},
+07306 \{ -379, -878, -768, -878, -688\}\},
+07307 \textcolor{comment}{/* UG.UG..GU */}
+07308 \{\{ DEF, -549, -439, -549, -359\},
+07309 \{ -649,-1148,-1038,-1148, -958\},
+07310 \{ -289, -788, -678, -788, -598\},
+07311 \{ -739,-1238,-1128,-1238,-1048\},
+07312 \{ -379, -878, -768, -878, -688\}\},
+07313 \textcolor{comment}{/* UG.UU..GU */}
+07314 \{\{ DEF, -549, -439, -549, -359\},
+07315 \{ -649,-1148,-1038,-1148, -958\},
+07316 \{ -289, -788, -678, -788, -598\},
+07317 \{ -739,-1238,-1128,-1238,-1048\},
+07318 \{ -379, -878, -768, -878, -688\}\}\}\},
+07319 \textcolor{comment}{/* UG.@@..UG */}
+07320 \{\{\{\{ 0, 0, 0, 0, 0\},
+07321 \{ DEF, DEF, DEF, DEF, DEF\},
+07322 \{ DEF, DEF, DEF, DEF, DEF\},
+07323 \{ DEF, DEF, DEF, DEF, DEF\},
+07324 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07325 \textcolor{comment}{/* UG.@A..UG */}
+07326 \{\{ 0, 0, 0, 0, 0\},
+07327 \{ -719, -719, -719, -719, -719\},
+07328 \{ -479, -479, -479, -479, -479\},
+07329 \{ -659, -659, -659, -659, -659\},
+07330 \{ -549, -549, -549, -549, -549\}\},
+07331 \textcolor{comment}{/* UG.@C..UG */}
+07332 \{\{ 0, 0, 0, 0, 0\},
+07333 \{ -789, -789, -789, -789, -789\},
+07334 \{ -479, -479, -479, -479, -479\},
+07335 \{ -809, -809, -809, -809, -809\},
+07336 \{ -439, -439, -439, -439, -439\}\},
+07337 \textcolor{comment}{/* UG.@G..UG */}
+07338 \{\{ 0, 0, 0, 0, 0\},
+07339 \{ -959, -959, -959, -959, -959\},
+07340 \{ -359, -359, -359, -359, -359\},
+07341 \{ -919, -919, -919, -919, -919\},
+07342 \{ -549, -549, -549, -549, -549\}\},
+07343 \textcolor{comment}{/* UG.@U..UG */}
+07344 \{\{ 0, 0, 0, 0, 0\},
+07345 \{ -809, -809, -809, -809, -809\},
+07346 \{ -479, -479, -479, -479, -479\},
+07347 \{ -809, -809, -809, -809, -809\},
+07348 \{ -359, -359, -359, -359, -359\}\}\},
+07349 \textcolor{comment}{/* UG.A@..UG */}
+07350 \{\{\{ DEF, -719, -789, -959, -809\},
+07351 \{ -100, -769, -839,-1009, -859\},
+07352 \{ -100, -769, -839,-1009, -859\},
+07353 \{ -100, -769, -839,-1009, -859\},
+07354 \{ -100, -769, -839,-1009, -859\}\},
+07355 \textcolor{comment}{/* UG.AA..UG */}
+07356 \{\{ DEF, -719, -789, -959, -809\},
+07357 \{ -769,-1438,-1508,-1678,-1528\},
+07358 \{ -529,-1198,-1268,-1438,-1288\},
+07359 \{ -709,-1378,-1448,-1618,-1468\},
+07360 \{ -599,-1268,-1338,-1508,-1358\}\},
+07361 \textcolor{comment}{/* UG.AC..UG */}
+07362 \{\{ DEF, -719, -789, -959, -809\},
+07363 \{ -839,-1508,-1578,-1748,-1598\},
+07364 \{ -529,-1198,-1268,-1438,-1288\},
+07365 \{ -859,-1528,-1598,-1768,-1618\},
+07366 \{ -489,-1158,-1228,-1398,-1248\}\},
+07367 \textcolor{comment}{/* UG.AG..UG */}
+07368 \{\{ DEF, -719, -789, -959, -809\},
+07369 \{-1009,-1678,-1748,-1918,-1768\},
+07370 \{ -409,-1078,-1148,-1318,-1168\},
+07371 \{ -969,-1638,-1708,-1878,-1728\},
+07372 \{ -599,-1268,-1338,-1508,-1358\}\},
+07373 \textcolor{comment}{/* UG.AU..UG */}
+07374 \{\{ DEF, -719, -789, -959, -809\},
+07375 \{ -859,-1528,-1598,-1768,-1618\},
+07376 \{ -529,-1198,-1268,-1438,-1288\},
+07377 \{ -859,-1528,-1598,-1768,-1618\},
+07378 \{ -409,-1078,-1148,-1318,-1168\}\}\},
+07379 \textcolor{comment}{/* UG.C@..UG */}
+07380 \{\{\{ DEF, -479, -479, -359, -479\},
+07381 \{ -100, -529, -529, -409, -529\},
+07382 \{ -100, -529, -529, -409, -529\},
+07383 \{ -100, -529, -529, -409, -529\},
+07384 \{ -100, -529, -529, -409, -529\}\},
+07385 \textcolor{comment}{/* UG.CA..UG */}
+07386 \{\{ DEF, -479, -479, -359, -479\},
+07387 \{ -769,-1198,-1198,-1078,-1198\},
+07388 \{ -529, -958, -958, -838, -958\},
+07389 \{ -709,-1138,-1138,-1018,-1138\},
+07390 \{ -599,-1028,-1028, -908,-1028\}\},
+07391 \textcolor{comment}{/* UG.CC..UG */}
+07392 \{\{ DEF, -479, -479, -359, -479\},
+07393 \{ -839,-1268,-1268,-1148,-1268\},
+07394 \{ -529, -958, -958, -838, -958\},
+07395 \{ -859,-1288,-1288,-1168,-1288\},
+07396 \{ -489, -918, -918, -798, -918\}\},
+07397 \textcolor{comment}{/* UG.CG..UG */}
+07398 \{\{ DEF, -479, -479, -359, -479\},
+07399 \{-1009,-1438,-1438,-1318,-1438\},
+07400 \{ -409, -838, -838, -718, -838\},
+07401 \{ -969,-1398,-1398,-1278,-1398\},
+07402 \{ -599,-1028,-1028, -908,-1028\}\},
+07403 \textcolor{comment}{/* UG.CU..UG */}
+07404 \{\{ DEF, -479, -479, -359, -479\},
+07405 \{ -859,-1288,-1288,-1168,-1288\},
+07406 \{ -529, -958, -958, -838, -958\},
+07407 \{ -859,-1288,-1288,-1168,-1288\},
+07408 \{ -409, -838, -838, -718, -838\}\}\},
+07409 \textcolor{comment}{/* UG.G@..UG */}
+07410 \{\{\{ DEF, -659, -809, -919, -809\},
+07411 \{ -100, -709, -859, -969, -859\},
+07412 \{ -100, -709, -859, -969, -859\},
+07413 \{ -100, -709, -859, -969, -859\},
+07414 \{ -100, -709, -859, -969, -859\}\},
+07415 \textcolor{comment}{/* UG.GA..UG */}
+07416 \{\{ DEF, -659, -809, -919, -809\},
+07417 \{ -769,-1378,-1528,-1638,-1528\},
+07418 \{ -529,-1138,-1288,-1398,-1288\},
+07419 \{ -709,-1318,-1468,-1578,-1468\},
+07420 \{ -599,-1208,-1358,-1468,-1358\}\},
+07421 \textcolor{comment}{/* UG.GC..UG */}
+07422 \{\{ DEF, -659, -809, -919, -809\},
+07423 \{ -839,-1448,-1598,-1708,-1598\},
+07424 \{ -529,-1138,-1288,-1398,-1288\},
+07425 \{ -859,-1468,-1618,-1728,-1618\},
+07426 \{ -489,-1098,-1248,-1358,-1248\}\},
+07427 \textcolor{comment}{/* UG.GG..UG */}
+07428 \{\{ DEF, -659, -809, -919, -809\},
+07429 \{-1009,-1618,-1768,-1878,-1768\},
+07430 \{ -409,-1018,-1168,-1278,-1168\},
+07431 \{ -969,-1578,-1728,-1838,-1728\},
+07432 \{ -599,-1208,-1358,-1468,-1358\}\},
+07433 \textcolor{comment}{/* UG.GU..UG */}
+07434 \{\{ DEF, -659, -809, -919, -809\},
+07435 \{ -859,-1468,-1618,-1728,-1618\},
+07436 \{ -529,-1138,-1288,-1398,-1288\},
+07437 \{ -859,-1468,-1618,-1728,-1618\},
+07438 \{ -409,-1018,-1168,-1278,-1168\}\}\},
+07439 \textcolor{comment}{/* UG.U@..UG */}
+07440 \{\{\{ DEF, -549, -439, -549, -359\},
+07441 \{ -100, -599, -489, -599, -409\},
+07442 \{ -100, -599, -489, -599, -409\},
+07443 \{ -100, -599, -489, -599, -409\},
+07444 \{ -100, -599, -489, -599, -409\}\},
+07445 \textcolor{comment}{/* UG.UA..UG */}
+07446 \{\{ DEF, -549, -439, -549, -359\},
+07447 \{ -769,-1268,-1158,-1268,-1078\},
+07448 \{ -529,-1028, -918,-1028, -838\},
+07449 \{ -709,-1208,-1098,-1208,-1018\},
+07450 \{ -599,-1098, -988,-1098, -908\}\},
+07451 \textcolor{comment}{/* UG.UC..UG */}
+07452 \{\{ DEF, -549, -439, -549, -359\},
+07453 \{ -839,-1338,-1228,-1338,-1148\},
+07454 \{ -529,-1028, -918,-1028, -838\},
+07455 \{ -859,-1358,-1248,-1358,-1168\},
+07456 \{ -489, -988, -878, -988, -798\}\},
+07457 \textcolor{comment}{/* UG.UG..UG */}
+07458 \{\{ DEF, -549, -439, -549, -359\},
+07459 \{-1009,-1508,-1398,-1508,-1318\},
+07460 \{ -409, -908, -798, -908, -718\},
+07461 \{ -969,-1468,-1358,-1468,-1278\},
+07462 \{ -599,-1098, -988,-1098, -908\}\},
+07463 \textcolor{comment}{/* UG.UU..UG */}
+07464 \{\{ DEF, -549, -439, -549, -359\},
+07465 \{ -859,-1358,-1248,-1358,-1168\},
+07466 \{ -529,-1028, -918,-1028, -838\},
+07467 \{ -859,-1358,-1248,-1358,-1168\},
+07468 \{ -409, -908, -798, -908, -718\}\}\}\},
+07469 \textcolor{comment}{/* UG.@@..AU */}
+07470 \{\{\{\{ 0, 0, 0, 0, 0\},
+07471 \{ DEF, DEF, DEF, DEF, DEF\},
+07472 \{ DEF, DEF, DEF, DEF, DEF\},
+07473 \{ DEF, DEF, DEF, DEF, DEF\},
+07474 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07475 \textcolor{comment}{/* UG.@A..AU */}
+07476 \{\{ 0, 0, 0, 0, 0\},
+07477 \{ -429, -429, -429, -429, -429\},
+07478 \{ -259, -259, -259, -259, -259\},
+07479 \{ -339, -339, -339, -339, -339\},
+07480 \{ -329, -329, -329, -329, -329\}\},
+07481 \textcolor{comment}{/* UG.@C..AU */}
+07482 \{\{ 0, 0, 0, 0, 0\},
+07483 \{ -599, -599, -599, -599, -599\},
+07484 \{ -239, -239, -239, -239, -239\},
+07485 \{ -689, -689, -689, -689, -689\},
+07486 \{ -329, -329, -329, -329, -329\}\},
+07487 \textcolor{comment}{/* UG.@G..AU */}
+07488 \{\{ 0, 0, 0, 0, 0\},
+07489 \{ -599, -599, -599, -599, -599\},
+07490 \{ -239, -239, -239, -239, -239\},
+07491 \{ -689, -689, -689, -689, -689\},
+07492 \{ -329, -329, -329, -329, -329\}\},
+07493 \textcolor{comment}{/* UG.@U..AU */}
+07494 \{\{ 0, 0, 0, 0, 0\},
+07495 \{ -599, -599, -599, -599, -599\},
+07496 \{ -239, -239, -239, -239, -239\},
+07497 \{ -689, -689, -689, -689, -689\},
+07498 \{ -329, -329, -329, -329, -329\}\}\},
+07499 \textcolor{comment}{/* UG.A@..AU */}
+07500 \{\{\{ DEF, -719, -789, -959, -809\},
+07501 \{ -100, -769, -839,-1009, -859\},
+07502 \{ -100, -769, -839,-1009, -859\},
+07503 \{ -100, -769, -839,-1009, -859\},
+07504 \{ -100, -769, -839,-1009, -859\}\},
+07505 \textcolor{comment}{/* UG.AA..AU */}
+07506 \{\{ DEF, -719, -789, -959, -809\},
+07507 \{ -479,-1148,-1218,-1388,-1238\},
+07508 \{ -309, -978,-1048,-1218,-1068\},
+07509 \{ -389,-1058,-1128,-1298,-1148\},
+07510 \{ -379,-1048,-1118,-1288,-1138\}\},
+07511 \textcolor{comment}{/* UG.AC..AU */}
+07512 \{\{ DEF, -719, -789, -959, -809\},
+07513 \{ -649,-1318,-1388,-1558,-1408\},
+07514 \{ -289, -958,-1028,-1198,-1048\},
+07515 \{ -739,-1408,-1478,-1648,-1498\},
+07516 \{ -379,-1048,-1118,-1288,-1138\}\},
+07517 \textcolor{comment}{/* UG.AG..AU */}
+07518 \{\{ DEF, -719, -789, -959, -809\},
+07519 \{ -649,-1318,-1388,-1558,-1408\},
+07520 \{ -289, -958,-1028,-1198,-1048\},
+07521 \{ -739,-1408,-1478,-1648,-1498\},
+07522 \{ -379,-1048,-1118,-1288,-1138\}\},
+07523 \textcolor{comment}{/* UG.AU..AU */}
+07524 \{\{ DEF, -719, -789, -959, -809\},
+07525 \{ -649,-1318,-1388,-1558,-1408\},
+07526 \{ -289, -958,-1028,-1198,-1048\},
+07527 \{ -739,-1408,-1478,-1648,-1498\},
+07528 \{ -379,-1048,-1118,-1288,-1138\}\}\},
+07529 \textcolor{comment}{/* UG.C@..AU */}
+07530 \{\{\{ DEF, -479, -479, -359, -479\},
+07531 \{ -100, -529, -529, -409, -529\},
+07532 \{ -100, -529, -529, -409, -529\},
+07533 \{ -100, -529, -529, -409, -529\},
+07534 \{ -100, -529, -529, -409, -529\}\},
+07535 \textcolor{comment}{/* UG.CA..AU */}
+07536 \{\{ DEF, -479, -479, -359, -479\},
+07537 \{ -479, -908, -908, -788, -908\},
+07538 \{ -309, -738, -738, -618, -738\},
+07539 \{ -389, -818, -818, -698, -818\},
+07540 \{ -379, -808, -808, -688, -808\}\},
+07541 \textcolor{comment}{/* UG.CC..AU */}
+07542 \{\{ DEF, -479, -479, -359, -479\},
+07543 \{ -649,-1078,-1078, -958,-1078\},
+07544 \{ -289, -718, -718, -598, -718\},
+07545 \{ -739,-1168,-1168,-1048,-1168\},
+07546 \{ -379, -808, -808, -688, -808\}\},
+07547 \textcolor{comment}{/* UG.CG..AU */}
+07548 \{\{ DEF, -479, -479, -359, -479\},
+07549 \{ -649,-1078,-1078, -958,-1078\},
+07550 \{ -289, -718, -718, -598, -718\},
+07551 \{ -739,-1168,-1168,-1048,-1168\},
+07552 \{ -379, -808, -808, -688, -808\}\},
+07553 \textcolor{comment}{/* UG.CU..AU */}
+07554 \{\{ DEF, -479, -479, -359, -479\},
+07555 \{ -649,-1078,-1078, -958,-1078\},
+07556 \{ -289, -718, -718, -598, -718\},
+07557 \{ -739,-1168,-1168,-1048,-1168\},
+07558 \{ -379, -808, -808, -688, -808\}\}\},
+07559 \textcolor{comment}{/* UG.G@..AU */}
+07560 \{\{\{ DEF, -659, -809, -919, -809\},
+07561 \{ -100, -709, -859, -969, -859\},
+07562 \{ -100, -709, -859, -969, -859\},
+07563 \{ -100, -709, -859, -969, -859\},
+07564 \{ -100, -709, -859, -969, -859\}\},
+07565 \textcolor{comment}{/* UG.GA..AU */}
+07566 \{\{ DEF, -659, -809, -919, -809\},
+07567 \{ -479,-1088,-1238,-1348,-1238\},
+07568 \{ -309, -918,-1068,-1178,-1068\},
+07569 \{ -389, -998,-1148,-1258,-1148\},
+07570 \{ -379, -988,-1138,-1248,-1138\}\},
+07571 \textcolor{comment}{/* UG.GC..AU */}
+07572 \{\{ DEF, -659, -809, -919, -809\},
+07573 \{ -649,-1258,-1408,-1518,-1408\},
+07574 \{ -289, -898,-1048,-1158,-1048\},
+07575 \{ -739,-1348,-1498,-1608,-1498\},
+07576 \{ -379, -988,-1138,-1248,-1138\}\},
+07577 \textcolor{comment}{/* UG.GG..AU */}
+07578 \{\{ DEF, -659, -809, -919, -809\},
+07579 \{ -649,-1258,-1408,-1518,-1408\},
+07580 \{ -289, -898,-1048,-1158,-1048\},
+07581 \{ -739,-1348,-1498,-1608,-1498\},
+07582 \{ -379, -988,-1138,-1248,-1138\}\},
+07583 \textcolor{comment}{/* UG.GU..AU */}
+07584 \{\{ DEF, -659, -809, -919, -809\},
+07585 \{ -649,-1258,-1408,-1518,-1408\},
+07586 \{ -289, -898,-1048,-1158,-1048\},
+07587 \{ -739,-1348,-1498,-1608,-1498\},
+07588 \{ -379, -988,-1138,-1248,-1138\}\}\},
+07589 \textcolor{comment}{/* UG.U@..AU */}
+07590 \{\{\{ DEF, -549, -439, -549, -359\},
+07591 \{ -100, -599, -489, -599, -409\},
+07592 \{ -100, -599, -489, -599, -409\},
+07593 \{ -100, -599, -489, -599, -409\},
+07594 \{ -100, -599, -489, -599, -409\}\},
+07595 \textcolor{comment}{/* UG.UA..AU */}
+07596 \{\{ DEF, -549, -439, -549, -359\},
+07597 \{ -479, -978, -868, -978, -788\},
+07598 \{ -309, -808, -698, -808, -618\},
+07599 \{ -389, -888, -778, -888, -698\},
+07600 \{ -379, -878, -768, -878, -688\}\},
+07601 \textcolor{comment}{/* UG.UC..AU */}
+07602 \{\{ DEF, -549, -439, -549, -359\},
+07603 \{ -649,-1148,-1038,-1148, -958\},
+07604 \{ -289, -788, -678, -788, -598\},
+07605 \{ -739,-1238,-1128,-1238,-1048\},
+07606 \{ -379, -878, -768, -878, -688\}\},
+07607 \textcolor{comment}{/* UG.UG..AU */}
+07608 \{\{ DEF, -549, -439, -549, -359\},
+07609 \{ -649,-1148,-1038,-1148, -958\},
+07610 \{ -289, -788, -678, -788, -598\},
+07611 \{ -739,-1238,-1128,-1238,-1048\},
+07612 \{ -379, -878, -768, -878, -688\}\},
+07613 \textcolor{comment}{/* UG.UU..AU */}
+07614 \{\{ DEF, -549, -439, -549, -359\},
+07615 \{ -649,-1148,-1038,-1148, -958\},
+07616 \{ -289, -788, -678, -788, -598\},
+07617 \{ -739,-1238,-1128,-1238,-1048\},
+07618 \{ -379, -878, -768, -878, -688\}\}\}\},
+07619 \textcolor{comment}{/* UG.@@..UA */}
+07620 \{\{\{\{ 0, 0, 0, 0, 0\},
+07621 \{ DEF, DEF, DEF, DEF, DEF\},
+07622 \{ DEF, DEF, DEF, DEF, DEF\},
+07623 \{ DEF, DEF, DEF, DEF, DEF\},
+07624 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07625 \textcolor{comment}{/* UG.@A..UA */}
+07626 \{\{ 0, 0, 0, 0, 0\},
+07627 \{ -399, -399, -399, -399, -399\},
+07628 \{ -429, -429, -429, -429, -429\},
+07629 \{ -379, -379, -379, -379, -379\},
+07630 \{ -279, -279, -279, -279, -279\}\},
+07631 \textcolor{comment}{/* UG.@C..UA */}
+07632 \{\{ 0, 0, 0, 0, 0\},
+07633 \{ -629, -629, -629, -629, -629\},
+07634 \{ -509, -509, -509, -509, -509\},
+07635 \{ -679, -679, -679, -679, -679\},
+07636 \{ -139, -139, -139, -139, -139\}\},
+07637 \textcolor{comment}{/* UG.@G..UA */}
+07638 \{\{ 0, 0, 0, 0, 0\},
+07639 \{ -889, -889, -889, -889, -889\},
+07640 \{ -199, -199, -199, -199, -199\},
+07641 \{ -889, -889, -889, -889, -889\},
+07642 \{ -279, -279, -279, -279, -279\}\},
+07643 \textcolor{comment}{/* UG.@U..UA */}
+07644 \{\{ 0, 0, 0, 0, 0\},
+07645 \{ -589, -589, -589, -589, -589\},
+07646 \{ -179, -179, -179, -179, -179\},
+07647 \{ -679, -679, -679, -679, -679\},
+07648 \{ -140, -140, -140, -140, -140\}\}\},
+07649 \textcolor{comment}{/* UG.A@..UA */}
+07650 \{\{\{ DEF, -719, -789, -959, -809\},
+07651 \{ -100, -769, -839,-1009, -859\},
+07652 \{ -100, -769, -839,-1009, -859\},
+07653 \{ -100, -769, -839,-1009, -859\},
+07654 \{ -100, -769, -839,-1009, -859\}\},
+07655 \textcolor{comment}{/* UG.AA..UA */}
+07656 \{\{ DEF, -719, -789, -959, -809\},
+07657 \{ -449,-1118,-1188,-1358,-1208\},
+07658 \{ -479,-1148,-1218,-1388,-1238\},
+07659 \{ -429,-1098,-1168,-1338,-1188\},
+07660 \{ -329, -998,-1068,-1238,-1088\}\},
+07661 \textcolor{comment}{/* UG.AC..UA */}
+07662 \{\{ DEF, -719, -789, -959, -809\},
+07663 \{ -679,-1348,-1418,-1588,-1438\},
+07664 \{ -559,-1228,-1298,-1468,-1318\},
+07665 \{ -729,-1398,-1468,-1638,-1488\},
+07666 \{ -189, -858, -928,-1098, -948\}\},
+07667 \textcolor{comment}{/* UG.AG..UA */}
+07668 \{\{ DEF, -719, -789, -959, -809\},
+07669 \{ -939,-1608,-1678,-1848,-1698\},
+07670 \{ -249, -918, -988,-1158,-1008\},
+07671 \{ -939,-1608,-1678,-1848,-1698\},
+07672 \{ -329, -998,-1068,-1238,-1088\}\},
+07673 \textcolor{comment}{/* UG.AU..UA */}
+07674 \{\{ DEF, -719, -789, -959, -809\},
+07675 \{ -639,-1308,-1378,-1548,-1398\},
+07676 \{ -229, -898, -968,-1138, -988\},
+07677 \{ -729,-1398,-1468,-1638,-1488\},
+07678 \{ -190, -859, -929,-1099, -949\}\}\},
+07679 \textcolor{comment}{/* UG.C@..UA */}
+07680 \{\{\{ DEF, -479, -479, -359, -479\},
+07681 \{ -100, -529, -529, -409, -529\},
+07682 \{ -100, -529, -529, -409, -529\},
+07683 \{ -100, -529, -529, -409, -529\},
+07684 \{ -100, -529, -529, -409, -529\}\},
+07685 \textcolor{comment}{/* UG.CA..UA */}
+07686 \{\{ DEF, -479, -479, -359, -479\},
+07687 \{ -449, -878, -878, -758, -878\},
+07688 \{ -479, -908, -908, -788, -908\},
+07689 \{ -429, -858, -858, -738, -858\},
+07690 \{ -329, -758, -758, -638, -758\}\},
+07691 \textcolor{comment}{/* UG.CC..UA */}
+07692 \{\{ DEF, -479, -479, -359, -479\},
+07693 \{ -679,-1108,-1108, -988,-1108\},
+07694 \{ -559, -988, -988, -868, -988\},
+07695 \{ -729,-1158,-1158,-1038,-1158\},
+07696 \{ -189, -618, -618, -498, -618\}\},
+07697 \textcolor{comment}{/* UG.CG..UA */}
+07698 \{\{ DEF, -479, -479, -359, -479\},
+07699 \{ -939,-1368,-1368,-1248,-1368\},
+07700 \{ -249, -678, -678, -558, -678\},
+07701 \{ -939,-1368,-1368,-1248,-1368\},
+07702 \{ -329, -758, -758, -638, -758\}\},
+07703 \textcolor{comment}{/* UG.CU..UA */}
+07704 \{\{ DEF, -479, -479, -359, -479\},
+07705 \{ -639,-1068,-1068, -948,-1068\},
+07706 \{ -229, -658, -658, -538, -658\},
+07707 \{ -729,-1158,-1158,-1038,-1158\},
+07708 \{ -190, -619, -619, -499, -619\}\}\},
+07709 \textcolor{comment}{/* UG.G@..UA */}
+07710 \{\{\{ DEF, -659, -809, -919, -809\},
+07711 \{ -100, -709, -859, -969, -859\},
+07712 \{ -100, -709, -859, -969, -859\},
+07713 \{ -100, -709, -859, -969, -859\},
+07714 \{ -100, -709, -859, -969, -859\}\},
+07715 \textcolor{comment}{/* UG.GA..UA */}
+07716 \{\{ DEF, -659, -809, -919, -809\},
+07717 \{ -449,-1058,-1208,-1318,-1208\},
+07718 \{ -479,-1088,-1238,-1348,-1238\},
+07719 \{ -429,-1038,-1188,-1298,-1188\},
+07720 \{ -329, -938,-1088,-1198,-1088\}\},
+07721 \textcolor{comment}{/* UG.GC..UA */}
+07722 \{\{ DEF, -659, -809, -919, -809\},
+07723 \{ -679,-1288,-1438,-1548,-1438\},
+07724 \{ -559,-1168,-1318,-1428,-1318\},
+07725 \{ -729,-1338,-1488,-1598,-1488\},
+07726 \{ -189, -798, -948,-1058, -948\}\},
+07727 \textcolor{comment}{/* UG.GG..UA */}
+07728 \{\{ DEF, -659, -809, -919, -809\},
+07729 \{ -939,-1548,-1698,-1808,-1698\},
+07730 \{ -249, -858,-1008,-1118,-1008\},
+07731 \{ -939,-1548,-1698,-1808,-1698\},
+07732 \{ -329, -938,-1088,-1198,-1088\}\},
+07733 \textcolor{comment}{/* UG.GU..UA */}
+07734 \{\{ DEF, -659, -809, -919, -809\},
+07735 \{ -639,-1248,-1398,-1508,-1398\},
+07736 \{ -229, -838, -988,-1098, -988\},
+07737 \{ -729,-1338,-1488,-1598,-1488\},
+07738 \{ -190, -799, -949,-1059, -949\}\}\},
+07739 \textcolor{comment}{/* UG.U@..UA */}
+07740 \{\{\{ DEF, -549, -439, -549, -359\},
+07741 \{ -100, -599, -489, -599, -409\},
+07742 \{ -100, -599, -489, -599, -409\},
+07743 \{ -100, -599, -489, -599, -409\},
+07744 \{ -100, -599, -489, -599, -409\}\},
+07745 \textcolor{comment}{/* UG.UA..UA */}
+07746 \{\{ DEF, -549, -439, -549, -359\},
+07747 \{ -449, -948, -838, -948, -758\},
+07748 \{ -479, -978, -868, -978, -788\},
+07749 \{ -429, -928, -818, -928, -738\},
+07750 \{ -329, -828, -718, -828, -638\}\},
+07751 \textcolor{comment}{/* UG.UC..UA */}
+07752 \{\{ DEF, -549, -439, -549, -359\},
+07753 \{ -679,-1178,-1068,-1178, -988\},
+07754 \{ -559,-1058, -948,-1058, -868\},
+07755 \{ -729,-1228,-1118,-1228,-1038\},
+07756 \{ -189, -688, -578, -688, -498\}\},
+07757 \textcolor{comment}{/* UG.UG..UA */}
+07758 \{\{ DEF, -549, -439, -549, -359\},
+07759 \{ -939,-1438,-1328,-1438,-1248\},
+07760 \{ -249, -748, -638, -748, -558\},
+07761 \{ -939,-1438,-1328,-1438,-1248\},
+07762 \{ -329, -828, -718, -828, -638\}\},
+07763 \textcolor{comment}{/* UG.UU..UA */}
+07764 \{\{ DEF, -549, -439, -549, -359\},
+07765 \{ -639,-1138,-1028,-1138, -948\},
+07766 \{ -229, -728, -618, -728, -538\},
+07767 \{ -729,-1228,-1118,-1228,-1038\},
+07768 \{ -190, -689, -579, -689, -499\}\}\}\},
+07769 \textcolor{comment}{/* UG.@@.. @ */}
+07770 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+07771 \{ DEF, DEF, DEF, DEF, DEF\},
+07772 \{ DEF, DEF, DEF, DEF, DEF\},
+07773 \{ DEF, DEF, DEF, DEF, DEF\},
+07774 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07775 \textcolor{comment}{/* UG.@A.. @ */}
+07776 \{\{ DEF, DEF, DEF, DEF, DEF\},
+07777 \{ DEF, DEF, DEF, DEF, DEF\},
+07778 \{ DEF, DEF, DEF, DEF, DEF\},
+07779 \{ DEF, DEF, DEF, DEF, DEF\},
+07780 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07781 \textcolor{comment}{/* UG.@C.. @ */}
+07782 \{\{ DEF, DEF, DEF, DEF, DEF\},
+07783 \{ DEF, DEF, DEF, DEF, DEF\},
+07784 \{ DEF, DEF, DEF, DEF, DEF\},
+07785 \{ DEF, DEF, DEF, DEF, DEF\},
+07786 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07787 \textcolor{comment}{/* UG.@G.. @ */}
+07788 \{\{ DEF, DEF, DEF, DEF, DEF\},
+07789 \{ DEF, DEF, DEF, DEF, DEF\},
+07790 \{ DEF, DEF, DEF, DEF, DEF\},
+07791 \{ DEF, DEF, DEF, DEF, DEF\},
+07792 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07793 \textcolor{comment}{/* UG.@U.. @ */}
+07794 \{\{ DEF, DEF, DEF, DEF, DEF\},
+07795 \{ DEF, DEF, DEF, DEF, DEF\},
+07796 \{ DEF, DEF, DEF, DEF, DEF\},
+07797 \{ DEF, DEF, DEF, DEF, DEF\},
+07798 \{ DEF, DEF, DEF, DEF, DEF\}\}\},
+07799 \textcolor{comment}{/* UG.A@.. @ */}
+07800 \{\{\{ -100, -769, -839,-1009, -859\},
+07801 \{ -100, -769, -839,-1009, -859\},
+07802 \{ -100, -769, -839,-1009, -859\},
+07803 \{ -100, -769, -839,-1009, -859\},
+07804 \{ -100, -769, -839,-1009, -859\}\},
+07805 \textcolor{comment}{/* UG.AA.. @ */}
+07806 \{\{ -100, -769, -839,-1009, -859\},
+07807 \{ -100, -769, -839,-1009, -859\},
+07808 \{ -100, -769, -839,-1009, -859\},
+07809 \{ -100, -769, -839,-1009, -859\},
+07810 \{ -100, -769, -839,-1009, -859\}\},
+07811 \textcolor{comment}{/* UG.AC.. @ */}
+07812 \{\{ -100, -769, -839,-1009, -859\},
+07813 \{ -100, -769, -839,-1009, -859\},
+07814 \{ -100, -769, -839,-1009, -859\},
+07815 \{ -100, -769, -839,-1009, -859\},
+07816 \{ -100, -769, -839,-1009, -859\}\},
+07817 \textcolor{comment}{/* UG.AG.. @ */}
+07818 \{\{ -100, -769, -839,-1009, -859\},
+07819 \{ -100, -769, -839,-1009, -859\},
+07820 \{ -100, -769, -839,-1009, -859\},
+07821 \{ -100, -769, -839,-1009, -859\},
+07822 \{ -100, -769, -839,-1009, -859\}\},
+07823 \textcolor{comment}{/* UG.AU.. @ */}
+07824 \{\{ -100, -769, -839,-1009, -859\},
+07825 \{ -100, -769, -839,-1009, -859\},
+07826 \{ -100, -769, -839,-1009, -859\},
+07827 \{ -100, -769, -839,-1009, -859\},
+07828 \{ -100, -769, -839,-1009, -859\}\}\},
+07829 \textcolor{comment}{/* UG.C@.. @ */}
+07830 \{\{\{ -100, -529, -529, -409, -529\},
+07831 \{ -100, -529, -529, -409, -529\},
+07832 \{ -100, -529, -529, -409, -529\},
+07833 \{ -100, -529, -529, -409, -529\},
+07834 \{ -100, -529, -529, -409, -529\}\},
+07835 \textcolor{comment}{/* UG.CA.. @ */}
+07836 \{\{ -100, -529, -529, -409, -529\},
+07837 \{ -100, -529, -529, -409, -529\},
+07838 \{ -100, -529, -529, -409, -529\},
+07839 \{ -100, -529, -529, -409, -529\},
+07840 \{ -100, -529, -529, -409, -529\}\},
+07841 \textcolor{comment}{/* UG.CC.. @ */}
+07842 \{\{ -100, -529, -529, -409, -529\},
+07843 \{ -100, -529, -529, -409, -529\},
+07844 \{ -100, -529, -529, -409, -529\},
+07845 \{ -100, -529, -529, -409, -529\},
+07846 \{ -100, -529, -529, -409, -529\}\},
+07847 \textcolor{comment}{/* UG.CG.. @ */}
+07848 \{\{ -100, -529, -529, -409, -529\},
+07849 \{ -100, -529, -529, -409, -529\},
+07850 \{ -100, -529, -529, -409, -529\},
+07851 \{ -100, -529, -529, -409, -529\},
+07852 \{ -100, -529, -529, -409, -529\}\},
+07853 \textcolor{comment}{/* UG.CU.. @ */}
+07854 \{\{ -100, -529, -529, -409, -529\},
+07855 \{ -100, -529, -529, -409, -529\},
+07856 \{ -100, -529, -529, -409, -529\},
+07857 \{ -100, -529, -529, -409, -529\},
+07858 \{ -100, -529, -529, -409, -529\}\}\},
+07859 \textcolor{comment}{/* UG.G@.. @ */}
+07860 \{\{\{ -100, -709, -859, -969, -859\},
+07861 \{ -100, -709, -859, -969, -859\},
+07862 \{ -100, -709, -859, -969, -859\},
+07863 \{ -100, -709, -859, -969, -859\},
+07864 \{ -100, -709, -859, -969, -859\}\},
+07865 \textcolor{comment}{/* UG.GA.. @ */}
+07866 \{\{ -100, -709, -859, -969, -859\},
+07867 \{ -100, -709, -859, -969, -859\},
+07868 \{ -100, -709, -859, -969, -859\},
+07869 \{ -100, -709, -859, -969, -859\},
+07870 \{ -100, -709, -859, -969, -859\}\},
+07871 \textcolor{comment}{/* UG.GC.. @ */}
+07872 \{\{ -100, -709, -859, -969, -859\},
+07873 \{ -100, -709, -859, -969, -859\},
+07874 \{ -100, -709, -859, -969, -859\},
+07875 \{ -100, -709, -859, -969, -859\},
+07876 \{ -100, -709, -859, -969, -859\}\},
+07877 \textcolor{comment}{/* UG.GG.. @ */}
+07878 \{\{ -100, -709, -859, -969, -859\},
+07879 \{ -100, -709, -859, -969, -859\},
+07880 \{ -100, -709, -859, -969, -859\},
+07881 \{ -100, -709, -859, -969, -859\},
+07882 \{ -100, -709, -859, -969, -859\}\},
+07883 \textcolor{comment}{/* UG.GU.. @ */}
+07884 \{\{ -100, -709, -859, -969, -859\},
+07885 \{ -100, -709, -859, -969, -859\},
+07886 \{ -100, -709, -859, -969, -859\},
+07887 \{ -100, -709, -859, -969, -859\},
+07888 \{ -100, -709, -859, -969, -859\}\}\},
+07889 \textcolor{comment}{/* UG.U@.. @ */}
+07890 \{\{\{ -100, -599, -489, -599, -409\},
+07891 \{ -100, -599, -489, -599, -409\},
+07892 \{ -100, -599, -489, -599, -409\},
+07893 \{ -100, -599, -489, -599, -409\},
+07894 \{ -100, -599, -489, -599, -409\}\},
+07895 \textcolor{comment}{/* UG.UA.. @ */}
+07896 \{\{ -100, -599, -489, -599, -409\},
+07897 \{ -100, -599, -489, -599, -409\},
+07898 \{ -100, -599, -489, -599, -409\},
+07899 \{ -100, -599, -489, -599, -409\},
+07900 \{ -100, -599, -489, -599, -409\}\},
+07901 \textcolor{comment}{/* UG.UC.. @ */}
+07902 \{\{ -100, -599, -489, -599, -409\},
+07903 \{ -100, -599, -489, -599, -409\},
+07904 \{ -100, -599, -489, -599, -409\},
+07905 \{ -100, -599, -489, -599, -409\},
+07906 \{ -100, -599, -489, -599, -409\}\},
+07907 \textcolor{comment}{/* UG.UG.. @ */}
+07908 \{\{ -100, -599, -489, -599, -409\},
+07909 \{ -100, -599, -489, -599, -409\},
+07910 \{ -100, -599, -489, -599, -409\},
+07911 \{ -100, -599, -489, -599, -409\},
+07912 \{ -100, -599, -489, -599, -409\}\},
+07913 \textcolor{comment}{/* UG.UU.. @ */}
+07914 \{\{ -100, -599, -489, -599, -409\},
+07915 \{ -100, -599, -489, -599, -409\},
+07916 \{ -100, -599, -489, -599, -409\},
+07917 \{ -100, -599, -489, -599, -409\},
+07918 \{ -100, -599, -489, -599, -409\}\}\}\}\},
+07919 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+07920 \textcolor{comment}{/* AU.@@..CG */}
+07921 \{\{\{\{ 0, 0, 0, 0, 0\},
+07922 \{ DEF, DEF, DEF, DEF, DEF\},
+07923 \{ DEF, DEF, DEF, DEF, DEF\},
+07924 \{ DEF, DEF, DEF, DEF, DEF\},
+07925 \{ DEF, DEF, DEF, DEF, DEF\}\},
+07926 \textcolor{comment}{/* AU.@A..CG */}
+07927 \{\{ 0, 0, 0, 0, 0\},
+07928 \{-1029,-1029,-1029,-1029,-1029\},
+07929 \{ -519, -519, -519, -519, -519\},
+07930 \{ -939, -939, -939, -939, -939\},
+07931 \{ -809, -809, -809, -809, -809\}\},
+07932 \textcolor{comment}{/* AU.@C..CG */}
+07933 \{\{ 0, 0, 0, 0, 0\},
+07934 \{ -949, -949, -949, -949, -949\},
+07935 \{ -449, -449, -449, -449, -449\},
+07936 \{ -939, -939, -939, -939, -939\},
+07937 \{ -739, -739, -739, -739, -739\}\},
+07938 \textcolor{comment}{/* AU.@G..CG */}
+07939 \{\{ 0, 0, 0, 0, 0\},
+07940 \{-1029,-1029,-1029,-1029,-1029\},
+07941 \{ -519, -519, -519, -519, -519\},
+07942 \{ -939, -939, -939, -939, -939\},
+07943 \{ -809, -809, -809, -809, -809\}\},
+07944 \textcolor{comment}{/* AU.@U..CG */}
+07945 \{\{ 0, 0, 0, 0, 0\},
+07946 \{-1029,-1029,-1029,-1029,-1029\},
+07947 \{ -669, -669, -669, -669, -669\},
+07948 \{ -939, -939, -939, -939, -939\},
+07949 \{ -859, -859, -859, -859, -859\}\}\},
+07950 \textcolor{comment}{/* AU.A@..CG */}
+07951 \{\{\{ DEF, -429, -599, -599, -599\},
+07952 \{ -100, -479, -649, -649, -649\},
+07953 \{ -100, -479, -649, -649, -649\},
+07954 \{ -100, -479, -649, -649, -649\},
+07955 \{ -100, -479, -649, -649, -649\}\},
+07956 \textcolor{comment}{/* AU.AA..CG */}
+07957 \{\{ DEF, -429, -599, -599, -599\},
+07958 \{-1079,-1458,-1628,-1628,-1628\},
+07959 \{ -569, -948,-1118,-1118,-1118\},
+07960 \{ -989,-1368,-1538,-1538,-1538\},
+07961 \{ -859,-1238,-1408,-1408,-1408\}\},
+07962 \textcolor{comment}{/* AU.AC..CG */}
+07963 \{\{ DEF, -429, -599, -599, -599\},
+07964 \{ -999,-1378,-1548,-1548,-1548\},
+07965 \{ -499, -878,-1048,-1048,-1048\},
+07966 \{ -989,-1368,-1538,-1538,-1538\},
+07967 \{ -789,-1168,-1338,-1338,-1338\}\},
+07968 \textcolor{comment}{/* AU.AG..CG */}
+07969 \{\{ DEF, -429, -599, -599, -599\},
+07970 \{-1079,-1458,-1628,-1628,-1628\},
+07971 \{ -569, -948,-1118,-1118,-1118\},
+07972 \{ -989,-1368,-1538,-1538,-1538\},
+07973 \{ -859,-1238,-1408,-1408,-1408\}\},
+07974 \textcolor{comment}{/* AU.AU..CG */}
+07975 \{\{ DEF, -429, -599, -599, -599\},
+07976 \{-1079,-1458,-1628,-1628,-1628\},
+07977 \{ -719,-1098,-1268,-1268,-1268\},
+07978 \{ -989,-1368,-1538,-1538,-1538\},
+07979 \{ -909,-1288,-1458,-1458,-1458\}\}\},
+07980 \textcolor{comment}{/* AU.C@..CG */}
+07981 \{\{\{ DEF, -259, -239, -239, -239\},
+07982 \{ -100, -309, -289, -289, -289\},
+07983 \{ -100, -309, -289, -289, -289\},
+07984 \{ -100, -309, -289, -289, -289\},
+07985 \{ -100, -309, -289, -289, -289\}\},
+07986 \textcolor{comment}{/* AU.CA..CG */}
+07987 \{\{ DEF, -259, -239, -239, -239\},
+07988 \{-1079,-1288,-1268,-1268,-1268\},
+07989 \{ -569, -778, -758, -758, -758\},
+07990 \{ -989,-1198,-1178,-1178,-1178\},
+07991 \{ -859,-1068,-1048,-1048,-1048\}\},
+07992 \textcolor{comment}{/* AU.CC..CG */}
+07993 \{\{ DEF, -259, -239, -239, -239\},
+07994 \{ -999,-1208,-1188,-1188,-1188\},
+07995 \{ -499, -708, -688, -688, -688\},
+07996 \{ -989,-1198,-1178,-1178,-1178\},
+07997 \{ -789, -998, -978, -978, -978\}\},
+07998 \textcolor{comment}{/* AU.CG..CG */}
+07999 \{\{ DEF, -259, -239, -239, -239\},
+08000 \{-1079,-1288,-1268,-1268,-1268\},
+08001 \{ -569, -778, -758, -758, -758\},
+08002 \{ -989,-1198,-1178,-1178,-1178\},
+08003 \{ -859,-1068,-1048,-1048,-1048\}\},
+08004 \textcolor{comment}{/* AU.CU..CG */}
+08005 \{\{ DEF, -259, -239, -239, -239\},
+08006 \{-1079,-1288,-1268,-1268,-1268\},
+08007 \{ -719, -928, -908, -908, -908\},
+08008 \{ -989,-1198,-1178,-1178,-1178\},
+08009 \{ -909,-1118,-1098,-1098,-1098\}\}\},
+08010 \textcolor{comment}{/* AU.G@..CG */}
+08011 \{\{\{ DEF, -339, -689, -689, -689\},
+08012 \{ -100, -389, -739, -739, -739\},
+08013 \{ -100, -389, -739, -739, -739\},
+08014 \{ -100, -389, -739, -739, -739\},
+08015 \{ -100, -389, -739, -739, -739\}\},
+08016 \textcolor{comment}{/* AU.GA..CG */}
+08017 \{\{ DEF, -339, -689, -689, -689\},
+08018 \{-1079,-1368,-1718,-1718,-1718\},
+08019 \{ -569, -858,-1208,-1208,-1208\},
+08020 \{ -989,-1278,-1628,-1628,-1628\},
+08021 \{ -859,-1148,-1498,-1498,-1498\}\},
+08022 \textcolor{comment}{/* AU.GC..CG */}
+08023 \{\{ DEF, -339, -689, -689, -689\},
+08024 \{ -999,-1288,-1638,-1638,-1638\},
+08025 \{ -499, -788,-1138,-1138,-1138\},
+08026 \{ -989,-1278,-1628,-1628,-1628\},
+08027 \{ -789,-1078,-1428,-1428,-1428\}\},
+08028 \textcolor{comment}{/* AU.GG..CG */}
+08029 \{\{ DEF, -339, -689, -689, -689\},
+08030 \{-1079,-1368,-1718,-1718,-1718\},
+08031 \{ -569, -858,-1208,-1208,-1208\},
+08032 \{ -989,-1278,-1628,-1628,-1628\},
+08033 \{ -859,-1148,-1498,-1498,-1498\}\},
+08034 \textcolor{comment}{/* AU.GU..CG */}
+08035 \{\{ DEF, -339, -689, -689, -689\},
+08036 \{-1079,-1368,-1718,-1718,-1718\},
+08037 \{ -719,-1008,-1358,-1358,-1358\},
+08038 \{ -989,-1278,-1628,-1628,-1628\},
+08039 \{ -909,-1198,-1548,-1548,-1548\}\}\},
+08040 \textcolor{comment}{/* AU.U@..CG */}
+08041 \{\{\{ DEF, -329, -329, -329, -329\},
+08042 \{ -100, -379, -379, -379, -379\},
+08043 \{ -100, -379, -379, -379, -379\},
+08044 \{ -100, -379, -379, -379, -379\},
+08045 \{ -100, -379, -379, -379, -379\}\},
+08046 \textcolor{comment}{/* AU.UA..CG */}
+08047 \{\{ DEF, -329, -329, -329, -329\},
+08048 \{-1079,-1358,-1358,-1358,-1358\},
+08049 \{ -569, -848, -848, -848, -848\},
+08050 \{ -989,-1268,-1268,-1268,-1268\},
+08051 \{ -859,-1138,-1138,-1138,-1138\}\},
+08052 \textcolor{comment}{/* AU.UC..CG */}
+08053 \{\{ DEF, -329, -329, -329, -329\},
+08054 \{ -999,-1278,-1278,-1278,-1278\},
+08055 \{ -499, -778, -778, -778, -778\},
+08056 \{ -989,-1268,-1268,-1268,-1268\},
+08057 \{ -789,-1068,-1068,-1068,-1068\}\},
+08058 \textcolor{comment}{/* AU.UG..CG */}
+08059 \{\{ DEF, -329, -329, -329, -329\},
+08060 \{-1079,-1358,-1358,-1358,-1358\},
+08061 \{ -569, -848, -848, -848, -848\},
+08062 \{ -989,-1268,-1268,-1268,-1268\},
+08063 \{ -859,-1138,-1138,-1138,-1138\}\},
+08064 \textcolor{comment}{/* AU.UU..CG */}
+08065 \{\{ DEF, -329, -329, -329, -329\},
+08066 \{-1079,-1358,-1358,-1358,-1358\},
+08067 \{ -719, -998, -998, -998, -998\},
+08068 \{ -989,-1268,-1268,-1268,-1268\},
+08069 \{ -909,-1188,-1188,-1188,-1188\}\}\}\},
+08070 \textcolor{comment}{/* AU.@@..GC */}
+08071 \{\{\{\{ 0, 0, 0, 0, 0\},
+08072 \{ DEF, DEF, DEF, DEF, DEF\},
+08073 \{ DEF, DEF, DEF, DEF, DEF\},
+08074 \{ DEF, DEF, DEF, DEF, DEF\},
+08075 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08076 \textcolor{comment}{/* AU.@A..GC */}
+08077 \{\{ 0, 0, 0, 0, 0\},
+08078 \{ -519, -519, -519, -519, -519\},
+08079 \{ -719, -719, -719, -719, -719\},
+08080 \{ -709, -709, -709, -709, -709\},
+08081 \{ -499, -499, -499, -499, -499\}\},
+08082 \textcolor{comment}{/* AU.@C..GC */}
+08083 \{\{ 0, 0, 0, 0, 0\},
+08084 \{ -879, -879, -879, -879, -879\},
+08085 \{ -309, -309, -309, -309, -309\},
+08086 \{ -739, -739, -739, -739, -739\},
+08087 \{ -499, -499, -499, -499, -499\}\},
+08088 \textcolor{comment}{/* AU.@G..GC */}
+08089 \{\{ 0, 0, 0, 0, 0\},
+08090 \{ -559, -559, -559, -559, -559\},
+08091 \{ -309, -309, -309, -309, -309\},
+08092 \{ -619, -619, -619, -619, -619\},
+08093 \{ -499, -499, -499, -499, -499\}\},
+08094 \textcolor{comment}{/* AU.@U..GC */}
+08095 \{\{ 0, 0, 0, 0, 0\},
+08096 \{ -879, -879, -879, -879, -879\},
+08097 \{ -389, -389, -389, -389, -389\},
+08098 \{ -739, -739, -739, -739, -739\},
+08099 \{ -569, -569, -569, -569, -569\}\}\},
+08100 \textcolor{comment}{/* AU.A@..GC */}
+08101 \{\{\{ DEF, -429, -599, -599, -599\},
+08102 \{ -100, -479, -649, -649, -649\},
+08103 \{ -100, -479, -649, -649, -649\},
+08104 \{ -100, -479, -649, -649, -649\},
+08105 \{ -100, -479, -649, -649, -649\}\},
+08106 \textcolor{comment}{/* AU.AA..GC */}
+08107 \{\{ DEF, -429, -599, -599, -599\},
+08108 \{ -569, -948,-1118,-1118,-1118\},
+08109 \{ -769,-1148,-1318,-1318,-1318\},
+08110 \{ -759,-1138,-1308,-1308,-1308\},
+08111 \{ -549, -928,-1098,-1098,-1098\}\},
+08112 \textcolor{comment}{/* AU.AC..GC */}
+08113 \{\{ DEF, -429, -599, -599, -599\},
+08114 \{ -929,-1308,-1478,-1478,-1478\},
+08115 \{ -359, -738, -908, -908, -908\},
+08116 \{ -789,-1168,-1338,-1338,-1338\},
+08117 \{ -549, -928,-1098,-1098,-1098\}\},
+08118 \textcolor{comment}{/* AU.AG..GC */}
+08119 \{\{ DEF, -429, -599, -599, -599\},
+08120 \{ -609, -988,-1158,-1158,-1158\},
+08121 \{ -359, -738, -908, -908, -908\},
+08122 \{ -669,-1048,-1218,-1218,-1218\},
+08123 \{ -549, -928,-1098,-1098,-1098\}\},
+08124 \textcolor{comment}{/* AU.AU..GC */}
+08125 \{\{ DEF, -429, -599, -599, -599\},
+08126 \{ -929,-1308,-1478,-1478,-1478\},
+08127 \{ -439, -818, -988, -988, -988\},
+08128 \{ -789,-1168,-1338,-1338,-1338\},
+08129 \{ -619, -998,-1168,-1168,-1168\}\}\},
+08130 \textcolor{comment}{/* AU.C@..GC */}
+08131 \{\{\{ DEF, -259, -239, -239, -239\},
+08132 \{ -100, -309, -289, -289, -289\},
+08133 \{ -100, -309, -289, -289, -289\},
+08134 \{ -100, -309, -289, -289, -289\},
+08135 \{ -100, -309, -289, -289, -289\}\},
+08136 \textcolor{comment}{/* AU.CA..GC */}
+08137 \{\{ DEF, -259, -239, -239, -239\},
+08138 \{ -569, -778, -758, -758, -758\},
+08139 \{ -769, -978, -958, -958, -958\},
+08140 \{ -759, -968, -948, -948, -948\},
+08141 \{ -549, -758, -738, -738, -738\}\},
+08142 \textcolor{comment}{/* AU.CC..GC */}
+08143 \{\{ DEF, -259, -239, -239, -239\},
+08144 \{ -929,-1138,-1118,-1118,-1118\},
+08145 \{ -359, -568, -548, -548, -548\},
+08146 \{ -789, -998, -978, -978, -978\},
+08147 \{ -549, -758, -738, -738, -738\}\},
+08148 \textcolor{comment}{/* AU.CG..GC */}
+08149 \{\{ DEF, -259, -239, -239, -239\},
+08150 \{ -609, -818, -798, -798, -798\},
+08151 \{ -359, -568, -548, -548, -548\},
+08152 \{ -669, -878, -858, -858, -858\},
+08153 \{ -549, -758, -738, -738, -738\}\},
+08154 \textcolor{comment}{/* AU.CU..GC */}
+08155 \{\{ DEF, -259, -239, -239, -239\},
+08156 \{ -929,-1138,-1118,-1118,-1118\},
+08157 \{ -439, -648, -628, -628, -628\},
+08158 \{ -789, -998, -978, -978, -978\},
+08159 \{ -619, -828, -808, -808, -808\}\}\},
+08160 \textcolor{comment}{/* AU.G@..GC */}
+08161 \{\{\{ DEF, -339, -689, -689, -689\},
+08162 \{ -100, -389, -739, -739, -739\},
+08163 \{ -100, -389, -739, -739, -739\},
+08164 \{ -100, -389, -739, -739, -739\},
+08165 \{ -100, -389, -739, -739, -739\}\},
+08166 \textcolor{comment}{/* AU.GA..GC */}
+08167 \{\{ DEF, -339, -689, -689, -689\},
+08168 \{ -569, -858,-1208,-1208,-1208\},
+08169 \{ -769,-1058,-1408,-1408,-1408\},
+08170 \{ -759,-1048,-1398,-1398,-1398\},
+08171 \{ -549, -838,-1188,-1188,-1188\}\},
+08172 \textcolor{comment}{/* AU.GC..GC */}
+08173 \{\{ DEF, -339, -689, -689, -689\},
+08174 \{ -929,-1218,-1568,-1568,-1568\},
+08175 \{ -359, -648, -998, -998, -998\},
+08176 \{ -789,-1078,-1428,-1428,-1428\},
+08177 \{ -549, -838,-1188,-1188,-1188\}\},
+08178 \textcolor{comment}{/* AU.GG..GC */}
+08179 \{\{ DEF, -339, -689, -689, -689\},
+08180 \{ -609, -898,-1248,-1248,-1248\},
+08181 \{ -359, -648, -998, -998, -998\},
+08182 \{ -669, -958,-1308,-1308,-1308\},
+08183 \{ -549, -838,-1188,-1188,-1188\}\},
+08184 \textcolor{comment}{/* AU.GU..GC */}
+08185 \{\{ DEF, -339, -689, -689, -689\},
+08186 \{ -929,-1218,-1568,-1568,-1568\},
+08187 \{ -439, -728,-1078,-1078,-1078\},
+08188 \{ -789,-1078,-1428,-1428,-1428\},
+08189 \{ -619, -908,-1258,-1258,-1258\}\}\},
+08190 \textcolor{comment}{/* AU.U@..GC */}
+08191 \{\{\{ DEF, -329, -329, -329, -329\},
+08192 \{ -100, -379, -379, -379, -379\},
+08193 \{ -100, -379, -379, -379, -379\},
+08194 \{ -100, -379, -379, -379, -379\},
+08195 \{ -100, -379, -379, -379, -379\}\},
+08196 \textcolor{comment}{/* AU.UA..GC */}
+08197 \{\{ DEF, -329, -329, -329, -329\},
+08198 \{ -569, -848, -848, -848, -848\},
+08199 \{ -769,-1048,-1048,-1048,-1048\},
+08200 \{ -759,-1038,-1038,-1038,-1038\},
+08201 \{ -549, -828, -828, -828, -828\}\},
+08202 \textcolor{comment}{/* AU.UC..GC */}
+08203 \{\{ DEF, -329, -329, -329, -329\},
+08204 \{ -929,-1208,-1208,-1208,-1208\},
+08205 \{ -359, -638, -638, -638, -638\},
+08206 \{ -789,-1068,-1068,-1068,-1068\},
+08207 \{ -549, -828, -828, -828, -828\}\},
+08208 \textcolor{comment}{/* AU.UG..GC */}
+08209 \{\{ DEF, -329, -329, -329, -329\},
+08210 \{ -609, -888, -888, -888, -888\},
+08211 \{ -359, -638, -638, -638, -638\},
+08212 \{ -669, -948, -948, -948, -948\},
+08213 \{ -549, -828, -828, -828, -828\}\},
+08214 \textcolor{comment}{/* AU.UU..GC */}
+08215 \{\{ DEF, -329, -329, -329, -329\},
+08216 \{ -929,-1208,-1208,-1208,-1208\},
+08217 \{ -439, -718, -718, -718, -718\},
+08218 \{ -789,-1068,-1068,-1068,-1068\},
+08219 \{ -619, -898, -898, -898, -898\}\}\}\},
+08220 \textcolor{comment}{/* AU.@@..GU */}
+08221 \{\{\{\{ 0, 0, 0, 0, 0\},
+08222 \{ DEF, DEF, DEF, DEF, DEF\},
+08223 \{ DEF, DEF, DEF, DEF, DEF\},
+08224 \{ DEF, DEF, DEF, DEF, DEF\},
+08225 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08226 \textcolor{comment}{/* AU.@A..GU */}
+08227 \{\{ 0, 0, 0, 0, 0\},
+08228 \{ -429, -429, -429, -429, -429\},
+08229 \{ -259, -259, -259, -259, -259\},
+08230 \{ -339, -339, -339, -339, -339\},
+08231 \{ -329, -329, -329, -329, -329\}\},
+08232 \textcolor{comment}{/* AU.@C..GU */}
+08233 \{\{ 0, 0, 0, 0, 0\},
+08234 \{ -599, -599, -599, -599, -599\},
+08235 \{ -239, -239, -239, -239, -239\},
+08236 \{ -689, -689, -689, -689, -689\},
+08237 \{ -329, -329, -329, -329, -329\}\},
+08238 \textcolor{comment}{/* AU.@G..GU */}
+08239 \{\{ 0, 0, 0, 0, 0\},
+08240 \{ -599, -599, -599, -599, -599\},
+08241 \{ -239, -239, -239, -239, -239\},
+08242 \{ -689, -689, -689, -689, -689\},
+08243 \{ -329, -329, -329, -329, -329\}\},
+08244 \textcolor{comment}{/* AU.@U..GU */}
+08245 \{\{ 0, 0, 0, 0, 0\},
+08246 \{ -599, -599, -599, -599, -599\},
+08247 \{ -239, -239, -239, -239, -239\},
+08248 \{ -689, -689, -689, -689, -689\},
+08249 \{ -329, -329, -329, -329, -329\}\}\},
+08250 \textcolor{comment}{/* AU.A@..GU */}
+08251 \{\{\{ DEF, -429, -599, -599, -599\},
+08252 \{ -100, -479, -649, -649, -649\},
+08253 \{ -100, -479, -649, -649, -649\},
+08254 \{ -100, -479, -649, -649, -649\},
+08255 \{ -100, -479, -649, -649, -649\}\},
+08256 \textcolor{comment}{/* AU.AA..GU */}
+08257 \{\{ DEF, -429, -599, -599, -599\},
+08258 \{ -479, -858,-1028,-1028,-1028\},
+08259 \{ -309, -688, -858, -858, -858\},
+08260 \{ -389, -768, -938, -938, -938\},
+08261 \{ -379, -758, -928, -928, -928\}\},
+08262 \textcolor{comment}{/* AU.AC..GU */}
+08263 \{\{ DEF, -429, -599, -599, -599\},
+08264 \{ -649,-1028,-1198,-1198,-1198\},
+08265 \{ -289, -668, -838, -838, -838\},
+08266 \{ -739,-1118,-1288,-1288,-1288\},
+08267 \{ -379, -758, -928, -928, -928\}\},
+08268 \textcolor{comment}{/* AU.AG..GU */}
+08269 \{\{ DEF, -429, -599, -599, -599\},
+08270 \{ -649,-1028,-1198,-1198,-1198\},
+08271 \{ -289, -668, -838, -838, -838\},
+08272 \{ -739,-1118,-1288,-1288,-1288\},
+08273 \{ -379, -758, -928, -928, -928\}\},
+08274 \textcolor{comment}{/* AU.AU..GU */}
+08275 \{\{ DEF, -429, -599, -599, -599\},
+08276 \{ -649,-1028,-1198,-1198,-1198\},
+08277 \{ -289, -668, -838, -838, -838\},
+08278 \{ -739,-1118,-1288,-1288,-1288\},
+08279 \{ -379, -758, -928, -928, -928\}\}\},
+08280 \textcolor{comment}{/* AU.C@..GU */}
+08281 \{\{\{ DEF, -259, -239, -239, -239\},
+08282 \{ -100, -309, -289, -289, -289\},
+08283 \{ -100, -309, -289, -289, -289\},
+08284 \{ -100, -309, -289, -289, -289\},
+08285 \{ -100, -309, -289, -289, -289\}\},
+08286 \textcolor{comment}{/* AU.CA..GU */}
+08287 \{\{ DEF, -259, -239, -239, -239\},
+08288 \{ -479, -688, -668, -668, -668\},
+08289 \{ -309, -518, -498, -498, -498\},
+08290 \{ -389, -598, -578, -578, -578\},
+08291 \{ -379, -588, -568, -568, -568\}\},
+08292 \textcolor{comment}{/* AU.CC..GU */}
+08293 \{\{ DEF, -259, -239, -239, -239\},
+08294 \{ -649, -858, -838, -838, -838\},
+08295 \{ -289, -498, -478, -478, -478\},
+08296 \{ -739, -948, -928, -928, -928\},
+08297 \{ -379, -588, -568, -568, -568\}\},
+08298 \textcolor{comment}{/* AU.CG..GU */}
+08299 \{\{ DEF, -259, -239, -239, -239\},
+08300 \{ -649, -858, -838, -838, -838\},
+08301 \{ -289, -498, -478, -478, -478\},
+08302 \{ -739, -948, -928, -928, -928\},
+08303 \{ -379, -588, -568, -568, -568\}\},
+08304 \textcolor{comment}{/* AU.CU..GU */}
+08305 \{\{ DEF, -259, -239, -239, -239\},
+08306 \{ -649, -858, -838, -838, -838\},
+08307 \{ -289, -498, -478, -478, -478\},
+08308 \{ -739, -948, -928, -928, -928\},
+08309 \{ -379, -588, -568, -568, -568\}\}\},
+08310 \textcolor{comment}{/* AU.G@..GU */}
+08311 \{\{\{ DEF, -339, -689, -689, -689\},
+08312 \{ -100, -389, -739, -739, -739\},
+08313 \{ -100, -389, -739, -739, -739\},
+08314 \{ -100, -389, -739, -739, -739\},
+08315 \{ -100, -389, -739, -739, -739\}\},
+08316 \textcolor{comment}{/* AU.GA..GU */}
+08317 \{\{ DEF, -339, -689, -689, -689\},
+08318 \{ -479, -768,-1118,-1118,-1118\},
+08319 \{ -309, -598, -948, -948, -948\},
+08320 \{ -389, -678,-1028,-1028,-1028\},
+08321 \{ -379, -668,-1018,-1018,-1018\}\},
+08322 \textcolor{comment}{/* AU.GC..GU */}
+08323 \{\{ DEF, -339, -689, -689, -689\},
+08324 \{ -649, -938,-1288,-1288,-1288\},
+08325 \{ -289, -578, -928, -928, -928\},
+08326 \{ -739,-1028,-1378,-1378,-1378\},
+08327 \{ -379, -668,-1018,-1018,-1018\}\},
+08328 \textcolor{comment}{/* AU.GG..GU */}
+08329 \{\{ DEF, -339, -689, -689, -689\},
+08330 \{ -649, -938,-1288,-1288,-1288\},
+08331 \{ -289, -578, -928, -928, -928\},
+08332 \{ -739,-1028,-1378,-1378,-1378\},
+08333 \{ -379, -668,-1018,-1018,-1018\}\},
+08334 \textcolor{comment}{/* AU.GU..GU */}
+08335 \{\{ DEF, -339, -689, -689, -689\},
+08336 \{ -649, -938,-1288,-1288,-1288\},
+08337 \{ -289, -578, -928, -928, -928\},
+08338 \{ -739,-1028,-1378,-1378,-1378\},
+08339 \{ -379, -668,-1018,-1018,-1018\}\}\},
+08340 \textcolor{comment}{/* AU.U@..GU */}
+08341 \{\{\{ DEF, -329, -329, -329, -329\},
+08342 \{ -100, -379, -379, -379, -379\},
+08343 \{ -100, -379, -379, -379, -379\},
+08344 \{ -100, -379, -379, -379, -379\},
+08345 \{ -100, -379, -379, -379, -379\}\},
+08346 \textcolor{comment}{/* AU.UA..GU */}
+08347 \{\{ DEF, -329, -329, -329, -329\},
+08348 \{ -479, -758, -758, -758, -758\},
+08349 \{ -309, -588, -588, -588, -588\},
+08350 \{ -389, -668, -668, -668, -668\},
+08351 \{ -379, -658, -658, -658, -658\}\},
+08352 \textcolor{comment}{/* AU.UC..GU */}
+08353 \{\{ DEF, -329, -329, -329, -329\},
+08354 \{ -649, -928, -928, -928, -928\},
+08355 \{ -289, -568, -568, -568, -568\},
+08356 \{ -739,-1018,-1018,-1018,-1018\},
+08357 \{ -379, -658, -658, -658, -658\}\},
+08358 \textcolor{comment}{/* AU.UG..GU */}
+08359 \{\{ DEF, -329, -329, -329, -329\},
+08360 \{ -649, -928, -928, -928, -928\},
+08361 \{ -289, -568, -568, -568, -568\},
+08362 \{ -739,-1018,-1018,-1018,-1018\},
+08363 \{ -379, -658, -658, -658, -658\}\},
+08364 \textcolor{comment}{/* AU.UU..GU */}
+08365 \{\{ DEF, -329, -329, -329, -329\},
+08366 \{ -649, -928, -928, -928, -928\},
+08367 \{ -289, -568, -568, -568, -568\},
+08368 \{ -739,-1018,-1018,-1018,-1018\},
+08369 \{ -379, -658, -658, -658, -658\}\}\}\},
+08370 \textcolor{comment}{/* AU.@@..UG */}
+08371 \{\{\{\{ 0, 0, 0, 0, 0\},
+08372 \{ DEF, DEF, DEF, DEF, DEF\},
+08373 \{ DEF, DEF, DEF, DEF, DEF\},
+08374 \{ DEF, DEF, DEF, DEF, DEF\},
+08375 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08376 \textcolor{comment}{/* AU.@A..UG */}
+08377 \{\{ 0, 0, 0, 0, 0\},
+08378 \{ -719, -719, -719, -719, -719\},
+08379 \{ -479, -479, -479, -479, -479\},
+08380 \{ -659, -659, -659, -659, -659\},
+08381 \{ -549, -549, -549, -549, -549\}\},
+08382 \textcolor{comment}{/* AU.@C..UG */}
+08383 \{\{ 0, 0, 0, 0, 0\},
+08384 \{ -789, -789, -789, -789, -789\},
+08385 \{ -479, -479, -479, -479, -479\},
+08386 \{ -809, -809, -809, -809, -809\},
+08387 \{ -439, -439, -439, -439, -439\}\},
+08388 \textcolor{comment}{/* AU.@G..UG */}
+08389 \{\{ 0, 0, 0, 0, 0\},
+08390 \{ -959, -959, -959, -959, -959\},
+08391 \{ -359, -359, -359, -359, -359\},
+08392 \{ -919, -919, -919, -919, -919\},
+08393 \{ -549, -549, -549, -549, -549\}\},
+08394 \textcolor{comment}{/* AU.@U..UG */}
+08395 \{\{ 0, 0, 0, 0, 0\},
+08396 \{ -809, -809, -809, -809, -809\},
+08397 \{ -479, -479, -479, -479, -479\},
+08398 \{ -809, -809, -809, -809, -809\},
+08399 \{ -359, -359, -359, -359, -359\}\}\},
+08400 \textcolor{comment}{/* AU.A@..UG */}
+08401 \{\{\{ DEF, -429, -599, -599, -599\},
+08402 \{ -100, -479, -649, -649, -649\},
+08403 \{ -100, -479, -649, -649, -649\},
+08404 \{ -100, -479, -649, -649, -649\},
+08405 \{ -100, -479, -649, -649, -649\}\},
+08406 \textcolor{comment}{/* AU.AA..UG */}
+08407 \{\{ DEF, -429, -599, -599, -599\},
+08408 \{ -769,-1148,-1318,-1318,-1318\},
+08409 \{ -529, -908,-1078,-1078,-1078\},
+08410 \{ -709,-1088,-1258,-1258,-1258\},
+08411 \{ -599, -978,-1148,-1148,-1148\}\},
+08412 \textcolor{comment}{/* AU.AC..UG */}
+08413 \{\{ DEF, -429, -599, -599, -599\},
+08414 \{ -839,-1218,-1388,-1388,-1388\},
+08415 \{ -529, -908,-1078,-1078,-1078\},
+08416 \{ -859,-1238,-1408,-1408,-1408\},
+08417 \{ -489, -868,-1038,-1038,-1038\}\},
+08418 \textcolor{comment}{/* AU.AG..UG */}
+08419 \{\{ DEF, -429, -599, -599, -599\},
+08420 \{-1009,-1388,-1558,-1558,-1558\},
+08421 \{ -409, -788, -958, -958, -958\},
+08422 \{ -969,-1348,-1518,-1518,-1518\},
+08423 \{ -599, -978,-1148,-1148,-1148\}\},
+08424 \textcolor{comment}{/* AU.AU..UG */}
+08425 \{\{ DEF, -429, -599, -599, -599\},
+08426 \{ -859,-1238,-1408,-1408,-1408\},
+08427 \{ -529, -908,-1078,-1078,-1078\},
+08428 \{ -859,-1238,-1408,-1408,-1408\},
+08429 \{ -409, -788, -958, -958, -958\}\}\},
+08430 \textcolor{comment}{/* AU.C@..UG */}
+08431 \{\{\{ DEF, -259, -239, -239, -239\},
+08432 \{ -100, -309, -289, -289, -289\},
+08433 \{ -100, -309, -289, -289, -289\},
+08434 \{ -100, -309, -289, -289, -289\},
+08435 \{ -100, -309, -289, -289, -289\}\},
+08436 \textcolor{comment}{/* AU.CA..UG */}
+08437 \{\{ DEF, -259, -239, -239, -239\},
+08438 \{ -769, -978, -958, -958, -958\},
+08439 \{ -529, -738, -718, -718, -718\},
+08440 \{ -709, -918, -898, -898, -898\},
+08441 \{ -599, -808, -788, -788, -788\}\},
+08442 \textcolor{comment}{/* AU.CC..UG */}
+08443 \{\{ DEF, -259, -239, -239, -239\},
+08444 \{ -839,-1048,-1028,-1028,-1028\},
+08445 \{ -529, -738, -718, -718, -718\},
+08446 \{ -859,-1068,-1048,-1048,-1048\},
+08447 \{ -489, -698, -678, -678, -678\}\},
+08448 \textcolor{comment}{/* AU.CG..UG */}
+08449 \{\{ DEF, -259, -239, -239, -239\},
+08450 \{-1009,-1218,-1198,-1198,-1198\},
+08451 \{ -409, -618, -598, -598, -598\},
+08452 \{ -969,-1178,-1158,-1158,-1158\},
+08453 \{ -599, -808, -788, -788, -788\}\},
+08454 \textcolor{comment}{/* AU.CU..UG */}
+08455 \{\{ DEF, -259, -239, -239, -239\},
+08456 \{ -859,-1068,-1048,-1048,-1048\},
+08457 \{ -529, -738, -718, -718, -718\},
+08458 \{ -859,-1068,-1048,-1048,-1048\},
+08459 \{ -409, -618, -598, -598, -598\}\}\},
+08460 \textcolor{comment}{/* AU.G@..UG */}
+08461 \{\{\{ DEF, -339, -689, -689, -689\},
+08462 \{ -100, -389, -739, -739, -739\},
+08463 \{ -100, -389, -739, -739, -739\},
+08464 \{ -100, -389, -739, -739, -739\},
+08465 \{ -100, -389, -739, -739, -739\}\},
+08466 \textcolor{comment}{/* AU.GA..UG */}
+08467 \{\{ DEF, -339, -689, -689, -689\},
+08468 \{ -769,-1058,-1408,-1408,-1408\},
+08469 \{ -529, -818,-1168,-1168,-1168\},
+08470 \{ -709, -998,-1348,-1348,-1348\},
+08471 \{ -599, -888,-1238,-1238,-1238\}\},
+08472 \textcolor{comment}{/* AU.GC..UG */}
+08473 \{\{ DEF, -339, -689, -689, -689\},
+08474 \{ -839,-1128,-1478,-1478,-1478\},
+08475 \{ -529, -818,-1168,-1168,-1168\},
+08476 \{ -859,-1148,-1498,-1498,-1498\},
+08477 \{ -489, -778,-1128,-1128,-1128\}\},
+08478 \textcolor{comment}{/* AU.GG..UG */}
+08479 \{\{ DEF, -339, -689, -689, -689\},
+08480 \{-1009,-1298,-1648,-1648,-1648\},
+08481 \{ -409, -698,-1048,-1048,-1048\},
+08482 \{ -969,-1258,-1608,-1608,-1608\},
+08483 \{ -599, -888,-1238,-1238,-1238\}\},
+08484 \textcolor{comment}{/* AU.GU..UG */}
+08485 \{\{ DEF, -339, -689, -689, -689\},
+08486 \{ -859,-1148,-1498,-1498,-1498\},
+08487 \{ -529, -818,-1168,-1168,-1168\},
+08488 \{ -859,-1148,-1498,-1498,-1498\},
+08489 \{ -409, -698,-1048,-1048,-1048\}\}\},
+08490 \textcolor{comment}{/* AU.U@..UG */}
+08491 \{\{\{ DEF, -329, -329, -329, -329\},
+08492 \{ -100, -379, -379, -379, -379\},
+08493 \{ -100, -379, -379, -379, -379\},
+08494 \{ -100, -379, -379, -379, -379\},
+08495 \{ -100, -379, -379, -379, -379\}\},
+08496 \textcolor{comment}{/* AU.UA..UG */}
+08497 \{\{ DEF, -329, -329, -329, -329\},
+08498 \{ -769,-1048,-1048,-1048,-1048\},
+08499 \{ -529, -808, -808, -808, -808\},
+08500 \{ -709, -988, -988, -988, -988\},
+08501 \{ -599, -878, -878, -878, -878\}\},
+08502 \textcolor{comment}{/* AU.UC..UG */}
+08503 \{\{ DEF, -329, -329, -329, -329\},
+08504 \{ -839,-1118,-1118,-1118,-1118\},
+08505 \{ -529, -808, -808, -808, -808\},
+08506 \{ -859,-1138,-1138,-1138,-1138\},
+08507 \{ -489, -768, -768, -768, -768\}\},
+08508 \textcolor{comment}{/* AU.UG..UG */}
+08509 \{\{ DEF, -329, -329, -329, -329\},
+08510 \{-1009,-1288,-1288,-1288,-1288\},
+08511 \{ -409, -688, -688, -688, -688\},
+08512 \{ -969,-1248,-1248,-1248,-1248\},
+08513 \{ -599, -878, -878, -878, -878\}\},
+08514 \textcolor{comment}{/* AU.UU..UG */}
+08515 \{\{ DEF, -329, -329, -329, -329\},
+08516 \{ -859,-1138,-1138,-1138,-1138\},
+08517 \{ -529, -808, -808, -808, -808\},
+08518 \{ -859,-1138,-1138,-1138,-1138\},
+08519 \{ -409, -688, -688, -688, -688\}\}\}\},
+08520 \textcolor{comment}{/* AU.@@..AU */}
+08521 \{\{\{\{ 0, 0, 0, 0, 0\},
+08522 \{ DEF, DEF, DEF, DEF, DEF\},
+08523 \{ DEF, DEF, DEF, DEF, DEF\},
+08524 \{ DEF, DEF, DEF, DEF, DEF\},
+08525 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08526 \textcolor{comment}{/* AU.@A..AU */}
+08527 \{\{ 0, 0, 0, 0, 0\},
+08528 \{ -429, -429, -429, -429, -429\},
+08529 \{ -259, -259, -259, -259, -259\},
+08530 \{ -339, -339, -339, -339, -339\},
+08531 \{ -329, -329, -329, -329, -329\}\},
+08532 \textcolor{comment}{/* AU.@C..AU */}
+08533 \{\{ 0, 0, 0, 0, 0\},
+08534 \{ -599, -599, -599, -599, -599\},
+08535 \{ -239, -239, -239, -239, -239\},
+08536 \{ -689, -689, -689, -689, -689\},
+08537 \{ -329, -329, -329, -329, -329\}\},
+08538 \textcolor{comment}{/* AU.@G..AU */}
+08539 \{\{ 0, 0, 0, 0, 0\},
+08540 \{ -599, -599, -599, -599, -599\},
+08541 \{ -239, -239, -239, -239, -239\},
+08542 \{ -689, -689, -689, -689, -689\},
+08543 \{ -329, -329, -329, -329, -329\}\},
+08544 \textcolor{comment}{/* AU.@U..AU */}
+08545 \{\{ 0, 0, 0, 0, 0\},
+08546 \{ -599, -599, -599, -599, -599\},
+08547 \{ -239, -239, -239, -239, -239\},
+08548 \{ -689, -689, -689, -689, -689\},
+08549 \{ -329, -329, -329, -329, -329\}\}\},
+08550 \textcolor{comment}{/* AU.A@..AU */}
+08551 \{\{\{ DEF, -429, -599, -599, -599\},
+08552 \{ -100, -479, -649, -649, -649\},
+08553 \{ -100, -479, -649, -649, -649\},
+08554 \{ -100, -479, -649, -649, -649\},
+08555 \{ -100, -479, -649, -649, -649\}\},
+08556 \textcolor{comment}{/* AU.AA..AU */}
+08557 \{\{ DEF, -429, -599, -599, -599\},
+08558 \{ -479, -858,-1028,-1028,-1028\},
+08559 \{ -309, -688, -858, -858, -858\},
+08560 \{ -389, -768, -938, -938, -938\},
+08561 \{ -379, -758, -928, -928, -928\}\},
+08562 \textcolor{comment}{/* AU.AC..AU */}
+08563 \{\{ DEF, -429, -599, -599, -599\},
+08564 \{ -649,-1028,-1198,-1198,-1198\},
+08565 \{ -289, -668, -838, -838, -838\},
+08566 \{ -739,-1118,-1288,-1288,-1288\},
+08567 \{ -379, -758, -928, -928, -928\}\},
+08568 \textcolor{comment}{/* AU.AG..AU */}
+08569 \{\{ DEF, -429, -599, -599, -599\},
+08570 \{ -649,-1028,-1198,-1198,-1198\},
+08571 \{ -289, -668, -838, -838, -838\},
+08572 \{ -739,-1118,-1288,-1288,-1288\},
+08573 \{ -379, -758, -928, -928, -928\}\},
+08574 \textcolor{comment}{/* AU.AU..AU */}
+08575 \{\{ DEF, -429, -599, -599, -599\},
+08576 \{ -649,-1028,-1198,-1198,-1198\},
+08577 \{ -289, -668, -838, -838, -838\},
+08578 \{ -739,-1118,-1288,-1288,-1288\},
+08579 \{ -379, -758, -928, -928, -928\}\}\},
+08580 \textcolor{comment}{/* AU.C@..AU */}
+08581 \{\{\{ DEF, -259, -239, -239, -239\},
+08582 \{ -100, -309, -289, -289, -289\},
+08583 \{ -100, -309, -289, -289, -289\},
+08584 \{ -100, -309, -289, -289, -289\},
+08585 \{ -100, -309, -289, -289, -289\}\},
+08586 \textcolor{comment}{/* AU.CA..AU */}
+08587 \{\{ DEF, -259, -239, -239, -239\},
+08588 \{ -479, -688, -668, -668, -668\},
+08589 \{ -309, -518, -498, -498, -498\},
+08590 \{ -389, -598, -578, -578, -578\},
+08591 \{ -379, -588, -568, -568, -568\}\},
+08592 \textcolor{comment}{/* AU.CC..AU */}
+08593 \{\{ DEF, -259, -239, -239, -239\},
+08594 \{ -649, -858, -838, -838, -838\},
+08595 \{ -289, -498, -478, -478, -478\},
+08596 \{ -739, -948, -928, -928, -928\},
+08597 \{ -379, -588, -568, -568, -568\}\},
+08598 \textcolor{comment}{/* AU.CG..AU */}
+08599 \{\{ DEF, -259, -239, -239, -239\},
+08600 \{ -649, -858, -838, -838, -838\},
+08601 \{ -289, -498, -478, -478, -478\},
+08602 \{ -739, -948, -928, -928, -928\},
+08603 \{ -379, -588, -568, -568, -568\}\},
+08604 \textcolor{comment}{/* AU.CU..AU */}
+08605 \{\{ DEF, -259, -239, -239, -239\},
+08606 \{ -649, -858, -838, -838, -838\},
+08607 \{ -289, -498, -478, -478, -478\},
+08608 \{ -739, -948, -928, -928, -928\},
+08609 \{ -379, -588, -568, -568, -568\}\}\},
+08610 \textcolor{comment}{/* AU.G@..AU */}
+08611 \{\{\{ DEF, -339, -689, -689, -689\},
+08612 \{ -100, -389, -739, -739, -739\},
+08613 \{ -100, -389, -739, -739, -739\},
+08614 \{ -100, -389, -739, -739, -739\},
+08615 \{ -100, -389, -739, -739, -739\}\},
+08616 \textcolor{comment}{/* AU.GA..AU */}
+08617 \{\{ DEF, -339, -689, -689, -689\},
+08618 \{ -479, -768,-1118,-1118,-1118\},
+08619 \{ -309, -598, -948, -948, -948\},
+08620 \{ -389, -678,-1028,-1028,-1028\},
+08621 \{ -379, -668,-1018,-1018,-1018\}\},
+08622 \textcolor{comment}{/* AU.GC..AU */}
+08623 \{\{ DEF, -339, -689, -689, -689\},
+08624 \{ -649, -938,-1288,-1288,-1288\},
+08625 \{ -289, -578, -928, -928, -928\},
+08626 \{ -739,-1028,-1378,-1378,-1378\},
+08627 \{ -379, -668,-1018,-1018,-1018\}\},
+08628 \textcolor{comment}{/* AU.GG..AU */}
+08629 \{\{ DEF, -339, -689, -689, -689\},
+08630 \{ -649, -938,-1288,-1288,-1288\},
+08631 \{ -289, -578, -928, -928, -928\},
+08632 \{ -739,-1028,-1378,-1378,-1378\},
+08633 \{ -379, -668,-1018,-1018,-1018\}\},
+08634 \textcolor{comment}{/* AU.GU..AU */}
+08635 \{\{ DEF, -339, -689, -689, -689\},
+08636 \{ -649, -938,-1288,-1288,-1288\},
+08637 \{ -289, -578, -928, -928, -928\},
+08638 \{ -739,-1028,-1378,-1378,-1378\},
+08639 \{ -379, -668,-1018,-1018,-1018\}\}\},
+08640 \textcolor{comment}{/* AU.U@..AU */}
+08641 \{\{\{ DEF, -329, -329, -329, -329\},
+08642 \{ -100, -379, -379, -379, -379\},
+08643 \{ -100, -379, -379, -379, -379\},
+08644 \{ -100, -379, -379, -379, -379\},
+08645 \{ -100, -379, -379, -379, -379\}\},
+08646 \textcolor{comment}{/* AU.UA..AU */}
+08647 \{\{ DEF, -329, -329, -329, -329\},
+08648 \{ -479, -758, -758, -758, -758\},
+08649 \{ -309, -588, -588, -588, -588\},
+08650 \{ -389, -668, -668, -668, -668\},
+08651 \{ -379, -658, -658, -658, -658\}\},
+08652 \textcolor{comment}{/* AU.UC..AU */}
+08653 \{\{ DEF, -329, -329, -329, -329\},
+08654 \{ -649, -928, -928, -928, -928\},
+08655 \{ -289, -568, -568, -568, -568\},
+08656 \{ -739,-1018,-1018,-1018,-1018\},
+08657 \{ -379, -658, -658, -658, -658\}\},
+08658 \textcolor{comment}{/* AU.UG..AU */}
+08659 \{\{ DEF, -329, -329, -329, -329\},
+08660 \{ -649, -928, -928, -928, -928\},
+08661 \{ -289, -568, -568, -568, -568\},
+08662 \{ -739,-1018,-1018,-1018,-1018\},
+08663 \{ -379, -658, -658, -658, -658\}\},
+08664 \textcolor{comment}{/* AU.UU..AU */}
+08665 \{\{ DEF, -329, -329, -329, -329\},
+08666 \{ -649, -928, -928, -928, -928\},
+08667 \{ -289, -568, -568, -568, -568\},
+08668 \{ -739,-1018,-1018,-1018,-1018\},
+08669 \{ -379, -658, -658, -658, -658\}\}\}\},
+08670 \textcolor{comment}{/* AU.@@..UA */}
+08671 \{\{\{\{ 0, 0, 0, 0, 0\},
+08672 \{ DEF, DEF, DEF, DEF, DEF\},
+08673 \{ DEF, DEF, DEF, DEF, DEF\},
+08674 \{ DEF, DEF, DEF, DEF, DEF\},
+08675 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08676 \textcolor{comment}{/* AU.@A..UA */}
+08677 \{\{ 0, 0, 0, 0, 0\},
+08678 \{ -399, -399, -399, -399, -399\},
+08679 \{ -429, -429, -429, -429, -429\},
+08680 \{ -379, -379, -379, -379, -379\},
+08681 \{ -279, -279, -279, -279, -279\}\},
+08682 \textcolor{comment}{/* AU.@C..UA */}
+08683 \{\{ 0, 0, 0, 0, 0\},
+08684 \{ -629, -629, -629, -629, -629\},
+08685 \{ -509, -509, -509, -509, -509\},
+08686 \{ -679, -679, -679, -679, -679\},
+08687 \{ -139, -139, -139, -139, -139\}\},
+08688 \textcolor{comment}{/* AU.@G..UA */}
+08689 \{\{ 0, 0, 0, 0, 0\},
+08690 \{ -889, -889, -889, -889, -889\},
+08691 \{ -199, -199, -199, -199, -199\},
+08692 \{ -889, -889, -889, -889, -889\},
+08693 \{ -279, -279, -279, -279, -279\}\},
+08694 \textcolor{comment}{/* AU.@U..UA */}
+08695 \{\{ 0, 0, 0, 0, 0\},
+08696 \{ -589, -589, -589, -589, -589\},
+08697 \{ -179, -179, -179, -179, -179\},
+08698 \{ -679, -679, -679, -679, -679\},
+08699 \{ -140, -140, -140, -140, -140\}\}\},
+08700 \textcolor{comment}{/* AU.A@..UA */}
+08701 \{\{\{ DEF, -429, -599, -599, -599\},
+08702 \{ -100, -479, -649, -649, -649\},
+08703 \{ -100, -479, -649, -649, -649\},
+08704 \{ -100, -479, -649, -649, -649\},
+08705 \{ -100, -479, -649, -649, -649\}\},
+08706 \textcolor{comment}{/* AU.AA..UA */}
+08707 \{\{ DEF, -429, -599, -599, -599\},
+08708 \{ -449, -828, -998, -998, -998\},
+08709 \{ -479, -858,-1028,-1028,-1028\},
+08710 \{ -429, -808, -978, -978, -978\},
+08711 \{ -329, -708, -878, -878, -878\}\},
+08712 \textcolor{comment}{/* AU.AC..UA */}
+08713 \{\{ DEF, -429, -599, -599, -599\},
+08714 \{ -679,-1058,-1228,-1228,-1228\},
+08715 \{ -559, -938,-1108,-1108,-1108\},
+08716 \{ -729,-1108,-1278,-1278,-1278\},
+08717 \{ -189, -568, -738, -738, -738\}\},
+08718 \textcolor{comment}{/* AU.AG..UA */}
+08719 \{\{ DEF, -429, -599, -599, -599\},
+08720 \{ -939,-1318,-1488,-1488,-1488\},
+08721 \{ -249, -628, -798, -798, -798\},
+08722 \{ -939,-1318,-1488,-1488,-1488\},
+08723 \{ -329, -708, -878, -878, -878\}\},
+08724 \textcolor{comment}{/* AU.AU..UA */}
+08725 \{\{ DEF, -429, -599, -599, -599\},
+08726 \{ -639,-1018,-1188,-1188,-1188\},
+08727 \{ -229, -608, -778, -778, -778\},
+08728 \{ -729,-1108,-1278,-1278,-1278\},
+08729 \{ -190, -569, -739, -739, -739\}\}\},
+08730 \textcolor{comment}{/* AU.C@..UA */}
+08731 \{\{\{ DEF, -259, -239, -239, -239\},
+08732 \{ -100, -309, -289, -289, -289\},
+08733 \{ -100, -309, -289, -289, -289\},
+08734 \{ -100, -309, -289, -289, -289\},
+08735 \{ -100, -309, -289, -289, -289\}\},
+08736 \textcolor{comment}{/* AU.CA..UA */}
+08737 \{\{ DEF, -259, -239, -239, -239\},
+08738 \{ -449, -658, -638, -638, -638\},
+08739 \{ -479, -688, -668, -668, -668\},
+08740 \{ -429, -638, -618, -618, -618\},
+08741 \{ -329, -538, -518, -518, -518\}\},
+08742 \textcolor{comment}{/* AU.CC..UA */}
+08743 \{\{ DEF, -259, -239, -239, -239\},
+08744 \{ -679, -888, -868, -868, -868\},
+08745 \{ -559, -768, -748, -748, -748\},
+08746 \{ -729, -938, -918, -918, -918\},
+08747 \{ -189, -398, -378, -378, -378\}\},
+08748 \textcolor{comment}{/* AU.CG..UA */}
+08749 \{\{ DEF, -259, -239, -239, -239\},
+08750 \{ -939,-1148,-1128,-1128,-1128\},
+08751 \{ -249, -458, -438, -438, -438\},
+08752 \{ -939,-1148,-1128,-1128,-1128\},
+08753 \{ -329, -538, -518, -518, -518\}\},
+08754 \textcolor{comment}{/* AU.CU..UA */}
+08755 \{\{ DEF, -259, -239, -239, -239\},
+08756 \{ -639, -848, -828, -828, -828\},
+08757 \{ -229, -438, -418, -418, -418\},
+08758 \{ -729, -938, -918, -918, -918\},
+08759 \{ -190, -399, -379, -379, -379\}\}\},
+08760 \textcolor{comment}{/* AU.G@..UA */}
+08761 \{\{\{ DEF, -339, -689, -689, -689\},
+08762 \{ -100, -389, -739, -739, -739\},
+08763 \{ -100, -389, -739, -739, -739\},
+08764 \{ -100, -389, -739, -739, -739\},
+08765 \{ -100, -389, -739, -739, -739\}\},
+08766 \textcolor{comment}{/* AU.GA..UA */}
+08767 \{\{ DEF, -339, -689, -689, -689\},
+08768 \{ -449, -738,-1088,-1088,-1088\},
+08769 \{ -479, -768,-1118,-1118,-1118\},
+08770 \{ -429, -718,-1068,-1068,-1068\},
+08771 \{ -329, -618, -968, -968, -968\}\},
+08772 \textcolor{comment}{/* AU.GC..UA */}
+08773 \{\{ DEF, -339, -689, -689, -689\},
+08774 \{ -679, -968,-1318,-1318,-1318\},
+08775 \{ -559, -848,-1198,-1198,-1198\},
+08776 \{ -729,-1018,-1368,-1368,-1368\},
+08777 \{ -189, -478, -828, -828, -828\}\},
+08778 \textcolor{comment}{/* AU.GG..UA */}
+08779 \{\{ DEF, -339, -689, -689, -689\},
+08780 \{ -939,-1228,-1578,-1578,-1578\},
+08781 \{ -249, -538, -888, -888, -888\},
+08782 \{ -939,-1228,-1578,-1578,-1578\},
+08783 \{ -329, -618, -968, -968, -968\}\},
+08784 \textcolor{comment}{/* AU.GU..UA */}
+08785 \{\{ DEF, -339, -689, -689, -689\},
+08786 \{ -639, -928,-1278,-1278,-1278\},
+08787 \{ -229, -518, -868, -868, -868\},
+08788 \{ -729,-1018,-1368,-1368,-1368\},
+08789 \{ -190, -479, -829, -829, -829\}\}\},
+08790 \textcolor{comment}{/* AU.U@..UA */}
+08791 \{\{\{ DEF, -329, -329, -329, -329\},
+08792 \{ -100, -379, -379, -379, -379\},
+08793 \{ -100, -379, -379, -379, -379\},
+08794 \{ -100, -379, -379, -379, -379\},
+08795 \{ -100, -379, -379, -379, -379\}\},
+08796 \textcolor{comment}{/* AU.UA..UA */}
+08797 \{\{ DEF, -329, -329, -329, -329\},
+08798 \{ -449, -728, -728, -728, -728\},
+08799 \{ -479, -758, -758, -758, -758\},
+08800 \{ -429, -708, -708, -708, -708\},
+08801 \{ -329, -608, -608, -608, -608\}\},
+08802 \textcolor{comment}{/* AU.UC..UA */}
+08803 \{\{ DEF, -329, -329, -329, -329\},
+08804 \{ -679, -958, -958, -958, -958\},
+08805 \{ -559, -838, -838, -838, -838\},
+08806 \{ -729,-1008,-1008,-1008,-1008\},
+08807 \{ -189, -468, -468, -468, -468\}\},
+08808 \textcolor{comment}{/* AU.UG..UA */}
+08809 \{\{ DEF, -329, -329, -329, -329\},
+08810 \{ -939,-1218,-1218,-1218,-1218\},
+08811 \{ -249, -528, -528, -528, -528\},
+08812 \{ -939,-1218,-1218,-1218,-1218\},
+08813 \{ -329, -608, -608, -608, -608\}\},
+08814 \textcolor{comment}{/* AU.UU..UA */}
+08815 \{\{ DEF, -329, -329, -329, -329\},
+08816 \{ -639, -918, -918, -918, -918\},
+08817 \{ -229, -508, -508, -508, -508\},
+08818 \{ -729,-1008,-1008,-1008,-1008\},
+08819 \{ -190, -469, -469, -469, -469\}\}\}\},
+08820 \textcolor{comment}{/* AU.@@.. @ */}
+08821 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+08822 \{ DEF, DEF, DEF, DEF, DEF\},
+08823 \{ DEF, DEF, DEF, DEF, DEF\},
+08824 \{ DEF, DEF, DEF, DEF, DEF\},
+08825 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08826 \textcolor{comment}{/* AU.@A.. @ */}
+08827 \{\{ DEF, DEF, DEF, DEF, DEF\},
+08828 \{ DEF, DEF, DEF, DEF, DEF\},
+08829 \{ DEF, DEF, DEF, DEF, DEF\},
+08830 \{ DEF, DEF, DEF, DEF, DEF\},
+08831 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08832 \textcolor{comment}{/* AU.@C.. @ */}
+08833 \{\{ DEF, DEF, DEF, DEF, DEF\},
+08834 \{ DEF, DEF, DEF, DEF, DEF\},
+08835 \{ DEF, DEF, DEF, DEF, DEF\},
+08836 \{ DEF, DEF, DEF, DEF, DEF\},
+08837 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08838 \textcolor{comment}{/* AU.@G.. @ */}
+08839 \{\{ DEF, DEF, DEF, DEF, DEF\},
+08840 \{ DEF, DEF, DEF, DEF, DEF\},
+08841 \{ DEF, DEF, DEF, DEF, DEF\},
+08842 \{ DEF, DEF, DEF, DEF, DEF\},
+08843 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08844 \textcolor{comment}{/* AU.@U.. @ */}
+08845 \{\{ DEF, DEF, DEF, DEF, DEF\},
+08846 \{ DEF, DEF, DEF, DEF, DEF\},
+08847 \{ DEF, DEF, DEF, DEF, DEF\},
+08848 \{ DEF, DEF, DEF, DEF, DEF\},
+08849 \{ DEF, DEF, DEF, DEF, DEF\}\}\},
+08850 \textcolor{comment}{/* AU.A@.. @ */}
+08851 \{\{\{ -100, -479, -649, -649, -649\},
+08852 \{ -100, -479, -649, -649, -649\},
+08853 \{ -100, -479, -649, -649, -649\},
+08854 \{ -100, -479, -649, -649, -649\},
+08855 \{ -100, -479, -649, -649, -649\}\},
+08856 \textcolor{comment}{/* AU.AA.. @ */}
+08857 \{\{ -100, -479, -649, -649, -649\},
+08858 \{ -100, -479, -649, -649, -649\},
+08859 \{ -100, -479, -649, -649, -649\},
+08860 \{ -100, -479, -649, -649, -649\},
+08861 \{ -100, -479, -649, -649, -649\}\},
+08862 \textcolor{comment}{/* AU.AC.. @ */}
+08863 \{\{ -100, -479, -649, -649, -649\},
+08864 \{ -100, -479, -649, -649, -649\},
+08865 \{ -100, -479, -649, -649, -649\},
+08866 \{ -100, -479, -649, -649, -649\},
+08867 \{ -100, -479, -649, -649, -649\}\},
+08868 \textcolor{comment}{/* AU.AG.. @ */}
+08869 \{\{ -100, -479, -649, -649, -649\},
+08870 \{ -100, -479, -649, -649, -649\},
+08871 \{ -100, -479, -649, -649, -649\},
+08872 \{ -100, -479, -649, -649, -649\},
+08873 \{ -100, -479, -649, -649, -649\}\},
+08874 \textcolor{comment}{/* AU.AU.. @ */}
+08875 \{\{ -100, -479, -649, -649, -649\},
+08876 \{ -100, -479, -649, -649, -649\},
+08877 \{ -100, -479, -649, -649, -649\},
+08878 \{ -100, -479, -649, -649, -649\},
+08879 \{ -100, -479, -649, -649, -649\}\}\},
+08880 \textcolor{comment}{/* AU.C@.. @ */}
+08881 \{\{\{ -100, -309, -289, -289, -289\},
+08882 \{ -100, -309, -289, -289, -289\},
+08883 \{ -100, -309, -289, -289, -289\},
+08884 \{ -100, -309, -289, -289, -289\},
+08885 \{ -100, -309, -289, -289, -289\}\},
+08886 \textcolor{comment}{/* AU.CA.. @ */}
+08887 \{\{ -100, -309, -289, -289, -289\},
+08888 \{ -100, -309, -289, -289, -289\},
+08889 \{ -100, -309, -289, -289, -289\},
+08890 \{ -100, -309, -289, -289, -289\},
+08891 \{ -100, -309, -289, -289, -289\}\},
+08892 \textcolor{comment}{/* AU.CC.. @ */}
+08893 \{\{ -100, -309, -289, -289, -289\},
+08894 \{ -100, -309, -289, -289, -289\},
+08895 \{ -100, -309, -289, -289, -289\},
+08896 \{ -100, -309, -289, -289, -289\},
+08897 \{ -100, -309, -289, -289, -289\}\},
+08898 \textcolor{comment}{/* AU.CG.. @ */}
+08899 \{\{ -100, -309, -289, -289, -289\},
+08900 \{ -100, -309, -289, -289, -289\},
+08901 \{ -100, -309, -289, -289, -289\},
+08902 \{ -100, -309, -289, -289, -289\},
+08903 \{ -100, -309, -289, -289, -289\}\},
+08904 \textcolor{comment}{/* AU.CU.. @ */}
+08905 \{\{ -100, -309, -289, -289, -289\},
+08906 \{ -100, -309, -289, -289, -289\},
+08907 \{ -100, -309, -289, -289, -289\},
+08908 \{ -100, -309, -289, -289, -289\},
+08909 \{ -100, -309, -289, -289, -289\}\}\},
+08910 \textcolor{comment}{/* AU.G@.. @ */}
+08911 \{\{\{ -100, -389, -739, -739, -739\},
+08912 \{ -100, -389, -739, -739, -739\},
+08913 \{ -100, -389, -739, -739, -739\},
+08914 \{ -100, -389, -739, -739, -739\},
+08915 \{ -100, -389, -739, -739, -739\}\},
+08916 \textcolor{comment}{/* AU.GA.. @ */}
+08917 \{\{ -100, -389, -739, -739, -739\},
+08918 \{ -100, -389, -739, -739, -739\},
+08919 \{ -100, -389, -739, -739, -739\},
+08920 \{ -100, -389, -739, -739, -739\},
+08921 \{ -100, -389, -739, -739, -739\}\},
+08922 \textcolor{comment}{/* AU.GC.. @ */}
+08923 \{\{ -100, -389, -739, -739, -739\},
+08924 \{ -100, -389, -739, -739, -739\},
+08925 \{ -100, -389, -739, -739, -739\},
+08926 \{ -100, -389, -739, -739, -739\},
+08927 \{ -100, -389, -739, -739, -739\}\},
+08928 \textcolor{comment}{/* AU.GG.. @ */}
+08929 \{\{ -100, -389, -739, -739, -739\},
+08930 \{ -100, -389, -739, -739, -739\},
+08931 \{ -100, -389, -739, -739, -739\},
+08932 \{ -100, -389, -739, -739, -739\},
+08933 \{ -100, -389, -739, -739, -739\}\},
+08934 \textcolor{comment}{/* AU.GU.. @ */}
+08935 \{\{ -100, -389, -739, -739, -739\},
+08936 \{ -100, -389, -739, -739, -739\},
+08937 \{ -100, -389, -739, -739, -739\},
+08938 \{ -100, -389, -739, -739, -739\},
+08939 \{ -100, -389, -739, -739, -739\}\}\},
+08940 \textcolor{comment}{/* AU.U@.. @ */}
+08941 \{\{\{ -100, -379, -379, -379, -379\},
+08942 \{ -100, -379, -379, -379, -379\},
+08943 \{ -100, -379, -379, -379, -379\},
+08944 \{ -100, -379, -379, -379, -379\},
+08945 \{ -100, -379, -379, -379, -379\}\},
+08946 \textcolor{comment}{/* AU.UA.. @ */}
+08947 \{\{ -100, -379, -379, -379, -379\},
+08948 \{ -100, -379, -379, -379, -379\},
+08949 \{ -100, -379, -379, -379, -379\},
+08950 \{ -100, -379, -379, -379, -379\},
+08951 \{ -100, -379, -379, -379, -379\}\},
+08952 \textcolor{comment}{/* AU.UC.. @ */}
+08953 \{\{ -100, -379, -379, -379, -379\},
+08954 \{ -100, -379, -379, -379, -379\},
+08955 \{ -100, -379, -379, -379, -379\},
+08956 \{ -100, -379, -379, -379, -379\},
+08957 \{ -100, -379, -379, -379, -379\}\},
+08958 \textcolor{comment}{/* AU.UG.. @ */}
+08959 \{\{ -100, -379, -379, -379, -379\},
+08960 \{ -100, -379, -379, -379, -379\},
+08961 \{ -100, -379, -379, -379, -379\},
+08962 \{ -100, -379, -379, -379, -379\},
+08963 \{ -100, -379, -379, -379, -379\}\},
+08964 \textcolor{comment}{/* AU.UU.. @ */}
+08965 \{\{ -100, -379, -379, -379, -379\},
+08966 \{ -100, -379, -379, -379, -379\},
+08967 \{ -100, -379, -379, -379, -379\},
+08968 \{ -100, -379, -379, -379, -379\},
+08969 \{ -100, -379, -379, -379, -379\}\}\}\}\},
+08970 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+08971 \textcolor{comment}{/* UA.@@..CG */}
+08972 \{\{\{\{ 0, 0, 0, 0, 0\},
+08973 \{ DEF, DEF, DEF, DEF, DEF\},
+08974 \{ DEF, DEF, DEF, DEF, DEF\},
+08975 \{ DEF, DEF, DEF, DEF, DEF\},
+08976 \{ DEF, DEF, DEF, DEF, DEF\}\},
+08977 \textcolor{comment}{/* UA.@A..CG */}
+08978 \{\{ 0, 0, 0, 0, 0\},
+08979 \{-1029,-1029,-1029,-1029,-1029\},
+08980 \{ -519, -519, -519, -519, -519\},
+08981 \{ -939, -939, -939, -939, -939\},
+08982 \{ -809, -809, -809, -809, -809\}\},
+08983 \textcolor{comment}{/* UA.@C..CG */}
+08984 \{\{ 0, 0, 0, 0, 0\},
+08985 \{ -949, -949, -949, -949, -949\},
+08986 \{ -449, -449, -449, -449, -449\},
+08987 \{ -939, -939, -939, -939, -939\},
+08988 \{ -739, -739, -739, -739, -739\}\},
+08989 \textcolor{comment}{/* UA.@G..CG */}
+08990 \{\{ 0, 0, 0, 0, 0\},
+08991 \{-1029,-1029,-1029,-1029,-1029\},
+08992 \{ -519, -519, -519, -519, -519\},
+08993 \{ -939, -939, -939, -939, -939\},
+08994 \{ -809, -809, -809, -809, -809\}\},
+08995 \textcolor{comment}{/* UA.@U..CG */}
+08996 \{\{ 0, 0, 0, 0, 0\},
+08997 \{-1029,-1029,-1029,-1029,-1029\},
+08998 \{ -669, -669, -669, -669, -669\},
+08999 \{ -939, -939, -939, -939, -939\},
+09000 \{ -859, -859, -859, -859, -859\}\}\},
+09001 \textcolor{comment}{/* UA.A@..CG */}
+09002 \{\{\{ DEF, -399, -629, -889, -589\},
+09003 \{ -100, -449, -679, -939, -639\},
+09004 \{ -100, -449, -679, -939, -639\},
+09005 \{ -100, -449, -679, -939, -639\},
+09006 \{ -100, -449, -679, -939, -639\}\},
+09007 \textcolor{comment}{/* UA.AA..CG */}
+09008 \{\{ DEF, -399, -629, -889, -589\},
+09009 \{-1079,-1428,-1658,-1918,-1618\},
+09010 \{ -569, -918,-1148,-1408,-1108\},
+09011 \{ -989,-1338,-1568,-1828,-1528\},
+09012 \{ -859,-1208,-1438,-1698,-1398\}\},
+09013 \textcolor{comment}{/* UA.AC..CG */}
+09014 \{\{ DEF, -399, -629, -889, -589\},
+09015 \{ -999,-1348,-1578,-1838,-1538\},
+09016 \{ -499, -848,-1078,-1338,-1038\},
+09017 \{ -989,-1338,-1568,-1828,-1528\},
+09018 \{ -789,-1138,-1368,-1628,-1328\}\},
+09019 \textcolor{comment}{/* UA.AG..CG */}
+09020 \{\{ DEF, -399, -629, -889, -589\},
+09021 \{-1079,-1428,-1658,-1918,-1618\},
+09022 \{ -569, -918,-1148,-1408,-1108\},
+09023 \{ -989,-1338,-1568,-1828,-1528\},
+09024 \{ -859,-1208,-1438,-1698,-1398\}\},
+09025 \textcolor{comment}{/* UA.AU..CG */}
+09026 \{\{ DEF, -399, -629, -889, -589\},
+09027 \{-1079,-1428,-1658,-1918,-1618\},
+09028 \{ -719,-1068,-1298,-1558,-1258\},
+09029 \{ -989,-1338,-1568,-1828,-1528\},
+09030 \{ -909,-1258,-1488,-1748,-1448\}\}\},
+09031 \textcolor{comment}{/* UA.C@..CG */}
+09032 \{\{\{ DEF, -429, -509, -199, -179\},
+09033 \{ -100, -479, -559, -249, -229\},
+09034 \{ -100, -479, -559, -249, -229\},
+09035 \{ -100, -479, -559, -249, -229\},
+09036 \{ -100, -479, -559, -249, -229\}\},
+09037 \textcolor{comment}{/* UA.CA..CG */}
+09038 \{\{ DEF, -429, -509, -199, -179\},
+09039 \{-1079,-1458,-1538,-1228,-1208\},
+09040 \{ -569, -948,-1028, -718, -698\},
+09041 \{ -989,-1368,-1448,-1138,-1118\},
+09042 \{ -859,-1238,-1318,-1008, -988\}\},
+09043 \textcolor{comment}{/* UA.CC..CG */}
+09044 \{\{ DEF, -429, -509, -199, -179\},
+09045 \{ -999,-1378,-1458,-1148,-1128\},
+09046 \{ -499, -878, -958, -648, -628\},
+09047 \{ -989,-1368,-1448,-1138,-1118\},
+09048 \{ -789,-1168,-1248, -938, -918\}\},
+09049 \textcolor{comment}{/* UA.CG..CG */}
+09050 \{\{ DEF, -429, -509, -199, -179\},
+09051 \{-1079,-1458,-1538,-1228,-1208\},
+09052 \{ -569, -948,-1028, -718, -698\},
+09053 \{ -989,-1368,-1448,-1138,-1118\},
+09054 \{ -859,-1238,-1318,-1008, -988\}\},
+09055 \textcolor{comment}{/* UA.CU..CG */}
+09056 \{\{ DEF, -429, -509, -199, -179\},
+09057 \{-1079,-1458,-1538,-1228,-1208\},
+09058 \{ -719,-1098,-1178, -868, -848\},
+09059 \{ -989,-1368,-1448,-1138,-1118\},
+09060 \{ -909,-1288,-1368,-1058,-1038\}\}\},
+09061 \textcolor{comment}{/* UA.G@..CG */}
+09062 \{\{\{ DEF, -379, -679, -889, -679\},
+09063 \{ -100, -429, -729, -939, -729\},
+09064 \{ -100, -429, -729, -939, -729\},
+09065 \{ -100, -429, -729, -939, -729\},
+09066 \{ -100, -429, -729, -939, -729\}\},
+09067 \textcolor{comment}{/* UA.GA..CG */}
+09068 \{\{ DEF, -379, -679, -889, -679\},
+09069 \{-1079,-1408,-1708,-1918,-1708\},
+09070 \{ -569, -898,-1198,-1408,-1198\},
+09071 \{ -989,-1318,-1618,-1828,-1618\},
+09072 \{ -859,-1188,-1488,-1698,-1488\}\},
+09073 \textcolor{comment}{/* UA.GC..CG */}
+09074 \{\{ DEF, -379, -679, -889, -679\},
+09075 \{ -999,-1328,-1628,-1838,-1628\},
+09076 \{ -499, -828,-1128,-1338,-1128\},
+09077 \{ -989,-1318,-1618,-1828,-1618\},
+09078 \{ -789,-1118,-1418,-1628,-1418\}\},
+09079 \textcolor{comment}{/* UA.GG..CG */}
+09080 \{\{ DEF, -379, -679, -889, -679\},
+09081 \{-1079,-1408,-1708,-1918,-1708\},
+09082 \{ -569, -898,-1198,-1408,-1198\},
+09083 \{ -989,-1318,-1618,-1828,-1618\},
+09084 \{ -859,-1188,-1488,-1698,-1488\}\},
+09085 \textcolor{comment}{/* UA.GU..CG */}
+09086 \{\{ DEF, -379, -679, -889, -679\},
+09087 \{-1079,-1408,-1708,-1918,-1708\},
+09088 \{ -719,-1048,-1348,-1558,-1348\},
+09089 \{ -989,-1318,-1618,-1828,-1618\},
+09090 \{ -909,-1238,-1538,-1748,-1538\}\}\},
+09091 \textcolor{comment}{/* UA.U@..CG */}
+09092 \{\{\{ DEF, -279, -139, -279, -140\},
+09093 \{ -100, -329, -189, -329, -190\},
+09094 \{ -100, -329, -189, -329, -190\},
+09095 \{ -100, -329, -189, -329, -190\},
+09096 \{ -100, -329, -189, -329, -190\}\},
+09097 \textcolor{comment}{/* UA.UA..CG */}
+09098 \{\{ DEF, -279, -139, -279, -140\},
+09099 \{-1079,-1308,-1168,-1308,-1169\},
+09100 \{ -569, -798, -658, -798, -659\},
+09101 \{ -989,-1218,-1078,-1218,-1079\},
+09102 \{ -859,-1088, -948,-1088, -949\}\},
+09103 \textcolor{comment}{/* UA.UC..CG */}
+09104 \{\{ DEF, -279, -139, -279, -140\},
+09105 \{ -999,-1228,-1088,-1228,-1089\},
+09106 \{ -499, -728, -588, -728, -589\},
+09107 \{ -989,-1218,-1078,-1218,-1079\},
+09108 \{ -789,-1018, -878,-1018, -879\}\},
+09109 \textcolor{comment}{/* UA.UG..CG */}
+09110 \{\{ DEF, -279, -139, -279, -140\},
+09111 \{-1079,-1308,-1168,-1308,-1169\},
+09112 \{ -569, -798, -658, -798, -659\},
+09113 \{ -989,-1218,-1078,-1218,-1079\},
+09114 \{ -859,-1088, -948,-1088, -949\}\},
+09115 \textcolor{comment}{/* UA.UU..CG */}
+09116 \{\{ DEF, -279, -139, -279, -140\},
+09117 \{-1079,-1308,-1168,-1308,-1169\},
+09118 \{ -719, -948, -808, -948, -809\},
+09119 \{ -989,-1218,-1078,-1218,-1079\},
+09120 \{ -909,-1138, -998,-1138, -999\}\}\}\},
+09121 \textcolor{comment}{/* UA.@@..GC */}
+09122 \{\{\{\{ 0, 0, 0, 0, 0\},
+09123 \{ DEF, DEF, DEF, DEF, DEF\},
+09124 \{ DEF, DEF, DEF, DEF, DEF\},
+09125 \{ DEF, DEF, DEF, DEF, DEF\},
+09126 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09127 \textcolor{comment}{/* UA.@A..GC */}
+09128 \{\{ 0, 0, 0, 0, 0\},
+09129 \{ -519, -519, -519, -519, -519\},
+09130 \{ -719, -719, -719, -719, -719\},
+09131 \{ -709, -709, -709, -709, -709\},
+09132 \{ -499, -499, -499, -499, -499\}\},
+09133 \textcolor{comment}{/* UA.@C..GC */}
+09134 \{\{ 0, 0, 0, 0, 0\},
+09135 \{ -879, -879, -879, -879, -879\},
+09136 \{ -309, -309, -309, -309, -309\},
+09137 \{ -739, -739, -739, -739, -739\},
+09138 \{ -499, -499, -499, -499, -499\}\},
+09139 \textcolor{comment}{/* UA.@G..GC */}
+09140 \{\{ 0, 0, 0, 0, 0\},
+09141 \{ -559, -559, -559, -559, -559\},
+09142 \{ -309, -309, -309, -309, -309\},
+09143 \{ -619, -619, -619, -619, -619\},
+09144 \{ -499, -499, -499, -499, -499\}\},
+09145 \textcolor{comment}{/* UA.@U..GC */}
+09146 \{\{ 0, 0, 0, 0, 0\},
+09147 \{ -879, -879, -879, -879, -879\},
+09148 \{ -389, -389, -389, -389, -389\},
+09149 \{ -739, -739, -739, -739, -739\},
+09150 \{ -569, -569, -569, -569, -569\}\}\},
+09151 \textcolor{comment}{/* UA.A@..GC */}
+09152 \{\{\{ DEF, -399, -629, -889, -589\},
+09153 \{ -100, -449, -679, -939, -639\},
+09154 \{ -100, -449, -679, -939, -639\},
+09155 \{ -100, -449, -679, -939, -639\},
+09156 \{ -100, -449, -679, -939, -639\}\},
+09157 \textcolor{comment}{/* UA.AA..GC */}
+09158 \{\{ DEF, -399, -629, -889, -589\},
+09159 \{ -569, -918,-1148,-1408,-1108\},
+09160 \{ -769,-1118,-1348,-1608,-1308\},
+09161 \{ -759,-1108,-1338,-1598,-1298\},
+09162 \{ -549, -898,-1128,-1388,-1088\}\},
+09163 \textcolor{comment}{/* UA.AC..GC */}
+09164 \{\{ DEF, -399, -629, -889, -589\},
+09165 \{ -929,-1278,-1508,-1768,-1468\},
+09166 \{ -359, -708, -938,-1198, -898\},
+09167 \{ -789,-1138,-1368,-1628,-1328\},
+09168 \{ -549, -898,-1128,-1388,-1088\}\},
+09169 \textcolor{comment}{/* UA.AG..GC */}
+09170 \{\{ DEF, -399, -629, -889, -589\},
+09171 \{ -609, -958,-1188,-1448,-1148\},
+09172 \{ -359, -708, -938,-1198, -898\},
+09173 \{ -669,-1018,-1248,-1508,-1208\},
+09174 \{ -549, -898,-1128,-1388,-1088\}\},
+09175 \textcolor{comment}{/* UA.AU..GC */}
+09176 \{\{ DEF, -399, -629, -889, -589\},
+09177 \{ -929,-1278,-1508,-1768,-1468\},
+09178 \{ -439, -788,-1018,-1278, -978\},
+09179 \{ -789,-1138,-1368,-1628,-1328\},
+09180 \{ -619, -968,-1198,-1458,-1158\}\}\},
+09181 \textcolor{comment}{/* UA.C@..GC */}
+09182 \{\{\{ DEF, -429, -509, -199, -179\},
+09183 \{ -100, -479, -559, -249, -229\},
+09184 \{ -100, -479, -559, -249, -229\},
+09185 \{ -100, -479, -559, -249, -229\},
+09186 \{ -100, -479, -559, -249, -229\}\},
+09187 \textcolor{comment}{/* UA.CA..GC */}
+09188 \{\{ DEF, -429, -509, -199, -179\},
+09189 \{ -569, -948,-1028, -718, -698\},
+09190 \{ -769,-1148,-1228, -918, -898\},
+09191 \{ -759,-1138,-1218, -908, -888\},
+09192 \{ -549, -928,-1008, -698, -678\}\},
+09193 \textcolor{comment}{/* UA.CC..GC */}
+09194 \{\{ DEF, -429, -509, -199, -179\},
+09195 \{ -929,-1308,-1388,-1078,-1058\},
+09196 \{ -359, -738, -818, -508, -488\},
+09197 \{ -789,-1168,-1248, -938, -918\},
+09198 \{ -549, -928,-1008, -698, -678\}\},
+09199 \textcolor{comment}{/* UA.CG..GC */}
+09200 \{\{ DEF, -429, -509, -199, -179\},
+09201 \{ -609, -988,-1068, -758, -738\},
+09202 \{ -359, -738, -818, -508, -488\},
+09203 \{ -669,-1048,-1128, -818, -798\},
+09204 \{ -549, -928,-1008, -698, -678\}\},
+09205 \textcolor{comment}{/* UA.CU..GC */}
+09206 \{\{ DEF, -429, -509, -199, -179\},
+09207 \{ -929,-1308,-1388,-1078,-1058\},
+09208 \{ -439, -818, -898, -588, -568\},
+09209 \{ -789,-1168,-1248, -938, -918\},
+09210 \{ -619, -998,-1078, -768, -748\}\}\},
+09211 \textcolor{comment}{/* UA.G@..GC */}
+09212 \{\{\{ DEF, -379, -679, -889, -679\},
+09213 \{ -100, -429, -729, -939, -729\},
+09214 \{ -100, -429, -729, -939, -729\},
+09215 \{ -100, -429, -729, -939, -729\},
+09216 \{ -100, -429, -729, -939, -729\}\},
+09217 \textcolor{comment}{/* UA.GA..GC */}
+09218 \{\{ DEF, -379, -679, -889, -679\},
+09219 \{ -569, -898,-1198,-1408,-1198\},
+09220 \{ -769,-1098,-1398,-1608,-1398\},
+09221 \{ -759,-1088,-1388,-1598,-1388\},
+09222 \{ -549, -878,-1178,-1388,-1178\}\},
+09223 \textcolor{comment}{/* UA.GC..GC */}
+09224 \{\{ DEF, -379, -679, -889, -679\},
+09225 \{ -929,-1258,-1558,-1768,-1558\},
+09226 \{ -359, -688, -988,-1198, -988\},
+09227 \{ -789,-1118,-1418,-1628,-1418\},
+09228 \{ -549, -878,-1178,-1388,-1178\}\},
+09229 \textcolor{comment}{/* UA.GG..GC */}
+09230 \{\{ DEF, -379, -679, -889, -679\},
+09231 \{ -609, -938,-1238,-1448,-1238\},
+09232 \{ -359, -688, -988,-1198, -988\},
+09233 \{ -669, -998,-1298,-1508,-1298\},
+09234 \{ -549, -878,-1178,-1388,-1178\}\},
+09235 \textcolor{comment}{/* UA.GU..GC */}
+09236 \{\{ DEF, -379, -679, -889, -679\},
+09237 \{ -929,-1258,-1558,-1768,-1558\},
+09238 \{ -439, -768,-1068,-1278,-1068\},
+09239 \{ -789,-1118,-1418,-1628,-1418\},
+09240 \{ -619, -948,-1248,-1458,-1248\}\}\},
+09241 \textcolor{comment}{/* UA.U@..GC */}
+09242 \{\{\{ DEF, -279, -139, -279, -140\},
+09243 \{ -100, -329, -189, -329, -190\},
+09244 \{ -100, -329, -189, -329, -190\},
+09245 \{ -100, -329, -189, -329, -190\},
+09246 \{ -100, -329, -189, -329, -190\}\},
+09247 \textcolor{comment}{/* UA.UA..GC */}
+09248 \{\{ DEF, -279, -139, -279, -140\},
+09249 \{ -569, -798, -658, -798, -659\},
+09250 \{ -769, -998, -858, -998, -859\},
+09251 \{ -759, -988, -848, -988, -849\},
+09252 \{ -549, -778, -638, -778, -639\}\},
+09253 \textcolor{comment}{/* UA.UC..GC */}
+09254 \{\{ DEF, -279, -139, -279, -140\},
+09255 \{ -929,-1158,-1018,-1158,-1019\},
+09256 \{ -359, -588, -448, -588, -449\},
+09257 \{ -789,-1018, -878,-1018, -879\},
+09258 \{ -549, -778, -638, -778, -639\}\},
+09259 \textcolor{comment}{/* UA.UG..GC */}
+09260 \{\{ DEF, -279, -139, -279, -140\},
+09261 \{ -609, -838, -698, -838, -699\},
+09262 \{ -359, -588, -448, -588, -449\},
+09263 \{ -669, -898, -758, -898, -759\},
+09264 \{ -549, -778, -638, -778, -639\}\},
+09265 \textcolor{comment}{/* UA.UU..GC */}
+09266 \{\{ DEF, -279, -139, -279, -140\},
+09267 \{ -929,-1158,-1018,-1158,-1019\},
+09268 \{ -439, -668, -528, -668, -529\},
+09269 \{ -789,-1018, -878,-1018, -879\},
+09270 \{ -619, -848, -708, -848, -709\}\}\}\},
+09271 \textcolor{comment}{/* UA.@@..GU */}
+09272 \{\{\{\{ 0, 0, 0, 0, 0\},
+09273 \{ DEF, DEF, DEF, DEF, DEF\},
+09274 \{ DEF, DEF, DEF, DEF, DEF\},
+09275 \{ DEF, DEF, DEF, DEF, DEF\},
+09276 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09277 \textcolor{comment}{/* UA.@A..GU */}
+09278 \{\{ 0, 0, 0, 0, 0\},
+09279 \{ -429, -429, -429, -429, -429\},
+09280 \{ -259, -259, -259, -259, -259\},
+09281 \{ -339, -339, -339, -339, -339\},
+09282 \{ -329, -329, -329, -329, -329\}\},
+09283 \textcolor{comment}{/* UA.@C..GU */}
+09284 \{\{ 0, 0, 0, 0, 0\},
+09285 \{ -599, -599, -599, -599, -599\},
+09286 \{ -239, -239, -239, -239, -239\},
+09287 \{ -689, -689, -689, -689, -689\},
+09288 \{ -329, -329, -329, -329, -329\}\},
+09289 \textcolor{comment}{/* UA.@G..GU */}
+09290 \{\{ 0, 0, 0, 0, 0\},
+09291 \{ -599, -599, -599, -599, -599\},
+09292 \{ -239, -239, -239, -239, -239\},
+09293 \{ -689, -689, -689, -689, -689\},
+09294 \{ -329, -329, -329, -329, -329\}\},
+09295 \textcolor{comment}{/* UA.@U..GU */}
+09296 \{\{ 0, 0, 0, 0, 0\},
+09297 \{ -599, -599, -599, -599, -599\},
+09298 \{ -239, -239, -239, -239, -239\},
+09299 \{ -689, -689, -689, -689, -689\},
+09300 \{ -329, -329, -329, -329, -329\}\}\},
+09301 \textcolor{comment}{/* UA.A@..GU */}
+09302 \{\{\{ DEF, -399, -629, -889, -589\},
+09303 \{ -100, -449, -679, -939, -639\},
+09304 \{ -100, -449, -679, -939, -639\},
+09305 \{ -100, -449, -679, -939, -639\},
+09306 \{ -100, -449, -679, -939, -639\}\},
+09307 \textcolor{comment}{/* UA.AA..GU */}
+09308 \{\{ DEF, -399, -629, -889, -589\},
+09309 \{ -479, -828,-1058,-1318,-1018\},
+09310 \{ -309, -658, -888,-1148, -848\},
+09311 \{ -389, -738, -968,-1228, -928\},
+09312 \{ -379, -728, -958,-1218, -918\}\},
+09313 \textcolor{comment}{/* UA.AC..GU */}
+09314 \{\{ DEF, -399, -629, -889, -589\},
+09315 \{ -649, -998,-1228,-1488,-1188\},
+09316 \{ -289, -638, -868,-1128, -828\},
+09317 \{ -739,-1088,-1318,-1578,-1278\},
+09318 \{ -379, -728, -958,-1218, -918\}\},
+09319 \textcolor{comment}{/* UA.AG..GU */}
+09320 \{\{ DEF, -399, -629, -889, -589\},
+09321 \{ -649, -998,-1228,-1488,-1188\},
+09322 \{ -289, -638, -868,-1128, -828\},
+09323 \{ -739,-1088,-1318,-1578,-1278\},
+09324 \{ -379, -728, -958,-1218, -918\}\},
+09325 \textcolor{comment}{/* UA.AU..GU */}
+09326 \{\{ DEF, -399, -629, -889, -589\},
+09327 \{ -649, -998,-1228,-1488,-1188\},
+09328 \{ -289, -638, -868,-1128, -828\},
+09329 \{ -739,-1088,-1318,-1578,-1278\},
+09330 \{ -379, -728, -958,-1218, -918\}\}\},
+09331 \textcolor{comment}{/* UA.C@..GU */}
+09332 \{\{\{ DEF, -429, -509, -199, -179\},
+09333 \{ -100, -479, -559, -249, -229\},
+09334 \{ -100, -479, -559, -249, -229\},
+09335 \{ -100, -479, -559, -249, -229\},
+09336 \{ -100, -479, -559, -249, -229\}\},
+09337 \textcolor{comment}{/* UA.CA..GU */}
+09338 \{\{ DEF, -429, -509, -199, -179\},
+09339 \{ -479, -858, -938, -628, -608\},
+09340 \{ -309, -688, -768, -458, -438\},
+09341 \{ -389, -768, -848, -538, -518\},
+09342 \{ -379, -758, -838, -528, -508\}\},
+09343 \textcolor{comment}{/* UA.CC..GU */}
+09344 \{\{ DEF, -429, -509, -199, -179\},
+09345 \{ -649,-1028,-1108, -798, -778\},
+09346 \{ -289, -668, -748, -438, -418\},
+09347 \{ -739,-1118,-1198, -888, -868\},
+09348 \{ -379, -758, -838, -528, -508\}\},
+09349 \textcolor{comment}{/* UA.CG..GU */}
+09350 \{\{ DEF, -429, -509, -199, -179\},
+09351 \{ -649,-1028,-1108, -798, -778\},
+09352 \{ -289, -668, -748, -438, -418\},
+09353 \{ -739,-1118,-1198, -888, -868\},
+09354 \{ -379, -758, -838, -528, -508\}\},
+09355 \textcolor{comment}{/* UA.CU..GU */}
+09356 \{\{ DEF, -429, -509, -199, -179\},
+09357 \{ -649,-1028,-1108, -798, -778\},
+09358 \{ -289, -668, -748, -438, -418\},
+09359 \{ -739,-1118,-1198, -888, -868\},
+09360 \{ -379, -758, -838, -528, -508\}\}\},
+09361 \textcolor{comment}{/* UA.G@..GU */}
+09362 \{\{\{ DEF, -379, -679, -889, -679\},
+09363 \{ -100, -429, -729, -939, -729\},
+09364 \{ -100, -429, -729, -939, -729\},
+09365 \{ -100, -429, -729, -939, -729\},
+09366 \{ -100, -429, -729, -939, -729\}\},
+09367 \textcolor{comment}{/* UA.GA..GU */}
+09368 \{\{ DEF, -379, -679, -889, -679\},
+09369 \{ -479, -808,-1108,-1318,-1108\},
+09370 \{ -309, -638, -938,-1148, -938\},
+09371 \{ -389, -718,-1018,-1228,-1018\},
+09372 \{ -379, -708,-1008,-1218,-1008\}\},
+09373 \textcolor{comment}{/* UA.GC..GU */}
+09374 \{\{ DEF, -379, -679, -889, -679\},
+09375 \{ -649, -978,-1278,-1488,-1278\},
+09376 \{ -289, -618, -918,-1128, -918\},
+09377 \{ -739,-1068,-1368,-1578,-1368\},
+09378 \{ -379, -708,-1008,-1218,-1008\}\},
+09379 \textcolor{comment}{/* UA.GG..GU */}
+09380 \{\{ DEF, -379, -679, -889, -679\},
+09381 \{ -649, -978,-1278,-1488,-1278\},
+09382 \{ -289, -618, -918,-1128, -918\},
+09383 \{ -739,-1068,-1368,-1578,-1368\},
+09384 \{ -379, -708,-1008,-1218,-1008\}\},
+09385 \textcolor{comment}{/* UA.GU..GU */}
+09386 \{\{ DEF, -379, -679, -889, -679\},
+09387 \{ -649, -978,-1278,-1488,-1278\},
+09388 \{ -289, -618, -918,-1128, -918\},
+09389 \{ -739,-1068,-1368,-1578,-1368\},
+09390 \{ -379, -708,-1008,-1218,-1008\}\}\},
+09391 \textcolor{comment}{/* UA.U@..GU */}
+09392 \{\{\{ DEF, -279, -139, -279, -140\},
+09393 \{ -100, -329, -189, -329, -190\},
+09394 \{ -100, -329, -189, -329, -190\},
+09395 \{ -100, -329, -189, -329, -190\},
+09396 \{ -100, -329, -189, -329, -190\}\},
+09397 \textcolor{comment}{/* UA.UA..GU */}
+09398 \{\{ DEF, -279, -139, -279, -140\},
+09399 \{ -479, -708, -568, -708, -569\},
+09400 \{ -309, -538, -398, -538, -399\},
+09401 \{ -389, -618, -478, -618, -479\},
+09402 \{ -379, -608, -468, -608, -469\}\},
+09403 \textcolor{comment}{/* UA.UC..GU */}
+09404 \{\{ DEF, -279, -139, -279, -140\},
+09405 \{ -649, -878, -738, -878, -739\},
+09406 \{ -289, -518, -378, -518, -379\},
+09407 \{ -739, -968, -828, -968, -829\},
+09408 \{ -379, -608, -468, -608, -469\}\},
+09409 \textcolor{comment}{/* UA.UG..GU */}
+09410 \{\{ DEF, -279, -139, -279, -140\},
+09411 \{ -649, -878, -738, -878, -739\},
+09412 \{ -289, -518, -378, -518, -379\},
+09413 \{ -739, -968, -828, -968, -829\},
+09414 \{ -379, -608, -468, -608, -469\}\},
+09415 \textcolor{comment}{/* UA.UU..GU */}
+09416 \{\{ DEF, -279, -139, -279, -140\},
+09417 \{ -649, -878, -738, -878, -739\},
+09418 \{ -289, -518, -378, -518, -379\},
+09419 \{ -739, -968, -828, -968, -829\},
+09420 \{ -379, -608, -468, -608, -469\}\}\}\},
+09421 \textcolor{comment}{/* UA.@@..UG */}
+09422 \{\{\{\{ 0, 0, 0, 0, 0\},
+09423 \{ DEF, DEF, DEF, DEF, DEF\},
+09424 \{ DEF, DEF, DEF, DEF, DEF\},
+09425 \{ DEF, DEF, DEF, DEF, DEF\},
+09426 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09427 \textcolor{comment}{/* UA.@A..UG */}
+09428 \{\{ 0, 0, 0, 0, 0\},
+09429 \{ -719, -719, -719, -719, -719\},
+09430 \{ -479, -479, -479, -479, -479\},
+09431 \{ -659, -659, -659, -659, -659\},
+09432 \{ -549, -549, -549, -549, -549\}\},
+09433 \textcolor{comment}{/* UA.@C..UG */}
+09434 \{\{ 0, 0, 0, 0, 0\},
+09435 \{ -789, -789, -789, -789, -789\},
+09436 \{ -479, -479, -479, -479, -479\},
+09437 \{ -809, -809, -809, -809, -809\},
+09438 \{ -439, -439, -439, -439, -439\}\},
+09439 \textcolor{comment}{/* UA.@G..UG */}
+09440 \{\{ 0, 0, 0, 0, 0\},
+09441 \{ -959, -959, -959, -959, -959\},
+09442 \{ -359, -359, -359, -359, -359\},
+09443 \{ -919, -919, -919, -919, -919\},
+09444 \{ -549, -549, -549, -549, -549\}\},
+09445 \textcolor{comment}{/* UA.@U..UG */}
+09446 \{\{ 0, 0, 0, 0, 0\},
+09447 \{ -809, -809, -809, -809, -809\},
+09448 \{ -479, -479, -479, -479, -479\},
+09449 \{ -809, -809, -809, -809, -809\},
+09450 \{ -359, -359, -359, -359, -359\}\}\},
+09451 \textcolor{comment}{/* UA.A@..UG */}
+09452 \{\{\{ DEF, -399, -629, -889, -589\},
+09453 \{ -100, -449, -679, -939, -639\},
+09454 \{ -100, -449, -679, -939, -639\},
+09455 \{ -100, -449, -679, -939, -639\},
+09456 \{ -100, -449, -679, -939, -639\}\},
+09457 \textcolor{comment}{/* UA.AA..UG */}
+09458 \{\{ DEF, -399, -629, -889, -589\},
+09459 \{ -769,-1118,-1348,-1608,-1308\},
+09460 \{ -529, -878,-1108,-1368,-1068\},
+09461 \{ -709,-1058,-1288,-1548,-1248\},
+09462 \{ -599, -948,-1178,-1438,-1138\}\},
+09463 \textcolor{comment}{/* UA.AC..UG */}
+09464 \{\{ DEF, -399, -629, -889, -589\},
+09465 \{ -839,-1188,-1418,-1678,-1378\},
+09466 \{ -529, -878,-1108,-1368,-1068\},
+09467 \{ -859,-1208,-1438,-1698,-1398\},
+09468 \{ -489, -838,-1068,-1328,-1028\}\},
+09469 \textcolor{comment}{/* UA.AG..UG */}
+09470 \{\{ DEF, -399, -629, -889, -589\},
+09471 \{-1009,-1358,-1588,-1848,-1548\},
+09472 \{ -409, -758, -988,-1248, -948\},
+09473 \{ -969,-1318,-1548,-1808,-1508\},
+09474 \{ -599, -948,-1178,-1438,-1138\}\},
+09475 \textcolor{comment}{/* UA.AU..UG */}
+09476 \{\{ DEF, -399, -629, -889, -589\},
+09477 \{ -859,-1208,-1438,-1698,-1398\},
+09478 \{ -529, -878,-1108,-1368,-1068\},
+09479 \{ -859,-1208,-1438,-1698,-1398\},
+09480 \{ -409, -758, -988,-1248, -948\}\}\},
+09481 \textcolor{comment}{/* UA.C@..UG */}
+09482 \{\{\{ DEF, -429, -509, -199, -179\},
+09483 \{ -100, -479, -559, -249, -229\},
+09484 \{ -100, -479, -559, -249, -229\},
+09485 \{ -100, -479, -559, -249, -229\},
+09486 \{ -100, -479, -559, -249, -229\}\},
+09487 \textcolor{comment}{/* UA.CA..UG */}
+09488 \{\{ DEF, -429, -509, -199, -179\},
+09489 \{ -769,-1148,-1228, -918, -898\},
+09490 \{ -529, -908, -988, -678, -658\},
+09491 \{ -709,-1088,-1168, -858, -838\},
+09492 \{ -599, -978,-1058, -748, -728\}\},
+09493 \textcolor{comment}{/* UA.CC..UG */}
+09494 \{\{ DEF, -429, -509, -199, -179\},
+09495 \{ -839,-1218,-1298, -988, -968\},
+09496 \{ -529, -908, -988, -678, -658\},
+09497 \{ -859,-1238,-1318,-1008, -988\},
+09498 \{ -489, -868, -948, -638, -618\}\},
+09499 \textcolor{comment}{/* UA.CG..UG */}
+09500 \{\{ DEF, -429, -509, -199, -179\},
+09501 \{-1009,-1388,-1468,-1158,-1138\},
+09502 \{ -409, -788, -868, -558, -538\},
+09503 \{ -969,-1348,-1428,-1118,-1098\},
+09504 \{ -599, -978,-1058, -748, -728\}\},
+09505 \textcolor{comment}{/* UA.CU..UG */}
+09506 \{\{ DEF, -429, -509, -199, -179\},
+09507 \{ -859,-1238,-1318,-1008, -988\},
+09508 \{ -529, -908, -988, -678, -658\},
+09509 \{ -859,-1238,-1318,-1008, -988\},
+09510 \{ -409, -788, -868, -558, -538\}\}\},
+09511 \textcolor{comment}{/* UA.G@..UG */}
+09512 \{\{\{ DEF, -379, -679, -889, -679\},
+09513 \{ -100, -429, -729, -939, -729\},
+09514 \{ -100, -429, -729, -939, -729\},
+09515 \{ -100, -429, -729, -939, -729\},
+09516 \{ -100, -429, -729, -939, -729\}\},
+09517 \textcolor{comment}{/* UA.GA..UG */}
+09518 \{\{ DEF, -379, -679, -889, -679\},
+09519 \{ -769,-1098,-1398,-1608,-1398\},
+09520 \{ -529, -858,-1158,-1368,-1158\},
+09521 \{ -709,-1038,-1338,-1548,-1338\},
+09522 \{ -599, -928,-1228,-1438,-1228\}\},
+09523 \textcolor{comment}{/* UA.GC..UG */}
+09524 \{\{ DEF, -379, -679, -889, -679\},
+09525 \{ -839,-1168,-1468,-1678,-1468\},
+09526 \{ -529, -858,-1158,-1368,-1158\},
+09527 \{ -859,-1188,-1488,-1698,-1488\},
+09528 \{ -489, -818,-1118,-1328,-1118\}\},
+09529 \textcolor{comment}{/* UA.GG..UG */}
+09530 \{\{ DEF, -379, -679, -889, -679\},
+09531 \{-1009,-1338,-1638,-1848,-1638\},
+09532 \{ -409, -738,-1038,-1248,-1038\},
+09533 \{ -969,-1298,-1598,-1808,-1598\},
+09534 \{ -599, -928,-1228,-1438,-1228\}\},
+09535 \textcolor{comment}{/* UA.GU..UG */}
+09536 \{\{ DEF, -379, -679, -889, -679\},
+09537 \{ -859,-1188,-1488,-1698,-1488\},
+09538 \{ -529, -858,-1158,-1368,-1158\},
+09539 \{ -859,-1188,-1488,-1698,-1488\},
+09540 \{ -409, -738,-1038,-1248,-1038\}\}\},
+09541 \textcolor{comment}{/* UA.U@..UG */}
+09542 \{\{\{ DEF, -279, -139, -279, -140\},
+09543 \{ -100, -329, -189, -329, -190\},
+09544 \{ -100, -329, -189, -329, -190\},
+09545 \{ -100, -329, -189, -329, -190\},
+09546 \{ -100, -329, -189, -329, -190\}\},
+09547 \textcolor{comment}{/* UA.UA..UG */}
+09548 \{\{ DEF, -279, -139, -279, -140\},
+09549 \{ -769, -998, -858, -998, -859\},
+09550 \{ -529, -758, -618, -758, -619\},
+09551 \{ -709, -938, -798, -938, -799\},
+09552 \{ -599, -828, -688, -828, -689\}\},
+09553 \textcolor{comment}{/* UA.UC..UG */}
+09554 \{\{ DEF, -279, -139, -279, -140\},
+09555 \{ -839,-1068, -928,-1068, -929\},
+09556 \{ -529, -758, -618, -758, -619\},
+09557 \{ -859,-1088, -948,-1088, -949\},
+09558 \{ -489, -718, -578, -718, -579\}\},
+09559 \textcolor{comment}{/* UA.UG..UG */}
+09560 \{\{ DEF, -279, -139, -279, -140\},
+09561 \{-1009,-1238,-1098,-1238,-1099\},
+09562 \{ -409, -638, -498, -638, -499\},
+09563 \{ -969,-1198,-1058,-1198,-1059\},
+09564 \{ -599, -828, -688, -828, -689\}\},
+09565 \textcolor{comment}{/* UA.UU..UG */}
+09566 \{\{ DEF, -279, -139, -279, -140\},
+09567 \{ -859,-1088, -948,-1088, -949\},
+09568 \{ -529, -758, -618, -758, -619\},
+09569 \{ -859,-1088, -948,-1088, -949\},
+09570 \{ -409, -638, -498, -638, -499\}\}\}\},
+09571 \textcolor{comment}{/* UA.@@..AU */}
+09572 \{\{\{\{ 0, 0, 0, 0, 0\},
+09573 \{ DEF, DEF, DEF, DEF, DEF\},
+09574 \{ DEF, DEF, DEF, DEF, DEF\},
+09575 \{ DEF, DEF, DEF, DEF, DEF\},
+09576 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09577 \textcolor{comment}{/* UA.@A..AU */}
+09578 \{\{ 0, 0, 0, 0, 0\},
+09579 \{ -429, -429, -429, -429, -429\},
+09580 \{ -259, -259, -259, -259, -259\},
+09581 \{ -339, -339, -339, -339, -339\},
+09582 \{ -329, -329, -329, -329, -329\}\},
+09583 \textcolor{comment}{/* UA.@C..AU */}
+09584 \{\{ 0, 0, 0, 0, 0\},
+09585 \{ -599, -599, -599, -599, -599\},
+09586 \{ -239, -239, -239, -239, -239\},
+09587 \{ -689, -689, -689, -689, -689\},
+09588 \{ -329, -329, -329, -329, -329\}\},
+09589 \textcolor{comment}{/* UA.@G..AU */}
+09590 \{\{ 0, 0, 0, 0, 0\},
+09591 \{ -599, -599, -599, -599, -599\},
+09592 \{ -239, -239, -239, -239, -239\},
+09593 \{ -689, -689, -689, -689, -689\},
+09594 \{ -329, -329, -329, -329, -329\}\},
+09595 \textcolor{comment}{/* UA.@U..AU */}
+09596 \{\{ 0, 0, 0, 0, 0\},
+09597 \{ -599, -599, -599, -599, -599\},
+09598 \{ -239, -239, -239, -239, -239\},
+09599 \{ -689, -689, -689, -689, -689\},
+09600 \{ -329, -329, -329, -329, -329\}\}\},
+09601 \textcolor{comment}{/* UA.A@..AU */}
+09602 \{\{\{ DEF, -399, -629, -889, -589\},
+09603 \{ -100, -449, -679, -939, -639\},
+09604 \{ -100, -449, -679, -939, -639\},
+09605 \{ -100, -449, -679, -939, -639\},
+09606 \{ -100, -449, -679, -939, -639\}\},
+09607 \textcolor{comment}{/* UA.AA..AU */}
+09608 \{\{ DEF, -399, -629, -889, -589\},
+09609 \{ -479, -828,-1058,-1318,-1018\},
+09610 \{ -309, -658, -888,-1148, -848\},
+09611 \{ -389, -738, -968,-1228, -928\},
+09612 \{ -379, -728, -958,-1218, -918\}\},
+09613 \textcolor{comment}{/* UA.AC..AU */}
+09614 \{\{ DEF, -399, -629, -889, -589\},
+09615 \{ -649, -998,-1228,-1488,-1188\},
+09616 \{ -289, -638, -868,-1128, -828\},
+09617 \{ -739,-1088,-1318,-1578,-1278\},
+09618 \{ -379, -728, -958,-1218, -918\}\},
+09619 \textcolor{comment}{/* UA.AG..AU */}
+09620 \{\{ DEF, -399, -629, -889, -589\},
+09621 \{ -649, -998,-1228,-1488,-1188\},
+09622 \{ -289, -638, -868,-1128, -828\},
+09623 \{ -739,-1088,-1318,-1578,-1278\},
+09624 \{ -379, -728, -958,-1218, -918\}\},
+09625 \textcolor{comment}{/* UA.AU..AU */}
+09626 \{\{ DEF, -399, -629, -889, -589\},
+09627 \{ -649, -998,-1228,-1488,-1188\},
+09628 \{ -289, -638, -868,-1128, -828\},
+09629 \{ -739,-1088,-1318,-1578,-1278\},
+09630 \{ -379, -728, -958,-1218, -918\}\}\},
+09631 \textcolor{comment}{/* UA.C@..AU */}
+09632 \{\{\{ DEF, -429, -509, -199, -179\},
+09633 \{ -100, -479, -559, -249, -229\},
+09634 \{ -100, -479, -559, -249, -229\},
+09635 \{ -100, -479, -559, -249, -229\},
+09636 \{ -100, -479, -559, -249, -229\}\},
+09637 \textcolor{comment}{/* UA.CA..AU */}
+09638 \{\{ DEF, -429, -509, -199, -179\},
+09639 \{ -479, -858, -938, -628, -608\},
+09640 \{ -309, -688, -768, -458, -438\},
+09641 \{ -389, -768, -848, -538, -518\},
+09642 \{ -379, -758, -838, -528, -508\}\},
+09643 \textcolor{comment}{/* UA.CC..AU */}
+09644 \{\{ DEF, -429, -509, -199, -179\},
+09645 \{ -649,-1028,-1108, -798, -778\},
+09646 \{ -289, -668, -748, -438, -418\},
+09647 \{ -739,-1118,-1198, -888, -868\},
+09648 \{ -379, -758, -838, -528, -508\}\},
+09649 \textcolor{comment}{/* UA.CG..AU */}
+09650 \{\{ DEF, -429, -509, -199, -179\},
+09651 \{ -649,-1028,-1108, -798, -778\},
+09652 \{ -289, -668, -748, -438, -418\},
+09653 \{ -739,-1118,-1198, -888, -868\},
+09654 \{ -379, -758, -838, -528, -508\}\},
+09655 \textcolor{comment}{/* UA.CU..AU */}
+09656 \{\{ DEF, -429, -509, -199, -179\},
+09657 \{ -649,-1028,-1108, -798, -778\},
+09658 \{ -289, -668, -748, -438, -418\},
+09659 \{ -739,-1118,-1198, -888, -868\},
+09660 \{ -379, -758, -838, -528, -508\}\}\},
+09661 \textcolor{comment}{/* UA.G@..AU */}
+09662 \{\{\{ DEF, -379, -679, -889, -679\},
+09663 \{ -100, -429, -729, -939, -729\},
+09664 \{ -100, -429, -729, -939, -729\},
+09665 \{ -100, -429, -729, -939, -729\},
+09666 \{ -100, -429, -729, -939, -729\}\},
+09667 \textcolor{comment}{/* UA.GA..AU */}
+09668 \{\{ DEF, -379, -679, -889, -679\},
+09669 \{ -479, -808,-1108,-1318,-1108\},
+09670 \{ -309, -638, -938,-1148, -938\},
+09671 \{ -389, -718,-1018,-1228,-1018\},
+09672 \{ -379, -708,-1008,-1218,-1008\}\},
+09673 \textcolor{comment}{/* UA.GC..AU */}
+09674 \{\{ DEF, -379, -679, -889, -679\},
+09675 \{ -649, -978,-1278,-1488,-1278\},
+09676 \{ -289, -618, -918,-1128, -918\},
+09677 \{ -739,-1068,-1368,-1578,-1368\},
+09678 \{ -379, -708,-1008,-1218,-1008\}\},
+09679 \textcolor{comment}{/* UA.GG..AU */}
+09680 \{\{ DEF, -379, -679, -889, -679\},
+09681 \{ -649, -978,-1278,-1488,-1278\},
+09682 \{ -289, -618, -918,-1128, -918\},
+09683 \{ -739,-1068,-1368,-1578,-1368\},
+09684 \{ -379, -708,-1008,-1218,-1008\}\},
+09685 \textcolor{comment}{/* UA.GU..AU */}
+09686 \{\{ DEF, -379, -679, -889, -679\},
+09687 \{ -649, -978,-1278,-1488,-1278\},
+09688 \{ -289, -618, -918,-1128, -918\},
+09689 \{ -739,-1068,-1368,-1578,-1368\},
+09690 \{ -379, -708,-1008,-1218,-1008\}\}\},
+09691 \textcolor{comment}{/* UA.U@..AU */}
+09692 \{\{\{ DEF, -279, -139, -279, -140\},
+09693 \{ -100, -329, -189, -329, -190\},
+09694 \{ -100, -329, -189, -329, -190\},
+09695 \{ -100, -329, -189, -329, -190\},
+09696 \{ -100, -329, -189, -329, -190\}\},
+09697 \textcolor{comment}{/* UA.UA..AU */}
+09698 \{\{ DEF, -279, -139, -279, -140\},
+09699 \{ -479, -708, -568, -708, -569\},
+09700 \{ -309, -538, -398, -538, -399\},
+09701 \{ -389, -618, -478, -618, -479\},
+09702 \{ -379, -608, -468, -608, -469\}\},
+09703 \textcolor{comment}{/* UA.UC..AU */}
+09704 \{\{ DEF, -279, -139, -279, -140\},
+09705 \{ -649, -878, -738, -878, -739\},
+09706 \{ -289, -518, -378, -518, -379\},
+09707 \{ -739, -968, -828, -968, -829\},
+09708 \{ -379, -608, -468, -608, -469\}\},
+09709 \textcolor{comment}{/* UA.UG..AU */}
+09710 \{\{ DEF, -279, -139, -279, -140\},
+09711 \{ -649, -878, -738, -878, -739\},
+09712 \{ -289, -518, -378, -518, -379\},
+09713 \{ -739, -968, -828, -968, -829\},
+09714 \{ -379, -608, -468, -608, -469\}\},
+09715 \textcolor{comment}{/* UA.UU..AU */}
+09716 \{\{ DEF, -279, -139, -279, -140\},
+09717 \{ -649, -878, -738, -878, -739\},
+09718 \{ -289, -518, -378, -518, -379\},
+09719 \{ -739, -968, -828, -968, -829\},
+09720 \{ -379, -608, -468, -608, -469\}\}\}\},
+09721 \textcolor{comment}{/* UA.@@..UA */}
+09722 \{\{\{\{ 0, 0, 0, 0, 0\},
+09723 \{ DEF, DEF, DEF, DEF, DEF\},
+09724 \{ DEF, DEF, DEF, DEF, DEF\},
+09725 \{ DEF, DEF, DEF, DEF, DEF\},
+09726 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09727 \textcolor{comment}{/* UA.@A..UA */}
+09728 \{\{ 0, 0, 0, 0, 0\},
+09729 \{ -399, -399, -399, -399, -399\},
+09730 \{ -429, -429, -429, -429, -429\},
+09731 \{ -379, -379, -379, -379, -379\},
+09732 \{ -279, -279, -279, -279, -279\}\},
+09733 \textcolor{comment}{/* UA.@C..UA */}
+09734 \{\{ 0, 0, 0, 0, 0\},
+09735 \{ -629, -629, -629, -629, -629\},
+09736 \{ -509, -509, -509, -509, -509\},
+09737 \{ -679, -679, -679, -679, -679\},
+09738 \{ -139, -139, -139, -139, -139\}\},
+09739 \textcolor{comment}{/* UA.@G..UA */}
+09740 \{\{ 0, 0, 0, 0, 0\},
+09741 \{ -889, -889, -889, -889, -889\},
+09742 \{ -199, -199, -199, -199, -199\},
+09743 \{ -889, -889, -889, -889, -889\},
+09744 \{ -279, -279, -279, -279, -279\}\},
+09745 \textcolor{comment}{/* UA.@U..UA */}
+09746 \{\{ 0, 0, 0, 0, 0\},
+09747 \{ -589, -589, -589, -589, -589\},
+09748 \{ -179, -179, -179, -179, -179\},
+09749 \{ -679, -679, -679, -679, -679\},
+09750 \{ -140, -140, -140, -140, -140\}\}\},
+09751 \textcolor{comment}{/* UA.A@..UA */}
+09752 \{\{\{ DEF, -399, -629, -889, -589\},
+09753 \{ -100, -449, -679, -939, -639\},
+09754 \{ -100, -449, -679, -939, -639\},
+09755 \{ -100, -449, -679, -939, -639\},
+09756 \{ -100, -449, -679, -939, -639\}\},
+09757 \textcolor{comment}{/* UA.AA..UA */}
+09758 \{\{ DEF, -399, -629, -889, -589\},
+09759 \{ -449, -798,-1028,-1288, -988\},
+09760 \{ -479, -828,-1058,-1318,-1018\},
+09761 \{ -429, -778,-1008,-1268, -968\},
+09762 \{ -329, -678, -908,-1168, -868\}\},
+09763 \textcolor{comment}{/* UA.AC..UA */}
+09764 \{\{ DEF, -399, -629, -889, -589\},
+09765 \{ -679,-1028,-1258,-1518,-1218\},
+09766 \{ -559, -908,-1138,-1398,-1098\},
+09767 \{ -729,-1078,-1308,-1568,-1268\},
+09768 \{ -189, -538, -768,-1028, -728\}\},
+09769 \textcolor{comment}{/* UA.AG..UA */}
+09770 \{\{ DEF, -399, -629, -889, -589\},
+09771 \{ -939,-1288,-1518,-1778,-1478\},
+09772 \{ -249, -598, -828,-1088, -788\},
+09773 \{ -939,-1288,-1518,-1778,-1478\},
+09774 \{ -329, -678, -908,-1168, -868\}\},
+09775 \textcolor{comment}{/* UA.AU..UA */}
+09776 \{\{ DEF, -399, -629, -889, -589\},
+09777 \{ -639, -988,-1218,-1478,-1178\},
+09778 \{ -229, -578, -808,-1068, -768\},
+09779 \{ -729,-1078,-1308,-1568,-1268\},
+09780 \{ -190, -539, -769,-1029, -729\}\}\},
+09781 \textcolor{comment}{/* UA.C@..UA */}
+09782 \{\{\{ DEF, -429, -509, -199, -179\},
+09783 \{ -100, -479, -559, -249, -229\},
+09784 \{ -100, -479, -559, -249, -229\},
+09785 \{ -100, -479, -559, -249, -229\},
+09786 \{ -100, -479, -559, -249, -229\}\},
+09787 \textcolor{comment}{/* UA.CA..UA */}
+09788 \{\{ DEF, -429, -509, -199, -179\},
+09789 \{ -449, -828, -908, -598, -578\},
+09790 \{ -479, -858, -938, -628, -608\},
+09791 \{ -429, -808, -888, -578, -558\},
+09792 \{ -329, -708, -788, -478, -458\}\},
+09793 \textcolor{comment}{/* UA.CC..UA */}
+09794 \{\{ DEF, -429, -509, -199, -179\},
+09795 \{ -679,-1058,-1138, -828, -808\},
+09796 \{ -559, -938,-1018, -708, -688\},
+09797 \{ -729,-1108,-1188, -878, -858\},
+09798 \{ -189, -568, -648, -338, -318\}\},
+09799 \textcolor{comment}{/* UA.CG..UA */}
+09800 \{\{ DEF, -429, -509, -199, -179\},
+09801 \{ -939,-1318,-1398,-1088,-1068\},
+09802 \{ -249, -628, -708, -398, -378\},
+09803 \{ -939,-1318,-1398,-1088,-1068\},
+09804 \{ -329, -708, -788, -478, -458\}\},
+09805 \textcolor{comment}{/* UA.CU..UA */}
+09806 \{\{ DEF, -429, -509, -199, -179\},
+09807 \{ -639,-1018,-1098, -788, -768\},
+09808 \{ -229, -608, -688, -378, -358\},
+09809 \{ -729,-1108,-1188, -878, -858\},
+09810 \{ -190, -569, -649, -339, -319\}\}\},
+09811 \textcolor{comment}{/* UA.G@..UA */}
+09812 \{\{\{ DEF, -379, -679, -889, -679\},
+09813 \{ -100, -429, -729, -939, -729\},
+09814 \{ -100, -429, -729, -939, -729\},
+09815 \{ -100, -429, -729, -939, -729\},
+09816 \{ -100, -429, -729, -939, -729\}\},
+09817 \textcolor{comment}{/* UA.GA..UA */}
+09818 \{\{ DEF, -379, -679, -889, -679\},
+09819 \{ -449, -778,-1078,-1288,-1078\},
+09820 \{ -479, -808,-1108,-1318,-1108\},
+09821 \{ -429, -758,-1058,-1268,-1058\},
+09822 \{ -329, -658, -958,-1168, -958\}\},
+09823 \textcolor{comment}{/* UA.GC..UA */}
+09824 \{\{ DEF, -379, -679, -889, -679\},
+09825 \{ -679,-1008,-1308,-1518,-1308\},
+09826 \{ -559, -888,-1188,-1398,-1188\},
+09827 \{ -729,-1058,-1358,-1568,-1358\},
+09828 \{ -189, -518, -818,-1028, -818\}\},
+09829 \textcolor{comment}{/* UA.GG..UA */}
+09830 \{\{ DEF, -379, -679, -889, -679\},
+09831 \{ -939,-1268,-1568,-1778,-1568\},
+09832 \{ -249, -578, -878,-1088, -878\},
+09833 \{ -939,-1268,-1568,-1778,-1568\},
+09834 \{ -329, -658, -958,-1168, -958\}\},
+09835 \textcolor{comment}{/* UA.GU..UA */}
+09836 \{\{ DEF, -379, -679, -889, -679\},
+09837 \{ -639, -968,-1268,-1478,-1268\},
+09838 \{ -229, -558, -858,-1068, -858\},
+09839 \{ -729,-1058,-1358,-1568,-1358\},
+09840 \{ -190, -519, -819,-1029, -819\}\}\},
+09841 \textcolor{comment}{/* UA.U@..UA */}
+09842 \{\{\{ DEF, -279, -139, -279, -140\},
+09843 \{ -100, -329, -189, -329, -190\},
+09844 \{ -100, -329, -189, -329, -190\},
+09845 \{ -100, -329, -189, -329, -190\},
+09846 \{ -100, -329, -189, -329, -190\}\},
+09847 \textcolor{comment}{/* UA.UA..UA */}
+09848 \{\{ DEF, -279, -139, -279, -140\},
+09849 \{ -449, -678, -538, -678, -539\},
+09850 \{ -479, -708, -568, -708, -569\},
+09851 \{ -429, -658, -518, -658, -519\},
+09852 \{ -329, -558, -418, -558, -419\}\},
+09853 \textcolor{comment}{/* UA.UC..UA */}
+09854 \{\{ DEF, -279, -139, -279, -140\},
+09855 \{ -679, -908, -768, -908, -769\},
+09856 \{ -559, -788, -648, -788, -649\},
+09857 \{ -729, -958, -818, -958, -819\},
+09858 \{ -189, -418, -278, -418, -279\}\},
+09859 \textcolor{comment}{/* UA.UG..UA */}
+09860 \{\{ DEF, -279, -139, -279, -140\},
+09861 \{ -939,-1168,-1028,-1168,-1029\},
+09862 \{ -249, -478, -338, -478, -339\},
+09863 \{ -939,-1168,-1028,-1168,-1029\},
+09864 \{ -329, -558, -418, -558, -419\}\},
+09865 \textcolor{comment}{/* UA.UU..UA */}
+09866 \{\{ DEF, -279, -139, -279, -140\},
+09867 \{ -639, -868, -728, -868, -729\},
+09868 \{ -229, -458, -318, -458, -319\},
+09869 \{ -729, -958, -818, -958, -819\},
+09870 \{ -190, -419, -279, -419, -280\}\}\}\},
+09871 \textcolor{comment}{/* UA.@@.. @ */}
+09872 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+09873 \{ DEF, DEF, DEF, DEF, DEF\},
+09874 \{ DEF, DEF, DEF, DEF, DEF\},
+09875 \{ DEF, DEF, DEF, DEF, DEF\},
+09876 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09877 \textcolor{comment}{/* UA.@A.. @ */}
+09878 \{\{ DEF, DEF, DEF, DEF, DEF\},
+09879 \{ DEF, DEF, DEF, DEF, DEF\},
+09880 \{ DEF, DEF, DEF, DEF, DEF\},
+09881 \{ DEF, DEF, DEF, DEF, DEF\},
+09882 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09883 \textcolor{comment}{/* UA.@C.. @ */}
+09884 \{\{ DEF, DEF, DEF, DEF, DEF\},
+09885 \{ DEF, DEF, DEF, DEF, DEF\},
+09886 \{ DEF, DEF, DEF, DEF, DEF\},
+09887 \{ DEF, DEF, DEF, DEF, DEF\},
+09888 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09889 \textcolor{comment}{/* UA.@G.. @ */}
+09890 \{\{ DEF, DEF, DEF, DEF, DEF\},
+09891 \{ DEF, DEF, DEF, DEF, DEF\},
+09892 \{ DEF, DEF, DEF, DEF, DEF\},
+09893 \{ DEF, DEF, DEF, DEF, DEF\},
+09894 \{ DEF, DEF, DEF, DEF, DEF\}\},
+09895 \textcolor{comment}{/* UA.@U.. @ */}
+09896 \{\{ DEF, DEF, DEF, DEF, DEF\},
+09897 \{ DEF, DEF, DEF, DEF, DEF\},
+09898 \{ DEF, DEF, DEF, DEF, DEF\},
+09899 \{ DEF, DEF, DEF, DEF, DEF\},
+09900 \{ DEF, DEF, DEF, DEF, DEF\}\}\},
+09901 \textcolor{comment}{/* UA.A@.. @ */}
+09902 \{\{\{ -100, -449, -679, -939, -639\},
+09903 \{ -100, -449, -679, -939, -639\},
+09904 \{ -100, -449, -679, -939, -639\},
+09905 \{ -100, -449, -679, -939, -639\},
+09906 \{ -100, -449, -679, -939, -639\}\},
+09907 \textcolor{comment}{/* UA.AA.. @ */}
+09908 \{\{ -100, -449, -679, -939, -639\},
+09909 \{ -100, -449, -679, -939, -639\},
+09910 \{ -100, -449, -679, -939, -639\},
+09911 \{ -100, -449, -679, -939, -639\},
+09912 \{ -100, -449, -679, -939, -639\}\},
+09913 \textcolor{comment}{/* UA.AC.. @ */}
+09914 \{\{ -100, -449, -679, -939, -639\},
+09915 \{ -100, -449, -679, -939, -639\},
+09916 \{ -100, -449, -679, -939, -639\},
+09917 \{ -100, -449, -679, -939, -639\},
+09918 \{ -100, -449, -679, -939, -639\}\},
+09919 \textcolor{comment}{/* UA.AG.. @ */}
+09920 \{\{ -100, -449, -679, -939, -639\},
+09921 \{ -100, -449, -679, -939, -639\},
+09922 \{ -100, -449, -679, -939, -639\},
+09923 \{ -100, -449, -679, -939, -639\},
+09924 \{ -100, -449, -679, -939, -639\}\},
+09925 \textcolor{comment}{/* UA.AU.. @ */}
+09926 \{\{ -100, -449, -679, -939, -639\},
+09927 \{ -100, -449, -679, -939, -639\},
+09928 \{ -100, -449, -679, -939, -639\},
+09929 \{ -100, -449, -679, -939, -639\},
+09930 \{ -100, -449, -679, -939, -639\}\}\},
+09931 \textcolor{comment}{/* UA.C@.. @ */}
+09932 \{\{\{ -100, -479, -559, -249, -229\},
+09933 \{ -100, -479, -559, -249, -229\},
+09934 \{ -100, -479, -559, -249, -229\},
+09935 \{ -100, -479, -559, -249, -229\},
+09936 \{ -100, -479, -559, -249, -229\}\},
+09937 \textcolor{comment}{/* UA.CA.. @ */}
+09938 \{\{ -100, -479, -559, -249, -229\},
+09939 \{ -100, -479, -559, -249, -229\},
+09940 \{ -100, -479, -559, -249, -229\},
+09941 \{ -100, -479, -559, -249, -229\},
+09942 \{ -100, -479, -559, -249, -229\}\},
+09943 \textcolor{comment}{/* UA.CC.. @ */}
+09944 \{\{ -100, -479, -559, -249, -229\},
+09945 \{ -100, -479, -559, -249, -229\},
+09946 \{ -100, -479, -559, -249, -229\},
+09947 \{ -100, -479, -559, -249, -229\},
+09948 \{ -100, -479, -559, -249, -229\}\},
+09949 \textcolor{comment}{/* UA.CG.. @ */}
+09950 \{\{ -100, -479, -559, -249, -229\},
+09951 \{ -100, -479, -559, -249, -229\},
+09952 \{ -100, -479, -559, -249, -229\},
+09953 \{ -100, -479, -559, -249, -229\},
+09954 \{ -100, -479, -559, -249, -229\}\},
+09955 \textcolor{comment}{/* UA.CU.. @ */}
+09956 \{\{ -100, -479, -559, -249, -229\},
+09957 \{ -100, -479, -559, -249, -229\},
+09958 \{ -100, -479, -559, -249, -229\},
+09959 \{ -100, -479, -559, -249, -229\},
+09960 \{ -100, -479, -559, -249, -229\}\}\},
+09961 \textcolor{comment}{/* UA.G@.. @ */}
+09962 \{\{\{ -100, -429, -729, -939, -729\},
+09963 \{ -100, -429, -729, -939, -729\},
+09964 \{ -100, -429, -729, -939, -729\},
+09965 \{ -100, -429, -729, -939, -729\},
+09966 \{ -100, -429, -729, -939, -729\}\},
+09967 \textcolor{comment}{/* UA.GA.. @ */}
+09968 \{\{ -100, -429, -729, -939, -729\},
+09969 \{ -100, -429, -729, -939, -729\},
+09970 \{ -100, -429, -729, -939, -729\},
+09971 \{ -100, -429, -729, -939, -729\},
+09972 \{ -100, -429, -729, -939, -729\}\},
+09973 \textcolor{comment}{/* UA.GC.. @ */}
+09974 \{\{ -100, -429, -729, -939, -729\},
+09975 \{ -100, -429, -729, -939, -729\},
+09976 \{ -100, -429, -729, -939, -729\},
+09977 \{ -100, -429, -729, -939, -729\},
+09978 \{ -100, -429, -729, -939, -729\}\},
+09979 \textcolor{comment}{/* UA.GG.. @ */}
+09980 \{\{ -100, -429, -729, -939, -729\},
+09981 \{ -100, -429, -729, -939, -729\},
+09982 \{ -100, -429, -729, -939, -729\},
+09983 \{ -100, -429, -729, -939, -729\},
+09984 \{ -100, -429, -729, -939, -729\}\},
+09985 \textcolor{comment}{/* UA.GU.. @ */}
+09986 \{\{ -100, -429, -729, -939, -729\},
+09987 \{ -100, -429, -729, -939, -729\},
+09988 \{ -100, -429, -729, -939, -729\},
+09989 \{ -100, -429, -729, -939, -729\},
+09990 \{ -100, -429, -729, -939, -729\}\}\},
+09991 \textcolor{comment}{/* UA.U@.. @ */}
+09992 \{\{\{ -100, -329, -189, -329, -190\},
+09993 \{ -100, -329, -189, -329, -190\},
+09994 \{ -100, -329, -189, -329, -190\},
+09995 \{ -100, -329, -189, -329, -190\},
+09996 \{ -100, -329, -189, -329, -190\}\},
+09997 \textcolor{comment}{/* UA.UA.. @ */}
+09998 \{\{ -100, -329, -189, -329, -190\},
+09999 \{ -100, -329, -189, -329, -190\},
+10000 \{ -100, -329, -189, -329, -190\},
+10001 \{ -100, -329, -189, -329, -190\},
+10002 \{ -100, -329, -189, -329, -190\}\},
+10003 \textcolor{comment}{/* UA.UC.. @ */}
+10004 \{\{ -100, -329, -189, -329, -190\},
+10005 \{ -100, -329, -189, -329, -190\},
+10006 \{ -100, -329, -189, -329, -190\},
+10007 \{ -100, -329, -189, -329, -190\},
+10008 \{ -100, -329, -189, -329, -190\}\},
+10009 \textcolor{comment}{/* UA.UG.. @ */}
+10010 \{\{ -100, -329, -189, -329, -190\},
+10011 \{ -100, -329, -189, -329, -190\},
+10012 \{ -100, -329, -189, -329, -190\},
+10013 \{ -100, -329, -189, -329, -190\},
+10014 \{ -100, -329, -189, -329, -190\}\},
+10015 \textcolor{comment}{/* UA.UU.. @ */}
+10016 \{\{ -100, -329, -189, -329, -190\},
+10017 \{ -100, -329, -189, -329, -190\},
+10018 \{ -100, -329, -189, -329, -190\},
+10019 \{ -100, -329, -189, -329, -190\},
+10020 \{ -100, -329, -189, -329, -190\}\}\}\}\},
+10021 \{ \textcolor{comment}{/* noPair */} \{\{\{\{0\}\}\}\},
+10022 \textcolor{comment}{/* @.@@..CG */}
+10023 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10024 \{ -100, -100, -100, -100, -100\},
+10025 \{ -100, -100, -100, -100, -100\},
+10026 \{ -100, -100, -100, -100, -100\},
+10027 \{ -100, -100, -100, -100, -100\}\},
+10028 \textcolor{comment}{/* @.@A..CG */}
+10029 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10030 \{-1079,-1079,-1079,-1079,-1079\},
+10031 \{ -569, -569, -569, -569, -569\},
+10032 \{ -989, -989, -989, -989, -989\},
+10033 \{ -859, -859, -859, -859, -859\}\},
+10034 \textcolor{comment}{/* @.@C..CG */}
+10035 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10036 \{ -999, -999, -999, -999, -999\},
+10037 \{ -499, -499, -499, -499, -499\},
+10038 \{ -989, -989, -989, -989, -989\},
+10039 \{ -789, -789, -789, -789, -789\}\},
+10040 \textcolor{comment}{/* @.@G..CG */}
+10041 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10042 \{-1079,-1079,-1079,-1079,-1079\},
+10043 \{ -569, -569, -569, -569, -569\},
+10044 \{ -989, -989, -989, -989, -989\},
+10045 \{ -859, -859, -859, -859, -859\}\},
+10046 \textcolor{comment}{/* @.@U..CG */}
+10047 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10048 \{-1079,-1079,-1079,-1079,-1079\},
+10049 \{ -719, -719, -719, -719, -719\},
+10050 \{ -989, -989, -989, -989, -989\},
+10051 \{ -909, -909, -909, -909, -909\}\}\},
+10052 \textcolor{comment}{/* @.A@..CG */}
+10053 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10054 \{ -100, -100, -100, -100, -100\},
+10055 \{ -100, -100, -100, -100, -100\},
+10056 \{ -100, -100, -100, -100, -100\},
+10057 \{ -100, -100, -100, -100, -100\}\},
+10058 \textcolor{comment}{/* @.AA..CG */}
+10059 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10060 \{-1079,-1079,-1079,-1079,-1079\},
+10061 \{ -569, -569, -569, -569, -569\},
+10062 \{ -989, -989, -989, -989, -989\},
+10063 \{ -859, -859, -859, -859, -859\}\},
+10064 \textcolor{comment}{/* @.AC..CG */}
+10065 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10066 \{ -999, -999, -999, -999, -999\},
+10067 \{ -499, -499, -499, -499, -499\},
+10068 \{ -989, -989, -989, -989, -989\},
+10069 \{ -789, -789, -789, -789, -789\}\},
+10070 \textcolor{comment}{/* @.AG..CG */}
+10071 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10072 \{-1079,-1079,-1079,-1079,-1079\},
+10073 \{ -569, -569, -569, -569, -569\},
+10074 \{ -989, -989, -989, -989, -989\},
+10075 \{ -859, -859, -859, -859, -859\}\},
+10076 \textcolor{comment}{/* @.AU..CG */}
+10077 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10078 \{-1079,-1079,-1079,-1079,-1079\},
+10079 \{ -719, -719, -719, -719, -719\},
+10080 \{ -989, -989, -989, -989, -989\},
+10081 \{ -909, -909, -909, -909, -909\}\}\},
+10082 \textcolor{comment}{/* @.C@..CG */}
+10083 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10084 \{ -100, -100, -100, -100, -100\},
+10085 \{ -100, -100, -100, -100, -100\},
+10086 \{ -100, -100, -100, -100, -100\},
+10087 \{ -100, -100, -100, -100, -100\}\},
+10088 \textcolor{comment}{/* @.CA..CG */}
+10089 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10090 \{-1079,-1079,-1079,-1079,-1079\},
+10091 \{ -569, -569, -569, -569, -569\},
+10092 \{ -989, -989, -989, -989, -989\},
+10093 \{ -859, -859, -859, -859, -859\}\},
+10094 \textcolor{comment}{/* @.CC..CG */}
+10095 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10096 \{ -999, -999, -999, -999, -999\},
+10097 \{ -499, -499, -499, -499, -499\},
+10098 \{ -989, -989, -989, -989, -989\},
+10099 \{ -789, -789, -789, -789, -789\}\},
+10100 \textcolor{comment}{/* @.CG..CG */}
+10101 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10102 \{-1079,-1079,-1079,-1079,-1079\},
+10103 \{ -569, -569, -569, -569, -569\},
+10104 \{ -989, -989, -989, -989, -989\},
+10105 \{ -859, -859, -859, -859, -859\}\},
+10106 \textcolor{comment}{/* @.CU..CG */}
+10107 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10108 \{-1079,-1079,-1079,-1079,-1079\},
+10109 \{ -719, -719, -719, -719, -719\},
+10110 \{ -989, -989, -989, -989, -989\},
+10111 \{ -909, -909, -909, -909, -909\}\}\},
+10112 \textcolor{comment}{/* @.G@..CG */}
+10113 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10114 \{ -100, -100, -100, -100, -100\},
+10115 \{ -100, -100, -100, -100, -100\},
+10116 \{ -100, -100, -100, -100, -100\},
+10117 \{ -100, -100, -100, -100, -100\}\},
+10118 \textcolor{comment}{/* @.GA..CG */}
+10119 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10120 \{-1079,-1079,-1079,-1079,-1079\},
+10121 \{ -569, -569, -569, -569, -569\},
+10122 \{ -989, -989, -989, -989, -989\},
+10123 \{ -859, -859, -859, -859, -859\}\},
+10124 \textcolor{comment}{/* @.GC..CG */}
+10125 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10126 \{ -999, -999, -999, -999, -999\},
+10127 \{ -499, -499, -499, -499, -499\},
+10128 \{ -989, -989, -989, -989, -989\},
+10129 \{ -789, -789, -789, -789, -789\}\},
+10130 \textcolor{comment}{/* @.GG..CG */}
+10131 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10132 \{-1079,-1079,-1079,-1079,-1079\},
+10133 \{ -569, -569, -569, -569, -569\},
+10134 \{ -989, -989, -989, -989, -989\},
+10135 \{ -859, -859, -859, -859, -859\}\},
+10136 \textcolor{comment}{/* @.GU..CG */}
+10137 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10138 \{-1079,-1079,-1079,-1079,-1079\},
+10139 \{ -719, -719, -719, -719, -719\},
+10140 \{ -989, -989, -989, -989, -989\},
+10141 \{ -909, -909, -909, -909, -909\}\}\},
+10142 \textcolor{comment}{/* @.U@..CG */}
+10143 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10144 \{ -100, -100, -100, -100, -100\},
+10145 \{ -100, -100, -100, -100, -100\},
+10146 \{ -100, -100, -100, -100, -100\},
+10147 \{ -100, -100, -100, -100, -100\}\},
+10148 \textcolor{comment}{/* @.UA..CG */}
+10149 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10150 \{-1079,-1079,-1079,-1079,-1079\},
+10151 \{ -569, -569, -569, -569, -569\},
+10152 \{ -989, -989, -989, -989, -989\},
+10153 \{ -859, -859, -859, -859, -859\}\},
+10154 \textcolor{comment}{/* @.UC..CG */}
+10155 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10156 \{ -999, -999, -999, -999, -999\},
+10157 \{ -499, -499, -499, -499, -499\},
+10158 \{ -989, -989, -989, -989, -989\},
+10159 \{ -789, -789, -789, -789, -789\}\},
+10160 \textcolor{comment}{/* @.UG..CG */}
+10161 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10162 \{-1079,-1079,-1079,-1079,-1079\},
+10163 \{ -569, -569, -569, -569, -569\},
+10164 \{ -989, -989, -989, -989, -989\},
+10165 \{ -859, -859, -859, -859, -859\}\},
+10166 \textcolor{comment}{/* @.UU..CG */}
+10167 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10168 \{-1079,-1079,-1079,-1079,-1079\},
+10169 \{ -719, -719, -719, -719, -719\},
+10170 \{ -989, -989, -989, -989, -989\},
+10171 \{ -909, -909, -909, -909, -909\}\}\}\},
+10172 \textcolor{comment}{/* @.@@..GC */}
+10173 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10174 \{ -100, -100, -100, -100, -100\},
+10175 \{ -100, -100, -100, -100, -100\},
+10176 \{ -100, -100, -100, -100, -100\},
+10177 \{ -100, -100, -100, -100, -100\}\},
+10178 \textcolor{comment}{/* @.@A..GC */}
+10179 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10180 \{ -569, -569, -569, -569, -569\},
+10181 \{ -769, -769, -769, -769, -769\},
+10182 \{ -759, -759, -759, -759, -759\},
+10183 \{ -549, -549, -549, -549, -549\}\},
+10184 \textcolor{comment}{/* @.@C..GC */}
+10185 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10186 \{ -929, -929, -929, -929, -929\},
+10187 \{ -359, -359, -359, -359, -359\},
+10188 \{ -789, -789, -789, -789, -789\},
+10189 \{ -549, -549, -549, -549, -549\}\},
+10190 \textcolor{comment}{/* @.@G..GC */}
+10191 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10192 \{ -609, -609, -609, -609, -609\},
+10193 \{ -359, -359, -359, -359, -359\},
+10194 \{ -669, -669, -669, -669, -669\},
+10195 \{ -549, -549, -549, -549, -549\}\},
+10196 \textcolor{comment}{/* @.@U..GC */}
+10197 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10198 \{ -929, -929, -929, -929, -929\},
+10199 \{ -439, -439, -439, -439, -439\},
+10200 \{ -789, -789, -789, -789, -789\},
+10201 \{ -619, -619, -619, -619, -619\}\}\},
+10202 \textcolor{comment}{/* @.A@..GC */}
+10203 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10204 \{ -100, -100, -100, -100, -100\},
+10205 \{ -100, -100, -100, -100, -100\},
+10206 \{ -100, -100, -100, -100, -100\},
+10207 \{ -100, -100, -100, -100, -100\}\},
+10208 \textcolor{comment}{/* @.AA..GC */}
+10209 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10210 \{ -569, -569, -569, -569, -569\},
+10211 \{ -769, -769, -769, -769, -769\},
+10212 \{ -759, -759, -759, -759, -759\},
+10213 \{ -549, -549, -549, -549, -549\}\},
+10214 \textcolor{comment}{/* @.AC..GC */}
+10215 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10216 \{ -929, -929, -929, -929, -929\},
+10217 \{ -359, -359, -359, -359, -359\},
+10218 \{ -789, -789, -789, -789, -789\},
+10219 \{ -549, -549, -549, -549, -549\}\},
+10220 \textcolor{comment}{/* @.AG..GC */}
+10221 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10222 \{ -609, -609, -609, -609, -609\},
+10223 \{ -359, -359, -359, -359, -359\},
+10224 \{ -669, -669, -669, -669, -669\},
+10225 \{ -549, -549, -549, -549, -549\}\},
+10226 \textcolor{comment}{/* @.AU..GC */}
+10227 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10228 \{ -929, -929, -929, -929, -929\},
+10229 \{ -439, -439, -439, -439, -439\},
+10230 \{ -789, -789, -789, -789, -789\},
+10231 \{ -619, -619, -619, -619, -619\}\}\},
+10232 \textcolor{comment}{/* @.C@..GC */}
+10233 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10234 \{ -100, -100, -100, -100, -100\},
+10235 \{ -100, -100, -100, -100, -100\},
+10236 \{ -100, -100, -100, -100, -100\},
+10237 \{ -100, -100, -100, -100, -100\}\},
+10238 \textcolor{comment}{/* @.CA..GC */}
+10239 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10240 \{ -569, -569, -569, -569, -569\},
+10241 \{ -769, -769, -769, -769, -769\},
+10242 \{ -759, -759, -759, -759, -759\},
+10243 \{ -549, -549, -549, -549, -549\}\},
+10244 \textcolor{comment}{/* @.CC..GC */}
+10245 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10246 \{ -929, -929, -929, -929, -929\},
+10247 \{ -359, -359, -359, -359, -359\},
+10248 \{ -789, -789, -789, -789, -789\},
+10249 \{ -549, -549, -549, -549, -549\}\},
+10250 \textcolor{comment}{/* @.CG..GC */}
+10251 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10252 \{ -609, -609, -609, -609, -609\},
+10253 \{ -359, -359, -359, -359, -359\},
+10254 \{ -669, -669, -669, -669, -669\},
+10255 \{ -549, -549, -549, -549, -549\}\},
+10256 \textcolor{comment}{/* @.CU..GC */}
+10257 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10258 \{ -929, -929, -929, -929, -929\},
+10259 \{ -439, -439, -439, -439, -439\},
+10260 \{ -789, -789, -789, -789, -789\},
+10261 \{ -619, -619, -619, -619, -619\}\}\},
+10262 \textcolor{comment}{/* @.G@..GC */}
+10263 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10264 \{ -100, -100, -100, -100, -100\},
+10265 \{ -100, -100, -100, -100, -100\},
+10266 \{ -100, -100, -100, -100, -100\},
+10267 \{ -100, -100, -100, -100, -100\}\},
+10268 \textcolor{comment}{/* @.GA..GC */}
+10269 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10270 \{ -569, -569, -569, -569, -569\},
+10271 \{ -769, -769, -769, -769, -769\},
+10272 \{ -759, -759, -759, -759, -759\},
+10273 \{ -549, -549, -549, -549, -549\}\},
+10274 \textcolor{comment}{/* @.GC..GC */}
+10275 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10276 \{ -929, -929, -929, -929, -929\},
+10277 \{ -359, -359, -359, -359, -359\},
+10278 \{ -789, -789, -789, -789, -789\},
+10279 \{ -549, -549, -549, -549, -549\}\},
+10280 \textcolor{comment}{/* @.GG..GC */}
+10281 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10282 \{ -609, -609, -609, -609, -609\},
+10283 \{ -359, -359, -359, -359, -359\},
+10284 \{ -669, -669, -669, -669, -669\},
+10285 \{ -549, -549, -549, -549, -549\}\},
+10286 \textcolor{comment}{/* @.GU..GC */}
+10287 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10288 \{ -929, -929, -929, -929, -929\},
+10289 \{ -439, -439, -439, -439, -439\},
+10290 \{ -789, -789, -789, -789, -789\},
+10291 \{ -619, -619, -619, -619, -619\}\}\},
+10292 \textcolor{comment}{/* @.U@..GC */}
+10293 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10294 \{ -100, -100, -100, -100, -100\},
+10295 \{ -100, -100, -100, -100, -100\},
+10296 \{ -100, -100, -100, -100, -100\},
+10297 \{ -100, -100, -100, -100, -100\}\},
+10298 \textcolor{comment}{/* @.UA..GC */}
+10299 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10300 \{ -569, -569, -569, -569, -569\},
+10301 \{ -769, -769, -769, -769, -769\},
+10302 \{ -759, -759, -759, -759, -759\},
+10303 \{ -549, -549, -549, -549, -549\}\},
+10304 \textcolor{comment}{/* @.UC..GC */}
+10305 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10306 \{ -929, -929, -929, -929, -929\},
+10307 \{ -359, -359, -359, -359, -359\},
+10308 \{ -789, -789, -789, -789, -789\},
+10309 \{ -549, -549, -549, -549, -549\}\},
+10310 \textcolor{comment}{/* @.UG..GC */}
+10311 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10312 \{ -609, -609, -609, -609, -609\},
+10313 \{ -359, -359, -359, -359, -359\},
+10314 \{ -669, -669, -669, -669, -669\},
+10315 \{ -549, -549, -549, -549, -549\}\},
+10316 \textcolor{comment}{/* @.UU..GC */}
+10317 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10318 \{ -929, -929, -929, -929, -929\},
+10319 \{ -439, -439, -439, -439, -439\},
+10320 \{ -789, -789, -789, -789, -789\},
+10321 \{ -619, -619, -619, -619, -619\}\}\}\},
+10322 \textcolor{comment}{/* @.@@..GU */}
+10323 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10324 \{ -100, -100, -100, -100, -100\},
+10325 \{ -100, -100, -100, -100, -100\},
+10326 \{ -100, -100, -100, -100, -100\},
+10327 \{ -100, -100, -100, -100, -100\}\},
+10328 \textcolor{comment}{/* @.@A..GU */}
+10329 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10330 \{ -479, -479, -479, -479, -479\},
+10331 \{ -309, -309, -309, -309, -309\},
+10332 \{ -389, -389, -389, -389, -389\},
+10333 \{ -379, -379, -379, -379, -379\}\},
+10334 \textcolor{comment}{/* @.@C..GU */}
+10335 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10336 \{ -649, -649, -649, -649, -649\},
+10337 \{ -289, -289, -289, -289, -289\},
+10338 \{ -739, -739, -739, -739, -739\},
+10339 \{ -379, -379, -379, -379, -379\}\},
+10340 \textcolor{comment}{/* @.@G..GU */}
+10341 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10342 \{ -649, -649, -649, -649, -649\},
+10343 \{ -289, -289, -289, -289, -289\},
+10344 \{ -739, -739, -739, -739, -739\},
+10345 \{ -379, -379, -379, -379, -379\}\},
+10346 \textcolor{comment}{/* @.@U..GU */}
+10347 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10348 \{ -649, -649, -649, -649, -649\},
+10349 \{ -289, -289, -289, -289, -289\},
+10350 \{ -739, -739, -739, -739, -739\},
+10351 \{ -379, -379, -379, -379, -379\}\}\},
+10352 \textcolor{comment}{/* @.A@..GU */}
+10353 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10354 \{ -100, -100, -100, -100, -100\},
+10355 \{ -100, -100, -100, -100, -100\},
+10356 \{ -100, -100, -100, -100, -100\},
+10357 \{ -100, -100, -100, -100, -100\}\},
+10358 \textcolor{comment}{/* @.AA..GU */}
+10359 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10360 \{ -479, -479, -479, -479, -479\},
+10361 \{ -309, -309, -309, -309, -309\},
+10362 \{ -389, -389, -389, -389, -389\},
+10363 \{ -379, -379, -379, -379, -379\}\},
+10364 \textcolor{comment}{/* @.AC..GU */}
+10365 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10366 \{ -649, -649, -649, -649, -649\},
+10367 \{ -289, -289, -289, -289, -289\},
+10368 \{ -739, -739, -739, -739, -739\},
+10369 \{ -379, -379, -379, -379, -379\}\},
+10370 \textcolor{comment}{/* @.AG..GU */}
+10371 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10372 \{ -649, -649, -649, -649, -649\},
+10373 \{ -289, -289, -289, -289, -289\},
+10374 \{ -739, -739, -739, -739, -739\},
+10375 \{ -379, -379, -379, -379, -379\}\},
+10376 \textcolor{comment}{/* @.AU..GU */}
+10377 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10378 \{ -649, -649, -649, -649, -649\},
+10379 \{ -289, -289, -289, -289, -289\},
+10380 \{ -739, -739, -739, -739, -739\},
+10381 \{ -379, -379, -379, -379, -379\}\}\},
+10382 \textcolor{comment}{/* @.C@..GU */}
+10383 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10384 \{ -100, -100, -100, -100, -100\},
+10385 \{ -100, -100, -100, -100, -100\},
+10386 \{ -100, -100, -100, -100, -100\},
+10387 \{ -100, -100, -100, -100, -100\}\},
+10388 \textcolor{comment}{/* @.CA..GU */}
+10389 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10390 \{ -479, -479, -479, -479, -479\},
+10391 \{ -309, -309, -309, -309, -309\},
+10392 \{ -389, -389, -389, -389, -389\},
+10393 \{ -379, -379, -379, -379, -379\}\},
+10394 \textcolor{comment}{/* @.CC..GU */}
+10395 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10396 \{ -649, -649, -649, -649, -649\},
+10397 \{ -289, -289, -289, -289, -289\},
+10398 \{ -739, -739, -739, -739, -739\},
+10399 \{ -379, -379, -379, -379, -379\}\},
+10400 \textcolor{comment}{/* @.CG..GU */}
+10401 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10402 \{ -649, -649, -649, -649, -649\},
+10403 \{ -289, -289, -289, -289, -289\},
+10404 \{ -739, -739, -739, -739, -739\},
+10405 \{ -379, -379, -379, -379, -379\}\},
+10406 \textcolor{comment}{/* @.CU..GU */}
+10407 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10408 \{ -649, -649, -649, -649, -649\},
+10409 \{ -289, -289, -289, -289, -289\},
+10410 \{ -739, -739, -739, -739, -739\},
+10411 \{ -379, -379, -379, -379, -379\}\}\},
+10412 \textcolor{comment}{/* @.G@..GU */}
+10413 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10414 \{ -100, -100, -100, -100, -100\},
+10415 \{ -100, -100, -100, -100, -100\},
+10416 \{ -100, -100, -100, -100, -100\},
+10417 \{ -100, -100, -100, -100, -100\}\},
+10418 \textcolor{comment}{/* @.GA..GU */}
+10419 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10420 \{ -479, -479, -479, -479, -479\},
+10421 \{ -309, -309, -309, -309, -309\},
+10422 \{ -389, -389, -389, -389, -389\},
+10423 \{ -379, -379, -379, -379, -379\}\},
+10424 \textcolor{comment}{/* @.GC..GU */}
+10425 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10426 \{ -649, -649, -649, -649, -649\},
+10427 \{ -289, -289, -289, -289, -289\},
+10428 \{ -739, -739, -739, -739, -739\},
+10429 \{ -379, -379, -379, -379, -379\}\},
+10430 \textcolor{comment}{/* @.GG..GU */}
+10431 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10432 \{ -649, -649, -649, -649, -649\},
+10433 \{ -289, -289, -289, -289, -289\},
+10434 \{ -739, -739, -739, -739, -739\},
+10435 \{ -379, -379, -379, -379, -379\}\},
+10436 \textcolor{comment}{/* @.GU..GU */}
+10437 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10438 \{ -649, -649, -649, -649, -649\},
+10439 \{ -289, -289, -289, -289, -289\},
+10440 \{ -739, -739, -739, -739, -739\},
+10441 \{ -379, -379, -379, -379, -379\}\}\},
+10442 \textcolor{comment}{/* @.U@..GU */}
+10443 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10444 \{ -100, -100, -100, -100, -100\},
+10445 \{ -100, -100, -100, -100, -100\},
+10446 \{ -100, -100, -100, -100, -100\},
+10447 \{ -100, -100, -100, -100, -100\}\},
+10448 \textcolor{comment}{/* @.UA..GU */}
+10449 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10450 \{ -479, -479, -479, -479, -479\},
+10451 \{ -309, -309, -309, -309, -309\},
+10452 \{ -389, -389, -389, -389, -389\},
+10453 \{ -379, -379, -379, -379, -379\}\},
+10454 \textcolor{comment}{/* @.UC..GU */}
+10455 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10456 \{ -649, -649, -649, -649, -649\},
+10457 \{ -289, -289, -289, -289, -289\},
+10458 \{ -739, -739, -739, -739, -739\},
+10459 \{ -379, -379, -379, -379, -379\}\},
+10460 \textcolor{comment}{/* @.UG..GU */}
+10461 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10462 \{ -649, -649, -649, -649, -649\},
+10463 \{ -289, -289, -289, -289, -289\},
+10464 \{ -739, -739, -739, -739, -739\},
+10465 \{ -379, -379, -379, -379, -379\}\},
+10466 \textcolor{comment}{/* @.UU..GU */}
+10467 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10468 \{ -649, -649, -649, -649, -649\},
+10469 \{ -289, -289, -289, -289, -289\},
+10470 \{ -739, -739, -739, -739, -739\},
+10471 \{ -379, -379, -379, -379, -379\}\}\}\},
+10472 \textcolor{comment}{/* @.@@..UG */}
+10473 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10474 \{ -100, -100, -100, -100, -100\},
+10475 \{ -100, -100, -100, -100, -100\},
+10476 \{ -100, -100, -100, -100, -100\},
+10477 \{ -100, -100, -100, -100, -100\}\},
+10478 \textcolor{comment}{/* @.@A..UG */}
+10479 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10480 \{ -769, -769, -769, -769, -769\},
+10481 \{ -529, -529, -529, -529, -529\},
+10482 \{ -709, -709, -709, -709, -709\},
+10483 \{ -599, -599, -599, -599, -599\}\},
+10484 \textcolor{comment}{/* @.@C..UG */}
+10485 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10486 \{ -839, -839, -839, -839, -839\},
+10487 \{ -529, -529, -529, -529, -529\},
+10488 \{ -859, -859, -859, -859, -859\},
+10489 \{ -489, -489, -489, -489, -489\}\},
+10490 \textcolor{comment}{/* @.@G..UG */}
+10491 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10492 \{-1009,-1009,-1009,-1009,-1009\},
+10493 \{ -409, -409, -409, -409, -409\},
+10494 \{ -969, -969, -969, -969, -969\},
+10495 \{ -599, -599, -599, -599, -599\}\},
+10496 \textcolor{comment}{/* @.@U..UG */}
+10497 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10498 \{ -859, -859, -859, -859, -859\},
+10499 \{ -529, -529, -529, -529, -529\},
+10500 \{ -859, -859, -859, -859, -859\},
+10501 \{ -409, -409, -409, -409, -409\}\}\},
+10502 \textcolor{comment}{/* @.A@..UG */}
+10503 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10504 \{ -100, -100, -100, -100, -100\},
+10505 \{ -100, -100, -100, -100, -100\},
+10506 \{ -100, -100, -100, -100, -100\},
+10507 \{ -100, -100, -100, -100, -100\}\},
+10508 \textcolor{comment}{/* @.AA..UG */}
+10509 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10510 \{ -769, -769, -769, -769, -769\},
+10511 \{ -529, -529, -529, -529, -529\},
+10512 \{ -709, -709, -709, -709, -709\},
+10513 \{ -599, -599, -599, -599, -599\}\},
+10514 \textcolor{comment}{/* @.AC..UG */}
+10515 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10516 \{ -839, -839, -839, -839, -839\},
+10517 \{ -529, -529, -529, -529, -529\},
+10518 \{ -859, -859, -859, -859, -859\},
+10519 \{ -489, -489, -489, -489, -489\}\},
+10520 \textcolor{comment}{/* @.AG..UG */}
+10521 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10522 \{-1009,-1009,-1009,-1009,-1009\},
+10523 \{ -409, -409, -409, -409, -409\},
+10524 \{ -969, -969, -969, -969, -969\},
+10525 \{ -599, -599, -599, -599, -599\}\},
+10526 \textcolor{comment}{/* @.AU..UG */}
+10527 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10528 \{ -859, -859, -859, -859, -859\},
+10529 \{ -529, -529, -529, -529, -529\},
+10530 \{ -859, -859, -859, -859, -859\},
+10531 \{ -409, -409, -409, -409, -409\}\}\},
+10532 \textcolor{comment}{/* @.C@..UG */}
+10533 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10534 \{ -100, -100, -100, -100, -100\},
+10535 \{ -100, -100, -100, -100, -100\},
+10536 \{ -100, -100, -100, -100, -100\},
+10537 \{ -100, -100, -100, -100, -100\}\},
+10538 \textcolor{comment}{/* @.CA..UG */}
+10539 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10540 \{ -769, -769, -769, -769, -769\},
+10541 \{ -529, -529, -529, -529, -529\},
+10542 \{ -709, -709, -709, -709, -709\},
+10543 \{ -599, -599, -599, -599, -599\}\},
+10544 \textcolor{comment}{/* @.CC..UG */}
+10545 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10546 \{ -839, -839, -839, -839, -839\},
+10547 \{ -529, -529, -529, -529, -529\},
+10548 \{ -859, -859, -859, -859, -859\},
+10549 \{ -489, -489, -489, -489, -489\}\},
+10550 \textcolor{comment}{/* @.CG..UG */}
+10551 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10552 \{-1009,-1009,-1009,-1009,-1009\},
+10553 \{ -409, -409, -409, -409, -409\},
+10554 \{ -969, -969, -969, -969, -969\},
+10555 \{ -599, -599, -599, -599, -599\}\},
+10556 \textcolor{comment}{/* @.CU..UG */}
+10557 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10558 \{ -859, -859, -859, -859, -859\},
+10559 \{ -529, -529, -529, -529, -529\},
+10560 \{ -859, -859, -859, -859, -859\},
+10561 \{ -409, -409, -409, -409, -409\}\}\},
+10562 \textcolor{comment}{/* @.G@..UG */}
+10563 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10564 \{ -100, -100, -100, -100, -100\},
+10565 \{ -100, -100, -100, -100, -100\},
+10566 \{ -100, -100, -100, -100, -100\},
+10567 \{ -100, -100, -100, -100, -100\}\},
+10568 \textcolor{comment}{/* @.GA..UG */}
+10569 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10570 \{ -769, -769, -769, -769, -769\},
+10571 \{ -529, -529, -529, -529, -529\},
+10572 \{ -709, -709, -709, -709, -709\},
+10573 \{ -599, -599, -599, -599, -599\}\},
+10574 \textcolor{comment}{/* @.GC..UG */}
+10575 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10576 \{ -839, -839, -839, -839, -839\},
+10577 \{ -529, -529, -529, -529, -529\},
+10578 \{ -859, -859, -859, -859, -859\},
+10579 \{ -489, -489, -489, -489, -489\}\},
+10580 \textcolor{comment}{/* @.GG..UG */}
+10581 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10582 \{-1009,-1009,-1009,-1009,-1009\},
+10583 \{ -409, -409, -409, -409, -409\},
+10584 \{ -969, -969, -969, -969, -969\},
+10585 \{ -599, -599, -599, -599, -599\}\},
+10586 \textcolor{comment}{/* @.GU..UG */}
+10587 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10588 \{ -859, -859, -859, -859, -859\},
+10589 \{ -529, -529, -529, -529, -529\},
+10590 \{ -859, -859, -859, -859, -859\},
+10591 \{ -409, -409, -409, -409, -409\}\}\},
+10592 \textcolor{comment}{/* @.U@..UG */}
+10593 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10594 \{ -100, -100, -100, -100, -100\},
+10595 \{ -100, -100, -100, -100, -100\},
+10596 \{ -100, -100, -100, -100, -100\},
+10597 \{ -100, -100, -100, -100, -100\}\},
+10598 \textcolor{comment}{/* @.UA..UG */}
+10599 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10600 \{ -769, -769, -769, -769, -769\},
+10601 \{ -529, -529, -529, -529, -529\},
+10602 \{ -709, -709, -709, -709, -709\},
+10603 \{ -599, -599, -599, -599, -599\}\},
+10604 \textcolor{comment}{/* @.UC..UG */}
+10605 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10606 \{ -839, -839, -839, -839, -839\},
+10607 \{ -529, -529, -529, -529, -529\},
+10608 \{ -859, -859, -859, -859, -859\},
+10609 \{ -489, -489, -489, -489, -489\}\},
+10610 \textcolor{comment}{/* @.UG..UG */}
+10611 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10612 \{-1009,-1009,-1009,-1009,-1009\},
+10613 \{ -409, -409, -409, -409, -409\},
+10614 \{ -969, -969, -969, -969, -969\},
+10615 \{ -599, -599, -599, -599, -599\}\},
+10616 \textcolor{comment}{/* @.UU..UG */}
+10617 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10618 \{ -859, -859, -859, -859, -859\},
+10619 \{ -529, -529, -529, -529, -529\},
+10620 \{ -859, -859, -859, -859, -859\},
+10621 \{ -409, -409, -409, -409, -409\}\}\}\},
+10622 \textcolor{comment}{/* @.@@..AU */}
+10623 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10624 \{ -100, -100, -100, -100, -100\},
+10625 \{ -100, -100, -100, -100, -100\},
+10626 \{ -100, -100, -100, -100, -100\},
+10627 \{ -100, -100, -100, -100, -100\}\},
+10628 \textcolor{comment}{/* @.@A..AU */}
+10629 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10630 \{ -479, -479, -479, -479, -479\},
+10631 \{ -309, -309, -309, -309, -309\},
+10632 \{ -389, -389, -389, -389, -389\},
+10633 \{ -379, -379, -379, -379, -379\}\},
+10634 \textcolor{comment}{/* @.@C..AU */}
+10635 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10636 \{ -649, -649, -649, -649, -649\},
+10637 \{ -289, -289, -289, -289, -289\},
+10638 \{ -739, -739, -739, -739, -739\},
+10639 \{ -379, -379, -379, -379, -379\}\},
+10640 \textcolor{comment}{/* @.@G..AU */}
+10641 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10642 \{ -649, -649, -649, -649, -649\},
+10643 \{ -289, -289, -289, -289, -289\},
+10644 \{ -739, -739, -739, -739, -739\},
+10645 \{ -379, -379, -379, -379, -379\}\},
+10646 \textcolor{comment}{/* @.@U..AU */}
+10647 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10648 \{ -649, -649, -649, -649, -649\},
+10649 \{ -289, -289, -289, -289, -289\},
+10650 \{ -739, -739, -739, -739, -739\},
+10651 \{ -379, -379, -379, -379, -379\}\}\},
+10652 \textcolor{comment}{/* @.A@..AU */}
+10653 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10654 \{ -100, -100, -100, -100, -100\},
+10655 \{ -100, -100, -100, -100, -100\},
+10656 \{ -100, -100, -100, -100, -100\},
+10657 \{ -100, -100, -100, -100, -100\}\},
+10658 \textcolor{comment}{/* @.AA..AU */}
+10659 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10660 \{ -479, -479, -479, -479, -479\},
+10661 \{ -309, -309, -309, -309, -309\},
+10662 \{ -389, -389, -389, -389, -389\},
+10663 \{ -379, -379, -379, -379, -379\}\},
+10664 \textcolor{comment}{/* @.AC..AU */}
+10665 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10666 \{ -649, -649, -649, -649, -649\},
+10667 \{ -289, -289, -289, -289, -289\},
+10668 \{ -739, -739, -739, -739, -739\},
+10669 \{ -379, -379, -379, -379, -379\}\},
+10670 \textcolor{comment}{/* @.AG..AU */}
+10671 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10672 \{ -649, -649, -649, -649, -649\},
+10673 \{ -289, -289, -289, -289, -289\},
+10674 \{ -739, -739, -739, -739, -739\},
+10675 \{ -379, -379, -379, -379, -379\}\},
+10676 \textcolor{comment}{/* @.AU..AU */}
+10677 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10678 \{ -649, -649, -649, -649, -649\},
+10679 \{ -289, -289, -289, -289, -289\},
+10680 \{ -739, -739, -739, -739, -739\},
+10681 \{ -379, -379, -379, -379, -379\}\}\},
+10682 \textcolor{comment}{/* @.C@..AU */}
+10683 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10684 \{ -100, -100, -100, -100, -100\},
+10685 \{ -100, -100, -100, -100, -100\},
+10686 \{ -100, -100, -100, -100, -100\},
+10687 \{ -100, -100, -100, -100, -100\}\},
+10688 \textcolor{comment}{/* @.CA..AU */}
+10689 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10690 \{ -479, -479, -479, -479, -479\},
+10691 \{ -309, -309, -309, -309, -309\},
+10692 \{ -389, -389, -389, -389, -389\},
+10693 \{ -379, -379, -379, -379, -379\}\},
+10694 \textcolor{comment}{/* @.CC..AU */}
+10695 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10696 \{ -649, -649, -649, -649, -649\},
+10697 \{ -289, -289, -289, -289, -289\},
+10698 \{ -739, -739, -739, -739, -739\},
+10699 \{ -379, -379, -379, -379, -379\}\},
+10700 \textcolor{comment}{/* @.CG..AU */}
+10701 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10702 \{ -649, -649, -649, -649, -649\},
+10703 \{ -289, -289, -289, -289, -289\},
+10704 \{ -739, -739, -739, -739, -739\},
+10705 \{ -379, -379, -379, -379, -379\}\},
+10706 \textcolor{comment}{/* @.CU..AU */}
+10707 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10708 \{ -649, -649, -649, -649, -649\},
+10709 \{ -289, -289, -289, -289, -289\},
+10710 \{ -739, -739, -739, -739, -739\},
+10711 \{ -379, -379, -379, -379, -379\}\}\},
+10712 \textcolor{comment}{/* @.G@..AU */}
+10713 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10714 \{ -100, -100, -100, -100, -100\},
+10715 \{ -100, -100, -100, -100, -100\},
+10716 \{ -100, -100, -100, -100, -100\},
+10717 \{ -100, -100, -100, -100, -100\}\},
+10718 \textcolor{comment}{/* @.GA..AU */}
+10719 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10720 \{ -479, -479, -479, -479, -479\},
+10721 \{ -309, -309, -309, -309, -309\},
+10722 \{ -389, -389, -389, -389, -389\},
+10723 \{ -379, -379, -379, -379, -379\}\},
+10724 \textcolor{comment}{/* @.GC..AU */}
+10725 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10726 \{ -649, -649, -649, -649, -649\},
+10727 \{ -289, -289, -289, -289, -289\},
+10728 \{ -739, -739, -739, -739, -739\},
+10729 \{ -379, -379, -379, -379, -379\}\},
+10730 \textcolor{comment}{/* @.GG..AU */}
+10731 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10732 \{ -649, -649, -649, -649, -649\},
+10733 \{ -289, -289, -289, -289, -289\},
+10734 \{ -739, -739, -739, -739, -739\},
+10735 \{ -379, -379, -379, -379, -379\}\},
+10736 \textcolor{comment}{/* @.GU..AU */}
+10737 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10738 \{ -649, -649, -649, -649, -649\},
+10739 \{ -289, -289, -289, -289, -289\},
+10740 \{ -739, -739, -739, -739, -739\},
+10741 \{ -379, -379, -379, -379, -379\}\}\},
+10742 \textcolor{comment}{/* @.U@..AU */}
+10743 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10744 \{ -100, -100, -100, -100, -100\},
+10745 \{ -100, -100, -100, -100, -100\},
+10746 \{ -100, -100, -100, -100, -100\},
+10747 \{ -100, -100, -100, -100, -100\}\},
+10748 \textcolor{comment}{/* @.UA..AU */}
+10749 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10750 \{ -479, -479, -479, -479, -479\},
+10751 \{ -309, -309, -309, -309, -309\},
+10752 \{ -389, -389, -389, -389, -389\},
+10753 \{ -379, -379, -379, -379, -379\}\},
+10754 \textcolor{comment}{/* @.UC..AU */}
+10755 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10756 \{ -649, -649, -649, -649, -649\},
+10757 \{ -289, -289, -289, -289, -289\},
+10758 \{ -739, -739, -739, -739, -739\},
+10759 \{ -379, -379, -379, -379, -379\}\},
+10760 \textcolor{comment}{/* @.UG..AU */}
+10761 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10762 \{ -649, -649, -649, -649, -649\},
+10763 \{ -289, -289, -289, -289, -289\},
+10764 \{ -739, -739, -739, -739, -739\},
+10765 \{ -379, -379, -379, -379, -379\}\},
+10766 \textcolor{comment}{/* @.UU..AU */}
+10767 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10768 \{ -649, -649, -649, -649, -649\},
+10769 \{ -289, -289, -289, -289, -289\},
+10770 \{ -739, -739, -739, -739, -739\},
+10771 \{ -379, -379, -379, -379, -379\}\}\}\},
+10772 \textcolor{comment}{/* @.@@..UA */}
+10773 \{\{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10774 \{ -100, -100, -100, -100, -100\},
+10775 \{ -100, -100, -100, -100, -100\},
+10776 \{ -100, -100, -100, -100, -100\},
+10777 \{ -100, -100, -100, -100, -100\}\},
+10778 \textcolor{comment}{/* @.@A..UA */}
+10779 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10780 \{ -449, -449, -449, -449, -449\},
+10781 \{ -479, -479, -479, -479, -479\},
+10782 \{ -429, -429, -429, -429, -429\},
+10783 \{ -329, -329, -329, -329, -329\}\},
+10784 \textcolor{comment}{/* @.@C..UA */}
+10785 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10786 \{ -679, -679, -679, -679, -679\},
+10787 \{ -559, -559, -559, -559, -559\},
+10788 \{ -729, -729, -729, -729, -729\},
+10789 \{ -189, -189, -189, -189, -189\}\},
+10790 \textcolor{comment}{/* @.@G..UA */}
+10791 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10792 \{ -939, -939, -939, -939, -939\},
+10793 \{ -249, -249, -249, -249, -249\},
+10794 \{ -939, -939, -939, -939, -939\},
+10795 \{ -329, -329, -329, -329, -329\}\},
+10796 \textcolor{comment}{/* @.@U..UA */}
+10797 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10798 \{ -639, -639, -639, -639, -639\},
+10799 \{ -229, -229, -229, -229, -229\},
+10800 \{ -729, -729, -729, -729, -729\},
+10801 \{ -190, -190, -190, -190, -190\}\}\},
+10802 \textcolor{comment}{/* @.A@..UA */}
+10803 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10804 \{ -100, -100, -100, -100, -100\},
+10805 \{ -100, -100, -100, -100, -100\},
+10806 \{ -100, -100, -100, -100, -100\},
+10807 \{ -100, -100, -100, -100, -100\}\},
+10808 \textcolor{comment}{/* @.AA..UA */}
+10809 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10810 \{ -449, -449, -449, -449, -449\},
+10811 \{ -479, -479, -479, -479, -479\},
+10812 \{ -429, -429, -429, -429, -429\},
+10813 \{ -329, -329, -329, -329, -329\}\},
+10814 \textcolor{comment}{/* @.AC..UA */}
+10815 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10816 \{ -679, -679, -679, -679, -679\},
+10817 \{ -559, -559, -559, -559, -559\},
+10818 \{ -729, -729, -729, -729, -729\},
+10819 \{ -189, -189, -189, -189, -189\}\},
+10820 \textcolor{comment}{/* @.AG..UA */}
+10821 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10822 \{ -939, -939, -939, -939, -939\},
+10823 \{ -249, -249, -249, -249, -249\},
+10824 \{ -939, -939, -939, -939, -939\},
+10825 \{ -329, -329, -329, -329, -329\}\},
+10826 \textcolor{comment}{/* @.AU..UA */}
+10827 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10828 \{ -639, -639, -639, -639, -639\},
+10829 \{ -229, -229, -229, -229, -229\},
+10830 \{ -729, -729, -729, -729, -729\},
+10831 \{ -190, -190, -190, -190, -190\}\}\},
+10832 \textcolor{comment}{/* @.C@..UA */}
+10833 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10834 \{ -100, -100, -100, -100, -100\},
+10835 \{ -100, -100, -100, -100, -100\},
+10836 \{ -100, -100, -100, -100, -100\},
+10837 \{ -100, -100, -100, -100, -100\}\},
+10838 \textcolor{comment}{/* @.CA..UA */}
+10839 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10840 \{ -449, -449, -449, -449, -449\},
+10841 \{ -479, -479, -479, -479, -479\},
+10842 \{ -429, -429, -429, -429, -429\},
+10843 \{ -329, -329, -329, -329, -329\}\},
+10844 \textcolor{comment}{/* @.CC..UA */}
+10845 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10846 \{ -679, -679, -679, -679, -679\},
+10847 \{ -559, -559, -559, -559, -559\},
+10848 \{ -729, -729, -729, -729, -729\},
+10849 \{ -189, -189, -189, -189, -189\}\},
+10850 \textcolor{comment}{/* @.CG..UA */}
+10851 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10852 \{ -939, -939, -939, -939, -939\},
+10853 \{ -249, -249, -249, -249, -249\},
+10854 \{ -939, -939, -939, -939, -939\},
+10855 \{ -329, -329, -329, -329, -329\}\},
+10856 \textcolor{comment}{/* @.CU..UA */}
+10857 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10858 \{ -639, -639, -639, -639, -639\},
+10859 \{ -229, -229, -229, -229, -229\},
+10860 \{ -729, -729, -729, -729, -729\},
+10861 \{ -190, -190, -190, -190, -190\}\}\},
+10862 \textcolor{comment}{/* @.G@..UA */}
+10863 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10864 \{ -100, -100, -100, -100, -100\},
+10865 \{ -100, -100, -100, -100, -100\},
+10866 \{ -100, -100, -100, -100, -100\},
+10867 \{ -100, -100, -100, -100, -100\}\},
+10868 \textcolor{comment}{/* @.GA..UA */}
+10869 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10870 \{ -449, -449, -449, -449, -449\},
+10871 \{ -479, -479, -479, -479, -479\},
+10872 \{ -429, -429, -429, -429, -429\},
+10873 \{ -329, -329, -329, -329, -329\}\},
+10874 \textcolor{comment}{/* @.GC..UA */}
+10875 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10876 \{ -679, -679, -679, -679, -679\},
+10877 \{ -559, -559, -559, -559, -559\},
+10878 \{ -729, -729, -729, -729, -729\},
+10879 \{ -189, -189, -189, -189, -189\}\},
+10880 \textcolor{comment}{/* @.GG..UA */}
+10881 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10882 \{ -939, -939, -939, -939, -939\},
+10883 \{ -249, -249, -249, -249, -249\},
+10884 \{ -939, -939, -939, -939, -939\},
+10885 \{ -329, -329, -329, -329, -329\}\},
+10886 \textcolor{comment}{/* @.GU..UA */}
+10887 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10888 \{ -639, -639, -639, -639, -639\},
+10889 \{ -229, -229, -229, -229, -229\},
+10890 \{ -729, -729, -729, -729, -729\},
+10891 \{ -190, -190, -190, -190, -190\}\}\},
+10892 \textcolor{comment}{/* @.U@..UA */}
+10893 \{\{\{ DEF, DEF, DEF, DEF, DEF\},
+10894 \{ -100, -100, -100, -100, -100\},
+10895 \{ -100, -100, -100, -100, -100\},
+10896 \{ -100, -100, -100, -100, -100\},
+10897 \{ -100, -100, -100, -100, -100\}\},
+10898 \textcolor{comment}{/* @.UA..UA */}
+10899 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10900 \{ -449, -449, -449, -449, -449\},
+10901 \{ -479, -479, -479, -479, -479\},
+10902 \{ -429, -429, -429, -429, -429\},
+10903 \{ -329, -329, -329, -329, -329\}\},
+10904 \textcolor{comment}{/* @.UC..UA */}
+10905 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10906 \{ -679, -679, -679, -679, -679\},
+10907 \{ -559, -559, -559, -559, -559\},
+10908 \{ -729, -729, -729, -729, -729\},
+10909 \{ -189, -189, -189, -189, -189\}\},
+10910 \textcolor{comment}{/* @.UG..UA */}
+10911 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10912 \{ -939, -939, -939, -939, -939\},
+10913 \{ -249, -249, -249, -249, -249\},
+10914 \{ -939, -939, -939, -939, -939\},
+10915 \{ -329, -329, -329, -329, -329\}\},
+10916 \textcolor{comment}{/* @.UU..UA */}
+10917 \{\{ DEF, DEF, DEF, DEF, DEF\},
+10918 \{ -639, -639, -639, -639, -639\},
+10919 \{ -229, -229, -229, -229, -229\},
+10920 \{ -729, -729, -729, -729, -729\},
+10921 \{ -190, -190, -190, -190, -190\}\}\}\},
+10922 \textcolor{comment}{/* @.@@.. @ */}
+10923 \{\{\{\{ -100, -100, -100, -100, -100\},
+10924 \{ -100, -100, -100, -100, -100\},
+10925 \{ -100, -100, -100, -100, -100\},
+10926 \{ -100, -100, -100, -100, -100\},
+10927 \{ -100, -100, -100, -100, -100\}\},
+10928 \textcolor{comment}{/* @.@A.. @ */}
+10929 \{\{ -100, -100, -100, -100, -100\},
+10930 \{ -100, -100, -100, -100, -100\},
+10931 \{ -100, -100, -100, -100, -100\},
+10932 \{ -100, -100, -100, -100, -100\},
+10933 \{ -100, -100, -100, -100, -100\}\},
+10934 \textcolor{comment}{/* @.@C.. @ */}
+10935 \{\{ -100, -100, -100, -100, -100\},
+10936 \{ -100, -100, -100, -100, -100\},
+10937 \{ -100, -100, -100, -100, -100\},
+10938 \{ -100, -100, -100, -100, -100\},
+10939 \{ -100, -100, -100, -100, -100\}\},
+10940 \textcolor{comment}{/* @.@G.. @ */}
+10941 \{\{ -100, -100, -100, -100, -100\},
+10942 \{ -100, -100, -100, -100, -100\},
+10943 \{ -100, -100, -100, -100, -100\},
+10944 \{ -100, -100, -100, -100, -100\},
+10945 \{ -100, -100, -100, -100, -100\}\},
+10946 \textcolor{comment}{/* @.@U.. @ */}
+10947 \{\{ -100, -100, -100, -100, -100\},
+10948 \{ -100, -100, -100, -100, -100\},
+10949 \{ -100, -100, -100, -100, -100\},
+10950 \{ -100, -100, -100, -100, -100\},
+10951 \{ -100, -100, -100, -100, -100\}\}\},
+10952 \textcolor{comment}{/* @.A@.. @ */}
+10953 \{\{\{ -100, -100, -100, -100, -100\},
+10954 \{ -100, -100, -100, -100, -100\},
+10955 \{ -100, -100, -100, -100, -100\},
+10956 \{ -100, -100, -100, -100, -100\},
+10957 \{ -100, -100, -100, -100, -100\}\},
+10958 \textcolor{comment}{/* @.AA.. @ */}
+10959 \{\{ -100, -100, -100, -100, -100\},
+10960 \{ -100, -100, -100, -100, -100\},
+10961 \{ -100, -100, -100, -100, -100\},
+10962 \{ -100, -100, -100, -100, -100\},
+10963 \{ -100, -100, -100, -100, -100\}\},
+10964 \textcolor{comment}{/* @.AC.. @ */}
+10965 \{\{ -100, -100, -100, -100, -100\},
+10966 \{ -100, -100, -100, -100, -100\},
+10967 \{ -100, -100, -100, -100, -100\},
+10968 \{ -100, -100, -100, -100, -100\},
+10969 \{ -100, -100, -100, -100, -100\}\},
+10970 \textcolor{comment}{/* @.AG.. @ */}
+10971 \{\{ -100, -100, -100, -100, -100\},
+10972 \{ -100, -100, -100, -100, -100\},
+10973 \{ -100, -100, -100, -100, -100\},
+10974 \{ -100, -100, -100, -100, -100\},
+10975 \{ -100, -100, -100, -100, -100\}\},
+10976 \textcolor{comment}{/* @.AU.. @ */}
+10977 \{\{ -100, -100, -100, -100, -100\},
+10978 \{ -100, -100, -100, -100, -100\},
+10979 \{ -100, -100, -100, -100, -100\},
+10980 \{ -100, -100, -100, -100, -100\},
+10981 \{ -100, -100, -100, -100, -100\}\}\},
+10982 \textcolor{comment}{/* @.C@.. @ */}
+10983 \{\{\{ -100, -100, -100, -100, -100\},
+10984 \{ -100, -100, -100, -100, -100\},
+10985 \{ -100, -100, -100, -100, -100\},
+10986 \{ -100, -100, -100, -100, -100\},
+10987 \{ -100, -100, -100, -100, -100\}\},
+10988 \textcolor{comment}{/* @.CA.. @ */}
+10989 \{\{ -100, -100, -100, -100, -100\},
+10990 \{ -100, -100, -100, -100, -100\},
+10991 \{ -100, -100, -100, -100, -100\},
+10992 \{ -100, -100, -100, -100, -100\},
+10993 \{ -100, -100, -100, -100, -100\}\},
+10994 \textcolor{comment}{/* @.CC.. @ */}
+10995 \{\{ -100, -100, -100, -100, -100\},
+10996 \{ -100, -100, -100, -100, -100\},
+10997 \{ -100, -100, -100, -100, -100\},
+10998 \{ -100, -100, -100, -100, -100\},
+10999 \{ -100, -100, -100, -100, -100\}\},
+11000 \textcolor{comment}{/* @.CG.. @ */}
+11001 \{\{ -100, -100, -100, -100, -100\},
+11002 \{ -100, -100, -100, -100, -100\},
+11003 \{ -100, -100, -100, -100, -100\},
+11004 \{ -100, -100, -100, -100, -100\},
+11005 \{ -100, -100, -100, -100, -100\}\},
+11006 \textcolor{comment}{/* @.CU.. @ */}
+11007 \{\{ -100, -100, -100, -100, -100\},
+11008 \{ -100, -100, -100, -100, -100\},
+11009 \{ -100, -100, -100, -100, -100\},
+11010 \{ -100, -100, -100, -100, -100\},
+11011 \{ -100, -100, -100, -100, -100\}\}\},
+11012 \textcolor{comment}{/* @.G@.. @ */}
+11013 \{\{\{ -100, -100, -100, -100, -100\},
+11014 \{ -100, -100, -100, -100, -100\},
+11015 \{ -100, -100, -100, -100, -100\},
+11016 \{ -100, -100, -100, -100, -100\},
+11017 \{ -100, -100, -100, -100, -100\}\},
+11018 \textcolor{comment}{/* @.GA.. @ */}
+11019 \{\{ -100, -100, -100, -100, -100\},
+11020 \{ -100, -100, -100, -100, -100\},
+11021 \{ -100, -100, -100, -100, -100\},
+11022 \{ -100, -100, -100, -100, -100\},
+11023 \{ -100, -100, -100, -100, -100\}\},
+11024 \textcolor{comment}{/* @.GC.. @ */}
+11025 \{\{ -100, -100, -100, -100, -100\},
+11026 \{ -100, -100, -100, -100, -100\},
+11027 \{ -100, -100, -100, -100, -100\},
+11028 \{ -100, -100, -100, -100, -100\},
+11029 \{ -100, -100, -100, -100, -100\}\},
+11030 \textcolor{comment}{/* @.GG.. @ */}
+11031 \{\{ -100, -100, -100, -100, -100\},
+11032 \{ -100, -100, -100, -100, -100\},
+11033 \{ -100, -100, -100, -100, -100\},
+11034 \{ -100, -100, -100, -100, -100\},
+11035 \{ -100, -100, -100, -100, -100\}\},
+11036 \textcolor{comment}{/* @.GU.. @ */}
+11037 \{\{ -100, -100, -100, -100, -100\},
+11038 \{ -100, -100, -100, -100, -100\},
+11039 \{ -100, -100, -100, -100, -100\},
+11040 \{ -100, -100, -100, -100, -100\},
+11041 \{ -100, -100, -100, -100, -100\}\}\},
+11042 \textcolor{comment}{/* @.U@.. @ */}
+11043 \{\{\{ -100, -100, -100, -100, -100\},
+11044 \{ -100, -100, -100, -100, -100\},
+11045 \{ -100, -100, -100, -100, -100\},
+11046 \{ -100, -100, -100, -100, -100\},
+11047 \{ -100, -100, -100, -100, -100\}\},
+11048 \textcolor{comment}{/* @.UA.. @ */}
+11049 \{\{ -100, -100, -100, -100, -100\},
+11050 \{ -100, -100, -100, -100, -100\},
+11051 \{ -100, -100, -100, -100, -100\},
+11052 \{ -100, -100, -100, -100, -100\},
+11053 \{ -100, -100, -100, -100, -100\}\},
+11054 \textcolor{comment}{/* @.UC.. @ */}
+11055 \{\{ -100, -100, -100, -100, -100\},
+11056 \{ -100, -100, -100, -100, -100\},
+11057 \{ -100, -100, -100, -100, -100\},
+11058 \{ -100, -100, -100, -100, -100\},
+11059 \{ -100, -100, -100, -100, -100\}\},
+11060 \textcolor{comment}{/* @.UG.. @ */}
+11061 \{\{ -100, -100, -100, -100, -100\},
+11062 \{ -100, -100, -100, -100, -100\},
+11063 \{ -100, -100, -100, -100, -100\},
+11064 \{ -100, -100, -100, -100, -100\},
+11065 \{ -100, -100, -100, -100, -100\}\},
+11066 \textcolor{comment}{/* @.UU.. @ */}
+11067 \{\{ -100, -100, -100, -100, -100\},
+11068 \{ -100, -100, -100, -100, -100\},
+11069 \{ -100, -100, -100, -100, -100\},
+11070 \{ -100, -100, -100, -100, -100\},
+11071 \{ -100, -100, -100, -100, -100\}\}\}\}\}\};
+11072
+11073
+\end{DoxyCode}
--- /dev/null
+\hypertarget{2Dfold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dfold.h File Reference}
+\label{2Dfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dfold.\-h}}
+}
+Include dependency graph for 2\-Dfold.h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{2Dfold_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$ \hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables} (const char $\ast$seq, const char $\ast$structure1, const char $\ast$structure2, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Get a structure of type \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} prefilled with current global settings. \end{DoxyCompactList}\item
+void \hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\-\_\-\-Two\-Dfold\-\_\-variables} (\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$our\-\_\-variables)
+\begin{DoxyCompactList}\small\item\em Destroy a \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} datastructure without memory loss. \end{DoxyCompactList}\item
+\hyperlink{structTwoDfold__solution}{Two\-Dfold\-\_\-solution} $\ast$ \hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List} (\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$vars, int distance1, int distance2)
+\begin{DoxyCompactList}\small\item\em Compute M\-F\-E's and representative for distance partitioning. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__kl__neighborhood__mfe_gaf4dc05bf8fc1ea53acd7aeb798ba80c2}{Two\-Dfold\-\_\-backtrack\-\_\-f5} (unsigned int j, int k, int l, \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$vars)
+\begin{DoxyCompactList}\small\item\em Backtrack a minimum free energy structure from a 5' section of specified length. \end{DoxyCompactList}\end{DoxyCompactItemize}
--- /dev/null
+7b0fc68d1e87c6af5d6c4d5cc8e2c9e8
\ No newline at end of file
--- /dev/null
+\hypertarget{2Dfold_8h}{\section{2\-Dfold.h}
+\label{2Dfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dfold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/*}
+00002 \textcolor{comment}{ minimum free energy}
+00003 \textcolor{comment}{ RNA secondary structure with}
+00004 \textcolor{comment}{ basepair distance d to reference structure prediction}
+00005 \textcolor{comment}{}
+00006 \textcolor{comment}{*/}
+00007 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_TWO\_D\_FOLD\_H\_\_}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_TWO\_D\_FOLD\_H\_\_}
+00009 \textcolor{preprocessor}{}
+00032 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00033
+00034 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00035 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00036 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00037 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00038 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00039 \textcolor{preprocessor}{}
+00057 \hyperlink{structTwoDfold__vars}{TwoDfold\_vars} *\hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\_TwoDfold\_variables}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *seq,
+00058 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure1,
+00059 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure2,
+00060 \textcolor{keywordtype}{int} circ);
+00061
+00071 \textcolor{keywordtype}{void} \hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\_TwoDfold\_variables}(\hyperlink{structTwoDfold__vars}{TwoDfold\_vars} *
+ our\_variables);
+00072
+00076 DEPRECATED(\hyperlink{structTwoDfold__solution}{TwoDfold\_solution} **TwoDfold(\hyperlink{structTwoDfold__vars}{TwoDfold\_vars} *our\_variables,
+00077 \textcolor{keywordtype}{int} distance1,
+00078 \textcolor{keywordtype}{int} distance2));
+00079
+00104 \hyperlink{structTwoDfold__solution}{TwoDfold\_solution} *\hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{TwoDfoldList}(\hyperlink{structTwoDfold__vars}{TwoDfold\_vars} *vars,
+00105 \textcolor{keywordtype}{int} distance1,
+00106 \textcolor{keywordtype}{int} distance2);
+00107
+00126 \textcolor{keywordtype}{char} *\hyperlink{group__kl__neighborhood__mfe_gaf4dc05bf8fc1ea53acd7aeb798ba80c2}{TwoDfold\_backtrack\_f5}(\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} j,
+00127 \textcolor{keywordtype}{int} k,
+00128 \textcolor{keywordtype}{int} l,
+00129 \hyperlink{structTwoDfold__vars}{TwoDfold\_vars} *vars);
+00130
+00134 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{2Dpfold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dpfold.h File Reference}
+\label{2Dpfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dpfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dpfold.\-h}}
+}
+Include dependency graph for 2\-Dpfold.h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{2Dpfold_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$ \hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables} (const char $\ast$seq, const char $\ast$structure1, char $\ast$structure2, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Get a datastructure containing all necessary attributes and global folding switches. \end{DoxyCompactList}\item
+\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$ \hyperlink{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E} (\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$mfe\-\_\-vars)
+\begin{DoxyCompactList}\small\item\em Get the datastructure containing all necessary attributes and global folding switches from a pre-\/filled mfe-\/datastructure. \end{DoxyCompactList}\item
+void \hyperlink{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{destroy\-\_\-\-Two\-Dpfold\-\_\-variables} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars)
+\begin{DoxyCompactList}\small\item\em Free all memory occupied by a \hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} datastructure. \end{DoxyCompactList}\item
+\hyperlink{structTwoDpfold__solution}{Two\-Dpfold\-\_\-solution} $\ast$ \hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars, int max\-Distance1, int max\-Distance2)
+\begin{DoxyCompactList}\small\item\em Compute the partition function for all distance classes. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}{Two\-Dpfold\-\_\-pbacktrack} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars, int d1, int d2)
+\begin{DoxyCompactList}\small\item\em Sample secondary structure representatives from a set of distance classes according to their Boltzmann probability. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__kl__neighborhood__stochbt_ga13430ac6a7f90df426774f131647d2c7}{Two\-Dpfold\-\_\-pbacktrack5} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars, int d1, int d2, unsigned int length)
+\begin{DoxyCompactList}\small\item\em Sample secondary structure representatives with a specified length from a set of distance classes according to their Boltzmann probability. \end{DoxyCompactList}\end{DoxyCompactItemize}
--- /dev/null
+142b9f81ff232b7ca3841a54b1273644
\ No newline at end of file
--- /dev/null
+\hypertarget{2Dpfold_8h}{\section{2\-Dpfold.h}
+\label{2Dpfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dpfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dpfold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/*}
+00002 \textcolor{comment}{ minimum free energy}
+00003 \textcolor{comment}{ RNA secondary structure with}
+00004 \textcolor{comment}{ basepair distance d to reference structure prediction}
+00005 \textcolor{comment}{}
+00006 \textcolor{comment}{*/}
+00007 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_TWO\_D\_PF\_FOLD\_H\_\_}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_TWO\_D\_PF\_FOLD\_H\_\_}
+00009 \textcolor{preprocessor}{}
+00010 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00011
+00012 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00013 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00014 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00015 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00016 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00017 \textcolor{preprocessor}{}
+00042 \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *\hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\_TwoDpfold\_variables}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seq,
+00043 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure1,
+00044 \textcolor{keywordtype}{char} *structure2,
+00045 \textcolor{keywordtype}{int} circ);
+00046
+00059 \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *\hyperlink{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{get\_TwoDpfold\_variables\_from\_MFE}(
+ \hyperlink{structTwoDfold__vars}{TwoDfold\_vars} *mfe\_vars);
+00060
+00071 \textcolor{keywordtype}{void} \hyperlink{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{destroy\_TwoDpfold\_variables}(
+ \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *vars);
+00072
+00094 \hyperlink{structTwoDpfold__solution}{TwoDpfold\_solution} *\hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{TwoDpfoldList}(
+ \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *vars,
+00095 \textcolor{keywordtype}{int} maxDistance1,
+00096 \textcolor{keywordtype}{int} maxDistance2);
+00097 \textcolor{comment}{/* End of group kl\_neighborhood\_pf */}
+00099
+00123 \textcolor{keywordtype}{char} *\hyperlink{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}{TwoDpfold\_pbacktrack}(\hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *vars,
+00124 \textcolor{keywordtype}{int} d1,
+00125 \textcolor{keywordtype}{int} d2);
+00126
+00146 \textcolor{keywordtype}{char} *\hyperlink{group__kl__neighborhood__stochbt_ga13430ac6a7f90df426774f131647d2c7}{TwoDpfold\_pbacktrack5}( \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *vars,
+00147 \textcolor{keywordtype}{int} d1,
+00148 \textcolor{keywordtype}{int} d2,
+00149 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length);
+00150 \textcolor{comment}{/* End of group kl\_neighborhood\_stochbt */}
+00152
+00158 DEPRECATED(FLT\_OR\_DBL **TwoDpfold(\hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *our\_variables,
+00159 \textcolor{keywordtype}{int} maxDistance1,
+00160 \textcolor{keywordtype}{int} maxDistance2));
+00161
+00167 DEPRECATED(FLT\_OR\_DBL **TwoDpfold\_circ(
+00168 \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars} *our\_variables,
+00169 \textcolor{keywordtype}{int} maxDistance1,
+00170 \textcolor{keywordtype}{int} maxDistance2));
+00171
+00172
+00173 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{LPfold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-L\-Pfold.h File Reference}
+\label{LPfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-L\-Pfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-L\-Pfold.\-h}}
+}
+
+
+Function declarations of partition function variants of the Lfold algorithm.
+
+
+Include dependency graph for L\-Pfold.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{LPfold_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{group__local__pf__fold_ga5a019014d37fe6105131dfc2fc447880}{update\-\_\-pf\-\_\-params\-L\-P} (int length)
+\item
+\hyperlink{structplist}{plist} $\ast$ \hyperlink{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}{pfl\-\_\-fold} (char $\ast$sequence, int win\-Size, int pair\-Size, float cutoffb, double $\ast$$\ast$p\-U, struct \hyperlink{structplist}{plist} $\ast$$\ast$dpp2, F\-I\-L\-E $\ast$p\-Ufp, F\-I\-L\-E $\ast$spup)
+\begin{DoxyCompactList}\small\item\em Compute partition functions for locally stable secondary structures. \end{DoxyCompactList}\item
+\hypertarget{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{\hyperlink{structplist}{plist} $\ast$ \hyperlink{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{pfl\-\_\-fold\-\_\-par} (char $\ast$sequence, int win\-Size, int pair\-Size, float cutoffb, double $\ast$$\ast$p\-U, struct \hyperlink{structplist}{plist} $\ast$$\ast$dpp2, F\-I\-L\-E $\ast$p\-Ufp, F\-I\-L\-E $\ast$spup, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)}\label{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}
+
+\begin{DoxyCompactList}\small\item\em Compute partition functions for locally stable secondary structures. \end{DoxyCompactList}\item
+void \hyperlink{group__local__pf__fold_ga0bcb751860bbf34e3dfee8c2fbdb3ef3}{putoutp\-U\-\_\-prob} (double $\ast$$\ast$p\-U, int length, int ulength, F\-I\-L\-E $\ast$fp, int energies)
+\begin{DoxyCompactList}\small\item\em Writes the unpaired probabilities (p\-U) or opening energies into a file. \end{DoxyCompactList}\item
+void \hyperlink{group__local__pf__fold_ga9acb00ee10e96b1ca4ea394cd8bcec75}{putoutp\-U\-\_\-prob\-\_\-bin} (double $\ast$$\ast$p\-U, int length, int ulength, F\-I\-L\-E $\ast$fp, int energies)
+\begin{DoxyCompactList}\small\item\em Writes the unpaired probabilities (p\-U) or opening energies into a binary file. \end{DoxyCompactList}\item
+void \hyperlink{LPfold_8h_ae85bf55053e9fb295208be322e0fa07a}{init\-\_\-pf\-\_\-fold\-L\-P} (int length)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Function declarations of partition function variants of the Lfold algorithm.
+
+\subsection{Function Documentation}
+\hypertarget{LPfold_8h_ae85bf55053e9fb295208be322e0fa07a}{\index{L\-Pfold.\-h@{L\-Pfold.\-h}!init\-\_\-pf\-\_\-fold\-L\-P@{init\-\_\-pf\-\_\-fold\-L\-P}}
+\index{init\-\_\-pf\-\_\-fold\-L\-P@{init\-\_\-pf\-\_\-fold\-L\-P}!LPfold.h@{L\-Pfold.\-h}}
+\subsubsection[{init\-\_\-pf\-\_\-fold\-L\-P}]{\setlength{\rightskip}{0pt plus 5cm}void init\-\_\-pf\-\_\-fold\-L\-P (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{LPfold_8h_ae85bf55053e9fb295208be322e0fa07a}
+Dunno if this function was ever used by external programs linking to R\-N\-Alib, but it was declared P\-U\-B\-L\-I\-C before. Anyway, never use this function as it will be removed soon and does nothing at all
\ No newline at end of file
--- /dev/null
+cd9a0b27014e7c4ca68d61104c39eea8
\ No newline at end of file
--- /dev/null
+\hypertarget{LPfold_8h}{\section{L\-Pfold.\-h}
+\label{LPfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-L\-Pfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-L\-Pfold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_LPFOLD\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_LPFOLD\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00011 \textcolor{preprocessor}{}
+00029 \textcolor{keywordtype}{void} \hyperlink{group__local__pf__fold_ga5a019014d37fe6105131dfc2fc447880}{update\_pf\_paramsLP}(\textcolor{keywordtype}{int} length);
+00030
+00037 \textcolor{keywordtype}{void} update\_pf\_paramsLP\_par(\textcolor{keywordtype}{int} length, \hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00038
+00076 \hyperlink{structplist}{plist} *\hyperlink{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}{pfl\_fold}(\textcolor{keywordtype}{char} *sequence,
+00077 \textcolor{keywordtype}{int} winSize,
+00078 \textcolor{keywordtype}{int} pairSize,
+00079 \textcolor{keywordtype}{float} cutoffb,
+00080 \textcolor{keywordtype}{double} **pU,
+00081 \textcolor{keyword}{struct} \hyperlink{structplist}{plist} **dpp2,
+00082 FILE *pUfp,
+00083 FILE *spup);
+00084
+00091 \hyperlink{structplist}{plist} *\hyperlink{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{pfl\_fold\_par}(\textcolor{keywordtype}{char} *sequence,
+00092 \textcolor{keywordtype}{int} winSize,
+00093 \textcolor{keywordtype}{int} pairSize,
+00094 \textcolor{keywordtype}{float} cutoffb,
+00095 \textcolor{keywordtype}{double} **pU,
+00096 \textcolor{keyword}{struct} \hyperlink{structplist}{plist} **dpp2,
+00097 FILE *pUfp,
+00098 FILE *spup,
+00099 \hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00100
+00101
+00102 \textcolor{keywordtype}{void} putoutpU\_prob\_par( \textcolor{keywordtype}{double} **pU,
+00103 \textcolor{keywordtype}{int} length,
+00104 \textcolor{keywordtype}{int} ulength,
+00105 FILE *fp,
+00106 \textcolor{keywordtype}{int} energies,
+00107 \hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00108
+00109
+00124 \textcolor{keywordtype}{void} \hyperlink{group__local__pf__fold_ga0bcb751860bbf34e3dfee8c2fbdb3ef3}{putoutpU\_prob}(\textcolor{keywordtype}{double} **pU,
+00125 \textcolor{keywordtype}{int} length,
+00126 \textcolor{keywordtype}{int} ulength,
+00127 FILE *fp,
+00128 \textcolor{keywordtype}{int} energies);
+00129
+00130 \textcolor{keywordtype}{void} putoutpU\_prob\_bin\_par( \textcolor{keywordtype}{double} **pU,
+00131 \textcolor{keywordtype}{int} length,
+00132 \textcolor{keywordtype}{int} ulength,
+00133 FILE *fp,
+00134 \textcolor{keywordtype}{int} energies,
+00135 \hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00136
+00151 \textcolor{keywordtype}{void} \hyperlink{group__local__pf__fold_ga9acb00ee10e96b1ca4ea394cd8bcec75}{putoutpU\_prob\_bin}(\textcolor{keywordtype}{double} **pU,
+00152 \textcolor{keywordtype}{int} length,
+00153 \textcolor{keywordtype}{int} ulength,
+00154 FILE *fp,
+00155 \textcolor{keywordtype}{int} energies);
+00156
+00162 DEPRECATED(\textcolor{keywordtype}{void} \hyperlink{LPfold_8h_ae85bf55053e9fb295208be322e0fa07a}{init\_pf\_foldLP}(\textcolor{keywordtype}{int} length));
+00163
+00164 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{Lfold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Lfold.h File Reference}
+\label{Lfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Lfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Lfold.\-h}}
+}
+
+
+Predicting local M\-F\-E structures of large sequences.
+
+
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}{Lfold} (const char $\ast$string, char $\ast$structure, int maxdist)
+\begin{DoxyCompactList}\small\item\em The local analog to \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}. \end{DoxyCompactList}\item
+float \hyperlink{group__local__mfe__fold_gab6d79eecc180f586679f7b85cce5cbe9}{Lfoldz} (const char $\ast$string, char $\ast$structure, int maxdist, int zsc, double min\-\_\-z)
+\item
+float \hyperlink{group__local__consensus__fold_ga20a173a3cdb83f5d1778e36c1a6b1f2b}{ali\-Lfold} (const char $\ast$$\ast$strings, char $\ast$structure, int maxdist)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Predicting local M\-F\-E structures of large sequences.
\ No newline at end of file
--- /dev/null
+\hypertarget{Lfold_8h}{\section{Lfold.\-h}
+\label{Lfold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Lfold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Lfold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_LFOLD\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_LFOLD\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00038 \textcolor{keywordtype}{float} \hyperlink{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}{Lfold}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00039 \textcolor{keywordtype}{char} *structure,
+00040 \textcolor{keywordtype}{int} maxdist);
+00041
+00053 \textcolor{keywordtype}{float} \hyperlink{group__local__mfe__fold_gab6d79eecc180f586679f7b85cce5cbe9}{Lfoldz}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00054 \textcolor{keywordtype}{char} *structure,
+00055 \textcolor{keywordtype}{int} maxdist,
+00056 \textcolor{keywordtype}{int} zsc,
+00057 \textcolor{keywordtype}{double} min\_z);
+00058
+00059
+00077 \textcolor{keywordtype}{float} \hyperlink{group__local__consensus__fold_ga20a173a3cdb83f5d1778e36c1a6b1f2b}{aliLfold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **strings,
+00078 \textcolor{keywordtype}{char} *structure,
+00079 \textcolor{keywordtype}{int} maxdist);
+00080
+00081 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{MEA_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-M\-E\-A.h File Reference}
+\label{MEA_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-M\-E\-A.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-M\-E\-A.\-h}}
+}
+
+
+Computes a M\-E\-A (maximum expected accuracy) structure.
+
+
+Include dependency graph for M\-E\-A.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=252pt]{MEA_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{MEA_8h_a396ec6144c6a74fcbab4cea6b42d76c3}{M\-E\-A} (\hyperlink{structplist}{plist} $\ast$p, char $\ast$structure, double gamma)
+\begin{DoxyCompactList}\small\item\em Computes a M\-E\-A (maximum expected accuracy) structure. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Computes a M\-E\-A (maximum expected accuracy) structure.
+
+\subsection{Function Documentation}
+\hypertarget{MEA_8h_a396ec6144c6a74fcbab4cea6b42d76c3}{\index{M\-E\-A.\-h@{M\-E\-A.\-h}!M\-E\-A@{M\-E\-A}}
+\index{M\-E\-A@{M\-E\-A}!MEA.h@{M\-E\-A.\-h}}
+\subsubsection[{M\-E\-A}]{\setlength{\rightskip}{0pt plus 5cm}float M\-E\-A (
+\begin{DoxyParamCaption}
+\item[{{\bf plist} $\ast$}]{p, }
+\item[{char $\ast$}]{structure, }
+\item[{double}]{gamma}
+\end{DoxyParamCaption}
+)}}\label{MEA_8h_a396ec6144c6a74fcbab4cea6b42d76c3}
+
+
+Computes a M\-E\-A (maximum expected accuracy) structure.
+
+The algorithm maximizes the expected accuracy \[ A(S) = \sum_{(i,j) \in S} 2 \gamma p_{ij} + \sum_{i \notin S} p^u_i \] Higher values of $\gamma$ result in more base pairs of lower probability and thus higher sensitivity. Low values of $\gamma$ result in structures containing only highly likely pairs (high specificity). The code of the M\-E\-A function also demonstrates the use of sparse dynamic programming scheme to reduce the time and memory complexity of folding.
\ No newline at end of file
--- /dev/null
+5287b69d2a88169fe36ca190bd062c22
\ No newline at end of file
--- /dev/null
+\hypertarget{MEA_8h}{\section{M\-E\-A.\-h}
+\label{MEA_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-M\-E\-A.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-M\-E\-A.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_MEA\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_MEA\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00022 \textcolor{keywordtype}{float} \hyperlink{MEA_8h_a396ec6144c6a74fcbab4cea6b42d76c3}{MEA}(\hyperlink{structplist}{plist} *p,
+00023 \textcolor{keywordtype}{char} *structure,
+00024 \textcolor{keywordtype}{double} gamma);
+00025
+00026 \textcolor{keywordtype}{float} MEA\_seq(\hyperlink{structplist}{plist} *p,
+00027 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00028 \textcolor{keywordtype}{char} *structure,
+00029 \textcolor{keywordtype}{double} gamma,
+00030 \hyperlink{structpf__paramT}{pf\_paramT} *pf);
+00031
+00032 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+all: refman.pdf
+
+pdf: refman.pdf
+
+refman.pdf: clean refman.tex
+ pdflatex refman
+ /usr/bin/makeindex refman.idx
+ bibtex refman
+ pdflatex refman
+ pdflatex refman
+ latex_count=5 ; \
+ while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\
+ do \
+ echo "Rerunning latex...." ;\
+ pdflatex refman ;\
+ latex_count=`expr $$latex_count - 1` ;\
+ done
+
+
+clean:
+ rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
--- /dev/null
+\hypertarget{PKplex_8h}{\section{P\-Kplex.\-h}
+\label{PKplex_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-Kplex.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-Kplex.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef PKPLEX\_H}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define PKPLEX\_H}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{keyword}{extern} \hyperlink{structdupVar}{dupVar} *PlexHits;
+00007 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} PlexHitsArrayLength;
+00008 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} NumberOfHits;
+00009 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} verbose;
+00010
+00011
+00015 \hyperlink{structdupVar}{dupVar} **PKLduplexfold\_XS( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00016 \textcolor{keywordtype}{int} **access\_s1,
+00017 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00018 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00019 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta);
+00020
+00021 \textcolor{keywordtype}{int} arraySize(\hyperlink{structduplexT}{duplexT} **array);
+00022
+00023 \textcolor{keywordtype}{void} freeDuplexT(\hyperlink{structduplexT}{duplexT} **array);
+00024
+00025 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{PS__dot_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-S\-\_\-dot.h File Reference}
+\label{PS__dot_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-S\-\_\-dot.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-S\-\_\-dot.\-h}}
+}
+
+
+Various functions for plotting R\-N\-A secondary structures, dot-\/plots and other visualizations.
+
+
+Include dependency graph for P\-S\-\_\-dot.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{PS__dot_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot} (char $\ast$string, char $\ast$structure, char $\ast$file)
+\begin{DoxyCompactList}\small\item\em Produce a secondary structure graph in Post\-Script and write it to 'filename'. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{P\-S\-\_\-rna\-\_\-plot\-\_\-a} (char $\ast$string, char $\ast$structure, char $\ast$file, char $\ast$pre, char $\ast$post)
+\begin{DoxyCompactList}\small\item\em Produce a secondary structure graph in Post\-Script including additional annotation macros and write it to 'filename'. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gml\-R\-N\-A} (char $\ast$string, char $\ast$structure, char $\ast$ssfile, char option)
+\begin{DoxyCompactList}\small\item\em Produce a secondary structure graph in Graph Meta Language (gml) and write it to a file. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\-\_\-rna\-\_\-plot} (char $\ast$string, char $\ast$structure, char $\ast$ssfile)
+\begin{DoxyCompactList}\small\item\em Produce a secondary structure graph in S\-Struct\-View format. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\-\_\-rna\-\_\-plot} (char $\ast$string, char $\ast$structure, char $\ast$ssfile)
+\begin{DoxyCompactList}\small\item\em Produce a secondary structure plot in S\-V\-G format and write it to a file. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\-\_\-plot} (char $\ast$string, char $\ast$structure, char $\ast$ssfile)
+\begin{DoxyCompactList}\small\item\em Produce a secondary structure plot for further editing in X\-R\-N\-A. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{P\-S\-\_\-dot\-\_\-plot\-\_\-list} (char $\ast$seq, char $\ast$filename, \hyperlink{structplist}{plist} $\ast$pl, \hyperlink{structplist}{plist} $\ast$mf, char $\ast$comment)
+\begin{DoxyCompactList}\small\item\em Produce a postscript dot-\/plot from two pair lists. \end{DoxyCompactList}\item
+int \hyperlink{PS__dot_8h_aab48d4dac655d688abe921389ac2847c}{ali\-P\-S\-\_\-color\-\_\-aln} (const char $\ast$structure, const char $\ast$filename, const char $\ast$seqs\mbox{[}$\,$\mbox{]}, const char $\ast$names\mbox{[}$\,$\mbox{]})
+\item
+int \hyperlink{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}{P\-S\-\_\-dot\-\_\-plot} (char $\ast$string, char $\ast$file)
+\begin{DoxyCompactList}\small\item\em Produce postscript dot-\/plot. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Various functions for plotting R\-N\-A secondary structures, dot-\/plots and other visualizations.
+
+\subsection{Function Documentation}
+\hypertarget{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!P\-S\-\_\-rna\-\_\-plot@{P\-S\-\_\-rna\-\_\-plot}}
+\index{P\-S\-\_\-rna\-\_\-plot@{P\-S\-\_\-rna\-\_\-plot}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{P\-S\-\_\-rna\-\_\-plot}]{\setlength{\rightskip}{0pt plus 5cm}int P\-S\-\_\-rna\-\_\-plot (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{char $\ast$}]{file}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}
+
+
+Produce a secondary structure graph in Post\-Script and write it to 'filename'.
+
+Note that this function has changed from previous versions and now expects the structure to be plotted in dot-\/bracket notation as an argument. It does not make use of the global \hyperlink{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{base\-\_\-pair} array anymore.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & The R\-N\-A sequence \\
+\hline
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em file} & The filename of the postscript output \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!P\-S\-\_\-rna\-\_\-plot\-\_\-a@{P\-S\-\_\-rna\-\_\-plot\-\_\-a}}
+\index{P\-S\-\_\-rna\-\_\-plot\-\_\-a@{P\-S\-\_\-rna\-\_\-plot\-\_\-a}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{P\-S\-\_\-rna\-\_\-plot\-\_\-a}]{\setlength{\rightskip}{0pt plus 5cm}int P\-S\-\_\-rna\-\_\-plot\-\_\-a (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{char $\ast$}]{file, }
+\item[{char $\ast$}]{pre, }
+\item[{char $\ast$}]{post}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_a47856b2504b566588785597b6ebb8271}
+
+
+Produce a secondary structure graph in Post\-Script including additional annotation macros and write it to 'filename'.
+
+Same as \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot()} but adds extra Post\-Script macros for various annotations (see generated P\-S code). The 'pre' and 'post' variables contain Post\-Script code that is verbatim copied in the resulting P\-S file just before and after the structure plot. If both arguments ('pre' and 'post') are N\-U\-L\-L, no additional macros will be printed into the Post\-Script.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & The R\-N\-A sequence \\
+\hline
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em file} & The filename of the postscript output \\
+\hline
+{\em pre} & Post\-Script code to appear before the secondary structure plot \\
+\hline
+{\em post} & Post\-Script code to appear after the secondary structure plot \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!gml\-R\-N\-A@{gml\-R\-N\-A}}
+\index{gml\-R\-N\-A@{gml\-R\-N\-A}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{gml\-R\-N\-A}]{\setlength{\rightskip}{0pt plus 5cm}int gml\-R\-N\-A (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{char $\ast$}]{ssfile, }
+\item[{char}]{option}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}
+
+
+Produce a secondary structure graph in Graph Meta Language (gml) and write it to a file.
+
+If 'option' is an uppercase letter the R\-N\-A sequence is used to label nodes, if 'option' equals {\itshape 'X'} or {\itshape 'x'} the resulting file will coordinates for an initial layout of the graph.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & The R\-N\-A sequence \\
+\hline
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em ssfile} & The filename of the gml output \\
+\hline
+{\em option} & The option flag \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_add368528755f9a830727b680243541df}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!ssv\-\_\-rna\-\_\-plot@{ssv\-\_\-rna\-\_\-plot}}
+\index{ssv\-\_\-rna\-\_\-plot@{ssv\-\_\-rna\-\_\-plot}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{ssv\-\_\-rna\-\_\-plot}]{\setlength{\rightskip}{0pt plus 5cm}int ssv\-\_\-rna\-\_\-plot (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{char $\ast$}]{ssfile}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_add368528755f9a830727b680243541df}
+
+
+Produce a secondary structure graph in S\-Struct\-View format.
+
+Write coord file for S\-Struct\-View
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & The R\-N\-A sequence \\
+\hline
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em ssfile} & The filename of the ssv output \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!svg\-\_\-rna\-\_\-plot@{svg\-\_\-rna\-\_\-plot}}
+\index{svg\-\_\-rna\-\_\-plot@{svg\-\_\-rna\-\_\-plot}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{svg\-\_\-rna\-\_\-plot}]{\setlength{\rightskip}{0pt plus 5cm}int svg\-\_\-rna\-\_\-plot (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{char $\ast$}]{ssfile}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_ae7853539b5df98f294b4af434e979304}
+
+
+Produce a secondary structure plot in S\-V\-G format and write it to a file.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & The R\-N\-A sequence \\
+\hline
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em ssfile} & The filename of the svg output \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!xrna\-\_\-plot@{xrna\-\_\-plot}}
+\index{xrna\-\_\-plot@{xrna\-\_\-plot}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{xrna\-\_\-plot}]{\setlength{\rightskip}{0pt plus 5cm}int xrna\-\_\-plot (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{char $\ast$}]{ssfile}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}
+
+
+Produce a secondary structure plot for further editing in X\-R\-N\-A.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & The R\-N\-A sequence \\
+\hline
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em ssfile} & The filename of the xrna output \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!P\-S\-\_\-dot\-\_\-plot\-\_\-list@{P\-S\-\_\-dot\-\_\-plot\-\_\-list}}
+\index{P\-S\-\_\-dot\-\_\-plot\-\_\-list@{P\-S\-\_\-dot\-\_\-plot\-\_\-list}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{P\-S\-\_\-dot\-\_\-plot\-\_\-list}]{\setlength{\rightskip}{0pt plus 5cm}int P\-S\-\_\-dot\-\_\-plot\-\_\-list (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{seq, }
+\item[{char $\ast$}]{filename, }
+\item[{{\bf plist} $\ast$}]{pl, }
+\item[{{\bf plist} $\ast$}]{mf, }
+\item[{char $\ast$}]{comment}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}
+
+
+Produce a postscript dot-\/plot from two pair lists.
+
+This function reads two plist structures (e.\-g. base pair probabilities and a secondary structure) as produced by \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr()} and \hyperlink{fold_8h_adaa59b81664e2e36cb9932e891558fae}{assign\-\_\-plist\-\_\-from\-\_\-db()} and produces a postscript \char`\"{}dot plot\char`\"{} that is written to 'filename'.\par
+ Using base pair probabilities in the first and mfe structure in the second plist, the resulting \char`\"{}dot plot\char`\"{} represents each base pairing probability by a square of corresponding area in a upper triangle matrix. The lower part of the matrix contains the minimum free energy structure.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr()}, \hyperlink{fold_8h_adaa59b81664e2e36cb9932e891558fae}{assign\-\_\-plist\-\_\-from\-\_\-db()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & The R\-N\-A sequence \\
+\hline
+{\em filename} & A filename for the postscript output \\
+\hline
+{\em pl} & The base pair probability pairlist \\
+\hline
+{\em mf} & The mfe secondary structure pairlist \\
+\hline
+{\em comment} & A comment \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 if postscript was successfully written, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{PS__dot_8h_aab48d4dac655d688abe921389ac2847c}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!ali\-P\-S\-\_\-color\-\_\-aln@{ali\-P\-S\-\_\-color\-\_\-aln}}
+\index{ali\-P\-S\-\_\-color\-\_\-aln@{ali\-P\-S\-\_\-color\-\_\-aln}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{ali\-P\-S\-\_\-color\-\_\-aln}]{\setlength{\rightskip}{0pt plus 5cm}int ali\-P\-S\-\_\-color\-\_\-aln (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure, }
+\item[{const char $\ast$}]{filename, }
+\item[{const char $\ast$}]{seqs\mbox{[}$\,$\mbox{]}, }
+\item[{const char $\ast$}]{names\mbox{[}$\,$\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_aab48d4dac655d688abe921389ac2847c}
+P\-S\-\_\-color\-\_\-aln for duplexes \hypertarget{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}{\index{P\-S\-\_\-dot.\-h@{P\-S\-\_\-dot.\-h}!P\-S\-\_\-dot\-\_\-plot@{P\-S\-\_\-dot\-\_\-plot}}
+\index{P\-S\-\_\-dot\-\_\-plot@{P\-S\-\_\-dot\-\_\-plot}!PS_dot.h@{P\-S\-\_\-dot.\-h}}
+\subsubsection[{P\-S\-\_\-dot\-\_\-plot}]{\setlength{\rightskip}{0pt plus 5cm}int P\-S\-\_\-dot\-\_\-plot (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string, }
+\item[{char $\ast$}]{file}
+\end{DoxyParamCaption}
+)}}\label{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}
+
+
+Produce postscript dot-\/plot.
+
+Wrapper to P\-S\-\_\-dot\-\_\-plot\-\_\-list
+
+Reads base pair probabilities produced by \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} from the global array \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} and the pair list \hyperlink{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{base\-\_\-pair} produced by \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()} and produces a postscript \char`\"{}dot plot\char`\"{} that is written to 'filename'. The \char`\"{}dot plot\char`\"{} represents each base pairing probability by a square of corresponding area in a upper triangle matrix. The lower part of the matrix contains the minimum free energy \begin{DoxyNote}{Note}
+D\-O N\-O\-T U\-S\-E T\-H\-I\-S F\-U\-N\-C\-T\-I\-O\-N A\-N\-Y\-M\-O\-R\-E S\-I\-N\-C\-E I\-T I\-S N\-O\-T T\-H\-R\-E\-A\-D\-S\-A\-F\-E
+\end{DoxyNote}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000019}{Deprecated}]This function is deprecated and will be removed soon! Use \hyperlink{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{P\-S\-\_\-dot\-\_\-plot\-\_\-list()} instead! \end{DoxyRefDesc}
--- /dev/null
+a32e1f381bfe4bf3ac166d7f33f22f7e
\ No newline at end of file
--- /dev/null
+\hypertarget{PS__dot_8h}{\section{P\-S\-\_\-dot.\-h}
+\label{PS__dot_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-S\-\_\-dot.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-S\-\_\-dot.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PS\_DOT\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PS\_DOT\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005 \textcolor{preprocessor}{#include "\hyperlink{plot__layouts_8h}{plot\_layouts.h}"}
+00006
+00007 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00011 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00012 \textcolor{preprocessor}{}
+00019 \textcolor{comment}{/* write PostScript drawing of structure to file with annotation */}
+00020 \textcolor{keywordtype}{int} PS\_rna\_plot\_snoop\_a(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00021 \textcolor{keywordtype}{char} *structure,
+00022 \textcolor{keywordtype}{char} *ssfile,
+00023 \textcolor{keywordtype}{int} *relative\_access,
+00024 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seqs[]);
+00025
+00038 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{PS\_rna\_plot}(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00039 \textcolor{keywordtype}{char} *structure,
+00040 \textcolor{keywordtype}{char} *file);
+00041
+00060 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{PS\_rna\_plot\_a}(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00061 \textcolor{keywordtype}{char} *structure,
+00062 \textcolor{keywordtype}{char} *file,
+00063 \textcolor{keywordtype}{char} *pre,
+00064 \textcolor{keywordtype}{char} *post);
+00065
+00066 \textcolor{keywordtype}{int} PS\_rna\_plot\_a\_gquad(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00067 \textcolor{keywordtype}{char} *structure,
+00068 \textcolor{keywordtype}{char} *ssfile,
+00069 \textcolor{keywordtype}{char} *pre,
+00070 \textcolor{keywordtype}{char} *post);
+00071
+00084 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gmlRNA}( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00085 \textcolor{keywordtype}{char} *structure,
+00086 \textcolor{keywordtype}{char} *ssfile,
+00087 \textcolor{keywordtype}{char} option);
+00088
+00099 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\_rna\_plot}( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00100 \textcolor{keywordtype}{char} *structure,
+00101 \textcolor{keywordtype}{char} *ssfile);
+00102
+00111 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\_rna\_plot}( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00112 \textcolor{keywordtype}{char} *structure,
+00113 \textcolor{keywordtype}{char} *ssfile);
+00114
+00123 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\_plot}(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00124 \textcolor{keywordtype}{char} *structure,
+00125 \textcolor{keywordtype}{char} *ssfile);
+00126
+00127 \textcolor{keywordtype}{int} PS\_color\_dot\_plot(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00128 \hyperlink{structcpair}{cpair} *pi,
+00129 \textcolor{keywordtype}{char} *filename);
+00130
+00131 \textcolor{keywordtype}{int} PS\_color\_dot\_plot\_turn( \textcolor{keywordtype}{char} *seq,
+00132 \hyperlink{structcpair}{cpair} *pi,
+00133 \textcolor{keywordtype}{char} *filename,
+00134 \textcolor{keywordtype}{int} winSize);
+00135
+00155 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{PS\_dot\_plot\_list}( \textcolor{keywordtype}{char} *seq,
+00156 \textcolor{keywordtype}{char} *filename,
+00157 \hyperlink{structplist}{plist} *pl,
+00158 \hyperlink{structplist}{plist} *mf,
+00159 \textcolor{keywordtype}{char} *comment);
+00160
+00161 \textcolor{keywordtype}{int} PS\_dot\_plot\_turn( \textcolor{keywordtype}{char} *seq,
+00162 \textcolor{keyword}{struct} \hyperlink{structplist}{plist} *pl,
+00163 \textcolor{keywordtype}{char} *filename,
+00164 \textcolor{keywordtype}{int} winSize);
+00165
+00166 \textcolor{keywordtype}{int} PS\_color\_aln( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00167 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *filename,
+00168 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seqs[],
+00169 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *names[]);
+00170
+00174 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_aab48d4dac655d688abe921389ac2847c}{aliPS\_color\_aln}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00175 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *filename,
+00176 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seqs[],
+00177 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *names[]);
+00178
+00179
+00195 DEPRECATED(\textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}{PS\_dot\_plot}( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00196 \textcolor{keywordtype}{char} *file));
+00197 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{ProfileAln_8h}{\section{Profile\-Aln.\-h}
+\label{ProfileAln_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Profile\-Aln.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Profile\-Aln.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PROFILEALN\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PROFILEALN\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{keywordtype}{float} profile\_aln(\textcolor{keyword}{const} \textcolor{keywordtype}{float} *T1,
+00005 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seq1,
+00006 \textcolor{keyword}{const} \textcolor{keywordtype}{float} *T2,
+00007 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seq2);
+00008
+00009 \textcolor{keywordtype}{int} set\_paln\_params(\textcolor{keywordtype}{double} gap\_open,
+00010 \textcolor{keywordtype}{double} gap\_ext,
+00011 \textcolor{keywordtype}{double} seqweight,
+00012 \textcolor{keywordtype}{int} free\_ends);
+00013
+00014 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{RNAstruct_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-R\-N\-Astruct.h File Reference}
+\label{RNAstruct_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-R\-N\-Astruct.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-R\-N\-Astruct.\-h}}
+}
+
+
+Parsing and Coarse Graining of Structures.
+
+
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+char $\ast$ \hyperlink{RNAstruct_8h_a07b7e90e712559a1992fba3ac6d21bbd}{b2\-H\-I\-T} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Converts the full structure from bracket notation to the H\-I\-T notation including root. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}{b2\-C} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Converts the full structure from bracket notation to the a coarse grained notation using the 'H' 'B' 'I' 'M' and 'R' identifiers. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_a5cd2feb367feeacad0c03cb7ddba5f10}{b2\-Shapiro} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Converts the full structure from bracket notation to the {\itshape weighted} coarse grained notation using the 'H' 'B' 'I' 'M' 'S' 'E' and 'R' identifiers. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_a880d33066dd95441e5fbb73c57ed1c3e}{add\-\_\-root} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Adds a root to an un-\/rooted tree in any except bracket notation. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_abe3d815b420dc4553bfb23511198b4c6}{expand\-\_\-\-Shapiro} (const char $\ast$coarse)
+\begin{DoxyCompactList}\small\item\em Inserts missing 'S' identifiers in unweighted coarse grained structures as obtained from \hyperlink{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}{b2\-C()}. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{expand\-\_\-\-Full} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Convert the full structure from bracket notation to the expanded notation including root. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_a260c4b622093b76a883bf96628280de1}{unexpand\-\_\-\-Full} (const char $\ast$ffull)
+\begin{DoxyCompactList}\small\item\em Restores the bracket notation from an expanded full or H\-I\-T tree, that is any tree using only identifiers 'U' 'P' and 'R'. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{RNAstruct_8h_a09a80253ac7b6bae606871ba7c6e5136}{unweight} (const char $\ast$wcoarse)
+\begin{DoxyCompactList}\small\item\em Strip weights from any weighted tree. \end{DoxyCompactList}\item
+void \hyperlink{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}{unexpand\-\_\-aligned\-\_\-\-F} (char $\ast$align\mbox{[}2\mbox{]})
+\begin{DoxyCompactList}\small\item\em Converts two aligned structures in expanded notation. \end{DoxyCompactList}\item
+void \hyperlink{RNAstruct_8h_a3c79042e6bf6f01706bf30ec9e69e8ac}{parse\-\_\-structure} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Collects a statistic of structure elements of the full structure in bracket notation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{RNAstruct_8h_a3f31e0e48125601bfa57b52f8b038e8e}{int \hyperlink{RNAstruct_8h_a3f31e0e48125601bfa57b52f8b038e8e}{loop\-\_\-size} \mbox{[}S\-T\-R\-U\-C\mbox{]}}\label{RNAstruct_8h_a3f31e0e48125601bfa57b52f8b038e8e}
+
+\begin{DoxyCompactList}\small\item\em contains a list of all loop sizes. loop\-\_\-size\mbox{[}0\mbox{]} contains the number of external bases. \end{DoxyCompactList}\item
+\hypertarget{RNAstruct_8h_a8218c0d581a3fba2a1a56a196abe19a5}{int \hyperlink{RNAstruct_8h_a8218c0d581a3fba2a1a56a196abe19a5}{helix\-\_\-size} \mbox{[}S\-T\-R\-U\-C\mbox{]}}\label{RNAstruct_8h_a8218c0d581a3fba2a1a56a196abe19a5}
+
+\begin{DoxyCompactList}\small\item\em contains a list of all stack sizes. \end{DoxyCompactList}\item
+\hypertarget{RNAstruct_8h_aef14e2f8ab3f61e8e659ba6b9003b08a}{int \hyperlink{RNAstruct_8h_aef14e2f8ab3f61e8e659ba6b9003b08a}{loop\-\_\-degree} \mbox{[}S\-T\-R\-U\-C\mbox{]}}\label{RNAstruct_8h_aef14e2f8ab3f61e8e659ba6b9003b08a}
+
+\begin{DoxyCompactList}\small\item\em contains the corresponding list of loop degrees. \end{DoxyCompactList}\item
+\hypertarget{RNAstruct_8h_a439fcb9f8d4f9f4d2227fde5fbfecb30}{int \hyperlink{RNAstruct_8h_a439fcb9f8d4f9f4d2227fde5fbfecb30}{loops}}\label{RNAstruct_8h_a439fcb9f8d4f9f4d2227fde5fbfecb30}
+
+\begin{DoxyCompactList}\small\item\em contains the number of loops ( and therefore of stacks ). \end{DoxyCompactList}\item
+\hypertarget{RNAstruct_8h_add2f952597e02d66e1116a9d11d252d6}{int \hyperlink{RNAstruct_8h_add2f952597e02d66e1116a9d11d252d6}{unpaired}}\label{RNAstruct_8h_add2f952597e02d66e1116a9d11d252d6}
+
+\begin{DoxyCompactList}\small\item\em contains the number of unpaired bases. \end{DoxyCompactList}\item
+\hypertarget{RNAstruct_8h_a6341cbb704924824e0236c1dce791032}{int \hyperlink{RNAstruct_8h_a6341cbb704924824e0236c1dce791032}{pairs}}\label{RNAstruct_8h_a6341cbb704924824e0236c1dce791032}
+
+\begin{DoxyCompactList}\small\item\em contains the number of base pairs in the last parsed structure. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Parsing and Coarse Graining of Structures. \begin{DoxyVerb}Example:
+\end{DoxyVerb}
+ \begin{DoxyVerb}* .((..(((...)))..((..)))). is the bracket or full tree
+* becomes expanded: - expand_Full() -
+* ((U)(((U)(U)((((U)(U)(U)P)P)P)(U)(U)(((U)(U)P)P)P)P)(U)R)
+* HIT: - b2HIT() -
+* ((U1)((U2)((U3)P3)(U2)((U2)P2)P2)(U1)R)
+* Coarse: - b2C() -
+* ((H)((H)M)R)
+* becomes expanded: - expand_Shapiro() -
+* (((((H)S)((H)S)M)S)R)
+* weighted Shapiro: - b2Shapiro() -
+* ((((((H3)S3)((H2)S2)M4)S2)E2)R)
+* \end{DoxyVerb}
+
+
+\subsection{Function Documentation}
+\hypertarget{RNAstruct_8h_a07b7e90e712559a1992fba3ac6d21bbd}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!b2\-H\-I\-T@{b2\-H\-I\-T}}
+\index{b2\-H\-I\-T@{b2\-H\-I\-T}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{b2\-H\-I\-T}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ b2\-H\-I\-T (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a07b7e90e712559a1992fba3ac6d21bbd}
+
+
+Converts the full structure from bracket notation to the H\-I\-T notation including root.
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!b2\-C@{b2\-C}}
+\index{b2\-C@{b2\-C}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{b2\-C}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ b2\-C (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}
+
+
+Converts the full structure from bracket notation to the a coarse grained notation using the 'H' 'B' 'I' 'M' and 'R' identifiers.
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a5cd2feb367feeacad0c03cb7ddba5f10}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!b2\-Shapiro@{b2\-Shapiro}}
+\index{b2\-Shapiro@{b2\-Shapiro}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{b2\-Shapiro}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ b2\-Shapiro (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a5cd2feb367feeacad0c03cb7ddba5f10}
+
+
+Converts the full structure from bracket notation to the {\itshape weighted} coarse grained notation using the 'H' 'B' 'I' 'M' 'S' 'E' and 'R' identifiers.
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a880d33066dd95441e5fbb73c57ed1c3e}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!add\-\_\-root@{add\-\_\-root}}
+\index{add\-\_\-root@{add\-\_\-root}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{add\-\_\-root}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ add\-\_\-root (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a880d33066dd95441e5fbb73c57ed1c3e}
+
+
+Adds a root to an un-\/rooted tree in any except bracket notation.
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_abe3d815b420dc4553bfb23511198b4c6}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!expand\-\_\-\-Shapiro@{expand\-\_\-\-Shapiro}}
+\index{expand\-\_\-\-Shapiro@{expand\-\_\-\-Shapiro}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{expand\-\_\-\-Shapiro}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ expand\-\_\-\-Shapiro (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{coarse}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_abe3d815b420dc4553bfb23511198b4c6}
+
+
+Inserts missing 'S' identifiers in unweighted coarse grained structures as obtained from \hyperlink{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}{b2\-C()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em coarse} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!expand\-\_\-\-Full@{expand\-\_\-\-Full}}
+\index{expand\-\_\-\-Full@{expand\-\_\-\-Full}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{expand\-\_\-\-Full}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ expand\-\_\-\-Full (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}
+
+
+Convert the full structure from bracket notation to the expanded notation including root.
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a260c4b622093b76a883bf96628280de1}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!unexpand\-\_\-\-Full@{unexpand\-\_\-\-Full}}
+\index{unexpand\-\_\-\-Full@{unexpand\-\_\-\-Full}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{unexpand\-\_\-\-Full}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ unexpand\-\_\-\-Full (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{ffull}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a260c4b622093b76a883bf96628280de1}
+
+
+Restores the bracket notation from an expanded full or H\-I\-T tree, that is any tree using only identifiers 'U' 'P' and 'R'.
+
+
+\begin{DoxyParams}{Parameters}
+{\em ffull} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a09a80253ac7b6bae606871ba7c6e5136}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!unweight@{unweight}}
+\index{unweight@{unweight}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{unweight}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ unweight (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{wcoarse}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a09a80253ac7b6bae606871ba7c6e5136}
+
+
+Strip weights from any weighted tree.
+
+
+\begin{DoxyParams}{Parameters}
+{\em wcoarse} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!unexpand\-\_\-aligned\-\_\-\-F@{unexpand\-\_\-aligned\-\_\-\-F}}
+\index{unexpand\-\_\-aligned\-\_\-\-F@{unexpand\-\_\-aligned\-\_\-\-F}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{unexpand\-\_\-aligned\-\_\-\-F}]{\setlength{\rightskip}{0pt plus 5cm}void unexpand\-\_\-aligned\-\_\-\-F (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{align\mbox{[}2\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}
+
+
+Converts two aligned structures in expanded notation.
+
+Takes two aligned structures as produced by \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\-\_\-edit\-\_\-distance()} function back to bracket notation with '\-\_\-' as the gap character. The result overwrites the input.
+
+
+\begin{DoxyParams}{Parameters}
+{\em align} & \\
+\hline
+\end{DoxyParams}
+\hypertarget{RNAstruct_8h_a3c79042e6bf6f01706bf30ec9e69e8ac}{\index{R\-N\-Astruct.\-h@{R\-N\-Astruct.\-h}!parse\-\_\-structure@{parse\-\_\-structure}}
+\index{parse\-\_\-structure@{parse\-\_\-structure}!RNAstruct.h@{R\-N\-Astruct.\-h}}
+\subsubsection[{parse\-\_\-structure}]{\setlength{\rightskip}{0pt plus 5cm}void parse\-\_\-structure (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{RNAstruct_8h_a3c79042e6bf6f01706bf30ec9e69e8ac}
+
+
+Collects a statistic of structure elements of the full structure in bracket notation.
+
+The function writes to the following global variables\-: \hyperlink{RNAstruct_8h_a3f31e0e48125601bfa57b52f8b038e8e}{loop\-\_\-size}, \hyperlink{RNAstruct_8h_aef14e2f8ab3f61e8e659ba6b9003b08a}{loop\-\_\-degree}, \hyperlink{RNAstruct_8h_a8218c0d581a3fba2a1a56a196abe19a5}{helix\-\_\-size}, \hyperlink{RNAstruct_8h_a439fcb9f8d4f9f4d2227fde5fbfecb30}{loops}, \hyperlink{RNAstruct_8h_a6341cbb704924824e0236c1dce791032}{pairs}, \hyperlink{RNAstruct_8h_add2f952597e02d66e1116a9d11d252d6}{unpaired}
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
--- /dev/null
+\hypertarget{RNAstruct_8h}{\section{R\-N\-Astruct.\-h}
+\label{RNAstruct_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-R\-N\-Astruct.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-R\-N\-Astruct.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_RNASTRUCT\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_RNASTRUCT\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00024 \textcolor{preprocessor}{#define STRUC 2000}
+00025 \textcolor{preprocessor}{}
+00033 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a07b7e90e712559a1992fba3ac6d21bbd}{b2HIT}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure); \textcolor{comment}{/* Full -> HIT [incl. root] */}
+00034
+00042 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}{b2C}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure); \textcolor{comment}{/* Full -> Coarse [incl. root] */}
+00043
+00052 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a5cd2feb367feeacad0c03cb7ddba5f10}{b2Shapiro}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure); \textcolor{comment}{/* Full -> weighted Shapiro [i.r.] */}
+00053
+00060 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a880d33066dd95441e5fbb73c57ed1c3e}{add\_root}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure); \textcolor{comment}{/* \{Tree\} -> (\{Tree\}R) */}
+00061
+00069 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_abe3d815b420dc4553bfb23511198b4c6}{expand\_Shapiro}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *coarse);
+00070
+00071 \textcolor{comment}{/* add S for stacks to coarse struct */}
+00079 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{expand\_Full}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure); \textcolor{comment}{/* Full -> FFull */}
+00080
+00088 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a260c4b622093b76a883bf96628280de1}{unexpand\_Full}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *ffull); \textcolor{comment}{/* FFull -> Full */}
+00089
+00096 \textcolor{keywordtype}{char} *\hyperlink{RNAstruct_8h_a09a80253ac7b6bae606871ba7c6e5136}{unweight}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *wcoarse); \textcolor{comment}{/* remove weights from coarse struct */}
+00097
+00107 \textcolor{keywordtype}{void} \hyperlink{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}{unexpand\_aligned\_F}(\textcolor{keywordtype}{char} *align[2]);
+00108
+00119 \textcolor{keywordtype}{void} \hyperlink{RNAstruct_8h_a3c79042e6bf6f01706bf30ec9e69e8ac}{parse\_structure}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure); \textcolor{comment}{/* make structure statistics */}
+00120
+00125 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{RNAstruct_8h_a3f31e0e48125601bfa57b52f8b038e8e}{loop\_size}[STRUC]; \textcolor{comment}{/* loop sizes of a structure */}
+00126
+00130 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{RNAstruct_8h_a8218c0d581a3fba2a1a56a196abe19a5}{helix\_size}[STRUC]; \textcolor{comment}{/* helix sizes of a structure */}
+00131
+00135 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{RNAstruct_8h_aef14e2f8ab3f61e8e659ba6b9003b08a}{loop\_degree}[STRUC]; \textcolor{comment}{/* loop degrees of a structure */}
+00136
+00140 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{RNAstruct_8h_a439fcb9f8d4f9f4d2227fde5fbfecb30}{loops}; \textcolor{comment}{/* n of loops and stacks */}
+00141
+00145 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{RNAstruct_8h_add2f952597e02d66e1116a9d11d252d6}{unpaired};
+00146
+00150 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{RNAstruct_8h_a6341cbb704924824e0236c1dce791032}{pairs}; \textcolor{comment}{/* n of unpaired digits and pairs */}
+00151
+00152 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{ali__plex_8h}{\section{ali\-\_\-plex.\-h}
+\label{ali__plex_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/ali\-\_\-plex.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/ali\-\_\-plex.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_ALI\_PLEX\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_ALI\_PLEX\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00008 \hyperlink{structduplexT}{duplexT}** aliLduplexfold( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1[],
+00009 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2[],
+00010 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00011 \textcolor{keyword}{const} \textcolor{keywordtype}{int} extension\_cost,
+00012 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00013 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta,
+00014 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fast,
+00015 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_a,
+00016 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_b,
+00017 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_a,
+00018 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_b);
+00022 \hyperlink{structduplexT}{duplexT}** aliLduplexfold\_XS(\textcolor{keyword}{const} \textcolor{keywordtype}{char}* s1[],
+00023 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* s2[],
+00024 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s1,
+00025 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s2,
+00026 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00027 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00028 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta,
+00029 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fast,
+00030 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_a,
+00031 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_b,
+00032 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_a,
+00033 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_b);
+00034
+00035 \textcolor{comment}{/*}
+00036 \textcolor{comment}{extern duplexT aliduplexfold(const char *s1[], const char *s2[], const int extension\_cost);}
+00037 \textcolor{comment}{extern duplexT aliduplexfold\_XS(const char *s1[], const char *s2[],const int **access\_s1, }
+00038 \textcolor{comment}{const int **access\_s2, const int i\_pos, const int j\_pos, const int threshold);}
+00039 \textcolor{comment}{*/}
+00040 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{alifold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/alifold.h File Reference}
+\label{alifold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/alifold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/alifold.\-h}}
+}
+
+
+compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments
+
+
+Include dependency graph for alifold.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{alifold_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{alifold_8h_ac484c6bd429bafbd353b91044508d8e9}{update\-\_\-alifold\-\_\-params} (void)
+\begin{DoxyCompactList}\small\item\em Update the energy parameters for alifold function. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold} (const char $\ast$$\ast$strings, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute M\-F\-E and according consensus structure of an alignment of sequences. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__mfe__fold_gadbd3b0b1c144cbfb4efe704b2b260f96}{circalifold} (const char $\ast$$\ast$strings, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute M\-F\-E and according structure of an alignment of sequences assuming the sequences are circular instead of linear. \end{DoxyCompactList}\item
+\hypertarget{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{void \hyperlink{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{free\-\_\-alifold\-\_\-arrays} (void)}\label{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}
+
+\begin{DoxyCompactList}\small\item\em Free the memory occupied by M\-F\-E alifold functions. \end{DoxyCompactList}\item
+int \hyperlink{group__consensus__fold_gaa2d600be90844094ec145ea14a314d2f}{get\-\_\-mpi} (char $\ast$Alseq\mbox{[}$\,$\mbox{]}, int n\-\_\-seq, int length, int $\ast$mini)
+\begin{DoxyCompactList}\small\item\em Get the mean pairwise identity in steps from ?to?(ident) \end{DoxyCompactList}\item
+\hypertarget{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{float $\ast$$\ast$ \hyperlink{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{readribosum} (char $\ast$name)}\label{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}
+
+\begin{DoxyCompactList}\small\item\em Read a ribosum or other user-\/defined scoring matrix. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__fold_ga1c48869c03b49a342bf4cbdd61900081}{energy\-\_\-of\-\_\-alistruct} (const char $\ast$$\ast$sequences, const char $\ast$structure, int n\-\_\-seq, float $\ast$energy)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of a consensus structure given a set of aligned sequences. \end{DoxyCompactList}\item
+void \hyperlink{group__consensus__fold_gaa3e40277c837d6f7603afe319884c786}{encode\-\_\-ali\-\_\-sequence} (const char $\ast$sequence, short $\ast$S, short $\ast$s5, short $\ast$s3, char $\ast$ss, unsigned short $\ast$as, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Get arrays with encoded sequence of the alignment. \end{DoxyCompactList}\item
+void \hyperlink{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{alloc\-\_\-sequence\-\_\-arrays} (const char $\ast$$\ast$sequences, short $\ast$$\ast$$\ast$S, short $\ast$$\ast$$\ast$S5, short $\ast$$\ast$$\ast$S3, unsigned short $\ast$$\ast$$\ast$a2s, char $\ast$$\ast$$\ast$Ss, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Allocate memory for sequence array used to deal with aligned sequences. \end{DoxyCompactList}\item
+void \hyperlink{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}{free\-\_\-sequence\-\_\-arrays} (unsigned int n\-\_\-seq, short $\ast$$\ast$$\ast$S, short $\ast$$\ast$$\ast$S5, short $\ast$$\ast$$\ast$S3, unsigned short $\ast$$\ast$$\ast$a2s, char $\ast$$\ast$$\ast$Ss)
+\begin{DoxyCompactList}\small\item\em Free the memory of the sequence arrays used to deal with aligned sequences. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__pf__fold_ga4d2ff54d8210fc7cceeeff389d4dbd1d}{alipf\-\_\-fold\-\_\-par} (const char $\ast$$\ast$sequences, char $\ast$structure, \hyperlink{structplist}{plist} $\ast$$\ast$pl, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters, int calculate\-\_\-bppm, int is\-\_\-constrained, int is\-\_\-circular)
+\item
+float \hyperlink{group__consensus__pf__fold_gad32ded7d753ccaf211ab35782d1f42a9}{alipf\-\_\-fold} (const char $\ast$$\ast$sequences, char $\ast$structure, \hyperlink{structplist}{plist} $\ast$$\ast$pl)
+\begin{DoxyCompactList}\small\item\em The partition function version of \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold()} works in analogy to \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}. Pair probabilities and information about sequence covariations are returned via the 'pi' variable as a list of \hyperlink{structpair__info}{pair\-\_\-info} structs. The list is terminated by the first entry with pi.\-i = 0. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}{alipf\-\_\-circ\-\_\-fold} (const char $\ast$$\ast$sequences, char $\ast$structure, \hyperlink{structplist}{plist} $\ast$$\ast$pl)
+\item
+double $\ast$ \hyperlink{group__consensus__pf__fold_gadaaf83394216413505e48d913dbc1b4e}{export\-\_\-ali\-\_\-bppm} (void)
+\begin{DoxyCompactList}\small\item\em Get a pointer to the base pair probability array. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__consensus__stochbt_ga0df40248788f0fb17ebdc59d74116d1c}{alipbacktrack} (double $\ast$prob)
+\begin{DoxyCompactList}\small\item\em Sample a consensus secondary structure from the Boltzmann ensemble according its probability\par
+. \end{DoxyCompactList}\item
+int \hyperlink{group__consensus__fold_ga0cc49457fd79eeb04d4a7f97c868b09b}{get\-\_\-alipf\-\_\-arrays} (short $\ast$$\ast$$\ast$S\-\_\-p, short $\ast$$\ast$$\ast$S5\-\_\-p, short $\ast$$\ast$$\ast$S3\-\_\-p, unsigned short $\ast$$\ast$$\ast$a2s\-\_\-p, char $\ast$$\ast$$\ast$Ss\-\_\-p, double $\ast$$\ast$qb\-\_\-p, double $\ast$$\ast$qm\-\_\-p, double $\ast$$\ast$q1k\-\_\-p, double $\ast$$\ast$qln\-\_\-p, short $\ast$$\ast$pscore)
+\begin{DoxyCompactList}\small\item\em Get pointers to (almost) all relavant arrays used in alifold's partition function computation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+double \hyperlink{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}{cv\-\_\-fact}
+\begin{DoxyCompactList}\small\item\em This variable controls the weight of the covariance term in the energy function of alignment folding algorithms. \end{DoxyCompactList}\item
+double \hyperlink{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}{nc\-\_\-fact}
+\begin{DoxyCompactList}\small\item\em This variable controls the magnitude of the penalty for non-\/compatible sequences in the covariance term of alignment folding algorithms. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments
+
+\subsection{Function Documentation}
+\hypertarget{alifold_8h_ac484c6bd429bafbd353b91044508d8e9}{\index{alifold.\-h@{alifold.\-h}!update\-\_\-alifold\-\_\-params@{update\-\_\-alifold\-\_\-params}}
+\index{update\-\_\-alifold\-\_\-params@{update\-\_\-alifold\-\_\-params}!alifold.h@{alifold.\-h}}
+\subsubsection[{update\-\_\-alifold\-\_\-params}]{\setlength{\rightskip}{0pt plus 5cm}void update\-\_\-alifold\-\_\-params (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{alifold_8h_ac484c6bd429bafbd353b91044508d8e9}
+
+
+Update the energy parameters for alifold function.
+
+Call this to recalculate the pair matrix and energy parameters after a change in folding parameters like \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}
\ No newline at end of file
--- /dev/null
+517848ddfa8ac409e3b4caa9dcc367b1
\ No newline at end of file
--- /dev/null
+\hypertarget{alifold_8h}{\section{alifold.\-h}
+\label{alifold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/alifold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/alifold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_ALIFOLD\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_ALIFOLD\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00043 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}{cv\_fact};
+00052 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}{nc\_fact};
+00053
+00054 \textcolor{comment}{/*}
+00055 \textcolor{comment}{##############################################}
+00056 \textcolor{comment}{# MFE VARIANTS OF THE ALIFOLD IMPLEMENTATION #}
+00057 \textcolor{comment}{##############################################}
+00058 \textcolor{comment}{*/}
+00059
+00066 \textcolor{keywordtype}{void} \hyperlink{alifold_8h_ac484c6bd429bafbd353b91044508d8e9}{update\_alifold\_params}(\textcolor{keywordtype}{void});
+00067
+00068
+00086 \textcolor{keywordtype}{float} \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **strings,
+00087 \textcolor{keywordtype}{char} *structure);
+00088
+00089
+00100 \textcolor{keywordtype}{float} \hyperlink{group__consensus__mfe__fold_gadbd3b0b1c144cbfb4efe704b2b260f96}{circalifold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **strings,
+00101 \textcolor{keywordtype}{char} *structure);
+00102
+00109 \textcolor{keywordtype}{void} \hyperlink{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{free\_alifold\_arrays}(\textcolor{keywordtype}{void});
+00110
+00122 \textcolor{keywordtype}{int} \hyperlink{group__consensus__fold_gaa2d600be90844094ec145ea14a314d2f}{get\_mpi}(\textcolor{keywordtype}{char} *Alseq[],
+00123 \textcolor{keywordtype}{int} n\_seq,
+00124 \textcolor{keywordtype}{int} length,
+00125 \textcolor{keywordtype}{int} *mini);
+00126
+00133 \textcolor{keywordtype}{float} **\hyperlink{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{readribosum}(\textcolor{keywordtype}{char} *name);
+00134
+00148 \textcolor{keywordtype}{float} \hyperlink{group__consensus__fold_ga1c48869c03b49a342bf4cbdd61900081}{energy\_of\_alistruct}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequences,
+00149 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00150 \textcolor{keywordtype}{int} n\_seq,
+00151 \textcolor{keywordtype}{float} *energy);
+00152
+00153 \textcolor{keywordtype}{float} energy\_of\_ali\_gquad\_structure(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequences,
+00154 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00155 \textcolor{keywordtype}{int} n\_seq,
+00156 \textcolor{keywordtype}{float} *energy);
+00157
+00158 \textcolor{comment}{/*}
+00159 \textcolor{comment}{#############################################################}
+00160 \textcolor{comment}{# some helper functions that might be useful in the library #}
+00161 \textcolor{comment}{#############################################################}
+00162 \textcolor{comment}{*/}
+00163
+00180 \textcolor{keywordtype}{void} \hyperlink{group__consensus__fold_gaa3e40277c837d6f7603afe319884c786}{encode\_ali\_sequence}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00181 \textcolor{keywordtype}{short} *S,
+00182 \textcolor{keywordtype}{short} *s5,
+00183 \textcolor{keywordtype}{short} *s3,
+00184 \textcolor{keywordtype}{char} *ss,
+00185 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{short} *as,
+00186 \textcolor{keywordtype}{int} circ);
+00187
+00205 \textcolor{keywordtype}{void} \hyperlink{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{alloc\_sequence\_arrays}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequences,
+00206 \textcolor{keywordtype}{short} ***S,
+00207 \textcolor{keywordtype}{short} ***S5,
+00208 \textcolor{keywordtype}{short} ***S3,
+00209 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{short} ***a2s,
+00210 \textcolor{keywordtype}{char} ***Ss,
+00211 \textcolor{keywordtype}{int} circ);
+00212
+00229 \textcolor{keywordtype}{void} \hyperlink{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}{free\_sequence\_arrays}( \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} n\_seq,
+00230 \textcolor{keywordtype}{short} ***S,
+00231 \textcolor{keywordtype}{short} ***S5,
+00232 \textcolor{keywordtype}{short} ***S3,
+00233 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{short} ***a2s,
+00234 \textcolor{keywordtype}{char} ***Ss);
+00235
+00236 \textcolor{comment}{/*}
+00237 \textcolor{comment}{#############################################################}
+00238 \textcolor{comment}{# PARTITION FUNCTION VARIANTS OF THE ALIFOLD IMPLEMENTATION #}
+00239 \textcolor{comment}{#############################################################}
+00240 \textcolor{comment}{*/}
+00241
+00242
+00265 \textcolor{keywordtype}{float} \hyperlink{group__consensus__pf__fold_ga4d2ff54d8210fc7cceeeff389d4dbd1d}{alipf\_fold\_par}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequences,
+00266 \textcolor{keywordtype}{char} *structure,
+00267 \hyperlink{structplist}{plist} **pl,
+00268 \hyperlink{structpf__paramT}{pf\_paramT} *parameters,
+00269 \textcolor{keywordtype}{int} calculate\_bppm,
+00270 \textcolor{keywordtype}{int} is\_constrained,
+00271 \textcolor{keywordtype}{int} is\_circular);
+00272
+00289 \textcolor{keywordtype}{float} \hyperlink{group__consensus__pf__fold_gad32ded7d753ccaf211ab35782d1f42a9}{alipf\_fold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequences,
+00290 \textcolor{keywordtype}{char} *structure,
+00291 \hyperlink{structplist}{plist} **pl);
+00292
+00303 \textcolor{keywordtype}{float} \hyperlink{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}{alipf\_circ\_fold}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequences,
+00304 \textcolor{keywordtype}{char} *structure,
+00305 \hyperlink{structplist}{plist} **pl);
+00306
+00307
+00319 FLT\_OR\_DBL *\hyperlink{group__consensus__pf__fold_gadaaf83394216413505e48d913dbc1b4e}{export\_ali\_bppm}(\textcolor{keywordtype}{void});
+00320
+00327 \textcolor{keywordtype}{void} free\_alipf\_arrays(\textcolor{keywordtype}{void});
+00328
+00344 \textcolor{keywordtype}{char} *\hyperlink{group__consensus__stochbt_ga0df40248788f0fb17ebdc59d74116d1c}{alipbacktrack}(\textcolor{keywordtype}{double} *prob);
+00345
+00346
+00367 \textcolor{keywordtype}{int} \hyperlink{group__consensus__fold_ga0cc49457fd79eeb04d4a7f97c868b09b}{get\_alipf\_arrays}(\textcolor{keywordtype}{short} ***S\_p,
+00368 \textcolor{keywordtype}{short} ***S5\_p,
+00369 \textcolor{keywordtype}{short} ***S3\_p,
+00370 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{short} ***a2s\_p,
+00371 \textcolor{keywordtype}{char} ***Ss\_p,
+00372 FLT\_OR\_DBL **qb\_p,
+00373 FLT\_OR\_DBL **qm\_p,
+00374 FLT\_OR\_DBL **q1k\_p,
+00375 FLT\_OR\_DBL **qln\_p,
+00376 \textcolor{keywordtype}{short} **pscore);
+00377
+00378 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{aln__util_8h}{\section{aln\-\_\-util.\-h}
+\label{aln__util_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/aln\-\_\-util.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/aln\-\_\-util.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_ALN\_UTIL\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_ALN\_UTIL\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{keywordtype}{int} read\_clustal( FILE *clust,
+00005 \textcolor{keywordtype}{char} *AlignedSeqs[],
+00006 \textcolor{keywordtype}{char} *names[]);
+00007 \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@notnull@*/} \textcolor{keywordtype}{char} *consensus(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *AS[]);
+00008 \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@notnull@*/} \textcolor{keywordtype}{char} *consens\_mis(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *AS[]);
+00009
+00010 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\section{Data Structures}
+Here are the data structures with brief descriptions\-:\begin{DoxyCompactList}
+\item\contentsline{section}{\hyperlink{structbondT}{bond\-T} \\*Base pair }{\pageref{structbondT}}{}
+\item\contentsline{section}{\hyperlink{structbondTEn}{bond\-T\-En} \\*Base pair with associated energy }{\pageref{structbondTEn}}{}
+\item\contentsline{section}{\hyperlink{structcofoldF}{cofold\-F} }{\pageref{structcofoldF}}{}
+\item\contentsline{section}{\hyperlink{structConcEnt}{Conc\-Ent} }{\pageref{structConcEnt}}{}
+\item\contentsline{section}{\hyperlink{structconstrain}{constrain} \\*Constraints for cofolding }{\pageref{structconstrain}}{}
+\item\contentsline{section}{\hyperlink{structCOORDINATE}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E} \\*This is a workarround for the S\-W\-I\-G Perl Wrapper R\-N\-A plot function that returns an array of type \hyperlink{structCOORDINATE}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E} }{\pageref{structCOORDINATE}}{}
+\item\contentsline{section}{\hyperlink{structcpair}{cpair} \\*This datastructure is used as input parameter in functions of P\-S\-\_\-dot.\-c }{\pageref{structcpair}}{}
+\item\contentsline{section}{\hyperlink{structduplexT}{duplex\-T} }{\pageref{structduplexT}}{}
+\item\contentsline{section}{\hyperlink{structdupVar}{dup\-Var} }{\pageref{structdupVar}}{}
+\item\contentsline{section}{\hyperlink{structfolden}{folden} }{\pageref{structfolden}}{}
+\item\contentsline{section}{\hyperlink{structinteract}{interact} }{\pageref{structinteract}}{}
+\item\contentsline{section}{\hyperlink{structintermediate__t}{intermediate\-\_\-t} }{\pageref{structintermediate__t}}{}
+\item\contentsline{section}{\hyperlink{structINTERVAL}{I\-N\-T\-E\-R\-V\-A\-L} \\*Sequence interval stack element used in subopt.\-c }{\pageref{structINTERVAL}}{}
+\item\contentsline{section}{\hyperlink{structLIST}{L\-I\-S\-T} }{\pageref{structLIST}}{}
+\item\contentsline{section}{\hyperlink{structLST__BUCKET}{L\-S\-T\-\_\-\-B\-U\-C\-K\-E\-T} }{\pageref{structLST__BUCKET}}{}
+\item\contentsline{section}{\hyperlink{structmodel__detailsT}{model\-\_\-details\-T} \\*The data structure that contains the complete model details used throughout the calculations }{\pageref{structmodel__detailsT}}{}
+\item\contentsline{section}{\hyperlink{structmove__t}{move\-\_\-t} }{\pageref{structmove__t}}{}
+\item\contentsline{section}{\hyperlink{structPAIR}{P\-A\-I\-R} \\*Base pair data structure used in subopt.\-c }{\pageref{structPAIR}}{}
+\item\contentsline{section}{\hyperlink{structpair__info}{pair\-\_\-info} \\*A base pair info structure }{\pageref{structpair__info}}{}
+\item\contentsline{section}{\hyperlink{structpairpro}{pairpro} }{\pageref{structpairpro}}{}
+\item\contentsline{section}{\hyperlink{structparamT}{param\-T} \\*The datastructure that contains temperature scaled energy parameters }{\pageref{structparamT}}{}
+\item\contentsline{section}{\hyperlink{structpath__t}{path\-\_\-t} }{\pageref{structpath__t}}{}
+\item\contentsline{section}{\hyperlink{structpf__paramT}{pf\-\_\-param\-T} \\*The datastructure that contains temperature scaled Boltzmann weights of the energy parameters }{\pageref{structpf__paramT}}{}
+\item\contentsline{section}{\hyperlink{structplist}{plist} \\*This datastructure is used as input parameter in functions of \hyperlink{PS__dot_8h}{P\-S\-\_\-dot.\-h} and others }{\pageref{structplist}}{}
+\item\contentsline{section}{\hyperlink{structPostorder__list}{Postorder\-\_\-list} }{\pageref{structPostorder__list}}{}
+\item\contentsline{section}{\hyperlink{structpu__contrib}{pu\-\_\-contrib} \\*Contributions to p\-\_\-u }{\pageref{structpu__contrib}}{}
+\item\contentsline{section}{\hyperlink{structpu__out}{pu\-\_\-out} \\*Collection of all free\-\_\-energy of beeing unpaired values for output }{\pageref{structpu__out}}{}
+\item\contentsline{section}{\hyperlink{structsect}{sect} \\*Stack of partial structures for backtracking }{\pageref{structsect}}{}
+\item\contentsline{section}{\hyperlink{structsnoopT}{snoop\-T} }{\pageref{structsnoopT}}{}
+\item\contentsline{section}{\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} \\*Solution element from subopt.\-c }{\pageref{structSOLUTION}}{}
+\item\contentsline{section}{\hyperlink{structstruct__en}{struct\-\_\-en} }{\pageref{structstruct__en}}{}
+\item\contentsline{section}{\hyperlink{structsvm__model}{svm\-\_\-model} }{\pageref{structsvm__model}}{}
+\item\contentsline{section}{\hyperlink{structswString}{sw\-String} }{\pageref{structswString}}{}
+\item\contentsline{section}{\hyperlink{structTree}{Tree} }{\pageref{structTree}}{}
+\item\contentsline{section}{\hyperlink{structTwoDfold__solution}{Two\-Dfold\-\_\-solution} \\*Solution element returned from Two\-Dfold\-List }{\pageref{structTwoDfold__solution}}{}
+\item\contentsline{section}{\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} \\*Variables compound for 2\-Dfold M\-F\-E folding }{\pageref{structTwoDfold__vars}}{}
+\item\contentsline{section}{\hyperlink{structTwoDpfold__solution}{Two\-Dpfold\-\_\-solution} \\*Solution element returned from Two\-Dpfold\-List }{\pageref{structTwoDpfold__solution}}{}
+\item\contentsline{section}{\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} \\*Variables compound for 2\-Dfold partition function folding }{\pageref{structTwoDpfold__vars}}{}
+\end{DoxyCompactList}
--- /dev/null
+
+\begin{DoxyDescription}
+\item[\label{_CITEREF_bernhart:2006}%
+\mbox{[}1\mbox{]}]S.\-H. Bernhart, H.~Tafer, U.~M\"{u}ckstein, C.~Flamm, P.\-F. Stadler, and I.\-L. Hofacker. Partition function and base pairing probabilities of R\-N\-A heterodimers. {\itshape Algorithms for Molecular Biology}, 1(1)\-:3, 2006.
+
+
+\item[\label{_CITEREF_bernhart:2008}%
+\mbox{[}2\mbox{]}]S.\-H. Bernhart, I.\-L. Hofacker, S.~Will, A.\-R. Gruber, and P.\-F. Stadler. R\-N\-Aalifold\-: Improved consensus structure prediction for R\-N\-A alignments. {\itshape B\-M\-C bioinformatics}, 9(1)\-:474, 2008.
+
+
+\item[\label{_CITEREF_fontana:1993b}%
+\mbox{[}3\mbox{]}]W.~Fontana, P.\-F. Stadler, E.\-G. Bornberg-\/\-Bauer, T.~Griesmacher, I.\-L. Hofacker, M.~Tacker, P.~Tarazona, E.\-D. Weinberger, and P.~Schuster. R\-N\-A folding and combinatory landscapes. {\itshape Physical review E}, 47(3)\-:2083, 1993.
+
+
+\item[\label{_CITEREF_hofacker:2006}%
+\mbox{[}4\mbox{]}]I.\-L. Hofacker and P.\-F. Stadler. Memory efficient folding algorithms for circular R\-N\-A secondary structures. {\itshape Bioinformatics}, 22(10)\-:1172--1176, 2006.
+
+
+\item[\label{_CITEREF_hofacker:1994}%
+\mbox{[}5\mbox{]}]I.\-L. Hofacker, W.~Fontana, P.\-F. Stadler, L.\-S. Bonhoeffer, M.~Tacker, and P.~Schuster. Fast folding and comparison of R\-N\-A secondary structures. {\itshape Monatshefte f\"{u}r Chemie/\-Chemical Monthly}, 125(2)\-:167--188, 1994.
+
+
+\item[\label{_CITEREF_hofacker:2002}%
+\mbox{[}6\mbox{]}]I.\-L. Hofacker, M.~Fekete, and P.\-F. Stadler. Secondary structure prediction for aligned R\-N\-A sequences. {\itshape Journal of molecular biology}, 319(5)\-:1059--1066, 2002.
+
+
+\item[\label{_CITEREF_lorenz:2009}%
+\mbox{[}7\mbox{]}]Ronny Lorenz, Christoph Flamm, and Ivo~L. Hofacker. 2d projections of R\-N\-A folding landscapes. In Ivo Grosse, Steffen Neumann, Stefan Posch, Falk Schreiber, and Peter~F. Stadler, editors, {\itshape German Conference on Bioinformatics 2009}, volume 157 of {\itshape Lecture Notes in Informatics}, pages 11--20, Bonn, September 2009. Gesellschaft f. Informatik.
+
+
+\item[\label{_CITEREF_lorenz:2011}%
+\mbox{[}8\mbox{]}]Ronny Lorenz, Stephan~H. Bernhart, Christian H\"{o}ner~zu Siederdissen, Hakim Tafer, Christoph Flamm, Peter~F. Stadler, and Ivo~L. Hofacker. Vienna\-R\-N\-A package 2.\-0. {\itshape Algorithms for Molecular Biology}, 6(1)\-:26, 2011.
+
+
+\item[\label{_CITEREF_mathews:2004}%
+\mbox{[}9\mbox{]}]D.\-H. Mathews, M.\-D. Disney, J.\-L. Childs, S.\-J. Schroeder, M.~Zuker, and D.\-H. Turner. Incorporating chemical modification constraints into a dynamic programming algorithm for prediction of R\-N\-A secondary structure. {\itshape Proceedings of the National Academy of Sciences of the United States of America}, 101(19)\-:7287, 2004.
+
+
+\item[\label{_CITEREF_mccaskill:1990}%
+\mbox{[}10\mbox{]}]J.\-S. Mc\-Caskill. The equilibrium partition function and base pair binding probabilities for R\-N\-A secondary structure. {\itshape Biopolymers}, 29(6-\/7)\-:1105--1119, 1990.
+
+
+\item[\label{_CITEREF_shapiro:1990}%
+\mbox{[}11\mbox{]}]B.\-A. Shapiro and K.~Zhang. Comparing multiple R\-N\-A secondary structures using tree comparisons. {\itshape Computer applications in the biosciences\-: C\-A\-B\-I\-O\-S}, 6(4)\-:309--318, 1990.
+
+
+\item[\label{_CITEREF_shapiro:1988}%
+\mbox{[}12\mbox{]}]B.\-A. Shapiro. An algorithm for comparing multiple R\-N\-A secondary structures. {\itshape Computer applications in the biosciences\-: C\-A\-B\-I\-O\-S}, 4(3)\-:387--393, 1988.
+
+
+\item[\label{_CITEREF_turner:2010}%
+\mbox{[}13\mbox{]}]D.\-H. Turner and D.\-H. Mathews. N\-N\-D\-B\-: The nearest neighbor parameter database for predicting stability of nucleic acid secondary structure. {\itshape Nucleic Acids Research}, 38(suppl 1)\-:D280--D282, 2010.
+
+
+\item[\label{_CITEREF_zuker:1981}%
+\mbox{[}14\mbox{]}]M.~Zuker and P.~Stiegler. Optimal computer folding of large R\-N\-A sequences using thermodynamics and auxiliary information. {\itshape Nucleic acids research}, 9(1)\-:133--148, 1981.
+
+
+\end{DoxyDescription}
\ No newline at end of file
--- /dev/null
+\hypertarget{cofold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/cofold.h File Reference}
+\label{cofold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/cofold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/cofold.\-h}}
+}
+
+
+M\-F\-E version of cofolding routines.
+
+
+Include dependency graph for cofold.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{cofold_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{cofold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute the minimum free energy of two interacting R\-N\-A molecules. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{float \hyperlink{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{cofold\-\_\-par} (const char $\ast$string, char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int is\-\_\-constrained)}\label{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}
+
+\begin{DoxyCompactList}\small\item\em Compute the minimum free energy of two interacting R\-N\-A molecules. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{void \hyperlink{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{free\-\_\-co\-\_\-arrays} (void)}\label{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}
+
+\begin{DoxyCompactList}\small\item\em Free memory occupied by \hyperlink{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{cofold()} \end{DoxyCompactList}\item
+\hypertarget{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{void \hyperlink{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{update\-\_\-cofold\-\_\-params} (void)}\label{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}
+
+\begin{DoxyCompactList}\small\item\em Recalculate parameters. \end{DoxyCompactList}\item
+void \hyperlink{group__mfe__cofold_ga5f5bf4df35d0554f6ace9579f8744c48}{export\-\_\-cofold\-\_\-arrays\-\_\-gq} (int $\ast$$\ast$f5\-\_\-p, int $\ast$$\ast$c\-\_\-p, int $\ast$$\ast$f\-M\-L\-\_\-p, int $\ast$$\ast$f\-M1\-\_\-p, int $\ast$$\ast$fc\-\_\-p, int $\ast$$\ast$ggg\-\_\-p, int $\ast$$\ast$indx\-\_\-p, char $\ast$$\ast$ptype\-\_\-p)
+\begin{DoxyCompactList}\small\item\em Export the arrays of partition function cofold (with gquadruplex support) \end{DoxyCompactList}\item
+void \hyperlink{group__mfe__cofold_ga5cb6b59983f1f74ccc00b9b9c4e84482}{export\-\_\-cofold\-\_\-arrays} (int $\ast$$\ast$f5\-\_\-p, int $\ast$$\ast$c\-\_\-p, int $\ast$$\ast$f\-M\-L\-\_\-p, int $\ast$$\ast$f\-M1\-\_\-p, int $\ast$$\ast$fc\-\_\-p, int $\ast$$\ast$indx\-\_\-p, char $\ast$$\ast$ptype\-\_\-p)
+\begin{DoxyCompactList}\small\item\em Export the arrays of partition function cofold. \end{DoxyCompactList}\item
+\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__zuker_ga0d5104e3ecf119d8eabd40aa5fe47f90}{zukersubopt} (const char $\ast$string)
+\begin{DoxyCompactList}\small\item\em Compute Zuker type suboptimal structures. \end{DoxyCompactList}\item
+\hypertarget{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{zukersubopt\-\_\-par} (const char $\ast$string, \hyperlink{structparamT}{param\-T} $\ast$parameters)}\label{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}
+
+\begin{DoxyCompactList}\small\item\em Compute Zuker type suboptimal structures. \end{DoxyCompactList}\item
+void \hyperlink{cofold_8h_a4958b517c613e4d2afd5bce6c1060a79}{get\-\_\-monomere\-\_\-mfes} (float $\ast$e1, float $\ast$e2)
+\begin{DoxyCompactList}\small\item\em get\-\_\-monomer\-\_\-free\-\_\-energies \end{DoxyCompactList}\item
+void \hyperlink{cofold_8h_afee0c32208aa2ac97338b6e3fbad7fa5}{initialize\-\_\-cofold} (int length)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+M\-F\-E version of cofolding routines. This file includes (almost) all function declarations within the {\bfseries R\-N\-Alib} that are related to M\-F\-E Cofolding... This also includes the Zuker suboptimals calculations, since they are implemented using the cofold routines.
+
+\subsection{Function Documentation}
+\hypertarget{cofold_8h_a4958b517c613e4d2afd5bce6c1060a79}{\index{cofold.\-h@{cofold.\-h}!get\-\_\-monomere\-\_\-mfes@{get\-\_\-monomere\-\_\-mfes}}
+\index{get\-\_\-monomere\-\_\-mfes@{get\-\_\-monomere\-\_\-mfes}!cofold.h@{cofold.\-h}}
+\subsubsection[{get\-\_\-monomere\-\_\-mfes}]{\setlength{\rightskip}{0pt plus 5cm}void get\-\_\-monomere\-\_\-mfes (
+\begin{DoxyParamCaption}
+\item[{float $\ast$}]{e1, }
+\item[{float $\ast$}]{e2}
+\end{DoxyParamCaption}
+)}}\label{cofold_8h_a4958b517c613e4d2afd5bce6c1060a79}
+
+
+get\-\_\-monomer\-\_\-free\-\_\-energies
+
+Export monomer free energies out of cofold arrays
+
+
+\begin{DoxyParams}{Parameters}
+{\em e1} & A pointer to a variable where the energy of molecule A will be written to \\
+\hline
+{\em e2} & A pointer to a variable where the energy of molecule B will be written to \\
+\hline
+\end{DoxyParams}
+\hypertarget{cofold_8h_afee0c32208aa2ac97338b6e3fbad7fa5}{\index{cofold.\-h@{cofold.\-h}!initialize\-\_\-cofold@{initialize\-\_\-cofold}}
+\index{initialize\-\_\-cofold@{initialize\-\_\-cofold}!cofold.h@{cofold.\-h}}
+\subsubsection[{initialize\-\_\-cofold}]{\setlength{\rightskip}{0pt plus 5cm}void initialize\-\_\-cofold (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{cofold_8h_afee0c32208aa2ac97338b6e3fbad7fa5}
+allocate arrays for folding \begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000001}{Deprecated}]\{This function is obsolete and will be removed soon!\} \end{DoxyRefDesc}
--- /dev/null
+06121f252e256c0b9e9a7431524d40c2
\ No newline at end of file
--- /dev/null
+\hypertarget{cofold_8h}{\section{cofold.\-h}
+\label{cofold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/cofold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/cofold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_COFOLD\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_COFOLD\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00011 \textcolor{preprocessor}{}
+00065 \textcolor{keywordtype}{float} \hyperlink{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{cofold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00066 \textcolor{keywordtype}{char} *structure);
+00067
+00072 \textcolor{keywordtype}{float} \hyperlink{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{cofold\_par}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00073 \textcolor{keywordtype}{char} *structure,
+00074 \hyperlink{structparamT}{paramT} *parameters,
+00075 \textcolor{keywordtype}{int} is\_constrained);
+00076
+00080 \textcolor{keywordtype}{void} \hyperlink{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{free\_co\_arrays}(\textcolor{keywordtype}{void});
+00081
+00085 \textcolor{keywordtype}{void} \hyperlink{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{update\_cofold\_params}(\textcolor{keywordtype}{void});
+00086
+00087 \textcolor{keywordtype}{void} update\_cofold\_params\_par(\hyperlink{structparamT}{paramT} *parameters);
+00088
+00089
+00105 \textcolor{keywordtype}{void} \hyperlink{group__mfe__cofold_ga5f5bf4df35d0554f6ace9579f8744c48}{export\_cofold\_arrays\_gq}( \textcolor{keywordtype}{int} **f5\_p,
+00106 \textcolor{keywordtype}{int} **c\_p,
+00107 \textcolor{keywordtype}{int} **fML\_p,
+00108 \textcolor{keywordtype}{int} **fM1\_p,
+00109 \textcolor{keywordtype}{int} **fc\_p,
+00110 \textcolor{keywordtype}{int} **ggg\_p,
+00111 \textcolor{keywordtype}{int} **indx\_p,
+00112 \textcolor{keywordtype}{char} **ptype\_p);
+00113
+00128 \textcolor{keywordtype}{void} \hyperlink{group__mfe__cofold_ga5cb6b59983f1f74ccc00b9b9c4e84482}{export\_cofold\_arrays}(\textcolor{keywordtype}{int} **f5\_p,
+00129 \textcolor{keywordtype}{int} **c\_p,
+00130 \textcolor{keywordtype}{int} **fML\_p,
+00131 \textcolor{keywordtype}{int} **fM1\_p,
+00132 \textcolor{keywordtype}{int} **fc\_p,
+00133 \textcolor{keywordtype}{int} **indx\_p,
+00134 \textcolor{keywordtype}{char} **ptype\_p);
+00135
+00136
+00153 \hyperlink{structSOLUTION}{SOLUTION} *\hyperlink{group__subopt__zuker_ga0d5104e3ecf119d8eabd40aa5fe47f90}{zukersubopt}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string});
+00154
+00161 \hyperlink{structSOLUTION}{SOLUTION} *\hyperlink{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{zukersubopt\_par}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00162 \hyperlink{structparamT}{paramT} *parameters);
+00163
+00172 \textcolor{keywordtype}{void} \hyperlink{cofold_8h_a4958b517c613e4d2afd5bce6c1060a79}{get\_monomere\_mfes}( \textcolor{keywordtype}{float} *e1,
+00173 \textcolor{keywordtype}{float} *e2);
+00174
+00175
+00180 DEPRECATED(\textcolor{keywordtype}{void} \hyperlink{cofold_8h_afee0c32208aa2ac97338b6e3fbad7fa5}{initialize\_cofold}(\textcolor{keywordtype}{int} length));
+00181
+00182 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{convert__epars_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/convert\-\_\-epars.h File Reference}
+\label{convert__epars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/convert\-\_\-epars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/convert\-\_\-epars.\-h}}
+}
+
+
+Functions and definitions for energy parameter file format conversion.
+
+
+\subsection*{Macros}
+\begin{DoxyCompactItemize}
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L}~1\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P}~2\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K}~4\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P}~8\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T}~16\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N}~32\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23}~64\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I}~128\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T}~256\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5}~512\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3}~1024\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11}~2048\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21}~4096\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22}~8192\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E}~16384\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T}~32768\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L}~65536\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C}~131072\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P}~262144\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A}~524288\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O}~1048576\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P}~2097152\-U
+\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{group__energy__parameters__convert_gafbe538bc4eb2cf2a33326e1010005f8a}{convert\-\_\-parameter\-\_\-file} (const char $\ast$iname, const char $\ast$oname, unsigned int options)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Functions and definitions for energy parameter file format conversion.
\ No newline at end of file
--- /dev/null
+\hypertarget{convert__epars_8h}{\section{convert\-\_\-epars.\-h}
+\label{convert__epars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/convert\-\_\-epars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/convert\-\_\-epars.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_CONVERT\_EPARS\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_CONVERT\_EPARS\_H\_\_}
+00003 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00018}{}\hyperlink{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}{00018} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_ALL 1U}
+00019 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00020}{}\hyperlink{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}{00020} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_HP 2U}
+00021 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00022}{}\hyperlink{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}{00022} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_STACK 4U}
+00023 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00024}{}\hyperlink{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}{00024} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MM\_HP 8U}
+00025 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00026}{}\hyperlink{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}{00026} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MM\_INT 16U}
+00027 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00028}{}\hyperlink{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}{00028} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MM\_INT\_1N 32U}
+00029 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00030}{}\hyperlink{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}{00030} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MM\_INT\_23 64U}
+00031 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00032}{}\hyperlink{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}{00032} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MM\_MULTI 128U}
+00033 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00034}{}\hyperlink{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}{00034} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MM\_EXT 256U}
+00035 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00036}{}\hyperlink{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}{00036} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_DANGLE5 512U}
+00037 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00038}{}\hyperlink{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}{00038} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_DANGLE3 1024U}
+00039 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00040}{}\hyperlink{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}{00040} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_INT\_11 2048U}
+00041 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00042}{}\hyperlink{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}{00042} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_INT\_21 4096U}
+00043 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00044}{}\hyperlink{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}{00044} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_INT\_22 8192U}
+00045 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00046}{}\hyperlink{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}{00046} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_BULGE 16384U}
+00047 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00048}{}\hyperlink{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}{00048} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_INT 32768U}
+00049 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00050}{}\hyperlink{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}{00050} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_ML 65536U}
+00051 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00052}{}\hyperlink{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}{00052} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_MISC 131072U}
+00053 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00054}{}\hyperlink{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}{00054} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_SPECIAL\_HP 262144U}
+00055 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00056}{}\hyperlink{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}{00056} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_VANILLA 524288U}
+00057 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00058}{}\hyperlink{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}{00058} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_NINIO 1048576U}
+00059 \textcolor{preprocessor}{}
+\hypertarget{convert__epars_8h_source_l00060}{}\hyperlink{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{00060} \textcolor{preprocessor}{#define VRNA\_CONVERT\_OUTPUT\_DUMP 2097152U}
+00061 \textcolor{preprocessor}{}
+00084 \textcolor{keywordtype}{void} \hyperlink{group__energy__parameters__convert_gafbe538bc4eb2cf2a33326e1010005f8a}{convert\_parameter\_file}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *iname,
+00085 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *oname,
+00086 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} options);
+00087
+00091 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{data__structures_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/data\-\_\-structures.h File Reference}
+\label{data__structures_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/data\-\_\-structures.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/data\-\_\-structures.\-h}}
+}
+
+
+All datastructures and typedefs shared among the Vienna R\-N\-A Package can be found here.
+
+
+Include dependency graph for data\-\_\-structures.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{data__structures_8h__incl}
+\end{center}
+\end{figure}
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{data__structures_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Data Structures}
+\begin{DoxyCompactItemize}
+\item
+struct \hyperlink{structplist}{plist}
+\begin{DoxyCompactList}\small\item\em this datastructure is used as input parameter in functions of \hyperlink{PS__dot_8h}{P\-S\-\_\-dot.\-h} and others \end{DoxyCompactList}\item
+struct \hyperlink{structcpair}{cpair}
+\begin{DoxyCompactList}\small\item\em this datastructure is used as input parameter in functions of P\-S\-\_\-dot.\-c \end{DoxyCompactList}\item
+struct \hyperlink{structCOORDINATE}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E}
+\begin{DoxyCompactList}\small\item\em this is a workarround for the S\-W\-I\-G Perl Wrapper R\-N\-A plot function that returns an array of type \hyperlink{structCOORDINATE}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E} \end{DoxyCompactList}\item
+struct \hyperlink{structsect}{sect}
+\begin{DoxyCompactList}\small\item\em Stack of partial structures for backtracking. \end{DoxyCompactList}\item
+struct \hyperlink{structbondT}{bond\-T}
+\begin{DoxyCompactList}\small\item\em Base pair. \end{DoxyCompactList}\item
+struct \hyperlink{structbondTEn}{bond\-T\-En}
+\begin{DoxyCompactList}\small\item\em Base pair with associated energy. \end{DoxyCompactList}\item
+struct \hyperlink{structmodel__detailsT}{model\-\_\-details\-T}
+\begin{DoxyCompactList}\small\item\em The data structure that contains the complete model details used throughout the calculations. \end{DoxyCompactList}\item
+struct \hyperlink{structparamT}{param\-T}
+\begin{DoxyCompactList}\small\item\em The datastructure that contains temperature scaled energy parameters. \end{DoxyCompactList}\item
+struct \hyperlink{structpf__paramT}{pf\-\_\-param\-T}
+\begin{DoxyCompactList}\small\item\em The datastructure that contains temperature scaled Boltzmann weights of the energy parameters. \end{DoxyCompactList}\item
+struct \hyperlink{structPAIR}{P\-A\-I\-R}
+\begin{DoxyCompactList}\small\item\em Base pair data structure used in subopt.\-c. \end{DoxyCompactList}\item
+struct \hyperlink{structINTERVAL}{I\-N\-T\-E\-R\-V\-A\-L}
+\begin{DoxyCompactList}\small\item\em Sequence interval stack element used in subopt.\-c. \end{DoxyCompactList}\item
+struct \hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N}
+\begin{DoxyCompactList}\small\item\em Solution element from subopt.\-c. \end{DoxyCompactList}\item
+struct \hyperlink{structcofoldF}{cofold\-F}
+\item
+struct \hyperlink{structConcEnt}{Conc\-Ent}
+\item
+struct \hyperlink{structpairpro}{pairpro}
+\item
+struct \hyperlink{structpair__info}{pair\-\_\-info}
+\begin{DoxyCompactList}\small\item\em A base pair info structure. \end{DoxyCompactList}\item
+struct \hyperlink{structmove__t}{move\-\_\-t}
+\item
+struct \hyperlink{structintermediate__t}{intermediate\-\_\-t}
+\item
+struct \hyperlink{structpath__t}{path\-\_\-t}
+\item
+struct \hyperlink{structpu__contrib}{pu\-\_\-contrib}
+\begin{DoxyCompactList}\small\item\em contributions to p\-\_\-u \end{DoxyCompactList}\item
+struct \hyperlink{structinteract}{interact}
+\item
+struct \hyperlink{structpu__out}{pu\-\_\-out}
+\begin{DoxyCompactList}\small\item\em Collection of all free\-\_\-energy of beeing unpaired values for output. \end{DoxyCompactList}\item
+struct \hyperlink{structconstrain}{constrain}
+\begin{DoxyCompactList}\small\item\em constraints for cofolding \end{DoxyCompactList}\item
+struct \hyperlink{structduplexT}{duplex\-T}
+\item
+struct \hyperlink{structfolden}{folden}
+\item
+struct \hyperlink{structsnoopT}{snoop\-T}
+\item
+struct \hyperlink{structdupVar}{dup\-Var}
+\item
+struct \hyperlink{structTwoDfold__solution}{Two\-Dfold\-\_\-solution}
+\begin{DoxyCompactList}\small\item\em Solution element returned from Two\-Dfold\-List. \end{DoxyCompactList}\item
+struct \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars}
+\begin{DoxyCompactList}\small\item\em Variables compound for 2\-Dfold M\-F\-E folding. \end{DoxyCompactList}\item
+struct \hyperlink{structTwoDpfold__solution}{Two\-Dpfold\-\_\-solution}
+\begin{DoxyCompactList}\small\item\em Solution element returned from Two\-Dpfold\-List. \end{DoxyCompactList}\item
+struct \hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars}
+\begin{DoxyCompactList}\small\item\em Variables compound for 2\-Dfold partition function folding. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Macros}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{\#define \hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{M\-A\-X\-A\-L\-P\-H\-A}~20}\label{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}
+
+\begin{DoxyCompactList}\small\item\em Maximal length of alphabet. \end{DoxyCompactList}\item
+\hypertarget{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{\#define \hyperlink{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{M\-A\-X\-D\-O\-S}~1000}\label{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}
+
+\begin{DoxyCompactList}\small\item\em Maximum density of states discretization for subopt. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+All datastructures and typedefs shared among the Vienna R\-N\-A Package can be found here.
\ No newline at end of file
--- /dev/null
+35557042722c97039374fbd41f90bb8d
\ No newline at end of file
--- /dev/null
+332dfa3f74c29ccd5ce63daeee05f8b7
\ No newline at end of file
--- /dev/null
+\hypertarget{data__structures_8h}{\section{data\-\_\-structures.\-h}
+\label{data__structures_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/data\-\_\-structures.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/data\-\_\-structures.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_DATA\_STRUCTURES\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_DATA\_STRUCTURES\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{energy__const_8h}{energy\_const.h}"}
+00010 \textcolor{comment}{/* to use floats instead of doubles in pf\_fold() comment next line */}
+00011 \textcolor{preprocessor}{#define LARGE\_PF}
+00012 \textcolor{preprocessor}{}\textcolor{preprocessor}{#ifdef LARGE\_PF}
+00013 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define FLT\_OR\_DBL double}
+00014 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00015 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define FLT\_OR\_DBL float}
+00016 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00017 \textcolor{preprocessor}{}
+00018 \textcolor{preprocessor}{#ifndef NBASES}
+00019 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define NBASES 8}
+00020 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00021 \textcolor{preprocessor}{}
+00022 \textcolor{preprocessor}{#ifndef MAXALPHA}
+00023 \textcolor{preprocessor}{}
+\hypertarget{data__structures_8h_source_l00026}{}\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{00026} \textcolor{preprocessor}{#define MAXALPHA 20}
+00027 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00028 \textcolor{preprocessor}{}
+\hypertarget{data__structures_8h_source_l00032}{}\hyperlink{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{00032} \textcolor{preprocessor}{#define MAXDOS 1000}
+00033 \textcolor{preprocessor}{}
+00034 \textcolor{preprocessor}{#define VRNA\_GQUAD\_MAX\_STACK\_SIZE 7}
+00035 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define VRNA\_GQUAD\_MIN\_STACK\_SIZE 2}
+00036 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define VRNA\_GQUAD\_MAX\_LINKER\_LENGTH 15}
+00037 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define VRNA\_GQUAD\_MIN\_LINKER\_LENGTH 1}
+00038 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define VRNA\_GQUAD\_MIN\_BOX\_SIZE ((4*VRNA\_GQUAD\_MIN\_STACK\_SIZE)+(3*VRNA\_GQUAD\_MIN\_LINKER\_LENGTH))}
+00039 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define VRNA\_GQUAD\_MAX\_BOX\_SIZE ((4*VRNA\_GQUAD\_MAX\_STACK\_SIZE)+(3*VRNA\_GQUAD\_MAX\_LINKER\_LENGTH))}
+00040 \textcolor{preprocessor}{}
+00041
+00042 \textcolor{comment}{/*}
+00043 \textcolor{comment}{* ############################################################}
+00044 \textcolor{comment}{* Here are the type definitions of various datastructures}
+00045 \textcolor{comment}{* shared among the Vienna RNA Package}
+00046 \textcolor{comment}{* ############################################################}
+00047 \textcolor{comment}{*/}
+00048
+\hypertarget{data__structures_8h_source_l00052}{}\hyperlink{structplist}{00052} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structplist}{plist} \{
+00053 \textcolor{keywordtype}{int} i;
+00054 \textcolor{keywordtype}{int} j;
+00055 \textcolor{keywordtype}{float} p;
+00056 \textcolor{keywordtype}{int} type;
+00057 \} \hyperlink{structplist}{plist};
+00058
+\hypertarget{data__structures_8h_source_l00062}{}\hyperlink{structcpair}{00062} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structcpair}{cpair} \{
+00063 \textcolor{keywordtype}{int} i,j,mfe;
+00064 \textcolor{keywordtype}{float} p, hue, sat;
+00065 \} \hyperlink{structcpair}{cpair};
+00066
+\hypertarget{data__structures_8h_source_l00071}{}\hyperlink{structCOORDINATE}{00071} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00072 \textcolor{keywordtype}{float} X; \textcolor{comment}{/* X coords */}
+00073 \textcolor{keywordtype}{float} Y; \textcolor{comment}{/* Y coords */}
+00074 \} \hyperlink{structCOORDINATE}{COORDINATE};
+00075
+\hypertarget{data__structures_8h_source_l00079}{}\hyperlink{structsect}{00079} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structsect}{sect} \{
+00080 \textcolor{keywordtype}{int} i;
+00081 \textcolor{keywordtype}{int} j;
+00082 \textcolor{keywordtype}{int} ml;
+00083 \} \hyperlink{structsect}{sect};
+00084
+\hypertarget{data__structures_8h_source_l00088}{}\hyperlink{structbondT}{00088} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structbondT}{bondT} \{
+00089 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} i;
+00090 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} j;
+00091 \} \hyperlink{structbondT}{bondT};
+00092
+\hypertarget{data__structures_8h_source_l00096}{}\hyperlink{structbondTEn}{00096} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structbondTEn}{bondTEn} \{
+00097 \textcolor{keywordtype}{int} i;
+00098 \textcolor{keywordtype}{int} j;
+00099 \textcolor{keywordtype}{int} energy;
+00100 \} \hyperlink{structbondTEn}{bondTEn};
+00101
+\hypertarget{data__structures_8h_source_l00106}{}\hyperlink{structmodel__detailsT}{00106} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+\hypertarget{data__structures_8h_source_l00107}{}\hyperlink{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{00107} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles};
+\hypertarget{data__structures_8h_source_l00113}{}\hyperlink{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{00113} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{special\_hp};
+\hypertarget{data__structures_8h_source_l00114}{}\hyperlink{structmodel__detailsT_a6fb076173d2cbc4259606ce23eedf17d}{00114} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_a6fb076173d2cbc4259606ce23eedf17d}{noLP};
+\hypertarget{data__structures_8h_source_l00115}{}\hyperlink{structmodel__detailsT_a0f982e6904d012e4fe41e99daa797f5d}{00115} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_a0f982e6904d012e4fe41e99daa797f5d}{noGU};
+\hypertarget{data__structures_8h_source_l00116}{}\hyperlink{structmodel__detailsT_ae9cedf375cd904e5fb8e56cf3f64bcd9}{00116} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_ae9cedf375cd904e5fb8e56cf3f64bcd9}{noGUclosure};
+\hypertarget{data__structures_8h_source_l00117}{}\hyperlink{structmodel__detailsT_a415556dc150e02d108be81ecc5c48e85}{00117} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_a415556dc150e02d108be81ecc5c48e85}{logML};
+\hypertarget{data__structures_8h_source_l00118}{}\hyperlink{structmodel__detailsT_a55f083dad18c216505805a8062e63074}{00118} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_a55f083dad18c216505805a8062e63074}{circ};
+\hypertarget{data__structures_8h_source_l00119}{}\hyperlink{structmodel__detailsT_aa1ecdce7bc3f375bd8a9a7b738abc0ea}{00119} \textcolor{keywordtype}{int} \hyperlink{structmodel__detailsT_aa1ecdce7bc3f375bd8a9a7b738abc0ea}{gquad};
+00120 \} \hyperlink{structmodel__detailsT}{model\_detailsT};
+00121
+\hypertarget{data__structures_8h_source_l00125}{}\hyperlink{structparamT}{00125} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+00126 \textcolor{keywordtype}{int} id;
+00127 \textcolor{keywordtype}{int} stack[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1];
+00128 \textcolor{keywordtype}{int} hairpin[31];
+00129 \textcolor{keywordtype}{int} bulge[\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}+1];
+00130 \textcolor{keywordtype}{int} internal\_loop[\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}+1];
+00131 \textcolor{keywordtype}{int} mismatchExt[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00132 \textcolor{keywordtype}{int} mismatchI[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00133 \textcolor{keywordtype}{int} mismatch1nI[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00134 \textcolor{keywordtype}{int} mismatch23I[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00135 \textcolor{keywordtype}{int} mismatchH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00136 \textcolor{keywordtype}{int} mismatchM[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00137 \textcolor{keywordtype}{int} dangle5[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5];
+00138 \textcolor{keywordtype}{int} dangle3[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5];
+00139 \textcolor{keywordtype}{int} int11[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00140 \textcolor{keywordtype}{int} int21[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5];
+00141 \textcolor{keywordtype}{int} int22[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5];
+00142 \textcolor{keywordtype}{int} ninio[5];
+00143 \textcolor{keywordtype}{double} lxc;
+00144 \textcolor{keywordtype}{int} MLbase;
+00145 \textcolor{keywordtype}{int} MLintern[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1];
+00146 \textcolor{keywordtype}{int} MLclosing;
+00147 \textcolor{keywordtype}{int} TerminalAU;
+00148 \textcolor{keywordtype}{int} DuplexInit;
+00149 \textcolor{keywordtype}{int} Tetraloop\_E[200];
+00150 \textcolor{keywordtype}{char} Tetraloops[1401];
+00151 \textcolor{keywordtype}{int} Triloop\_E[40];
+00152 \textcolor{keywordtype}{char} Triloops[241];
+00153 \textcolor{keywordtype}{int} Hexaloop\_E[40];
+00154 \textcolor{keywordtype}{char} Hexaloops[1801];
+00155 \textcolor{keywordtype}{int} TripleC;
+00156 \textcolor{keywordtype}{int} MultipleCA;
+00157 \textcolor{keywordtype}{int} MultipleCB;
+00158 \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a25f2bdcdf56e813d288845484a13d704}{gquad} [VRNA\_GQUAD\_MAX\_STACK\_SIZE + 1]
+00159 [3*VRNA\_GQUAD\_MAX\_LINKER\_LENGTH + 1];
+00160
+\hypertarget{data__structures_8h_source_l00161}{}\hyperlink{structparamT_a8ed207b95868d1085bd9c197fbc6924f}{00161} \textcolor{keywordtype}{double} \hyperlink{structparamT_a8ed207b95868d1085bd9c197fbc6924f}{temperature};
+\hypertarget{data__structures_8h_source_l00163}{}\hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{00163} \hyperlink{structmodel__detailsT}{model\_detailsT} \hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\_details};
+00165 \} \hyperlink{structparamT}{paramT};
+00166
+\hypertarget{data__structures_8h_source_l00170}{}\hyperlink{structpf__paramT}{00170} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+00171 \textcolor{keywordtype}{int} id;
+00172 \textcolor{keywordtype}{double} expstack[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1];
+00173 \textcolor{keywordtype}{double} exphairpin[31];
+00174 \textcolor{keywordtype}{double} expbulge[\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}+1];
+00175 \textcolor{keywordtype}{double} expinternal[\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}+1];
+00176 \textcolor{keywordtype}{double} expmismatchExt[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00177 \textcolor{keywordtype}{double} expmismatchI[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00178 \textcolor{keywordtype}{double} expmismatch23I[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00179 \textcolor{keywordtype}{double} expmismatch1nI[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00180 \textcolor{keywordtype}{double} expmismatchH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00181 \textcolor{keywordtype}{double} expmismatchM[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00182 \textcolor{keywordtype}{double} expdangle5[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5];
+00183 \textcolor{keywordtype}{double} expdangle3[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5];
+00184 \textcolor{keywordtype}{double} expint11[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00185 \textcolor{keywordtype}{double} expint21[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5];
+00186 \textcolor{keywordtype}{double} expint22[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5];
+00187 \textcolor{keywordtype}{double} expninio[5][\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}+1];
+00188 \textcolor{keywordtype}{double} lxc;
+00189 \textcolor{keywordtype}{double} expMLbase;
+00190 \textcolor{keywordtype}{double} expMLintern[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1];
+00191 \textcolor{keywordtype}{double} expMLclosing;
+00192 \textcolor{keywordtype}{double} expTermAU;
+00193 \textcolor{keywordtype}{double} expDuplexInit;
+00194 \textcolor{keywordtype}{double} exptetra[40];
+00195 \textcolor{keywordtype}{double} exptri[40];
+00196 \textcolor{keywordtype}{double} exphex[40];
+00197 \textcolor{keywordtype}{char} Tetraloops[1401];
+00198 \textcolor{keywordtype}{double} expTriloop[40];
+00199 \textcolor{keywordtype}{char} Triloops[241];
+00200 \textcolor{keywordtype}{char} Hexaloops[1801];
+00201 \textcolor{keywordtype}{double} expTripleC;
+00202 \textcolor{keywordtype}{double} expMultipleCA;
+00203 \textcolor{keywordtype}{double} expMultipleCB;
+00204 \textcolor{keywordtype}{double} expgquad[VRNA\_GQUAD\_MAX\_STACK\_SIZE + 1]
+00205 [3*VRNA\_GQUAD\_MAX\_LINKER\_LENGTH + 1];
+00206
+00207 \textcolor{keywordtype}{double} kT;
+\hypertarget{data__structures_8h_source_l00208}{}\hyperlink{structpf__paramT_aef40322e7ca1adbd9b438aeda0352e8f}{00208} \textcolor{keywordtype}{double} \hyperlink{structpf__paramT_aef40322e7ca1adbd9b438aeda0352e8f}{pf\_scale};
+\hypertarget{data__structures_8h_source_l00210}{}\hyperlink{structpf__paramT_aa0e11e9f1f6e212640baf40d7195a014}{00210} \textcolor{keywordtype}{double} \hyperlink{structpf__paramT_aa0e11e9f1f6e212640baf40d7195a014}{temperature};
+\hypertarget{data__structures_8h_source_l00211}{}\hyperlink{structpf__paramT_a3d2af9040acfa08295efb50f0219149d}{00211} \textcolor{keywordtype}{double} alpha;
+\hypertarget{data__structures_8h_source_l00218}{}\hyperlink{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}{00218} \hyperlink{structmodel__detailsT}{model\_detailsT} \hyperlink{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}{model\_details};
+00220 \} \hyperlink{structpf__paramT}{pf\_paramT};
+00221
+00222
+00223
+00224 \textcolor{comment}{/*}
+00225 \textcolor{comment}{* ############################################################}
+00226 \textcolor{comment}{* SUBOPT data structures}
+00227 \textcolor{comment}{* ############################################################}
+00228 \textcolor{comment}{*/}
+00229
+00230
+\hypertarget{data__structures_8h_source_l00234}{}\hyperlink{structPAIR}{00234} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00235 \textcolor{keywordtype}{int} i;
+00236 \textcolor{keywordtype}{int} j;
+00237 \} \hyperlink{structPAIR}{PAIR};
+00238
+\hypertarget{data__structures_8h_source_l00242}{}\hyperlink{structINTERVAL}{00242} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00243 \textcolor{keywordtype}{int} i;
+00244 \textcolor{keywordtype}{int} j;
+00245 \textcolor{keywordtype}{int} array\_flag;
+00246 \} \hyperlink{structINTERVAL}{INTERVAL};
+00247
+\hypertarget{data__structures_8h_source_l00251}{}\hyperlink{structSOLUTION}{00251} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+\hypertarget{data__structures_8h_source_l00252}{}\hyperlink{structSOLUTION_a4fe8e9027171f2dc4031587d7fab6b87}{00252} \textcolor{keywordtype}{float} \hyperlink{structSOLUTION_a4fe8e9027171f2dc4031587d7fab6b87}{energy};
+\hypertarget{data__structures_8h_source_l00253}{}\hyperlink{structSOLUTION_a89ae453dfad0509468c39a62c303a63b}{00253} \textcolor{keywordtype}{char} *\hyperlink{structSOLUTION_a89ae453dfad0509468c39a62c303a63b}{structure};
+00254 \} \hyperlink{structSOLUTION}{SOLUTION};
+00255
+00256 \textcolor{comment}{/*}
+00257 \textcolor{comment}{* ############################################################}
+00258 \textcolor{comment}{* COFOLD data structures}
+00259 \textcolor{comment}{* ############################################################}
+00260 \textcolor{comment}{*/}
+00261
+\hypertarget{data__structures_8h_source_l00265}{}\hyperlink{structcofoldF}{00265} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structcofoldF}{cofoldF} \{
+00266 \textcolor{comment}{/* free energies for: */}
+\hypertarget{data__structures_8h_source_l00267}{}\hyperlink{structcofoldF_af6c496438321eb8bb907a21de1915c23}{00267} \textcolor{keywordtype}{double} \hyperlink{structcofoldF_af6c496438321eb8bb907a21de1915c23}{F0AB};
+\hypertarget{data__structures_8h_source_l00268}{}\hyperlink{structcofoldF_a2ae1245ff4a93cd11f882f490f777cb7}{00268} \textcolor{keywordtype}{double} \hyperlink{structcofoldF_a2ae1245ff4a93cd11f882f490f777cb7}{FAB};
+\hypertarget{data__structures_8h_source_l00269}{}\hyperlink{structcofoldF_a4899a4f9b42e416baf46c5fe10751c45}{00269} \textcolor{keywordtype}{double} \hyperlink{structcofoldF_a4899a4f9b42e416baf46c5fe10751c45}{FcAB};
+\hypertarget{data__structures_8h_source_l00270}{}\hyperlink{structcofoldF_a460f3ba205c205e6f5ec27cc2e2eb2b2}{00270} \textcolor{keywordtype}{double} \hyperlink{structcofoldF_a460f3ba205c205e6f5ec27cc2e2eb2b2}{FA};
+\hypertarget{data__structures_8h_source_l00271}{}\hyperlink{structcofoldF_ad3e5466724f3987be9d6f388b8ee5129}{00271} \textcolor{keywordtype}{double} \hyperlink{structcofoldF_ad3e5466724f3987be9d6f388b8ee5129}{FB};
+00272 \} \hyperlink{structcofoldF}{cofoldF};
+00273
+\hypertarget{data__structures_8h_source_l00277}{}\hyperlink{structConcEnt}{00277} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structConcEnt}{ConcEnt} \{
+\hypertarget{data__structures_8h_source_l00278}{}\hyperlink{structConcEnt_adcf4d93c7efeaa4e6c4154b64d367681}{00278} \textcolor{keywordtype}{double} \hyperlink{structConcEnt_adcf4d93c7efeaa4e6c4154b64d367681}{A0};
+\hypertarget{data__structures_8h_source_l00279}{}\hyperlink{structConcEnt_add4c33b94b34e847fbf5838b04cce346}{00279} \textcolor{keywordtype}{double} \hyperlink{structConcEnt_add4c33b94b34e847fbf5838b04cce346}{B0};
+\hypertarget{data__structures_8h_source_l00280}{}\hyperlink{structConcEnt_ac59c07a31d844e7b05bcdc05c4413b19}{00280} \textcolor{keywordtype}{double} \hyperlink{structConcEnt_ac59c07a31d844e7b05bcdc05c4413b19}{ABc};
+00281 \textcolor{keywordtype}{double} AAc;
+00282 \textcolor{keywordtype}{double} BBc;
+00283 \textcolor{keywordtype}{double} Ac;
+00284 \textcolor{keywordtype}{double} Bc;
+00285 \} \hyperlink{structConcEnt}{ConcEnt};
+00286
+\hypertarget{data__structures_8h_source_l00290}{}\hyperlink{structpairpro}{00290} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structpairpro}{pairpro}\{
+00291 \textcolor{keyword}{struct }\hyperlink{structplist}{plist} *AB;
+00292 \textcolor{keyword}{struct }\hyperlink{structplist}{plist} *AA;
+00293 \textcolor{keyword}{struct }\hyperlink{structplist}{plist} *A;
+00294 \textcolor{keyword}{struct }\hyperlink{structplist}{plist} *B;
+00295 \textcolor{keyword}{struct }\hyperlink{structplist}{plist} *BB;
+00296 \}\hyperlink{structpairpro}{pairpro};
+00297
+\hypertarget{data__structures_8h_source_l00308}{}\hyperlink{structpair__info}{00308} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+\hypertarget{data__structures_8h_source_l00309}{}\hyperlink{structpair__info_a7905e17da6a6cc48230ee6205628ed7f}{00309} \textcolor{keywordtype}{unsigned} \hyperlink{structpair__info_a7905e17da6a6cc48230ee6205628ed7f}{i};
+\hypertarget{data__structures_8h_source_l00310}{}\hyperlink{structpair__info_a35665817b5792703ff4325e1bcbe5e21}{00310} \textcolor{keywordtype}{unsigned} \hyperlink{structpair__info_a35665817b5792703ff4325e1bcbe5e21}{j};
+\hypertarget{data__structures_8h_source_l00311}{}\hyperlink{structpair__info_af0895ea40ec0c23bfe8aa2c3babf0e80}{00311} \textcolor{keywordtype}{float} \hyperlink{structpair__info_af0895ea40ec0c23bfe8aa2c3babf0e80}{p};
+\hypertarget{data__structures_8h_source_l00312}{}\hyperlink{structpair__info_ab3aa7a54e6976f46e69c6ffcddd0e782}{00312} \textcolor{keywordtype}{float} \hyperlink{structpair__info_ab3aa7a54e6976f46e69c6ffcddd0e782}{ent};
+\hypertarget{data__structures_8h_source_l00313}{}\hyperlink{structpair__info_a23fc316453d179474bed7f6ed2489723}{00313} \textcolor{keywordtype}{short} bp[8];
+\hypertarget{data__structures_8h_source_l00314}{}\hyperlink{structpair__info_a4da3d6c9042500c16c4b06e0bbc48190}{00314} \textcolor{keywordtype}{char} \hyperlink{structpair__info_a4da3d6c9042500c16c4b06e0bbc48190}{comp};
+00315 \} \hyperlink{structpair__info}{pair\_info};
+00316
+00317
+00318 \textcolor{comment}{/*}
+00319 \textcolor{comment}{* ############################################################}
+00320 \textcolor{comment}{* FINDPATH data structures}
+00321 \textcolor{comment}{* ############################################################}
+00322 \textcolor{comment}{*/}
+00323
+\hypertarget{data__structures_8h_source_l00327}{}\hyperlink{structmove__t}{00327} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }move \{
+00328 \textcolor{keywordtype}{int} i; \textcolor{comment}{/* i,j>0 insert; i,j<0 delete */}
+00329 \textcolor{keywordtype}{int} j;
+00330 \textcolor{keywordtype}{int} when; \textcolor{comment}{/* 0 if still available, else resulting distance from start */}
+00331 \textcolor{keywordtype}{int} E;
+00332 \} \hyperlink{structmove__t}{move\_t};
+00333
+\hypertarget{data__structures_8h_source_l00337}{}\hyperlink{structintermediate__t}{00337} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }intermediate \{
+\hypertarget{data__structures_8h_source_l00338}{}\hyperlink{structintermediate__t_a9a2b6258aa1af06ea3504631de8dadba}{00338} \textcolor{keywordtype}{short} *\hyperlink{structintermediate__t_a9a2b6258aa1af06ea3504631de8dadba}{pt};
+\hypertarget{data__structures_8h_source_l00339}{}\hyperlink{structintermediate__t_ac44e091915da58927978d54ef59234c7}{00339} \textcolor{keywordtype}{int} \hyperlink{structintermediate__t_ac44e091915da58927978d54ef59234c7}{Sen};
+\hypertarget{data__structures_8h_source_l00340}{}\hyperlink{structintermediate__t_af84d640df33aea99e959b2e4f61a7367}{00340} \textcolor{keywordtype}{int} \hyperlink{structintermediate__t_af84d640df33aea99e959b2e4f61a7367}{curr\_en};
+\hypertarget{data__structures_8h_source_l00341}{}\hyperlink{structintermediate__t_a94e947f18273bbfe3dd544085b025a7b}{00341} \hyperlink{structmove__t}{move\_t} *\hyperlink{structintermediate__t_a94e947f18273bbfe3dd544085b025a7b}{moves};
+00342 \} \hyperlink{structintermediate__t}{intermediate\_t};
+00343
+\hypertarget{data__structures_8h_source_l00347}{}\hyperlink{structpath__t}{00347} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }path \{
+00348 \textcolor{keywordtype}{double} en;
+00349 \textcolor{keywordtype}{char} *s;
+00350 \} \hyperlink{structpath__t}{path\_t};
+00351
+00352 \textcolor{comment}{/*}
+00353 \textcolor{comment}{* ############################################################}
+00354 \textcolor{comment}{* RNAup data structures}
+00355 \textcolor{comment}{* ############################################################}
+00356 \textcolor{comment}{*/}
+00357
+\hypertarget{data__structures_8h_source_l00361}{}\hyperlink{structpu__contrib}{00361} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structpu__contrib}{pu\_contrib} \{
+\hypertarget{data__structures_8h_source_l00362}{}\hyperlink{structpu__contrib_ac9034ac9a84ed0647587659d6e9be1e8}{00362} \textcolor{keywordtype}{double} **\hyperlink{structpu__contrib_ac9034ac9a84ed0647587659d6e9be1e8}{H};
+\hypertarget{data__structures_8h_source_l00363}{}\hyperlink{structpu__contrib_a8ca0da20536780589fb3e3472ca0581f}{00363} \textcolor{keywordtype}{double} **\hyperlink{structpu__contrib_a8ca0da20536780589fb3e3472ca0581f}{I};
+\hypertarget{data__structures_8h_source_l00364}{}\hyperlink{structpu__contrib_a1222ebf74f426bbcd843dcc325da207b}{00364} \textcolor{keywordtype}{double} **\hyperlink{structpu__contrib_a1222ebf74f426bbcd843dcc325da207b}{M};
+\hypertarget{data__structures_8h_source_l00365}{}\hyperlink{structpu__contrib_accb192ba6b4b91a1cb2f8080934fd428}{00365} \textcolor{keywordtype}{double} **\hyperlink{structpu__contrib_accb192ba6b4b91a1cb2f8080934fd428}{E};
+\hypertarget{data__structures_8h_source_l00366}{}\hyperlink{structpu__contrib_a33d5ada6e861db0c81aa3d5b2989262e}{00366} \textcolor{keywordtype}{int} \hyperlink{structpu__contrib_a33d5ada6e861db0c81aa3d5b2989262e}{length};
+\hypertarget{data__structures_8h_source_l00367}{}\hyperlink{structpu__contrib_a403c1c7f20beeeffba7632fac0cfcbff}{00367} \textcolor{keywordtype}{int} \hyperlink{structpu__contrib_a403c1c7f20beeeffba7632fac0cfcbff}{w};
+00368 \} \hyperlink{structpu__contrib}{pu\_contrib};
+00369
+\hypertarget{data__structures_8h_source_l00373}{}\hyperlink{structinteract}{00373} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structinteract}{interact} \{
+\hypertarget{data__structures_8h_source_l00374}{}\hyperlink{structinteract_a1fc8b3860c083f164daa9712690a3a56}{00374} \textcolor{keywordtype}{double} *\hyperlink{structinteract_a1fc8b3860c083f164daa9712690a3a56}{Pi};
+\hypertarget{data__structures_8h_source_l00375}{}\hyperlink{structinteract_a54f8183542fff4c32ab7ace49a16c02c}{00375} \textcolor{keywordtype}{double} *\hyperlink{structinteract_a54f8183542fff4c32ab7ace49a16c02c}{Gi};
+\hypertarget{data__structures_8h_source_l00376}{}\hyperlink{structinteract_ad58303190f9e085c3ab59890cbf61223}{00376} \textcolor{keywordtype}{double} \hyperlink{structinteract_ad58303190f9e085c3ab59890cbf61223}{Gikjl};
+\hypertarget{data__structures_8h_source_l00378}{}\hyperlink{structinteract_a41793812abae560805414761fec398fe}{00378} \textcolor{keywordtype}{double} \hyperlink{structinteract_a41793812abae560805414761fec398fe}{Gikjl\_wo};
+\hypertarget{data__structures_8h_source_l00379}{}\hyperlink{structinteract_ab6d031a21388be8763b75ea74c937f17}{00379} \textcolor{keywordtype}{int} \hyperlink{structinteract_ab6d031a21388be8763b75ea74c937f17}{i};
+\hypertarget{data__structures_8h_source_l00380}{}\hyperlink{structinteract_a61e457fbf943d57364be6ddf1b4e7b8a}{00380} \textcolor{keywordtype}{int} \hyperlink{structinteract_a61e457fbf943d57364be6ddf1b4e7b8a}{k};
+\hypertarget{data__structures_8h_source_l00381}{}\hyperlink{structinteract_a7555cb6363d1479341eb72b9c087aa34}{00381} \textcolor{keywordtype}{int} \hyperlink{structinteract_a7555cb6363d1479341eb72b9c087aa34}{j};
+\hypertarget{data__structures_8h_source_l00382}{}\hyperlink{structinteract_a030ab45056342e12cb3955e4defd3904}{00382} \textcolor{keywordtype}{int} \hyperlink{structinteract_a030ab45056342e12cb3955e4defd3904}{l};
+\hypertarget{data__structures_8h_source_l00383}{}\hyperlink{structinteract_ac9fcb5dca54ec5faa76e02b6488b9524}{00383} \textcolor{keywordtype}{int} \hyperlink{structinteract_ac9fcb5dca54ec5faa76e02b6488b9524}{length};
+00384 \} \hyperlink{structinteract}{interact};
+00385
+\hypertarget{data__structures_8h_source_l00389}{}\hyperlink{structpu__out}{00389} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structpu__out}{pu\_out} \{
+\hypertarget{data__structures_8h_source_l00390}{}\hyperlink{structpu__out_a314b8f43c3ee0bf6060afbeced5dbe6c}{00390} \textcolor{keywordtype}{int} \hyperlink{structpu__out_a314b8f43c3ee0bf6060afbeced5dbe6c}{len};
+\hypertarget{data__structures_8h_source_l00391}{}\hyperlink{structpu__out_a7697bc7a46cd1b8e37e337e708cb6023}{00391} \textcolor{keywordtype}{int} \hyperlink{structpu__out_a7697bc7a46cd1b8e37e337e708cb6023}{u\_vals};
+\hypertarget{data__structures_8h_source_l00392}{}\hyperlink{structpu__out_a638b0de1837cfd441871d005d3ab2938}{00392} \textcolor{keywordtype}{int} \hyperlink{structpu__out_a638b0de1837cfd441871d005d3ab2938}{contribs};
+\hypertarget{data__structures_8h_source_l00393}{}\hyperlink{structpu__out_ac9e9e30b16e7d04c770460b8487fb09d}{00393} \textcolor{keywordtype}{char} **\hyperlink{structpu__out_ac9e9e30b16e7d04c770460b8487fb09d}{header};
+\hypertarget{data__structures_8h_source_l00394}{}\hyperlink{structpu__out_a366edbc4170d5c177908e178ff340828}{00394} \textcolor{keywordtype}{double} **\hyperlink{structpu__out_a366edbc4170d5c177908e178ff340828}{u\_values};
+00395 \} \hyperlink{structpu__out}{pu\_out};
+00396
+\hypertarget{data__structures_8h_source_l00400}{}\hyperlink{structconstrain}{00400} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structconstrain}{constrain}\{
+00401 \textcolor{keywordtype}{int} *indx;
+00402 \textcolor{keywordtype}{char} *ptype;
+00403 \} \hyperlink{structconstrain}{constrain};
+00404
+00405 \textcolor{comment}{/*}
+00406 \textcolor{comment}{* ############################################################}
+00407 \textcolor{comment}{* RNAduplex data structures}
+00408 \textcolor{comment}{* ############################################################}
+00409 \textcolor{comment}{*/}
+00410
+\hypertarget{data__structures_8h_source_l00414}{}\hyperlink{structduplexT}{00414} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00415 \textcolor{keywordtype}{int} i;
+00416 \textcolor{keywordtype}{int} j;
+00417 \textcolor{keywordtype}{int} end;
+00418 \textcolor{keywordtype}{char} *structure;
+00419 \textcolor{keywordtype}{double} energy;
+00420 \textcolor{keywordtype}{double} energy\_backtrack;
+00421 \textcolor{keywordtype}{double} opening\_backtrack\_x;
+00422 \textcolor{keywordtype}{double} opening\_backtrack\_y;
+00423 \textcolor{keywordtype}{int} offset;
+00424 \textcolor{keywordtype}{double} dG1;
+00425 \textcolor{keywordtype}{double} dG2;
+00426 \textcolor{keywordtype}{double} ddG;
+00427 \textcolor{keywordtype}{int} tb;
+00428 \textcolor{keywordtype}{int} te;
+00429 \textcolor{keywordtype}{int} qb;
+00430 \textcolor{keywordtype}{int} qe;
+00431 \} \hyperlink{structduplexT}{duplexT};
+00432
+00433 \textcolor{comment}{/*}
+00434 \textcolor{comment}{* ############################################################}
+00435 \textcolor{comment}{* RNAsnoop data structures}
+00436 \textcolor{comment}{* ############################################################}
+00437 \textcolor{comment}{*/}
+00438
+\hypertarget{data__structures_8h_source_l00442}{}\hyperlink{structfolden}{00442} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }node \{
+00443 \textcolor{keywordtype}{int} k;
+00444 \textcolor{keywordtype}{int} energy;
+00445 \textcolor{keyword}{struct }node *next;
+00446 \} \hyperlink{structfolden}{folden};
+00447
+\hypertarget{data__structures_8h_source_l00451}{}\hyperlink{structsnoopT}{00451} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00452 \textcolor{keywordtype}{int} i;
+00453 \textcolor{keywordtype}{int} j;
+00454 \textcolor{keywordtype}{int} u;
+00455 \textcolor{keywordtype}{char} *structure;
+00456 \textcolor{keywordtype}{float} energy;
+00457 \textcolor{keywordtype}{float} Duplex\_El;
+00458 \textcolor{keywordtype}{float} Duplex\_Er;
+00459 \textcolor{keywordtype}{float} Loop\_E;
+00460 \textcolor{keywordtype}{float} Loop\_D;
+00461 \textcolor{keywordtype}{float} pscd;
+00462 \textcolor{keywordtype}{float} psct;
+00463 \textcolor{keywordtype}{float} pscg;
+00464 \textcolor{keywordtype}{float} Duplex\_Ol;
+00465 \textcolor{keywordtype}{float} Duplex\_Or;
+00466 \textcolor{keywordtype}{float} Duplex\_Ot;
+00467 \textcolor{keywordtype}{float} fullStemEnergy;
+00468 \} \hyperlink{structsnoopT}{snoopT};
+00469
+00470
+00471
+00472
+00473
+00474
+00475
+00476 \textcolor{comment}{/*}
+00477 \textcolor{comment}{* ############################################################}
+00478 \textcolor{comment}{* PKplex data structures}
+00479 \textcolor{comment}{* ############################################################}
+00480 \textcolor{comment}{*/}
+00481
+\hypertarget{data__structures_8h_source_l00485}{}\hyperlink{structdupVar}{00485} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structdupVar}{dupVar}\{
+00486 \textcolor{keywordtype}{int} i;
+00487 \textcolor{keywordtype}{int} j;
+00488 \textcolor{keywordtype}{int} end;
+00489 \textcolor{keywordtype}{char} *pk\_helix;
+00490 \textcolor{keywordtype}{char} *structure;
+00491 \textcolor{keywordtype}{double} energy;
+00492 \textcolor{keywordtype}{int} offset;
+00493 \textcolor{keywordtype}{double} dG1;
+00494 \textcolor{keywordtype}{double} dG2;
+00495 \textcolor{keywordtype}{double} ddG;
+00496 \textcolor{keywordtype}{int} tb;
+00497 \textcolor{keywordtype}{int} te;
+00498 \textcolor{keywordtype}{int} qb;
+00499 \textcolor{keywordtype}{int} qe;
+00500 \textcolor{keywordtype}{int} inactive;
+00501 \textcolor{keywordtype}{int} processed;
+00502 \} \hyperlink{structdupVar}{dupVar};
+00503
+00504
+00505
+00506 \textcolor{comment}{/*}
+00507 \textcolor{comment}{* ############################################################}
+00508 \textcolor{comment}{* 2Dfold data structures}
+00509 \textcolor{comment}{* ############################################################}
+00510 \textcolor{comment}{*/}
+00511
+\hypertarget{data__structures_8h_source_l00526}{}\hyperlink{structTwoDfold__solution}{00526} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+\hypertarget{data__structures_8h_source_l00527}{}\hyperlink{structTwoDfold__solution_a298767110e07490d361bf7da920fd153}{00527} \textcolor{keywordtype}{int} \hyperlink{structTwoDfold__solution_a298767110e07490d361bf7da920fd153}{k};
+\hypertarget{data__structures_8h_source_l00528}{}\hyperlink{structTwoDfold__solution_a64fb28259cf925c3bba7b8d14592363a}{00528} \textcolor{keywordtype}{int} \hyperlink{structTwoDfold__solution_a64fb28259cf925c3bba7b8d14592363a}{l};
+\hypertarget{data__structures_8h_source_l00529}{}\hyperlink{structTwoDfold__solution_a3f65891d0c931f88440150bb32bcf753}{00529} \textcolor{keywordtype}{float} \hyperlink{structTwoDfold__solution_a3f65891d0c931f88440150bb32bcf753}{en};
+\hypertarget{data__structures_8h_source_l00530}{}\hyperlink{structTwoDfold__solution_ac87e00bbdb13e0b6ef45c4f65608b416}{00530} \textcolor{keywordtype}{char} *\hyperlink{structTwoDfold__solution_ac87e00bbdb13e0b6ef45c4f65608b416}{s};
+00531 \} \hyperlink{structTwoDfold__solution}{TwoDfold\_solution};
+00532
+\hypertarget{data__structures_8h_source_l00538}{}\hyperlink{structTwoDfold__vars}{00538} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+\hypertarget{data__structures_8h_source_l00539}{}\hyperlink{structTwoDfold__vars_ada74adef5f24b4b35c0b25da8223fe26}{00539} \hyperlink{structparamT}{paramT} *\hyperlink{structTwoDfold__vars_ada74adef5f24b4b35c0b25da8223fe26}{P};
+\hypertarget{data__structures_8h_source_l00540}{}\hyperlink{structTwoDfold__vars_ade5c7e9337a458ae20bac75abdc52d64}{00540} \textcolor{keywordtype}{int} \hyperlink{structTwoDfold__vars_ade5c7e9337a458ae20bac75abdc52d64}{do\_backtrack};
+\hypertarget{data__structures_8h_source_l00541}{}\hyperlink{structTwoDfold__vars_aedf60b8b26dae05ad266d3e098d18208}{00541} \textcolor{keywordtype}{char} *\hyperlink{structTwoDfold__vars_aedf60b8b26dae05ad266d3e098d18208}{ptype};
+\hypertarget{data__structures_8h_source_l00542}{}\hyperlink{structTwoDfold__vars_a3596f3d4d320318c4b8428e2abc7ab56}{00542} \textcolor{keywordtype}{char} *\hyperlink{structTwoDfold__vars_a3596f3d4d320318c4b8428e2abc7ab56}{sequence};
+\hypertarget{data__structures_8h_source_l00543}{}\hyperlink{structTwoDfold__vars_ab9ee459ffbfb5d2c138a033516056cdc}{00543} \textcolor{keywordtype}{short} *S, *\hyperlink{structTwoDfold__vars_ab9ee459ffbfb5d2c138a033516056cdc}{S1};
+\hypertarget{data__structures_8h_source_l00544}{}\hyperlink{structTwoDfold__vars_a621ed2ab02116f3f8f5e7120dec429eb}{00544} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{structTwoDfold__vars_a621ed2ab02116f3f8f5e7120dec429eb}{maxD1};
+\hypertarget{data__structures_8h_source_l00545}{}\hyperlink{structTwoDfold__vars_a03f198a4abdb3b784486d2ba5c533aa4}{00545} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{structTwoDfold__vars_a03f198a4abdb3b784486d2ba5c533aa4}{maxD2};
+\hypertarget{data__structures_8h_source_l00548}{}\hyperlink{structTwoDfold__vars_aa11f5bcd8c4fe70a91c155c877c855d5}{00548} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDfold__vars_aa11f5bcd8c4fe70a91c155c877c855d5}{mm1};
+\hypertarget{data__structures_8h_source_l00549}{}\hyperlink{structTwoDfold__vars_a2eaa93316b6beb17531f0c078806036c}{00549} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDfold__vars_a2eaa93316b6beb17531f0c078806036c}{mm2};
+\hypertarget{data__structures_8h_source_l00551}{}\hyperlink{structTwoDfold__vars_a1a20cb06b58b75d1a3dbdbc8bc60d0a7}{00551} \textcolor{keywordtype}{int} *\hyperlink{structTwoDfold__vars_a1a20cb06b58b75d1a3dbdbc8bc60d0a7}{my\_iindx};
+00553 \textcolor{keywordtype}{double} \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature};
+00554
+\hypertarget{data__structures_8h_source_l00555}{}\hyperlink{structTwoDfold__vars_a536525b98c1b633d4c5f2da4f8d78c18}{00555} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDfold__vars_a536525b98c1b633d4c5f2da4f8d78c18}{referenceBPs1};
+\hypertarget{data__structures_8h_source_l00556}{}\hyperlink{structTwoDfold__vars_aa7abf73c3114cb5f0dc90e702fa9dd0f}{00556} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDfold__vars_aa7abf73c3114cb5f0dc90e702fa9dd0f}{referenceBPs2};
+\hypertarget{data__structures_8h_source_l00557}{}\hyperlink{structTwoDfold__vars_af1106e1a592e2dccc92b3452340549e0}{00557} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDfold__vars_af1106e1a592e2dccc92b3452340549e0}{bpdist};
+00559 \textcolor{keywordtype}{short} *reference\_pt1;
+00560 \textcolor{keywordtype}{short} *reference\_pt2;
+00561 \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ};
+00562 \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles};
+00563 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} seq\_length;
+00564
+00565 \textcolor{keywordtype}{int} ***E\_F5;
+00566 \textcolor{keywordtype}{int} ***E\_F3;
+00567 \textcolor{keywordtype}{int} ***E\_C;
+00568 \textcolor{keywordtype}{int} ***E\_M;
+00569 \textcolor{keywordtype}{int} ***E\_M1;
+00570 \textcolor{keywordtype}{int} ***E\_M2;
+00571
+00572 \textcolor{keywordtype}{int} **E\_Fc;
+00573 \textcolor{keywordtype}{int} **E\_FcH;
+00574 \textcolor{keywordtype}{int} **E\_FcI;
+00575 \textcolor{keywordtype}{int} **E\_FcM;
+00576
+00577 \textcolor{keywordtype}{int} **l\_min\_values;
+00578 \textcolor{keywordtype}{int} **l\_max\_values;
+00579 \textcolor{keywordtype}{int} *k\_min\_values;
+00580 \textcolor{keywordtype}{int} *k\_max\_values;
+00581
+00582 \textcolor{keywordtype}{int} **l\_min\_values\_m;
+00583 \textcolor{keywordtype}{int} **l\_max\_values\_m;
+00584 \textcolor{keywordtype}{int} *k\_min\_values\_m;
+00585 \textcolor{keywordtype}{int} *k\_max\_values\_m;
+00586
+00587 \textcolor{keywordtype}{int} **l\_min\_values\_m1;
+00588 \textcolor{keywordtype}{int} **l\_max\_values\_m1;
+00589 \textcolor{keywordtype}{int} *k\_min\_values\_m1;
+00590 \textcolor{keywordtype}{int} *k\_max\_values\_m1;
+00591
+00592 \textcolor{keywordtype}{int} **l\_min\_values\_f;
+00593 \textcolor{keywordtype}{int} **l\_max\_values\_f;
+00594 \textcolor{keywordtype}{int} *k\_min\_values\_f;
+00595 \textcolor{keywordtype}{int} *k\_max\_values\_f;
+00596
+00597 \textcolor{keywordtype}{int} **l\_min\_values\_f3;
+00598 \textcolor{keywordtype}{int} **l\_max\_values\_f3;
+00599 \textcolor{keywordtype}{int} *k\_min\_values\_f3;
+00600 \textcolor{keywordtype}{int} *k\_max\_values\_f3;
+00601
+00602 \textcolor{keywordtype}{int} **l\_min\_values\_m2;
+00603 \textcolor{keywordtype}{int} **l\_max\_values\_m2;
+00604 \textcolor{keywordtype}{int} *k\_min\_values\_m2;
+00605 \textcolor{keywordtype}{int} *k\_max\_values\_m2;
+00606
+00607 \textcolor{keywordtype}{int} *l\_min\_values\_fc;
+00608 \textcolor{keywordtype}{int} *l\_max\_values\_fc;
+00609 \textcolor{keywordtype}{int} k\_min\_values\_fc;
+00610 \textcolor{keywordtype}{int} k\_max\_values\_fc;
+00611
+00612 \textcolor{keywordtype}{int} *l\_min\_values\_fcH;
+00613 \textcolor{keywordtype}{int} *l\_max\_values\_fcH;
+00614 \textcolor{keywordtype}{int} k\_min\_values\_fcH;
+00615 \textcolor{keywordtype}{int} k\_max\_values\_fcH;
+00616
+00617 \textcolor{keywordtype}{int} *l\_min\_values\_fcI;
+00618 \textcolor{keywordtype}{int} *l\_max\_values\_fcI;
+00619 \textcolor{keywordtype}{int} k\_min\_values\_fcI;
+00620 \textcolor{keywordtype}{int} k\_max\_values\_fcI;
+00621
+00622 \textcolor{keywordtype}{int} *l\_min\_values\_fcM;
+00623 \textcolor{keywordtype}{int} *l\_max\_values\_fcM;
+00624 \textcolor{keywordtype}{int} k\_min\_values\_fcM;
+00625 \textcolor{keywordtype}{int} k\_max\_values\_fcM;
+00626
+00627 \textcolor{comment}{/* auxilary arrays for remaining set of coarse graining (k,l) > (k\_max, l\_max) */}
+00628 \textcolor{keywordtype}{int} *E\_F5\_rem;
+00629 \textcolor{keywordtype}{int} *E\_F3\_rem;
+00630 \textcolor{keywordtype}{int} *E\_C\_rem;
+00631 \textcolor{keywordtype}{int} *E\_M\_rem;
+00632 \textcolor{keywordtype}{int} *E\_M1\_rem;
+00633 \textcolor{keywordtype}{int} *E\_M2\_rem;
+00634
+00635 \textcolor{keywordtype}{int} E\_Fc\_rem;
+00636 \textcolor{keywordtype}{int} E\_FcH\_rem;
+00637 \textcolor{keywordtype}{int} E\_FcI\_rem;
+00638 \textcolor{keywordtype}{int} E\_FcM\_rem;
+00639
+00640 \textcolor{preprocessor}{#ifdef COUNT\_STATES}
+00641 \textcolor{preprocessor}{} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{long} ***N\_F5;
+00642 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{long} ***N\_C;
+00643 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{long} ***N\_M;
+00644 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{long} ***N\_M1;
+00645 \textcolor{preprocessor}{#endif}
+00646 \textcolor{preprocessor}{}\} \hyperlink{structTwoDfold__vars}{TwoDfold\_vars};
+00647
+\hypertarget{data__structures_8h_source_l00660}{}\hyperlink{structTwoDpfold__solution}{00660} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+\hypertarget{data__structures_8h_source_l00661}{}\hyperlink{structTwoDpfold__solution_a40ad24e311b193866111623dd1331567}{00661} \textcolor{keywordtype}{int} \hyperlink{structTwoDpfold__solution_a40ad24e311b193866111623dd1331567}{k};
+\hypertarget{data__structures_8h_source_l00662}{}\hyperlink{structTwoDpfold__solution_aeaad6adc35413c76a2e2f18d96a6508c}{00662} \textcolor{keywordtype}{int} \hyperlink{structTwoDpfold__solution_aeaad6adc35413c76a2e2f18d96a6508c}{l};
+\hypertarget{data__structures_8h_source_l00663}{}\hyperlink{structTwoDpfold__solution_af0bf3071502b4a4fa81eeb6dfacef94c}{00663} FLT\_OR\_DBL \hyperlink{structTwoDpfold__solution_af0bf3071502b4a4fa81eeb6dfacef94c}{q};
+00664 \} \hyperlink{structTwoDpfold__solution}{TwoDpfold\_solution};
+00665
+\hypertarget{data__structures_8h_source_l00672}{}\hyperlink{structTwoDpfold__vars}{00672} \textcolor{keyword}{typedef} \textcolor{keyword}{struct}\{
+00673
+00674 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} alloc;
+\hypertarget{data__structures_8h_source_l00675}{}\hyperlink{structTwoDpfold__vars_a67f37b8901b8d0a049c216d4c6241b07}{00675} \textcolor{keywordtype}{char} *\hyperlink{structTwoDpfold__vars_a67f37b8901b8d0a049c216d4c6241b07}{ptype};
+\hypertarget{data__structures_8h_source_l00676}{}\hyperlink{structTwoDpfold__vars_a32c15a1e31856588259556c9020f32c6}{00676} \textcolor{keywordtype}{char} *\hyperlink{structTwoDpfold__vars_a32c15a1e31856588259556c9020f32c6}{sequence};
+\hypertarget{data__structures_8h_source_l00677}{}\hyperlink{structTwoDpfold__vars_a240311ae1e8e121441651d6101e187ac}{00677} \textcolor{keywordtype}{short} *S, *\hyperlink{structTwoDpfold__vars_a240311ae1e8e121441651d6101e187ac}{S1};
+\hypertarget{data__structures_8h_source_l00678}{}\hyperlink{structTwoDpfold__vars_a7292b6cbc1ee5bacf55e842f316c4bef}{00678} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{structTwoDpfold__vars_a7292b6cbc1ee5bacf55e842f316c4bef}{maxD1};
+\hypertarget{data__structures_8h_source_l00679}{}\hyperlink{structTwoDpfold__vars_a8900622d91454d2d037242e290e42834}{00679} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{structTwoDpfold__vars_a8900622d91454d2d037242e290e42834}{maxD2};
+00681 \textcolor{keywordtype}{double} \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}; \textcolor{comment}{/* temperature in last call to scale\_pf\_params */}
+00682 \textcolor{keywordtype}{double} init\_temp; \textcolor{comment}{/* temperature in last call to scale\_pf\_params */}
+00683 FLT\_OR\_DBL *scale;
+00684 FLT\_OR\_DBL \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\_scale};
+00685 \hyperlink{structpf__paramT}{pf\_paramT} *pf\_params; \textcolor{comment}{/* holds all [unscaled] pf parameters */}
+00686
+\hypertarget{data__structures_8h_source_l00687}{}\hyperlink{structTwoDpfold__vars_ac2d3e6abf0cb0e1df363904fc938076e}{00687} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_ac2d3e6abf0cb0e1df363904fc938076e}{my\_iindx};
+\hypertarget{data__structures_8h_source_l00688}{}\hyperlink{structTwoDpfold__vars_a0699e194a797532c91b284ab10272384}{00688} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_a0699e194a797532c91b284ab10272384}{jindx};
+00690 \textcolor{keywordtype}{short} *reference\_pt1;
+00691 \textcolor{keywordtype}{short} *reference\_pt2;
+00692
+\hypertarget{data__structures_8h_source_l00693}{}\hyperlink{structTwoDpfold__vars_aea15706d27b6b0fc19f5773919f43a8a}{00693} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_aea15706d27b6b0fc19f5773919f43a8a}{referenceBPs1};
+\hypertarget{data__structures_8h_source_l00694}{}\hyperlink{structTwoDpfold__vars_a1221396d712bf76b7f35297f2ab35a9f}{00694} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_a1221396d712bf76b7f35297f2ab35a9f}{referenceBPs2};
+\hypertarget{data__structures_8h_source_l00695}{}\hyperlink{structTwoDpfold__vars_accef8eaa05fa57ca33aa22cbc7b7aaff}{00695} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_accef8eaa05fa57ca33aa22cbc7b7aaff}{bpdist};
+\hypertarget{data__structures_8h_source_l00697}{}\hyperlink{structTwoDpfold__vars_a7c9e9af6224d4696118e05835441863d}{00697} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_a7c9e9af6224d4696118e05835441863d}{mm1};
+\hypertarget{data__structures_8h_source_l00698}{}\hyperlink{structTwoDpfold__vars_affb913470783f9edb12a0bfc22466269}{00698} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *\hyperlink{structTwoDpfold__vars_affb913470783f9edb12a0bfc22466269}{mm2};
+00700 \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ};
+00701 \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles};
+00702 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} seq\_length;
+00703
+00704 FLT\_OR\_DBL ***Q;
+00705 FLT\_OR\_DBL ***Q\_B;
+00706 FLT\_OR\_DBL ***Q\_M;
+00707 FLT\_OR\_DBL ***Q\_M1;
+00708 FLT\_OR\_DBL ***Q\_M2;
+00709
+00710 FLT\_OR\_DBL **Q\_c;
+00711 FLT\_OR\_DBL **Q\_cH;
+00712 FLT\_OR\_DBL **Q\_cI;
+00713 FLT\_OR\_DBL **Q\_cM;
+00714
+00715 \textcolor{keywordtype}{int} **l\_min\_values;
+00716 \textcolor{keywordtype}{int} **l\_max\_values;
+00717 \textcolor{keywordtype}{int} *k\_min\_values;
+00718 \textcolor{keywordtype}{int} *k\_max\_values;
+00719
+00720 \textcolor{keywordtype}{int} **l\_min\_values\_b;
+00721 \textcolor{keywordtype}{int} **l\_max\_values\_b;
+00722 \textcolor{keywordtype}{int} *k\_min\_values\_b;
+00723 \textcolor{keywordtype}{int} *k\_max\_values\_b;
+00724
+00725 \textcolor{keywordtype}{int} **l\_min\_values\_m;
+00726 \textcolor{keywordtype}{int} **l\_max\_values\_m;
+00727 \textcolor{keywordtype}{int} *k\_min\_values\_m;
+00728 \textcolor{keywordtype}{int} *k\_max\_values\_m;
+00729
+00730 \textcolor{keywordtype}{int} **l\_min\_values\_m1;
+00731 \textcolor{keywordtype}{int} **l\_max\_values\_m1;
+00732 \textcolor{keywordtype}{int} *k\_min\_values\_m1;
+00733 \textcolor{keywordtype}{int} *k\_max\_values\_m1;
+00734
+00735 \textcolor{keywordtype}{int} **l\_min\_values\_m2;
+00736 \textcolor{keywordtype}{int} **l\_max\_values\_m2;
+00737 \textcolor{keywordtype}{int} *k\_min\_values\_m2;
+00738 \textcolor{keywordtype}{int} *k\_max\_values\_m2;
+00739
+00740 \textcolor{keywordtype}{int} *l\_min\_values\_qc;
+00741 \textcolor{keywordtype}{int} *l\_max\_values\_qc;
+00742 \textcolor{keywordtype}{int} k\_min\_values\_qc;
+00743 \textcolor{keywordtype}{int} k\_max\_values\_qc;
+00744
+00745 \textcolor{keywordtype}{int} *l\_min\_values\_qcH;
+00746 \textcolor{keywordtype}{int} *l\_max\_values\_qcH;
+00747 \textcolor{keywordtype}{int} k\_min\_values\_qcH;
+00748 \textcolor{keywordtype}{int} k\_max\_values\_qcH;
+00749
+00750 \textcolor{keywordtype}{int} *l\_min\_values\_qcI;
+00751 \textcolor{keywordtype}{int} *l\_max\_values\_qcI;
+00752 \textcolor{keywordtype}{int} k\_min\_values\_qcI;
+00753 \textcolor{keywordtype}{int} k\_max\_values\_qcI;
+00754
+00755 \textcolor{keywordtype}{int} *l\_min\_values\_qcM;
+00756 \textcolor{keywordtype}{int} *l\_max\_values\_qcM;
+00757 \textcolor{keywordtype}{int} k\_min\_values\_qcM;
+00758 \textcolor{keywordtype}{int} k\_max\_values\_qcM;
+00759
+00760 \textcolor{comment}{/* auxilary arrays for remaining set of coarse graining (k,l) > (k\_max, l\_max) */}
+00761 FLT\_OR\_DBL *Q\_rem;
+00762 FLT\_OR\_DBL *Q\_B\_rem;
+00763 FLT\_OR\_DBL *Q\_M\_rem;
+00764 FLT\_OR\_DBL *Q\_M1\_rem;
+00765 FLT\_OR\_DBL *Q\_M2\_rem;
+00766
+00767 FLT\_OR\_DBL Q\_c\_rem;
+00768 FLT\_OR\_DBL Q\_cH\_rem;
+00769 FLT\_OR\_DBL Q\_cI\_rem;
+00770 FLT\_OR\_DBL Q\_cM\_rem;
+00771
+00772 \} \hyperlink{structTwoDpfold__vars}{TwoDpfold\_vars};
+00773
+00774 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+
+\begin{DoxyRefList}
+\item[\label{deprecated__deprecated000008}%
+\hypertarget{deprecated__deprecated000008}{}%
+Global \hyperlink{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{base\-\_\-pair} ]Do not use this variable anymore!
+\item[\label{deprecated__deprecated000012}%
+\hypertarget{deprecated__deprecated000012}{}%
+Global \hyperlink{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{centroid} (int length, double $\ast$dist)]This function is deprecated and should not be used anymore as it is not threadsafe!
+\item[\label{deprecated__deprecated000007}%
+\hypertarget{deprecated__deprecated000007}{}%
+Global \hyperlink{fold_8h_a657222e2758c46bf13b416ef3032e417}{energy\-\_\-of\-\_\-circ\-\_\-struct} (const char $\ast$string, const char $\ast$structure)]This function is deprecated and should not be used in future programs Use \hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure()} instead!
+\item[\label{deprecated__deprecated000005}%
+\hypertarget{deprecated__deprecated000005}{}%
+Global \hyperlink{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}{energy\-\_\-of\-\_\-struct} (const char $\ast$string, const char $\ast$structure)]This function is deprecated and should not be used in future programs! Use \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure()} instead!
+\item[\label{deprecated__deprecated000006}%
+\hypertarget{deprecated__deprecated000006}{}%
+Global \hyperlink{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{energy\-\_\-of\-\_\-struct\-\_\-pt} (const char $\ast$string, short $\ast$ptable, short $\ast$s, short $\ast$s1)]This function is deprecated and should not be used in future programs! Use \hyperlink{group__eval_ga8831445966b761417e713360791299d8}{energy\-\_\-of\-\_\-structure\-\_\-pt()} instead!
+\item[\label{deprecated__deprecated000015}%
+\hypertarget{deprecated__deprecated000015}{}%
+Global \hyperlink{part__func_8h_a7b6ab474cc80accc48010ccfcc59f96b}{exp\-Hairpin\-Energy} (int u, int type, short si1, short sj1, const char $\ast$string)]Use \hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{exp\-\_\-\-E\-\_\-\-Hairpin()} from \hyperlink{loop__energies_8h}{loop\-\_\-energies.\-h} instead
+\item[\label{deprecated__deprecated000014}%
+\hypertarget{deprecated__deprecated000014}{}%
+Global \hyperlink{part__func_8h_a68ba6f3a48e08ca131ab54621ce3a2d7}{exp\-Loop\-Energy} (int u1, int u2, int type, int type2, short si1, short sj1, short sp1, short sq1)]Use \hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{exp\-\_\-\-E\-\_\-\-Int\-Loop()} from \hyperlink{loop__energies_8h}{loop\-\_\-energies.\-h} instead
+\item[\label{deprecated__deprecated000016}%
+\hypertarget{deprecated__deprecated000016}{}%
+Global \hyperlink{part__func__co_8h_a334de3c96e2186abfbdc0eaea6d08b14}{get\-\_\-plist} (struct plist $\ast$pl, int length, double cut\-\_\-off)]\{ This function is deprecated and will be removed soon!\} use \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr()} instead!
+\item[\label{deprecated__deprecated000003}%
+\hypertarget{deprecated__deprecated000003}{}%
+Global \hyperlink{fold_8h_ab327ce11972f5ac069d52c8dedfdb700}{Hairpin\-E} (int size, int type, int si1, int sj1, const char $\ast$string)]\{This function is deprecated and will be removed soon. Use \hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\-\_\-\-Hairpin()} instead!\}
+\item[\label{deprecated__deprecated000010}%
+\hypertarget{deprecated__deprecated000010}{}%
+Global \hyperlink{fold__vars_8h_a92089ae3a51b5d75a14ce9cc29cc8317}{iindx} ]Do not use this variable anymore!
+\item[\label{deprecated__deprecated000017}%
+\hypertarget{deprecated__deprecated000017}{}%
+Global \hyperlink{part__func__co_8h_aa12dda9dd6179cdd22bcce87c0682c07}{init\-\_\-co\-\_\-pf\-\_\-fold} (int length)]\{ This function is deprecated and will be removed soon!\}
+\item[\label{deprecated__deprecated000011}%
+\hypertarget{deprecated__deprecated000011}{}%
+Global \hyperlink{part__func_8h_a15176e23eceeff8c7d14eabcfec8a2af}{init\-\_\-pf\-\_\-fold} (int length)]This function is obsolete and will be removed soon!
+\item[\label{deprecated__deprecated000001}%
+\hypertarget{deprecated__deprecated000001}{}%
+Global \hyperlink{cofold_8h_afee0c32208aa2ac97338b6e3fbad7fa5}{initialize\-\_\-cofold} (int length)]\{This function is obsolete and will be removed soon!\}
+\item[\label{deprecated__deprecated000004}%
+\hypertarget{deprecated__deprecated000004}{}%
+Global \hyperlink{fold_8h_ac3f0a28d9cb609d388b155445073fd20}{initialize\-\_\-fold} (int length)]\{This function is deprecated and will be removed soon!\}
+\item[\label{deprecated__deprecated000002}%
+\hypertarget{deprecated__deprecated000002}{}%
+Global \hyperlink{fold_8h_a2163034a25c6115d894b199e97e03f6c}{Loop\-Energy} (int n1, int n2, int type, int type\-\_\-2, int si1, int sj1, int sp1, int sq1)]\{This function is deprecated and will be removed soon. Use \hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\-\_\-\-Int\-Loop()} instead!\}
+\item[\label{deprecated__deprecated000018}%
+\hypertarget{deprecated__deprecated000018}{}%
+Global \hyperlink{profiledist_8h_a904c7eaf4a2413567c00ac4891749d18}{Make\-\_\-bp\-\_\-profile} (int length)]This function is deprecated and will be removed soon! See \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\-\_\-bp\-\_\-profile\-\_\-bppm()} for a replacement
+\item[\label{deprecated__deprecated000013}%
+\hypertarget{deprecated__deprecated000013}{}%
+Global \hyperlink{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}{mean\-\_\-bp\-\_\-dist} (int length)]This function is not threadsafe and should not be used anymore. Use \hyperlink{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{mean\-\_\-bp\-\_\-distance()} instead!
+\item[\label{deprecated__deprecated000009}%
+\hypertarget{deprecated__deprecated000009}{}%
+Global \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} ]Do not use this variable anymore!
+\item[\label{deprecated__deprecated000019}%
+\hypertarget{deprecated__deprecated000019}{}%
+Global \hyperlink{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}{P\-S\-\_\-dot\-\_\-plot} (char $\ast$string, char $\ast$file)]This function is deprecated and will be removed soon! Use \hyperlink{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{P\-S\-\_\-dot\-\_\-plot\-\_\-list()} instead!
+\end{DoxyRefList}
\ No newline at end of file
--- /dev/null
+\hypertarget{dir_97aefd0d527b934f1d99a682da8fe6a9}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib Directory Reference}
+\label{dir_97aefd0d527b934f1d99a682da8fe6a9}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib Directory Reference@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib Directory Reference}}
+}
+Directory dependency graph for lib\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=134pt]{dir_97aefd0d527b934f1d99a682da8fe6a9_dep}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{1_88_84__epars_8h}{1.\-8.\-4\-\_\-epars.\-h}
+\begin{DoxyCompactList}\small\item\em Free energy parameters for parameter file conversion. \end{DoxyCompactList}\item
+file \hyperlink{1_88_84__intloops_8h}{1.\-8.\-4\-\_\-intloops.\-h}
+\begin{DoxyCompactList}\small\item\em Free energy parameters for interior loop contributions needed by the parameter file conversion functions. \end{DoxyCompactList}\item
+file {\bfseries intl11.\-h}
+\item
+file {\bfseries intl11d\-H.\-h}
+\item
+file {\bfseries intl21.\-h}
+\item
+file {\bfseries intl21d\-H.\-h}
+\item
+file {\bfseries intl22.\-h}
+\item
+file {\bfseries intl22d\-H.\-h}
+\item
+file {\bfseries list.\-h}
+\end{DoxyCompactItemize}
--- /dev/null
+2f5a71d3ed813d4ecf9f93715ffcde67
\ No newline at end of file
--- /dev/null
+\hypertarget{dir_d72344b28b4f2089ce25682c4e6eba22}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H Directory Reference}
+\label{dir_d72344b28b4f2089ce25682c4e6eba22}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H Directory Reference@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H Directory Reference}}
+}
+Directory dependency graph for H\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=134pt]{dir_d72344b28b4f2089ce25682c4e6eba22_dep}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{2Dfold_8h}{2\-Dfold.\-h}
+\item
+file \hyperlink{2Dpfold_8h}{2\-Dpfold.\-h}
+\item
+file {\bfseries ali\-\_\-plex.\-h}
+\item
+file \hyperlink{alifold_8h}{alifold.\-h}
+\begin{DoxyCompactList}\small\item\em compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments \end{DoxyCompactList}\item
+file {\bfseries aln\-\_\-util.\-h}
+\item
+file \hyperlink{cofold_8h}{cofold.\-h}
+\begin{DoxyCompactList}\small\item\em M\-F\-E version of cofolding routines. \end{DoxyCompactList}\item
+file \hyperlink{convert__epars_8h}{convert\-\_\-epars.\-h}
+\begin{DoxyCompactList}\small\item\em Functions and definitions for energy parameter file format conversion. \end{DoxyCompactList}\item
+file \hyperlink{data__structures_8h}{data\-\_\-structures.\-h}
+\begin{DoxyCompactList}\small\item\em All datastructures and typedefs shared among the Vienna R\-N\-A Package can be found here. \end{DoxyCompactList}\item
+file \hyperlink{dist__vars_8h}{dist\-\_\-vars.\-h}
+\begin{DoxyCompactList}\small\item\em Global variables for Distance-\/\-Package. \end{DoxyCompactList}\item
+file \hyperlink{duplex_8h}{duplex.\-h}
+\begin{DoxyCompactList}\small\item\em Duplex folding function declarations... \end{DoxyCompactList}\item
+file \hyperlink{edit__cost_8h}{edit\-\_\-cost.\-h}
+\begin{DoxyCompactList}\small\item\em global variables for Edit Costs included by treedist.\-c and stringdist.\-c \end{DoxyCompactList}\item
+file \hyperlink{energy__const_8h}{energy\-\_\-const.\-h}
+\item
+file {\bfseries energy\-\_\-par.\-h}
+\item
+file \hyperlink{findpath_8h}{findpath.\-h}
+\begin{DoxyCompactList}\small\item\em Compute direct refolding paths between two secondary structures. \end{DoxyCompactList}\item
+file \hyperlink{fold_8h}{fold.\-h}
+\begin{DoxyCompactList}\small\item\em M\-F\-E calculations and energy evaluations for single R\-N\-A sequences. \end{DoxyCompactList}\item
+file \hyperlink{fold__vars_8h}{fold\-\_\-vars.\-h}
+\begin{DoxyCompactList}\small\item\em Here all all declarations of the global variables used throughout R\-N\-Alib. \end{DoxyCompactList}\item
+file \hyperlink{gquad_8h}{gquad.\-h}
+\begin{DoxyCompactList}\small\item\em Various functions related to G-\/quadruplex computations. \end{DoxyCompactList}\item
+file \hyperlink{inverse_8h}{inverse.\-h}
+\begin{DoxyCompactList}\small\item\em Inverse folding routines. \end{DoxyCompactList}\item
+file \hyperlink{Lfold_8h}{Lfold.\-h}
+\begin{DoxyCompactList}\small\item\em Predicting local M\-F\-E structures of large sequences. \end{DoxyCompactList}\item
+file \hyperlink{loop__energies_8h}{loop\-\_\-energies.\-h}
+\begin{DoxyCompactList}\small\item\em Energy evaluation for M\-F\-E and partition function calculations. \end{DoxyCompactList}\item
+file \hyperlink{LPfold_8h}{L\-Pfold.\-h}
+\begin{DoxyCompactList}\small\item\em Function declarations of partition function variants of the Lfold algorithm. \end{DoxyCompactList}\item
+file \hyperlink{MEA_8h}{M\-E\-A.\-h}
+\begin{DoxyCompactList}\small\item\em Computes a M\-E\-A (maximum expected accuracy) structure. \end{DoxyCompactList}\item
+file \hyperlink{mm_8h}{mm.\-h}
+\begin{DoxyCompactList}\small\item\em Several Maximum Matching implementations. \end{DoxyCompactList}\item
+file {\bfseries move\-\_\-set.\-h}
+\item
+file \hyperlink{naview_8h}{naview.\-h}
+\item
+file {\bfseries pair\-\_\-mat.\-h}
+\item
+file \hyperlink{params_8h}{params.\-h}
+\item
+file \hyperlink{part__func_8h}{part\-\_\-func.\-h}
+\begin{DoxyCompactList}\small\item\em Partition function of single R\-N\-A sequences. \end{DoxyCompactList}\item
+file \hyperlink{part__func__co_8h}{part\-\_\-func\-\_\-co.\-h}
+\begin{DoxyCompactList}\small\item\em Partition function for two R\-N\-A sequences. \end{DoxyCompactList}\item
+file \hyperlink{part__func__up_8h}{part\-\_\-func\-\_\-up.\-h}
+\begin{DoxyCompactList}\small\item\em Partition Function Cofolding as stepwise process. \end{DoxyCompactList}\item
+file {\bfseries P\-Kplex.\-h}
+\item
+file {\bfseries plex.\-h}
+\item
+file \hyperlink{plot__layouts_8h}{plot\-\_\-layouts.\-h}
+\begin{DoxyCompactList}\small\item\em Secondary structure plot layout algorithms. \end{DoxyCompactList}\item
+file {\bfseries Profile\-Aln.\-h}
+\item
+file \hyperlink{profiledist_8h}{profiledist.\-h}
+\item
+file \hyperlink{PS__dot_8h}{P\-S\-\_\-dot.\-h}
+\begin{DoxyCompactList}\small\item\em Various functions for plotting R\-N\-A secondary structures, dot-\/plots and other visualizations. \end{DoxyCompactList}\item
+file \hyperlink{read__epars_8h}{read\-\_\-epars.\-h}
+\item
+file {\bfseries ribo.\-h}
+\item
+file \hyperlink{RNAstruct_8h}{R\-N\-Astruct.\-h}
+\begin{DoxyCompactList}\small\item\em Parsing and Coarse Graining of Structures. \end{DoxyCompactList}\item
+file {\bfseries snofold.\-h}
+\item
+file {\bfseries snoop.\-h}
+\item
+file \hyperlink{stringdist_8h}{stringdist.\-h}
+\begin{DoxyCompactList}\small\item\em Functions for String Alignment. \end{DoxyCompactList}\item
+file \hyperlink{subopt_8h}{subopt.\-h}
+\begin{DoxyCompactList}\small\item\em R\-N\-Asubopt and density of states declarations. \end{DoxyCompactList}\item
+file {\bfseries svm\-\_\-utils.\-h}
+\item
+file \hyperlink{treedist_8h}{treedist.\-h}
+\begin{DoxyCompactList}\small\item\em Functions for \hyperlink{structTree}{Tree} Edit Distances. \end{DoxyCompactList}\item
+file \hyperlink{utils_8h}{utils.\-h}
+\begin{DoxyCompactList}\small\item\em Various utility-\/ and helper-\/functions used throughout the Vienna R\-N\-A package. \end{DoxyCompactList}\end{DoxyCompactItemize}
--- /dev/null
+c99aae40336a4045231f65870386b37f
\ No newline at end of file
--- /dev/null
+\hypertarget{dist__vars_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/dist\-\_\-vars.h File Reference}
+\label{dist__vars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/dist\-\_\-vars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/dist\-\_\-vars.\-h}}
+}
+
+
+Global variables for Distance-\/\-Package.
+
+
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{dist__vars_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Data Structures}
+\begin{DoxyCompactItemize}
+\item
+struct \hyperlink{structPostorder__list}{Postorder\-\_\-list}
+\item
+struct \hyperlink{structTree}{Tree}
+\item
+struct \hyperlink{structswString}{sw\-String}
+\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{edit\-\_\-backtrack}
+\begin{DoxyCompactList}\small\item\em Produce an alignment of the two structures being compared by tracing the editing path giving the minimum distance. \end{DoxyCompactList}\item
+\hypertarget{dist__vars_8h_ac1605fe3448ad0a0b809c4fb8f6a854a}{char $\ast$ \hyperlink{dist__vars_8h_ac1605fe3448ad0a0b809c4fb8f6a854a}{aligned\-\_\-line} \mbox{[}4\mbox{]}}\label{dist__vars_8h_ac1605fe3448ad0a0b809c4fb8f6a854a}
+
+\begin{DoxyCompactList}\small\item\em Contains the two aligned structures after a call to one of the distance functions with \hyperlink{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{edit\-\_\-backtrack} set to 1. \end{DoxyCompactList}\item
+int \hyperlink{dist__vars_8h_ab65d8ff14c6937612212526a60f59b3c}{cost\-\_\-matrix}
+\begin{DoxyCompactList}\small\item\em Specify the cost matrix to be used for distance calculations. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Global variables for Distance-\/\-Package.
+
+\subsection{Variable Documentation}
+\hypertarget{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{\index{dist\-\_\-vars.\-h@{dist\-\_\-vars.\-h}!edit\-\_\-backtrack@{edit\-\_\-backtrack}}
+\index{edit\-\_\-backtrack@{edit\-\_\-backtrack}!dist_vars.h@{dist\-\_\-vars.\-h}}
+\subsubsection[{edit\-\_\-backtrack}]{\setlength{\rightskip}{0pt plus 5cm}int edit\-\_\-backtrack}}\label{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}
+
+
+Produce an alignment of the two structures being compared by tracing the editing path giving the minimum distance.
+
+set to 1 if you want backtracking \hypertarget{dist__vars_8h_ab65d8ff14c6937612212526a60f59b3c}{\index{dist\-\_\-vars.\-h@{dist\-\_\-vars.\-h}!cost\-\_\-matrix@{cost\-\_\-matrix}}
+\index{cost\-\_\-matrix@{cost\-\_\-matrix}!dist_vars.h@{dist\-\_\-vars.\-h}}
+\subsubsection[{cost\-\_\-matrix}]{\setlength{\rightskip}{0pt plus 5cm}int cost\-\_\-matrix}}\label{dist__vars_8h_ab65d8ff14c6937612212526a60f59b3c}
+
+
+Specify the cost matrix to be used for distance calculations.
+
+if 0, use the default cost matrix (upper matrix in example), otherwise use Shapiro's costs (lower matrix).
\ No newline at end of file
--- /dev/null
+1a1e0bac6dc55dc829c7b07adb16d1bb
\ No newline at end of file
--- /dev/null
+\hypertarget{dist__vars_8h}{\section{dist\-\_\-vars.\-h}
+\label{dist__vars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/dist\-\_\-vars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/dist\-\_\-vars.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_DIST\_VARS\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_DIST\_VARS\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00015 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{edit\_backtrack};
+00016
+00021 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *\hyperlink{dist__vars_8h_ac1605fe3448ad0a0b809c4fb8f6a854a}{aligned\_line}[4];
+00022
+00029 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{dist__vars_8h_ab65d8ff14c6937612212526a60f59b3c}{cost\_matrix};
+00030
+00031 \textcolor{comment}{/* Global type defs for Distance-Package */}
+00032
+\hypertarget{dist__vars_8h_source_l00033}{}\hyperlink{structPostorder__list}{00033} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00034 \textcolor{keywordtype}{int} type;
+00035 \textcolor{keywordtype}{int} weight;
+00036 \textcolor{keywordtype}{int} father;
+00037 \textcolor{keywordtype}{int} sons;
+00038 \textcolor{keywordtype}{int} leftmostleaf;
+00039 \} \hyperlink{structPostorder__list}{Postorder\_list};
+00040
+\hypertarget{dist__vars_8h_source_l00041}{}\hyperlink{structTree}{00041} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00042 \hyperlink{structPostorder__list}{Postorder\_list} *postorder\_list;
+00043 \textcolor{keywordtype}{int} *keyroots;
+00044 \} \hyperlink{structTree}{Tree};
+00045
+\hypertarget{dist__vars_8h_source_l00046}{}\hyperlink{structswString}{00046} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00047 \textcolor{keywordtype}{int} type;
+00048 \textcolor{keywordtype}{int} sign;
+00049 \textcolor{keywordtype}{float} weight;
+00050 \} \hyperlink{structswString}{swString};
+00051 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{doxygen}
+
+% Packages used by this style file
+\RequirePackage{alltt}
+\RequirePackage{array}
+\RequirePackage{calc}
+\RequirePackage{color}
+\RequirePackage{fancyhdr}
+\RequirePackage{longtable}
+\RequirePackage{verbatim}
+\RequirePackage{ifthen}
+\RequirePackage{xtab}
+\RequirePackage{multirow}
+\RequirePackage[table]{xcolor}
+
+% Use helvetica font instead of times roman
+\RequirePackage{helvet}
+\RequirePackage{sectsty}
+\RequirePackage{tocloft}
+\providecommand{\rmdefault}{phv}
+\providecommand{\bfdefault}{bc}
+
+
+% Setup fancy headings
+\pagestyle{fancyplain}
+\newcommand{\clearemptydoublepage}{%
+ \newpage{\pagestyle{empty}\cleardoublepage}%
+}
+\renewcommand{\chaptermark}[1]{%
+ \markboth{#1}{}%
+}
+\renewcommand{\sectionmark}[1]{%
+ \markright{\thesection\ #1}%
+}
+\fancyhead[LE]{\fancyplain{}{\bfseries\thepage}}
+\fancyhead[CE]{\fancyplain{}{}}
+\fancyhead[RE]{\fancyplain{}{\bfseries\leftmark}}
+\fancyhead[LO]{\fancyplain{}{\bfseries\rightmark}}
+\fancyhead[CO]{\fancyplain{}{}}
+\fancyhead[RO]{\fancyplain{}{\bfseries\thepage}}
+\fancyfoot[LE]{\fancyplain{}{}}
+\fancyfoot[CE]{\fancyplain{}{}}
+\fancyfoot[RE]{\fancyplain{}{\bfseries\scriptsize Generated on Thu Sep 5 2013 11\-:51\-:48 for R\-N\-Alib-\/2.1.2 by Doxygen }}
+\fancyfoot[LO]{\fancyplain{}{\bfseries\scriptsize Generated on Thu Sep 5 2013 11\-:51\-:48 for R\-N\-Alib-\/2.1.2 by Doxygen }}
+\fancyfoot[CO]{\fancyplain{}{}}
+\fancyfoot[RO]{\fancyplain{}{}}
+%---------- Internal commands used in this style file ----------------
+
+\newcommand\tabfill[1]{%
+ \dimen@\linewidth%
+ \advance\dimen@\@totalleftmargin%
+ \advance\dimen@-\dimen\@curtab%
+ \parbox[t]\dimen@{\raggedright #1\ifhmode\strut\fi}%
+}
+
+\newcommand{\ensurespace}[1]{%
+ \begingroup
+ \setlength{\dimen@}{#1}%
+ \vskip\z@\@plus\dimen@
+ \penalty -100\vskip\z@\@plus -\dimen@
+ \vskip\dimen@
+ \penalty 9999%
+ \vskip -\dimen@
+ \vskip\z@skip % hide the previous |\vskip| from |\addvspace|
+ \endgroup
+}
+
+% Generic environment used by all paragraph-based environments defined
+% below. Note that the command \title{...} needs to be defined inside
+% those environments!
+\newenvironment{DoxyDesc}[1]{%
+ \ensurespace{4\baselineskip}%
+ \begin{list}{}%
+ {%
+ \settowidth{\labelwidth}{40pt}%
+ \setlength{\leftmargin}{\labelwidth}%
+ \setlength{\parsep}{0pt}%
+ \setlength{\itemsep}{-4pt}%
+ \renewcommand{\makelabel}{\entrylabel}%
+ }%
+ \item[#1]%
+}{%
+ \end{list}%
+}
+
+%---------- Commands used by doxygen LaTeX output generator ----------
+
+% Used by <pre> ... </pre>
+\newenvironment{DoxyPre}{%
+ \small%
+ \begin{alltt}%
+}{%
+ \end{alltt}%
+ \normalsize%
+}
+
+% Used by @code ... @endcode
+\newenvironment{DoxyCode}{%
+
+
+\begin{scriptsize}\begin{alltt}%
+}{%
+\end{alltt}\end{scriptsize}%
+}
+
+% Used by @example, @include, @includelineno and @dontinclude
+\newenvironment{DoxyCodeInclude}{%
+ \DoxyCode%
+}{%
+ \endDoxyCode%
+}
+
+% Used by @verbatim ... @endverbatim
+\newenvironment{DoxyVerb}{%
+ \footnotesize%
+ \verbatim%
+}{%
+ \endverbatim%
+ \normalsize%
+}
+
+% Used by @verbinclude
+\newenvironment{DoxyVerbInclude}{%
+ \DoxyVerb%
+}{%
+ \endDoxyVerb%
+}
+
+% Used by numbered lists (using '-#' or <ol> ... </ol>)
+\newenvironment{DoxyEnumerate}{%
+ \enumerate%
+}{%
+ \endenumerate%
+}
+
+% Used by bullet lists (using '-', @li, @arg, or <ul> ... </ul>)
+\newenvironment{DoxyItemize}{%
+ \itemize%
+}{%
+ \enditemize%
+}
+
+% Used by description lists (using <dl> ... </dl>)
+\newenvironment{DoxyDescription}{%
+ \description%
+}{%
+ \enddescription%
+}
+
+% Used by @image, @dotfile, and @dot ... @enddot
+% (only if caption is specified)
+\newenvironment{DoxyImage}{%
+ \begin{figure}[H]%
+ \begin{center}%
+}{%
+ \end{center}%
+ \end{figure}%
+}
+
+% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc
+% (only if no caption is specified)
+\newenvironment{DoxyImageNoCaption}{%
+}{%
+}
+
+% Used by @attention
+\newenvironment{DoxyAttention}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @author and @authors
+\newenvironment{DoxyAuthor}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @date
+\newenvironment{DoxyDate}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @invariant
+\newenvironment{DoxyInvariant}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @note
+\newenvironment{DoxyNote}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @post
+\newenvironment{DoxyPostcond}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @pre
+\newenvironment{DoxyPrecond}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @copyright
+\newenvironment{DoxyCopyright}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @remark
+\newenvironment{DoxyRemark}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @return
+\newenvironment{DoxyReturn}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @since
+\newenvironment{DoxySince}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @see
+\newenvironment{DoxySeeAlso}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @version
+\newenvironment{DoxyVersion}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @warning
+\newenvironment{DoxyWarning}[1]{%
+ \begin{DoxyDesc}{#1}%
+}{%
+ \end{DoxyDesc}%
+}
+
+% Used by @internal
+\newenvironment{DoxyInternal}[1]{%
+ \paragraph*{#1}%
+}{%
+}
+
+% Used by @par and @paragraph
+\newenvironment{DoxyParagraph}[1]{%
+ \begin{list}{}%
+ {%
+ \settowidth{\labelwidth}{40pt}%
+ \setlength{\leftmargin}{\labelwidth}%
+ \setlength{\parsep}{0pt}%
+ \setlength{\itemsep}{-4pt}%
+ \renewcommand{\makelabel}{\entrylabel}%
+ }%
+ \item[#1]%
+}{%
+ \end{list}%
+}
+
+% Used by parameter lists
+\newenvironment{DoxyParams}[2][]{%
+ \begin{DoxyDesc}{#2}%
+ \item[] \hspace{\fill} \vspace{-40pt}%
+ \settowidth{\labelwidth}{40pt}%
+ \setlength{\LTleft}{0pt}%
+ \setlength{\tabcolsep}{0.01\textwidth}%
+ \ifthenelse{\equal{#1}{}}%
+ {\begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
+ p{0.815\textwidth}|}}%
+ {\ifthenelse{\equal{#1}{1}}%
+ {\begin{longtable}{|>{\centering}p{0.10\textwidth}|%
+ >{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
+ p{0.685\textwidth}|}}%
+ {\begin{longtable}{|>{\centering}p{0.10\textwidth}|%
+ >{\centering\hspace{0pt}}p{0.15\textwidth}|%
+ >{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
+ p{0.515\textwidth}|}}%
+ }\hline%
+}{%
+ \end{longtable}%
+ \end{DoxyDesc}%
+}
+
+% Used for fields of simple structs
+\newenvironment{DoxyFields}[1]{%
+ \begin{DoxyDesc}{#1}%
+ \item[] \hspace{\fill} \vspace{-40pt}%
+ \settowidth{\labelwidth}{40pt}%
+ \setlength{\LTleft}{0pt}%
+ \setlength{\tabcolsep}{0.01\textwidth}%
+ \begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
+ p{0.15\textwidth}|%
+ p{0.635\textwidth}|}%
+ \hline%
+}{%
+ \end{longtable}%
+ \end{DoxyDesc}%
+}
+
+% is used for parameters within a detailed function description
+\newenvironment{DoxyParamCaption}{%
+ \renewcommand{\item}[2][]{##1 {\em ##2}}%
+ }{%
+}
+
+% Used by return value lists
+\newenvironment{DoxyRetVals}[1]{%
+ \begin{DoxyDesc}{#1}%
+ \begin{description}%
+ \item[] \hspace{\fill} \vspace{-25pt}%
+ \setlength{\tabcolsep}{0.01\textwidth}%
+ \begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.25\textwidth}|%
+ p{0.705\textwidth}|}%
+ \hline%
+}{%
+ \end{longtable}%
+ \end{description}%
+ \end{DoxyDesc}%
+}
+
+% Used by exception lists
+\newenvironment{DoxyExceptions}[1]{%
+ \begin{DoxyDesc}{#1}%
+ \begin{description}%
+ \item[] \hspace{\fill} \vspace{-25pt}%
+ \definecolor{tableShade}{HTML}{F8F8F8}%
+ \rowcolors{1}{white}{tableShade}%
+ \arrayrulecolor{gray}%
+ \setlength{\tabcolsep}{0.01\textwidth}%
+ \begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.25\textwidth}|%
+ p{0.705\textwidth}|}%
+ \hline%
+}{%
+ \end{longtable}%
+ \end{description}%
+ \end{DoxyDesc}%
+}
+
+% Used by template parameter lists
+\newenvironment{DoxyTemplParams}[1]{%
+ \begin{DoxyDesc}{#1}%
+ \begin{description}%
+ \item[] \hspace{\fill} \vspace{-25pt}%
+ \definecolor{tableShade}{HTML}{F8F8F8}%
+ \rowcolors{1}{white}{tableShade}%
+ \arrayrulecolor{gray}%
+ \setlength{\tabcolsep}{0.01\textwidth}%
+ \begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.25\textwidth}|%
+ p{0.705\textwidth}|}%
+ \hline%
+}{%
+ \end{longtable}%
+ \end{description}%
+ \end{DoxyDesc}%
+}
+
+\newcommand{\doxyref}[3]{\textbf{#1} (\textnormal{#2}\,\pageref{#3})}
+\newenvironment{DoxyCompactList}
+{\begin{list}{}{
+ \setlength{\leftmargin}{0.5cm}
+ \setlength{\itemsep}{0pt}
+ \setlength{\parsep}{0pt}
+ \setlength{\topsep}{0pt}
+ \renewcommand{\makelabel}{\hfill}}}
+{\end{list}}
+\newenvironment{DoxyCompactItemize}
+{
+ \begin{itemize}
+ \setlength{\itemsep}{-3pt}
+ \setlength{\parsep}{0pt}
+ \setlength{\topsep}{0pt}
+ \setlength{\partopsep}{0pt}
+}
+{\end{itemize}}
+\newcommand{\PBS}[1]{\let\temp=\\#1\let\\=\temp}
+\newlength{\tmplength}
+\newenvironment{TabularC}[1]
+{
+\setlength{\tmplength}
+ {\linewidth/(#1)-\tabcolsep*2-\arrayrulewidth*(#1+1)/(#1)}
+ \par\begin{xtabular*}{\linewidth}
+ {*{#1}{|>{\PBS\raggedright\hspace{0pt}}p{\the\tmplength}}|}
+}
+{\end{xtabular*}\par}
+\newcommand{\entrylabel}[1]{
+ {\parbox[b]{\labelwidth-4pt}{\makebox[0pt][l]{%
+ \usefont{OT1}{phv}{bc}{n}\color{darkgray}#1}\vspace{1.5\baselineskip}}}}
+\newenvironment{Desc}
+{\begin{list}{}
+ {
+ \settowidth{\labelwidth}{40pt}
+ \setlength{\leftmargin}{\labelwidth}
+ \setlength{\parsep}{0pt}
+ \setlength{\itemsep}{-4pt}
+ \renewcommand{\makelabel}{\entrylabel}
+ }
+}
+{\end{list}}
+\newsavebox{\xrefbox}
+\newlength{\xreflength}
+\newcommand{\xreflabel}[1]{%
+ \sbox{\xrefbox}{#1}%
+ \setlength{\xreflength}{\wd\xrefbox}%
+ \ifthenelse{\xreflength>\labelwidth}{%
+ \begin{minipage}{\textwidth}%
+ \setlength{\parindent}{0pt}%
+ \hangindent=15pt\bfseries #1\vspace{1.2\itemsep}%
+ \end{minipage}%
+ }{%
+ \parbox[b]{\labelwidth}{\makebox[0pt][l]{\textbf{#1}}}%
+ }}%
+\newenvironment{DoxyRefList}{%
+ \begin{list}{}{%
+ \setlength{\labelwidth}{10pt}%
+ \setlength{\leftmargin}{\labelwidth}%
+ \addtolength{\leftmargin}{\labelsep}%
+ \renewcommand{\makelabel}{\xreflabel}%
+ }%
+ }%
+{\end{list}}
+\newenvironment{DoxyRefDesc}[1]
+{\begin{list}{}{%
+ \renewcommand\makelabel[1]{\textbf{##1}}
+ \settowidth\labelwidth{\makelabel{#1}}
+ \setlength\leftmargin{\labelwidth+\labelsep}}}
+{\end{list}}
+\newenvironment{Indent}
+ {\begin{list}{}{\setlength{\leftmargin}{0.5cm}}
+ \item[]\ignorespaces}
+ {\unskip\end{list}}
+\setlength{\parindent}{0cm}
+\setlength{\parskip}{0.2cm}
+\addtocounter{secnumdepth}{2}
+\usepackage[T1]{fontenc}
+\makeatletter
+\renewcommand{\paragraph}{\@startsection{paragraph}{4}{0ex}%
+ {-1.0ex}%
+ {1.0ex}%
+ {\usefont{OT1}{phv}{bc}{n}\color{darkgray}}}
+\renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{0ex}%
+ {-1.0ex}%
+ {1.0ex}%
+ {\usefont{OT1}{phv}{bc}{n}\color{darkgray}}}
+\makeatother
+\allsectionsfont{\usefont{OT1}{phv}{bc}{n}\selectfont\color{darkgray}}
+\stepcounter{secnumdepth}
+\stepcounter{tocdepth}
+\definecolor{comment}{rgb}{0.5,0.0,0.0}
+\definecolor{keyword}{rgb}{0.0,0.5,0.0}
+\definecolor{keywordtype}{rgb}{0.38,0.25,0.125}
+\definecolor{keywordflow}{rgb}{0.88,0.5,0.0}
+\definecolor{preprocessor}{rgb}{0.5,0.38,0.125}
+\definecolor{stringliteral}{rgb}{0.0,0.125,0.25}
+\definecolor{charliteral}{rgb}{0.0,0.5,0.5}
+\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0}
+\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43}
+\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0}
+\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0}
--- /dev/null
+\hypertarget{duplex_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/duplex.h File Reference}
+\label{duplex_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/duplex.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/duplex.\-h}}
+}
+
+
+Duplex folding function declarations...
+
+
+Include dependency graph for duplex.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{duplex_8h__incl}
+\end{center}
+\end{figure}
+
+
+\subsection{Detailed Description}
+Duplex folding function declarations...
\ No newline at end of file
--- /dev/null
+d15764c5e8c249e98bc783e4f880f276
\ No newline at end of file
--- /dev/null
+\hypertarget{duplex_8h}{\section{duplex.\-h}
+\label{duplex_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/duplex.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/duplex.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_DUPLEX\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_DUPLEX\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00012 \hyperlink{structduplexT}{duplexT} duplexfold( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00013 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2);
+00014
+00015 \hyperlink{structduplexT}{duplexT} *duplex\_subopt( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00016 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00017 \textcolor{keywordtype}{int} delta,
+00018 \textcolor{keywordtype}{int} w);
+00019
+00020 \hyperlink{structduplexT}{duplexT} aliduplexfold(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1[],
+00021 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2[]);
+00022
+00023 \hyperlink{structduplexT}{duplexT} *aliduplex\_subopt(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1[],
+00024 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2[],
+00025 \textcolor{keywordtype}{int} delta,
+00026 \textcolor{keywordtype}{int} w);
+00027
+00028 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{edit__cost_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/edit\-\_\-cost.h File Reference}
+\label{edit__cost_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/edit\-\_\-cost.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/edit\-\_\-cost.\-h}}
+}
+
+
+global variables for Edit Costs included by treedist.\-c and stringdist.\-c
+
+
+
+
+\subsection{Detailed Description}
+global variables for Edit Costs included by treedist.\-c and stringdist.\-c
\ No newline at end of file
--- /dev/null
+\hypertarget{edit__cost_8h}{\section{edit\-\_\-cost.\-h}
+\label{edit__cost_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/edit\-\_\-cost.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/edit\-\_\-cost.\-h}}
+}
+
+\begin{DoxyCode}
+00001
+00006 \textcolor{preprocessor}{#define PRIVATE static}
+00007 \textcolor{preprocessor}{}
+00008 PRIVATE \textcolor{keywordtype}{char} sep = \textcolor{charliteral}{':'};
+00009 PRIVATE \textcolor{keywordtype}{char} *coding = \textcolor{stringliteral}{"Null:U:P:H:B:I:M:S:E:R"};
+00010
+00011 \textcolor{preprocessor}{#define INF 10000 }\textcolor{comment}{/* infinity */}\textcolor{preprocessor}{}
+00012 \textcolor{preprocessor}{}
+00013 \textcolor{keyword}{typedef} \textcolor{keywordtype}{int} CostMatrix[10][10];
+00014
+00015 PRIVATE CostMatrix *EditCost; \textcolor{comment}{/* will point to UsualCost or ShapiroCost */}
+00016
+00017 PRIVATE CostMatrix UsualCost =
+00018 \{
+00019
+00020 \textcolor{comment}{/* Null, U, P, H, B, I, M, S, E, R */}
+00021
+00022 \{ 0, 1, 2, 2, 2, 2, 2, 1, 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* Null replaced */}
+00023 \{ 1, 0, 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* U replaced */}
+00024 \{ 2, 1, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* P replaced */}
+00025 \{ 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, 2, 2, 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* H replaced */}
+00026 \{ 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 2, 0, 1, 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* B replaced */}
+00027 \{ 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 2, 1, 0, 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* I replaced */}
+00028 \{ 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 2, 2, 2, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* M replaced */}
+00029 \{ 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* S replaced */}
+00030 \{ 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, INF\}, \textcolor{comment}{/* E replaced */}
+00031 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0\}, \textcolor{comment}{/* R replaced */}
+00032
+00033 \};
+00034
+00035
+00036 PRIVATE CostMatrix ShapiroCost =
+00037 \{
+00038
+00039 \textcolor{comment}{/* Null, U, P, H, B, I, M, S, E, R */}
+00040
+00041 \{ 0, 1, 2, 100, 5, 5, 75, 5, 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* Null replaced */}
+00042 \{ 1, 0, 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* U replaced */}
+00043 \{ 2, 1, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* P replaced */}
+00044 \{ 100, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, 8, 8, 8, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* H replaced */}
+00045 \{ 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 8, 0, 3, 8, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* B replaced */}
+00046 \{ 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 8, 3, 0, 8, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* I replaced */}
+00047 \{ 75, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 8, 8, 8, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* M replaced */}
+00048 \{ 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}, \textcolor{comment}{/* S replaced */}
+00049 \{ 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, INF\}, \textcolor{comment}{/* E replaced */}
+00050 \{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0\}, \textcolor{comment}{/* R replaced */}
+00051
+00052 \};
+00053
+\end{DoxyCode}
--- /dev/null
+\hypertarget{energy__const_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-const.h File Reference}
+\label{energy__const_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-const.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-const.\-h}}
+}
+Include dependency graph for energy\-\_\-const.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{energy__const_8h__incl}
+\end{center}
+\end{figure}
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{energy__const_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Macros}
+\begin{DoxyCompactItemize}
+\item
+\#define \hyperlink{energy__const_8h_ab1e4a8d82f24ed5db01dde5f25269cf1}{G\-A\-S\-C\-O\-N\-S\-T}~1.\-98717 /$\ast$ in \mbox{[}cal/K\mbox{]} $\ast$/
+\item
+\#define \hyperlink{energy__const_8h_a307c72605e3713972b4f4fb2d53ea20e}{K0}~273.\-15
+\item
+\#define \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{I\-N\-F}~10000000 /$\ast$ (I\-N\-T\-\_\-\-M\-A\-X/10) $\ast$/
+\item
+\#define \hyperlink{energy__const_8h_a5064c29ab2d1e20c2304b3c67562774d}{F\-O\-R\-B\-I\-D\-D\-E\-N}~9999
+\item
+\#define \hyperlink{energy__const_8h_a96a9822fa134450197dd454b1478a193}{B\-O\-N\-U\-S}~10000
+\item
+\#define \hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{N\-B\-P\-A\-I\-R\-S}~7
+\item
+\#define \hyperlink{energy__const_8h_ae646250fd59311356c7e5722a81c3a96}{T\-U\-R\-N}~3
+\item
+\#define \hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{M\-A\-X\-L\-O\-O\-P}~30
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+energy constants
+
+\subsection{Macro Definition Documentation}
+\hypertarget{energy__const_8h_ab1e4a8d82f24ed5db01dde5f25269cf1}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!G\-A\-S\-C\-O\-N\-S\-T@{G\-A\-S\-C\-O\-N\-S\-T}}
+\index{G\-A\-S\-C\-O\-N\-S\-T@{G\-A\-S\-C\-O\-N\-S\-T}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{G\-A\-S\-C\-O\-N\-S\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define G\-A\-S\-C\-O\-N\-S\-T~1.\-98717 /$\ast$ in \mbox{[}cal/K\mbox{]} $\ast$/}}\label{energy__const_8h_ab1e4a8d82f24ed5db01dde5f25269cf1}
+The gas constant \hypertarget{energy__const_8h_a307c72605e3713972b4f4fb2d53ea20e}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!K0@{K0}}
+\index{K0@{K0}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{K0}]{\setlength{\rightskip}{0pt plus 5cm}\#define K0~273.\-15}}\label{energy__const_8h_a307c72605e3713972b4f4fb2d53ea20e}
+0 deg Celsius in Kelvin \hypertarget{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!I\-N\-F@{I\-N\-F}}
+\index{I\-N\-F@{I\-N\-F}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{I\-N\-F}]{\setlength{\rightskip}{0pt plus 5cm}\#define I\-N\-F~10000000 /$\ast$ (I\-N\-T\-\_\-\-M\-A\-X/10) $\ast$/}}\label{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}
+Infinity as used in minimization routines \hypertarget{energy__const_8h_a5064c29ab2d1e20c2304b3c67562774d}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!F\-O\-R\-B\-I\-D\-D\-E\-N@{F\-O\-R\-B\-I\-D\-D\-E\-N}}
+\index{F\-O\-R\-B\-I\-D\-D\-E\-N@{F\-O\-R\-B\-I\-D\-D\-E\-N}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{F\-O\-R\-B\-I\-D\-D\-E\-N}]{\setlength{\rightskip}{0pt plus 5cm}\#define F\-O\-R\-B\-I\-D\-D\-E\-N~9999}}\label{energy__const_8h_a5064c29ab2d1e20c2304b3c67562774d}
+forbidden \hypertarget{energy__const_8h_a96a9822fa134450197dd454b1478a193}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!B\-O\-N\-U\-S@{B\-O\-N\-U\-S}}
+\index{B\-O\-N\-U\-S@{B\-O\-N\-U\-S}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{B\-O\-N\-U\-S}]{\setlength{\rightskip}{0pt plus 5cm}\#define B\-O\-N\-U\-S~10000}}\label{energy__const_8h_a96a9822fa134450197dd454b1478a193}
+bonus contribution \hypertarget{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!N\-B\-P\-A\-I\-R\-S@{N\-B\-P\-A\-I\-R\-S}}
+\index{N\-B\-P\-A\-I\-R\-S@{N\-B\-P\-A\-I\-R\-S}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{N\-B\-P\-A\-I\-R\-S}]{\setlength{\rightskip}{0pt plus 5cm}\#define N\-B\-P\-A\-I\-R\-S~7}}\label{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}
+The number of distinguishable base pairs \hypertarget{energy__const_8h_ae646250fd59311356c7e5722a81c3a96}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!T\-U\-R\-N@{T\-U\-R\-N}}
+\index{T\-U\-R\-N@{T\-U\-R\-N}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{T\-U\-R\-N}]{\setlength{\rightskip}{0pt plus 5cm}\#define T\-U\-R\-N~3}}\label{energy__const_8h_ae646250fd59311356c7e5722a81c3a96}
+The minimum loop length \hypertarget{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{\index{energy\-\_\-const.\-h@{energy\-\_\-const.\-h}!M\-A\-X\-L\-O\-O\-P@{M\-A\-X\-L\-O\-O\-P}}
+\index{M\-A\-X\-L\-O\-O\-P@{M\-A\-X\-L\-O\-O\-P}!energy_const.h@{energy\-\_\-const.\-h}}
+\subsubsection[{M\-A\-X\-L\-O\-O\-P}]{\setlength{\rightskip}{0pt plus 5cm}\#define M\-A\-X\-L\-O\-O\-P~30}}\label{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}
+The maximum loop length
\ No newline at end of file
--- /dev/null
+59a6047517f9b2d4442026bfd43acb55
\ No newline at end of file
--- /dev/null
+80ee0d18fcfc92561f33763996de3866
\ No newline at end of file
--- /dev/null
+\hypertarget{energy__const_8h}{\section{energy\-\_\-const.\-h}
+\label{energy__const_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-const.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-const.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_ENERGY\_CONST\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_ENERGY\_CONST\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include <limits.h>}
+00005
+\hypertarget{energy__const_8h_source_l00012}{}\hyperlink{energy__const_8h_ab1e4a8d82f24ed5db01dde5f25269cf1}{00012} \textcolor{preprocessor}{#define GASCONST 1.98717 }\textcolor{comment}{/* in [cal/K] */}\textcolor{preprocessor}{}
+00013 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00014}{}\hyperlink{energy__const_8h_a307c72605e3713972b4f4fb2d53ea20e}{00014} \textcolor{preprocessor}{#define K0 273.15}
+00015 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00016}{}\hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{00016} \textcolor{preprocessor}{#define INF 10000000 }\textcolor{comment}{/* (INT\_MAX/10) */}\textcolor{preprocessor}{}
+00017 \textcolor{preprocessor}{}
+00018 \textcolor{preprocessor}{#define EMAX (INF/10)}
+00019 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00020}{}\hyperlink{energy__const_8h_a5064c29ab2d1e20c2304b3c67562774d}{00020} \textcolor{preprocessor}{#define FORBIDDEN 9999}
+00021 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00022}{}\hyperlink{energy__const_8h_a96a9822fa134450197dd454b1478a193}{00022} \textcolor{preprocessor}{#define BONUS 10000}
+00023 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00024}{}\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{00024} \textcolor{preprocessor}{#define NBPAIRS 7}
+00025 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00026}{}\hyperlink{energy__const_8h_ae646250fd59311356c7e5722a81c3a96}{00026} \textcolor{preprocessor}{#define TURN 3}
+00027 \textcolor{preprocessor}{}
+\hypertarget{energy__const_8h_source_l00028}{}\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{00028} \textcolor{preprocessor}{#define MAXLOOP 30}
+00029 \textcolor{preprocessor}{}
+00030 \textcolor{preprocessor}{#define VRNA\_GQUAD\_MISMATCH\_PENALTY 300 }\textcolor{comment}{/* penalty for incompatible nucleotides in an alignment that
+ destruct a gquad layer */}\textcolor{preprocessor}{}
+00031 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define VRNA\_GQUAD\_MISMATCH\_NUM\_ALI 1 }\textcolor{comment}{/* maximum number of mismatching sequences in the alignment
+ when gquad should be formed */}\textcolor{preprocessor}{}
+00032 \textcolor{preprocessor}{}
+00033 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{energy__par_8h}{\section{energy\-\_\-par.\-h}
+\label{energy__par_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-par.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-par.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/*}
+00002 \textcolor{comment}{ prototypes for energy\_par.c}
+00003 \textcolor{comment}{*/}
+00004
+00005 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_ENERGY\_PAR\_H\_\_}
+00006 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_ENERGY\_PAR\_H\_\_}
+00007 \textcolor{preprocessor}{}
+00008 \textcolor{preprocessor}{#include "\hyperlink{energy__const_8h}{energy\_const.h}"}
+00009
+00010 \textcolor{preprocessor}{#define PUBLIC}
+00011 \textcolor{preprocessor}{}
+00012
+00013 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} lxc37; \textcolor{comment}{/* parameter for logarithmic loop}
+00014 \textcolor{comment}{ energy extrapolation */}
+00015
+00016 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} stack37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1];
+00017 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} stackdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1]; \textcolor{comment}{/* stack enthalpies */}
+00018 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} entropies[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1]; \textcolor{comment}{/* not used anymore */}
+00019
+00020 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} hairpin37[31];
+00021 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} hairpindH[31];
+00022 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} bulge37[31];
+00023 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} bulgedH[31];
+00024 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} internal\_loop37[31];
+00025 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} internal\_loopdH[31];
+00026 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} internal2\_energy;
+00027 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} old\_mismatch\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00028 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchI37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* interior loop mismatches */}
+00029 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchIdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* interior loop mismatches */}
+00030 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatch1nI37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* interior loop mismatches */}
+00031 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatch23I37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* interior loop mismatches */}
+00032 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatch1nIdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* interior loop mismatches */}
+00033 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatch23IdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* interior loop mismatches */}
+00034 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchH37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* same for hairpins */}
+00035 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchM37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* same for multiloops */}
+00036 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchHdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* same for hairpins */}
+00037 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchMdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* same for multiloops */}
+00038 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchExt37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00039 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} mismatchExtdH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00040
+00041 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} dangle5\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5]; \textcolor{comment}{/* 5' dangle exterior of pair */}
+00042 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} dangle3\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5]; \textcolor{comment}{/* 3' dangle */}
+00043 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} dangle3\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5]; \textcolor{comment}{/* corresponding enthalpies */}
+00044 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} dangle5\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5];
+00045
+00046 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} int11\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5]; \textcolor{comment}{/* 1x1 interior loops */}
+00047 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} int11\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5];
+00048
+00049 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} int21\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5]; \textcolor{comment}{/* 2x1 interior loops */}
+00050 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} int21\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5];
+00051
+00052 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} int22\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5]; \textcolor{comment}{/* 2x2 interior loops */}
+00053 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} int22\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5];
+00054
+00055 \textcolor{comment}{/* constants for linearly destabilizing contributions for multi-loops}
+00056 \textcolor{comment}{ F = ML\_closing + ML\_intern*(k-1) + ML\_BASE*u */}
+00057 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ML\_BASE37;
+00058 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ML\_BASEdH;
+00059 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ML\_closing37;
+00060 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ML\_closingdH;
+00061 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ML\_intern37;
+00062 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ML\_interndH;
+00063
+00064 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} TripleC37;
+00065 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} TripleCdH;
+00066 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} MultipleCA37;
+00067 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} MultipleCAdH;
+00068 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} MultipleCB37;
+00069 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} MultipleCBdH;
+00070
+00071 \textcolor{comment}{/* Ninio-correction for asymmetric internal loops with branches n1 and n2 */}
+00072 \textcolor{comment}{/* ninio\_energy = min\{max\_ninio, |n1-n2|*F\_ninio[min\{4.0, n1, n2\}] \} */}
+00073 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} MAX\_NINIO; \textcolor{comment}{/* maximum correction */}
+00074 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} ninio37;
+00075 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} niniodH;
+00076 \textcolor{comment}{/* penalty for helices terminated by AU (actually not GC) */}
+00077 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} TerminalAU37;
+00078 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} TerminalAUdH;
+00079 \textcolor{comment}{/* penalty for forming bi-molecular duplex */}
+00080 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} DuplexInit37;
+00081 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} DuplexInitdH;
+00082 \textcolor{comment}{/* stabilizing contribution due to special hairpins of size 4 (tetraloops) */}
+00083 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} Tetraloops[]; \textcolor{comment}{/* string containing the special tetraloops */}
+00084 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} Tetraloop37[]; \textcolor{comment}{/* Bonus energy for special tetraloops */}
+00085 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} TetraloopdH[];
+00086 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} Triloops[]; \textcolor{comment}{/* string containing the special triloops */}
+00087 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} Triloop37[]; \textcolor{comment}{/* Bonus energy for special Triloops */}
+00088 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} TriloopdH[]; \textcolor{comment}{/* Bonus energy for special Triloops */}
+00089 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} Hexaloops[]; \textcolor{comment}{/* string containing the special triloops */}
+00090 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} Hexaloop37[]; \textcolor{comment}{/* Bonus energy for special Triloops */}
+00091 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} HexaloopdH[]; \textcolor{comment}{/* Bonus energy for special Triloops */}
+00092
+00093 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} GQuadAlpha37;
+00094 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} GQuadAlphadH;
+00095 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} GQuadBeta37;
+00096 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} GQuadBetadH;
+00097
+00098 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} Tmeasure; \textcolor{comment}{/* temperature of param measurements */}
+00099
+00100 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\section{File List}
+Here is a list of all documented files with brief descriptions\-:\begin{DoxyCompactList}
+\item\contentsline{section}{{\bfseries mainpage.\-h} }{\pageref{mainpage_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{2Dfold_8h}{2\-Dfold.\-h} }{\pageref{2Dfold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{2Dpfold_8h}{2\-Dpfold.\-h} }{\pageref{2Dpfold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries ali\-\_\-plex.\-h} }{\pageref{ali__plex_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{alifold_8h}{alifold.\-h} \\*Compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments }{\pageref{alifold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries aln\-\_\-util.\-h} }{\pageref{aln__util_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{cofold_8h}{cofold.\-h} \\*M\-F\-E version of cofolding routines }{\pageref{cofold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{convert__epars_8h}{convert\-\_\-epars.\-h} \\*Functions and definitions for energy parameter file format conversion }{\pageref{convert__epars_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h} \\*All datastructures and typedefs shared among the Vienna R\-N\-A Package can be found here }{\pageref{data__structures_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{dist__vars_8h}{dist\-\_\-vars.\-h} \\*Global variables for Distance-\/\-Package }{\pageref{dist__vars_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{duplex_8h}{duplex.\-h} \\*Duplex folding function declarations.. }{\pageref{duplex_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{edit__cost_8h}{edit\-\_\-cost.\-h} \\*Global variables for Edit Costs included by treedist.\-c and stringdist.\-c }{\pageref{edit__cost_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{energy__const_8h}{energy\-\_\-const.\-h} }{\pageref{energy__const_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries energy\-\_\-par.\-h} }{\pageref{energy__par_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{findpath_8h}{findpath.\-h} \\*Compute direct refolding paths between two secondary structures }{\pageref{findpath_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{fold_8h}{fold.\-h} \\*M\-F\-E calculations and energy evaluations for single R\-N\-A sequences }{\pageref{fold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{fold__vars_8h}{fold\-\_\-vars.\-h} \\*Here all all declarations of the global variables used throughout R\-N\-Alib }{\pageref{fold__vars_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{gquad_8h}{gquad.\-h} \\*Various functions related to G-\/quadruplex computations }{\pageref{gquad_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{inverse_8h}{inverse.\-h} \\*Inverse folding routines }{\pageref{inverse_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{Lfold_8h}{Lfold.\-h} \\*Predicting local M\-F\-E structures of large sequences }{\pageref{Lfold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{loop__energies_8h}{loop\-\_\-energies.\-h} \\*Energy evaluation for M\-F\-E and partition function calculations }{\pageref{loop__energies_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{LPfold_8h}{L\-Pfold.\-h} \\*Function declarations of partition function variants of the Lfold algorithm }{\pageref{LPfold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{MEA_8h}{M\-E\-A.\-h} \\*Computes a M\-E\-A (maximum expected accuracy) structure }{\pageref{MEA_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{mm_8h}{mm.\-h} \\*Several Maximum Matching implementations }{\pageref{mm_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries move\-\_\-set.\-h} }{\pageref{move__set_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{naview_8h}{naview.\-h} }{\pageref{naview_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries pair\-\_\-mat.\-h} }{\pageref{pair__mat_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{params_8h}{params.\-h} }{\pageref{params_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{part__func_8h}{part\-\_\-func.\-h} \\*Partition function of single R\-N\-A sequences }{\pageref{part__func_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{part__func__co_8h}{part\-\_\-func\-\_\-co.\-h} \\*Partition function for two R\-N\-A sequences }{\pageref{part__func__co_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{part__func__up_8h}{part\-\_\-func\-\_\-up.\-h} \\*Partition Function Cofolding as stepwise process }{\pageref{part__func__up_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries P\-Kplex.\-h} }{\pageref{PKplex_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries plex.\-h} }{\pageref{plex_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{plot__layouts_8h}{plot\-\_\-layouts.\-h} \\*Secondary structure plot layout algorithms }{\pageref{plot__layouts_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries Profile\-Aln.\-h} }{\pageref{ProfileAln_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{profiledist_8h}{profiledist.\-h} }{\pageref{profiledist_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{PS__dot_8h}{P\-S\-\_\-dot.\-h} \\*Various functions for plotting R\-N\-A secondary structures, dot-\/plots and other visualizations }{\pageref{PS__dot_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{read__epars_8h}{read\-\_\-epars.\-h} }{\pageref{read__epars_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries ribo.\-h} }{\pageref{ribo_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{RNAstruct_8h}{R\-N\-Astruct.\-h} \\*Parsing and Coarse Graining of Structures }{\pageref{RNAstruct_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries snofold.\-h} }{\pageref{snofold_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries snoop.\-h} }{\pageref{snoop_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{stringdist_8h}{stringdist.\-h} \\*Functions for String Alignment }{\pageref{stringdist_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{subopt_8h}{subopt.\-h} \\*R\-N\-Asubopt and density of states declarations }{\pageref{subopt_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/{\bfseries svm\-\_\-utils.\-h} }{\pageref{svm__utils_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{treedist_8h}{treedist.\-h} \\*Functions for \hyperlink{structTree}{Tree} Edit Distances }{\pageref{treedist_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{utils_8h}{utils.\-h} \\*Various utility-\/ and helper-\/functions used throughout the Vienna R\-N\-A package }{\pageref{utils_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/\hyperlink{1_88_84__epars_8h}{1.\-8.\-4\-\_\-epars.\-h} \\*Free energy parameters for parameter file conversion }{\pageref{1_88_84__epars_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/\hyperlink{1_88_84__intloops_8h}{1.\-8.\-4\-\_\-intloops.\-h} \\*Free energy parameters for interior loop contributions needed by the parameter file conversion functions }{\pageref{1_88_84__intloops_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries intl11.\-h} }{\pageref{intl11_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries intl11d\-H.\-h} }{\pageref{intl11dH_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries intl21.\-h} }{\pageref{intl21_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries intl21d\-H.\-h} }{\pageref{intl21dH_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries intl22.\-h} }{\pageref{intl22_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries intl22d\-H.\-h} }{\pageref{intl22dH_8h}}{}
+\item\contentsline{section}{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/{\bfseries list.\-h} }{\pageref{list_8h}}{}
+\end{DoxyCompactList}
--- /dev/null
+\hypertarget{findpath_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/findpath.h File Reference}
+\label{findpath_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/findpath.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/findpath.\-h}}
+}
+
+
+Compute direct refolding paths between two secondary structures.
+
+
+Include dependency graph for findpath.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{findpath_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{findpath_8h_ad0e14268e309af773ecd1fce6244ee50}{find\-\_\-saddle} (const char $\ast$seq, const char $\ast$struc1, const char $\ast$struc2, int max)
+\begin{DoxyCompactList}\small\item\em Find energy of a saddle point between 2 structures (serch only direct path) \end{DoxyCompactList}\item
+\hyperlink{structpath__t}{path\-\_\-t} $\ast$ \hyperlink{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}{get\-\_\-path} (const char $\ast$seq, const char $\ast$s1, const char $\ast$s2, int maxkeep)
+\begin{DoxyCompactList}\small\item\em Find refolding path between 2 structures (serch only direct path) \end{DoxyCompactList}\item
+void \hyperlink{findpath_8h_a326e6d1640bbfd035e3869f5f4c188f7}{free\-\_\-path} (\hyperlink{structpath__t}{path\-\_\-t} $\ast$path)
+\begin{DoxyCompactList}\small\item\em Free memory allocated by \hyperlink{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}{get\-\_\-path()} function. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Compute direct refolding paths between two secondary structures.
+
+\subsection{Function Documentation}
+\hypertarget{findpath_8h_ad0e14268e309af773ecd1fce6244ee50}{\index{findpath.\-h@{findpath.\-h}!find\-\_\-saddle@{find\-\_\-saddle}}
+\index{find\-\_\-saddle@{find\-\_\-saddle}!findpath.h@{findpath.\-h}}
+\subsubsection[{find\-\_\-saddle}]{\setlength{\rightskip}{0pt plus 5cm}int find\-\_\-saddle (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{seq, }
+\item[{const char $\ast$}]{struc1, }
+\item[{const char $\ast$}]{struc2, }
+\item[{int}]{max}
+\end{DoxyParamCaption}
+)}}\label{findpath_8h_ad0e14268e309af773ecd1fce6244ee50}
+
+
+Find energy of a saddle point between 2 structures (serch only direct path)
+
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & R\-N\-A sequence \\
+\hline
+{\em struc1} & A pointer to the character array where the first secondary structure in dot-\/bracket notation will be written to \\
+\hline
+{\em struc2} & A pointer to the character array where the second secondary structure in dot-\/bracket notation will be written to \\
+\hline
+{\em max} & integer how many strutures are being kept during the search \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the saddle energy in 10cal/mol
+\end{DoxyReturn}
+\hypertarget{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}{\index{findpath.\-h@{findpath.\-h}!get\-\_\-path@{get\-\_\-path}}
+\index{get\-\_\-path@{get\-\_\-path}!findpath.h@{findpath.\-h}}
+\subsubsection[{get\-\_\-path}]{\setlength{\rightskip}{0pt plus 5cm}{\bf path\-\_\-t}$\ast$ get\-\_\-path (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{seq, }
+\item[{const char $\ast$}]{s1, }
+\item[{const char $\ast$}]{s2, }
+\item[{int}]{maxkeep}
+\end{DoxyParamCaption}
+)}}\label{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}
+
+
+Find refolding path between 2 structures (serch only direct path)
+
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & R\-N\-A sequence \\
+\hline
+{\em s1} & A pointer to the character array where the first secondary structure in dot-\/bracket notation will be written to \\
+\hline
+{\em s2} & A pointer to the character array where the second secondary structure in dot-\/bracket notation will be written to \\
+\hline
+{\em maxkeep} & integer how many strutures are being kept during the search \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+direct refolding path between two structures
+\end{DoxyReturn}
+\hypertarget{findpath_8h_a326e6d1640bbfd035e3869f5f4c188f7}{\index{findpath.\-h@{findpath.\-h}!free\-\_\-path@{free\-\_\-path}}
+\index{free\-\_\-path@{free\-\_\-path}!findpath.h@{findpath.\-h}}
+\subsubsection[{free\-\_\-path}]{\setlength{\rightskip}{0pt plus 5cm}void free\-\_\-path (
+\begin{DoxyParamCaption}
+\item[{{\bf path\-\_\-t} $\ast$}]{path}
+\end{DoxyParamCaption}
+)}}\label{findpath_8h_a326e6d1640bbfd035e3869f5f4c188f7}
+
+
+Free memory allocated by \hyperlink{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}{get\-\_\-path()} function.
+
+
+\begin{DoxyParams}{Parameters}
+{\em path} & pointer to memory to be freed \\
+\hline
+\end{DoxyParams}
--- /dev/null
+5e0c02e0bb973f0f4dfc9817315b67d3
\ No newline at end of file
--- /dev/null
+\hypertarget{findpath_8h}{\section{findpath.\-h}
+\label{findpath_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/findpath.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/findpath.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_FIND\_PATH\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_FIND\_PATH\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00023 \textcolor{keywordtype}{int} \hyperlink{findpath_8h_ad0e14268e309af773ecd1fce6244ee50}{find\_saddle}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *seq,
+00024 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *struc1,
+00025 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *struc2,
+00026 \textcolor{keywordtype}{int} max);
+00027
+00028
+00041 \hyperlink{structpath__t}{path\_t}* \hyperlink{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}{get\_path}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *seq,
+00042 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00043 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* s2,
+00044 \textcolor{keywordtype}{int} maxkeep);
+00045
+00051 \textcolor{keywordtype}{void} \hyperlink{findpath_8h_a326e6d1640bbfd035e3869f5f4c188f7}{free\_path}(\hyperlink{structpath__t}{path\_t} *path);
+00052
+00053 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{fold_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold.h File Reference}
+\label{fold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold.\-h}}
+}
+
+
+M\-F\-E calculations and energy evaluations for single R\-N\-A sequences.
+
+
+Include dependency graph for fold.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{fold_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par} (const char $\ast$sequence, char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int is\-\_\-constrained, int is\-\_\-circular)
+\begin{DoxyCompactList}\small\item\em Compute minimum free energy and an appropriate secondary structure of an R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute minimum free energy and an appropriate secondary structure of an R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{circfold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute minimum free energy and an appropriate secondary structure of a circular R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure} (const char $\ast$string, const char $\ast$structure, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A using global model detail settings. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par} (const char $\ast$string, const char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure} (const char $\ast$string, const char $\ast$structure, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded circular R\-N\-A. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par} (const char $\ast$string, const char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded circular R\-N\-A. \end{DoxyCompactList}\item
+int \hyperlink{group__eval_ga8831445966b761417e713360791299d8}{energy\-\_\-of\-\_\-structure\-\_\-pt} (const char $\ast$string, short $\ast$ptable, short $\ast$s, short $\ast$s1, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A. \end{DoxyCompactList}\item
+int \hyperlink{group__eval_gada4701dd7519b29da75ceac147601f4e}{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par} (const char $\ast$string, short $\ast$ptable, short $\ast$s, short $\ast$s1, \hyperlink{structparamT}{param\-T} $\ast$parameters, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{void \hyperlink{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{free\-\_\-arrays} (void)}\label{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}
+
+\begin{DoxyCompactList}\small\item\em Free arrays for mfe folding. \end{DoxyCompactList}\item
+void \hyperlink{fold_8h_a87b7869bd1d8dc79c60775c74e009e9b}{parenthesis\-\_\-structure} (char $\ast$structure, \hyperlink{structbondT}{bond\-T} $\ast$bp, int length)
+\begin{DoxyCompactList}\small\item\em Create a dot-\/backet/parenthesis structure from backtracking stack. \end{DoxyCompactList}\item
+void \hyperlink{fold_8h_a325f3835c68f34fe833b2b7a5828857f}{parenthesis\-\_\-zuker} (char $\ast$structure, \hyperlink{structbondT}{bond\-T} $\ast$bp, int length)
+\begin{DoxyCompactList}\small\item\em Create a dot-\/backet/parenthesis structure from backtracking stack obtained by zuker suboptimal calculation in cofold.\-c. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{void \hyperlink{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{update\-\_\-fold\-\_\-params} (void)}\label{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}
+
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+float \hyperlink{fold_8h_a539ecaed89730f7644c202f304d7529b}{energy\-\_\-of\-\_\-move} (const char $\ast$string, const char $\ast$structure, int m1, int m2)
+\begin{DoxyCompactList}\small\item\em Calculate energy of a move (closing or opening of a base pair) \end{DoxyCompactList}\item
+int \hyperlink{fold_8h_a49e0ee561be69faf0568213546f6a53f}{energy\-\_\-of\-\_\-move\-\_\-pt} (short $\ast$pt, short $\ast$s, short $\ast$s1, int m1, int m2)
+\begin{DoxyCompactList}\small\item\em Calculate energy of a move (closing or opening of a base pair) \end{DoxyCompactList}\item
+int \hyperlink{fold_8h_a507d4fd93f4b398d793ba2402731388d}{loop\-\_\-energy} (short $\ast$ptable, short $\ast$s, short $\ast$s1, int i)
+\begin{DoxyCompactList}\small\item\em Calculate energy of a loop. \end{DoxyCompactList}\item
+void \hyperlink{fold_8h_adaa59b81664e2e36cb9932e891558fae}{assign\-\_\-plist\-\_\-from\-\_\-db} (\hyperlink{structplist}{plist} $\ast$$\ast$pl, const char $\ast$struc, float \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr})
+\begin{DoxyCompactList}\small\item\em Create a plist from a dot-\/bracket string. \end{DoxyCompactList}\item
+int \hyperlink{fold_8h_a2163034a25c6115d894b199e97e03f6c}{Loop\-Energy} (int n1, int n2, int type, int type\-\_\-2, int si1, int sj1, int sp1, int sq1)
+\item
+int \hyperlink{fold_8h_ab327ce11972f5ac069d52c8dedfdb700}{Hairpin\-E} (int size, int type, int si1, int sj1, const char $\ast$string)
+\item
+void \hyperlink{fold_8h_ac3f0a28d9cb609d388b155445073fd20}{initialize\-\_\-fold} (int length)
+\item
+float \hyperlink{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}{energy\-\_\-of\-\_\-struct} (const char $\ast$string, const char $\ast$structure)
+\item
+int \hyperlink{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{energy\-\_\-of\-\_\-struct\-\_\-pt} (const char $\ast$string, short $\ast$ptable, short $\ast$s, short $\ast$s1)
+\item
+float \hyperlink{fold_8h_a657222e2758c46bf13b416ef3032e417}{energy\-\_\-of\-\_\-circ\-\_\-struct} (const char $\ast$string, const char $\ast$structure)
+\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{fold_8h_a80c3c5fd35e7479704cc91d2d0367743}{int \hyperlink{fold_8h_a80c3c5fd35e7479704cc91d2d0367743}{log\-M\-L}}\label{fold_8h_a80c3c5fd35e7479704cc91d2d0367743}
+
+\begin{DoxyCompactList}\small\item\em if nonzero use logarithmic M\-L energy in energy\-\_\-of\-\_\-struct \end{DoxyCompactList}\item
+\hypertarget{fold_8h_a6c5655c8b272e3e6cab74dd0f540294f}{int \hyperlink{fold_8h_a6c5655c8b272e3e6cab74dd0f540294f}{uniq\-\_\-\-M\-L}}\label{fold_8h_a6c5655c8b272e3e6cab74dd0f540294f}
+
+\begin{DoxyCompactList}\small\item\em do M\-L decomposition uniquely (for subopt) \end{DoxyCompactList}\item
+\hypertarget{fold_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{int \hyperlink{fold_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point}}\label{fold_8h_ab9b2c3a37a5516614c06d0ab54b97cda}
+
+\begin{DoxyCompactList}\small\item\em set to first pos of second seq for cofolding \end{DoxyCompactList}\item
+\hypertarget{group__eval_ga567530678f6260a1a649a5beca5da4c5}{int \hyperlink{group__eval_ga567530678f6260a1a649a5beca5da4c5}{eos\-\_\-debug}}\label{group__eval_ga567530678f6260a1a649a5beca5da4c5}
+
+\begin{DoxyCompactList}\small\item\em verbose info from energy\-\_\-of\-\_\-struct \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+M\-F\-E calculations and energy evaluations for single R\-N\-A sequences. This file includes (almost) all function declarations within the R\-N\-Alib that are related to M\-F\-E folding...
+
+\subsection{Function Documentation}
+\hypertarget{fold_8h_a87b7869bd1d8dc79c60775c74e009e9b}{\index{fold.\-h@{fold.\-h}!parenthesis\-\_\-structure@{parenthesis\-\_\-structure}}
+\index{parenthesis\-\_\-structure@{parenthesis\-\_\-structure}!fold.h@{fold.\-h}}
+\subsubsection[{parenthesis\-\_\-structure}]{\setlength{\rightskip}{0pt plus 5cm}void parenthesis\-\_\-structure (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{structure, }
+\item[{{\bf bond\-T} $\ast$}]{bp, }
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a87b7869bd1d8dc79c60775c74e009e9b}
+
+
+Create a dot-\/backet/parenthesis structure from backtracking stack.
+
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+\hypertarget{fold_8h_a325f3835c68f34fe833b2b7a5828857f}{\index{fold.\-h@{fold.\-h}!parenthesis\-\_\-zuker@{parenthesis\-\_\-zuker}}
+\index{parenthesis\-\_\-zuker@{parenthesis\-\_\-zuker}!fold.h@{fold.\-h}}
+\subsubsection[{parenthesis\-\_\-zuker}]{\setlength{\rightskip}{0pt plus 5cm}void parenthesis\-\_\-zuker (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{structure, }
+\item[{{\bf bond\-T} $\ast$}]{bp, }
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a325f3835c68f34fe833b2b7a5828857f}
+
+
+Create a dot-\/backet/parenthesis structure from backtracking stack obtained by zuker suboptimal calculation in cofold.\-c.
+
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+\hypertarget{fold_8h_a539ecaed89730f7644c202f304d7529b}{\index{fold.\-h@{fold.\-h}!energy\-\_\-of\-\_\-move@{energy\-\_\-of\-\_\-move}}
+\index{energy\-\_\-of\-\_\-move@{energy\-\_\-of\-\_\-move}!fold.h@{fold.\-h}}
+\subsubsection[{energy\-\_\-of\-\_\-move}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-move (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure, }
+\item[{int}]{m1, }
+\item[{int}]{m2}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a539ecaed89730f7644c202f304d7529b}
+
+
+Calculate energy of a move (closing or opening of a base pair)
+
+If the parameters m1 and m2 are negative, it is deletion (opening) of a base pair, otherwise it is insertion (opening).
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{fold_8h_a539ecaed89730f7644c202f304d7529b}{energy\-\_\-of\-\_\-move()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em structure} & secondary structure in dot-\/bracket notation \\
+\hline
+{\em m1} & first coordinate of base pair \\
+\hline
+{\em m2} & second coordinate of base pair \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+energy change of the move in kcal/mol
+\end{DoxyReturn}
+\hypertarget{fold_8h_a49e0ee561be69faf0568213546f6a53f}{\index{fold.\-h@{fold.\-h}!energy\-\_\-of\-\_\-move\-\_\-pt@{energy\-\_\-of\-\_\-move\-\_\-pt}}
+\index{energy\-\_\-of\-\_\-move\-\_\-pt@{energy\-\_\-of\-\_\-move\-\_\-pt}!fold.h@{fold.\-h}}
+\subsubsection[{energy\-\_\-of\-\_\-move\-\_\-pt}]{\setlength{\rightskip}{0pt plus 5cm}int energy\-\_\-of\-\_\-move\-\_\-pt (
+\begin{DoxyParamCaption}
+\item[{short $\ast$}]{pt, }
+\item[{short $\ast$}]{s, }
+\item[{short $\ast$}]{s1, }
+\item[{int}]{m1, }
+\item[{int}]{m2}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a49e0ee561be69faf0568213546f6a53f}
+
+
+Calculate energy of a move (closing or opening of a base pair)
+
+If the parameters m1 and m2 are negative, it is deletion (opening) of a base pair, otherwise it is insertion (opening).
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{fold_8h_a539ecaed89730f7644c202f304d7529b}{energy\-\_\-of\-\_\-move()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em pt} & the pair table of the secondary structure \\
+\hline
+{\em s} & encoded R\-N\-A sequence \\
+\hline
+{\em s1} & encoded R\-N\-A sequence \\
+\hline
+{\em m1} & first coordinate of base pair \\
+\hline
+{\em m2} & second coordinate of base pair \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+energy change of the move in 10cal/mol
+\end{DoxyReturn}
+\hypertarget{fold_8h_a507d4fd93f4b398d793ba2402731388d}{\index{fold.\-h@{fold.\-h}!loop\-\_\-energy@{loop\-\_\-energy}}
+\index{loop\-\_\-energy@{loop\-\_\-energy}!fold.h@{fold.\-h}}
+\subsubsection[{loop\-\_\-energy}]{\setlength{\rightskip}{0pt plus 5cm}int loop\-\_\-energy (
+\begin{DoxyParamCaption}
+\item[{short $\ast$}]{ptable, }
+\item[{short $\ast$}]{s, }
+\item[{short $\ast$}]{s1, }
+\item[{int}]{i}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a507d4fd93f4b398d793ba2402731388d}
+
+
+Calculate energy of a loop.
+
+
+\begin{DoxyParams}{Parameters}
+{\em ptable} & the pair table of the secondary structure \\
+\hline
+{\em s} & encoded R\-N\-A sequence \\
+\hline
+{\em s1} & encoded R\-N\-A sequence \\
+\hline
+{\em i} & position of covering base pair \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+free energy of the loop in 10cal/mol
+\end{DoxyReturn}
+\hypertarget{fold_8h_adaa59b81664e2e36cb9932e891558fae}{\index{fold.\-h@{fold.\-h}!assign\-\_\-plist\-\_\-from\-\_\-db@{assign\-\_\-plist\-\_\-from\-\_\-db}}
+\index{assign\-\_\-plist\-\_\-from\-\_\-db@{assign\-\_\-plist\-\_\-from\-\_\-db}!fold.h@{fold.\-h}}
+\subsubsection[{assign\-\_\-plist\-\_\-from\-\_\-db}]{\setlength{\rightskip}{0pt plus 5cm}void assign\-\_\-plist\-\_\-from\-\_\-db (
+\begin{DoxyParamCaption}
+\item[{{\bf plist} $\ast$$\ast$}]{pl, }
+\item[{const char $\ast$}]{struc, }
+\item[{float}]{pr}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_adaa59b81664e2e36cb9932e891558fae}
+
+
+Create a plist from a dot-\/bracket string.
+
+The dot-\/bracket string is parsed and for each base pair an entry in the plist is created. The probability of each pair in the list is set by a function parameter.
+
+The end of the plist is marked by sequence positions i as well as j equal to 0. This condition should be used to stop looping over its entries
+
+This function is threadsafe
+
+
+\begin{DoxyParams}{Parameters}
+{\em pl} & A pointer to the plist that is to be created \\
+\hline
+{\em struc} & The secondary structure in dot-\/bracket notation \\
+\hline
+{\em pr} & The probability for each base pair \\
+\hline
+\end{DoxyParams}
+\hypertarget{fold_8h_a2163034a25c6115d894b199e97e03f6c}{\index{fold.\-h@{fold.\-h}!Loop\-Energy@{Loop\-Energy}}
+\index{Loop\-Energy@{Loop\-Energy}!fold.h@{fold.\-h}}
+\subsubsection[{Loop\-Energy}]{\setlength{\rightskip}{0pt plus 5cm}int Loop\-Energy (
+\begin{DoxyParamCaption}
+\item[{int}]{n1, }
+\item[{int}]{n2, }
+\item[{int}]{type, }
+\item[{int}]{type\-\_\-2, }
+\item[{int}]{si1, }
+\item[{int}]{sj1, }
+\item[{int}]{sp1, }
+\item[{int}]{sq1}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a2163034a25c6115d894b199e97e03f6c}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000002}{Deprecated}]\{This function is deprecated and will be removed soon. Use \hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\-\_\-\-Int\-Loop()} instead!\} \end{DoxyRefDesc}
+\hypertarget{fold_8h_ab327ce11972f5ac069d52c8dedfdb700}{\index{fold.\-h@{fold.\-h}!Hairpin\-E@{Hairpin\-E}}
+\index{Hairpin\-E@{Hairpin\-E}!fold.h@{fold.\-h}}
+\subsubsection[{Hairpin\-E}]{\setlength{\rightskip}{0pt plus 5cm}int Hairpin\-E (
+\begin{DoxyParamCaption}
+\item[{int}]{size, }
+\item[{int}]{type, }
+\item[{int}]{si1, }
+\item[{int}]{sj1, }
+\item[{const char $\ast$}]{string}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_ab327ce11972f5ac069d52c8dedfdb700}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000003}{Deprecated}]\{This function is deprecated and will be removed soon. Use \hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\-\_\-\-Hairpin()} instead!\} \end{DoxyRefDesc}
+\hypertarget{fold_8h_ac3f0a28d9cb609d388b155445073fd20}{\index{fold.\-h@{fold.\-h}!initialize\-\_\-fold@{initialize\-\_\-fold}}
+\index{initialize\-\_\-fold@{initialize\-\_\-fold}!fold.h@{fold.\-h}}
+\subsubsection[{initialize\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}void initialize\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_ac3f0a28d9cb609d388b155445073fd20}
+Allocate arrays for folding\par
+ \begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000004}{Deprecated}]\{This function is deprecated and will be removed soon!\}\end{DoxyRefDesc}
+\hypertarget{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}{\index{fold.\-h@{fold.\-h}!energy\-\_\-of\-\_\-struct@{energy\-\_\-of\-\_\-struct}}
+\index{energy\-\_\-of\-\_\-struct@{energy\-\_\-of\-\_\-struct}!fold.h@{fold.\-h}}
+\subsubsection[{energy\-\_\-of\-\_\-struct}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-struct (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}
+Calculate the free energy of an already folded R\-N\-A
+
+\begin{DoxyNote}{Note}
+This function is not entirely threadsafe! Depending on the state of the global variable \hyperlink{group__eval_ga567530678f6260a1a649a5beca5da4c5}{eos\-\_\-debug} it prints energy information to stdout or not...\par
+
+\end{DoxyNote}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000005}{Deprecated}]This function is deprecated and should not be used in future programs! Use \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure()} instead!\end{DoxyRefDesc}
+
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure}, \hyperlink{fold_8h_a657222e2758c46bf13b416ef3032e417}{energy\-\_\-of\-\_\-circ\-\_\-struct()}, \hyperlink{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{energy\-\_\-of\-\_\-struct\-\_\-pt()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em structure} & secondary structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the free energy of the input structure given the input sequence in kcal/mol
+\end{DoxyReturn}
+\hypertarget{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{\index{fold.\-h@{fold.\-h}!energy\-\_\-of\-\_\-struct\-\_\-pt@{energy\-\_\-of\-\_\-struct\-\_\-pt}}
+\index{energy\-\_\-of\-\_\-struct\-\_\-pt@{energy\-\_\-of\-\_\-struct\-\_\-pt}!fold.h@{fold.\-h}}
+\subsubsection[{energy\-\_\-of\-\_\-struct\-\_\-pt}]{\setlength{\rightskip}{0pt plus 5cm}int energy\-\_\-of\-\_\-struct\-\_\-pt (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{short $\ast$}]{ptable, }
+\item[{short $\ast$}]{s, }
+\item[{short $\ast$}]{s1}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}
+Calculate the free energy of an already folded R\-N\-A
+
+\begin{DoxyNote}{Note}
+This function is not entirely threadsafe! Depending on the state of the global variable \hyperlink{group__eval_ga567530678f6260a1a649a5beca5da4c5}{eos\-\_\-debug} it prints energy information to stdout or not...\par
+
+\end{DoxyNote}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000006}{Deprecated}]This function is deprecated and should not be used in future programs! Use \hyperlink{group__eval_ga8831445966b761417e713360791299d8}{energy\-\_\-of\-\_\-structure\-\_\-pt()} instead!\end{DoxyRefDesc}
+
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em ptable} & the pair table of the secondary structure \\
+\hline
+{\em s} & encoded R\-N\-A sequence \\
+\hline
+{\em s1} & encoded R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the free energy of the input structure given the input sequence in 10kcal/mol
+\end{DoxyReturn}
+\hypertarget{fold_8h_a657222e2758c46bf13b416ef3032e417}{\index{fold.\-h@{fold.\-h}!energy\-\_\-of\-\_\-circ\-\_\-struct@{energy\-\_\-of\-\_\-circ\-\_\-struct}}
+\index{energy\-\_\-of\-\_\-circ\-\_\-struct@{energy\-\_\-of\-\_\-circ\-\_\-struct}!fold.h@{fold.\-h}}
+\subsubsection[{energy\-\_\-of\-\_\-circ\-\_\-struct}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-circ\-\_\-struct (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{fold_8h_a657222e2758c46bf13b416ef3032e417}
+Calculate the free energy of an already folded circular R\-N\-A
+
+\begin{DoxyNote}{Note}
+This function is not entirely threadsafe! Depending on the state of the global variable \hyperlink{group__eval_ga567530678f6260a1a649a5beca5da4c5}{eos\-\_\-debug} it prints energy information to stdout or not...\par
+
+\end{DoxyNote}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000007}{Deprecated}]This function is deprecated and should not be used in future programs Use \hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure()} instead!\end{DoxyRefDesc}
+
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure()}, \hyperlink{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}{energy\-\_\-of\-\_\-struct()}, \hyperlink{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{energy\-\_\-of\-\_\-struct\-\_\-pt()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em structure} & secondary structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the free energy of the input structure given the input sequence in kcal/mol
+\end{DoxyReturn}
--- /dev/null
+ba444e7f7f1559b1c5c5aa0b41a7debe
\ No newline at end of file
--- /dev/null
+\hypertarget{fold_8h}{\section{fold.\-h}
+\label{fold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_FOLD\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_FOLD\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00011 \textcolor{preprocessor}{}
+00061 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold_8h_a80c3c5fd35e7479704cc91d2d0367743}{logML};
+00062
+00064 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold_8h_a6c5655c8b272e3e6cab74dd0f540294f}{uniq\_ML};
+00065
+00067 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\_point};
+00068
+00073 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__eval_ga567530678f6260a1a649a5beca5da4c5}{eos\_debug};
+00074
+00075
+00119 \textcolor{keywordtype}{float} \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\_par}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00120 \textcolor{keywordtype}{char} *structure,
+00121 \hyperlink{structparamT}{paramT} *parameters,
+00122 \textcolor{keywordtype}{int} is\_constrained,
+00123 \textcolor{keywordtype}{int} is\_circular);
+00124
+00143 \textcolor{keywordtype}{float} \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00144 \textcolor{keywordtype}{char} *structure);
+00145
+00164 \textcolor{keywordtype}{float} \hyperlink{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{circfold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00165 \textcolor{keywordtype}{char} *structure);
+00166
+00167
+00195 \textcolor{keywordtype}{float} \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\_of\_structure}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00196 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00197 \textcolor{keywordtype}{int} verbosity\_level);
+00198
+00214 \textcolor{keywordtype}{float} \hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\_of\_struct\_par}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00215 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00216 \hyperlink{structparamT}{paramT} *parameters,
+00217 \textcolor{keywordtype}{int} verbosity\_level);
+00218
+00237 \textcolor{keywordtype}{float} \hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\_of\_circ\_structure}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00238 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00239 \textcolor{keywordtype}{int} verbosity\_level);
+00240
+00256 \textcolor{keywordtype}{float} \hyperlink{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{energy\_of\_circ\_struct\_par}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00257 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00258 \hyperlink{structparamT}{paramT} *parameters,
+00259 \textcolor{keywordtype}{int} verbosity\_level);
+00260
+00261
+00262 \textcolor{keywordtype}{float} energy\_of\_gquad\_structure(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00263 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00264 \textcolor{keywordtype}{int} verbosity\_level);
+00265
+00286 \textcolor{keywordtype}{int} \hyperlink{group__eval_ga8831445966b761417e713360791299d8}{energy\_of\_structure\_pt}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00287 \textcolor{keywordtype}{short} *ptable,
+00288 \textcolor{keywordtype}{short} *s,
+00289 \textcolor{keywordtype}{short} *s1,
+00290 \textcolor{keywordtype}{int} verbosity\_level);
+00291
+00309 \textcolor{keywordtype}{int} \hyperlink{group__eval_gada4701dd7519b29da75ceac147601f4e}{energy\_of\_struct\_pt\_par}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00310 \textcolor{keywordtype}{short} *ptable,
+00311 \textcolor{keywordtype}{short} *s,
+00312 \textcolor{keywordtype}{short} *s1,
+00313 \hyperlink{structparamT}{paramT} *parameters,
+00314 \textcolor{keywordtype}{int} verbosity\_level);
+00315
+00322 \textcolor{keywordtype}{void} \hyperlink{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{free\_arrays}(\textcolor{keywordtype}{void});
+00323
+00324
+00330 \textcolor{keywordtype}{void} \hyperlink{fold_8h_a87b7869bd1d8dc79c60775c74e009e9b}{parenthesis\_structure}(\textcolor{keywordtype}{char} *structure,
+00331 \hyperlink{structbondT}{bondT} *bp,
+00332 \textcolor{keywordtype}{int} length);
+00333
+00340 \textcolor{keywordtype}{void} \hyperlink{fold_8h_a325f3835c68f34fe833b2b7a5828857f}{parenthesis\_zuker}( \textcolor{keywordtype}{char} *structure,
+00341 \hyperlink{structbondT}{bondT} *bp,
+00342 \textcolor{keywordtype}{int} length);
+00343
+00344 \textcolor{keywordtype}{void} letter\_structure(\textcolor{keywordtype}{char} *structure,
+00345 \hyperlink{structbondT}{bondT} *bp,
+00346 \textcolor{keywordtype}{int} length);
+00347
+00348
+00354 \textcolor{keywordtype}{void} \hyperlink{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{update\_fold\_params}(\textcolor{keywordtype}{void});
+00355
+00361 \textcolor{keywordtype}{void} update\_fold\_params\_par(\hyperlink{structparamT}{paramT} *parameters);
+00362
+00368 \textcolor{keywordtype}{char} *backtrack\_fold\_from\_pair(\textcolor{keywordtype}{char} *sequence,
+00369 \textcolor{keywordtype}{int} i,
+00370 \textcolor{keywordtype}{int} j);
+00371
+00385 \textcolor{keywordtype}{float} \hyperlink{fold_8h_a539ecaed89730f7644c202f304d7529b}{energy\_of\_move}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00386 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00387 \textcolor{keywordtype}{int} m1,
+00388 \textcolor{keywordtype}{int} m2);
+00389
+00390
+00406 \textcolor{keywordtype}{int} \hyperlink{fold_8h_a49e0ee561be69faf0568213546f6a53f}{energy\_of\_move\_pt}(\textcolor{keywordtype}{short} *pt,
+00407 \textcolor{keywordtype}{short} *s,
+00408 \textcolor{keywordtype}{short} *s1,
+00409 \textcolor{keywordtype}{int} m1,
+00410 \textcolor{keywordtype}{int} m2);
+00411
+00421 \textcolor{keywordtype}{int} \hyperlink{fold_8h_a507d4fd93f4b398d793ba2402731388d}{loop\_energy}(\textcolor{keywordtype}{short} *ptable,
+00422 \textcolor{keywordtype}{short} *s,
+00423 \textcolor{keywordtype}{short} *s1,
+00424 \textcolor{keywordtype}{int} i);
+00425
+00431 \textcolor{keywordtype}{void} export\_fold\_arrays(\textcolor{keywordtype}{int} **f5\_p,
+00432 \textcolor{keywordtype}{int} **c\_p,
+00433 \textcolor{keywordtype}{int} **fML\_p,
+00434 \textcolor{keywordtype}{int} **fM1\_p,
+00435 \textcolor{keywordtype}{int} **indx\_p,
+00436 \textcolor{keywordtype}{char} **ptype\_p);
+00437
+00443 \textcolor{keywordtype}{void} export\_fold\_arrays\_par(\textcolor{keywordtype}{int} **f5\_p,
+00444 \textcolor{keywordtype}{int} **c\_p,
+00445 \textcolor{keywordtype}{int} **fML\_p,
+00446 \textcolor{keywordtype}{int} **fM1\_p,
+00447 \textcolor{keywordtype}{int} **indx\_p,
+00448 \textcolor{keywordtype}{char} **ptype\_p,
+00449 \hyperlink{structparamT}{paramT} **P\_p);
+00450
+00456 \textcolor{keywordtype}{void} export\_circfold\_arrays(\textcolor{keywordtype}{int} *Fc\_p,
+00457 \textcolor{keywordtype}{int} *FcH\_p,
+00458 \textcolor{keywordtype}{int} *FcI\_p,
+00459 \textcolor{keywordtype}{int} *FcM\_p,
+00460 \textcolor{keywordtype}{int} **fM2\_p,
+00461 \textcolor{keywordtype}{int} **f5\_p,
+00462 \textcolor{keywordtype}{int} **c\_p,
+00463 \textcolor{keywordtype}{int} **fML\_p,
+00464 \textcolor{keywordtype}{int} **fM1\_p,
+00465 \textcolor{keywordtype}{int} **indx\_p,
+00466 \textcolor{keywordtype}{char} **ptype\_p);
+00467
+00473 \textcolor{keywordtype}{void} export\_circfold\_arrays\_par(\textcolor{keywordtype}{int} *Fc\_p,
+00474 \textcolor{keywordtype}{int} *FcH\_p,
+00475 \textcolor{keywordtype}{int} *FcI\_p,
+00476 \textcolor{keywordtype}{int} *FcM\_p,
+00477 \textcolor{keywordtype}{int} **fM2\_p,
+00478 \textcolor{keywordtype}{int} **f5\_p,
+00479 \textcolor{keywordtype}{int} **c\_p,
+00480 \textcolor{keywordtype}{int} **fML\_p,
+00481 \textcolor{keywordtype}{int} **fM1\_p,
+00482 \textcolor{keywordtype}{int} **indx\_p,
+00483 \textcolor{keywordtype}{char} **ptype\_p,
+00484 \hyperlink{structparamT}{paramT} **P\_p);
+00485
+00486
+00504 \textcolor{keywordtype}{void} \hyperlink{fold_8h_adaa59b81664e2e36cb9932e891558fae}{assign\_plist\_from\_db}(\hyperlink{structplist}{plist} **pl,
+00505 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *struc,
+00506 \textcolor{keywordtype}{float} pr);
+00507
+00508 \textcolor{comment}{/* finally moved the loop energy function declarations to this header... */}
+00509 \textcolor{comment}{/* BUT: The functions only exist for backward compatibility reasons! */}
+00510 \textcolor{comment}{/* You better include "loop\_energies.h" and call the functions: */}
+00511 \textcolor{comment}{/* E\_Hairpin() and E\_IntLoop() which are (almost) threadsafe as they get */}
+00512 \textcolor{comment}{/* a pointer to the energy parameter datastructure as additional argument */}
+00513
+00518 DEPRECATED(\textcolor{keywordtype}{int} \hyperlink{fold_8h_a2163034a25c6115d894b199e97e03f6c}{LoopEnergy}(\textcolor{keywordtype}{int} n1,
+00519 \textcolor{keywordtype}{int} n2,
+00520 \textcolor{keywordtype}{int} type,
+00521 \textcolor{keywordtype}{int} type\_2,
+00522 \textcolor{keywordtype}{int} si1,
+00523 \textcolor{keywordtype}{int} sj1,
+00524 \textcolor{keywordtype}{int} sp1,
+00525 \textcolor{keywordtype}{int} sq1));
+00526
+00531 DEPRECATED(\textcolor{keywordtype}{int} \hyperlink{fold_8h_ab327ce11972f5ac069d52c8dedfdb700}{HairpinE}(\textcolor{keywordtype}{int} size,
+00532 \textcolor{keywordtype}{int} type,
+00533 \textcolor{keywordtype}{int} si1,
+00534 \textcolor{keywordtype}{int} sj1,
+00535 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string}));
+00536
+00542 DEPRECATED(\textcolor{keywordtype}{void} \hyperlink{fold_8h_ac3f0a28d9cb609d388b155445073fd20}{initialize\_fold}(\textcolor{keywordtype}{int} length));
+00543
+00558 DEPRECATED(\textcolor{keywordtype}{float} \hyperlink{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}{energy\_of\_struct}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00559 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure));
+00560
+00577 DEPRECATED(\textcolor{keywordtype}{int} \hyperlink{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{energy\_of\_struct\_pt}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00578 \textcolor{keywordtype}{short} *ptable,
+00579 \textcolor{keywordtype}{short} *s,
+00580 \textcolor{keywordtype}{short} *s1));
+00581
+00596 DEPRECATED(\textcolor{keywordtype}{float} \hyperlink{fold_8h_a657222e2758c46bf13b416ef3032e417}{energy\_of\_circ\_struct}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00597 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure));
+00598
+00599 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{fold__vars_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold\-\_\-vars.h File Reference}
+\label{fold__vars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold\-\_\-vars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold\-\_\-vars.\-h}}
+}
+
+
+Here all all declarations of the global variables used throughout R\-N\-Alib.
+
+
+Include dependency graph for fold\-\_\-vars.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{fold__vars_8h__incl}
+\end{center}
+\end{figure}
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{fold__vars_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{fold__vars_8h_a4c3257186a796182462f18a5480ac8b3}{set\-\_\-model\-\_\-details} (\hyperlink{structmodel__detailsT}{model\-\_\-details\-T} $\ast$md)
+\begin{DoxyCompactList}\small\item\em Set default model details. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{fold__vars_8h_a0afc287c2464866d94858c39175154af}{int \hyperlink{fold__vars_8h_a0afc287c2464866d94858c39175154af}{fold\-\_\-constrained}}\label{fold__vars_8h_a0afc287c2464866d94858c39175154af}
+
+\begin{DoxyCompactList}\small\item\em Global switch to activate/deactivate folding with structure constraints. \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}{no\-Lonely\-Pairs}
+\begin{DoxyCompactList}\small\item\em Global switch to avoid/allow helices of length 1. \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}
+\begin{DoxyCompactList}\small\item\em Switch the energy model for dangling end contributions (0, 1, 2, 3) \end{DoxyCompactList}\item
+\hypertarget{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}{int \hyperlink{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}{no\-G\-U}}\label{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}
+
+\begin{DoxyCompactList}\small\item\em Global switch to forbid/allow G\-U base pairs at all. \end{DoxyCompactList}\item
+\hypertarget{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{int \hyperlink{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{no\-\_\-closing\-G\-U}}\label{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}
+
+\begin{DoxyCompactList}\small\item\em G\-U allowed only inside stacks if set to 1. \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{tetra\-\_\-loop}
+\begin{DoxyCompactList}\small\item\em Include special stabilizing energies for some tri-\/, tetra-\/ and hexa-\/loops;. \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_afb1ef1166da85092ae8a325e02dcae71}{energy\-\_\-set}
+\begin{DoxyCompactList}\small\item\em 0 = B\-P; 1=any mit G\-C; 2=any mit A\-U-\/parameter \end{DoxyCompactList}\item
+\hypertarget{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ}}\label{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}
+
+\begin{DoxyCompactList}\small\item\em backward compatibility variable.. this does not effect anything \end{DoxyCompactList}\item
+\hypertarget{fold__vars_8h_af2763d55a74663a5e60652b8880baa5b}{int \hyperlink{fold__vars_8h_af2763d55a74663a5e60652b8880baa5b}{csv}}\label{fold__vars_8h_af2763d55a74663a5e60652b8880baa5b}
+
+\begin{DoxyCompactList}\small\item\em generate comma seperated output \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_ac408868ba00671cbc7d1d535105af045}{old\-Ali\-En}
+\item
+int \hyperlink{fold__vars_8h_a0656afca1d2853f9ee6591172f5638de}{ribo}
+\item
+char $\ast$ \hyperlink{fold__vars_8h_a5dbaa0cca2c8c82048a0f0e38e164944}{Ribosum\-File}
+\item
+char $\ast$ \hyperlink{fold__vars_8h_a2695d91cc535d09c2eae5c3884e2ec64}{nonstandards}
+\begin{DoxyCompactList}\small\item\em contains allowed non standard base pairs \end{DoxyCompactList}\item
+double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}
+\begin{DoxyCompactList}\small\item\em Rescale energy parameters to a temperature in deg\-C. \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_af349001ad3b4d008d0051d935b1b6261}{james\-\_\-rule}
+\item
+int \hyperlink{fold__vars_8h_a80c3c5fd35e7479704cc91d2d0367743}{log\-M\-L}
+\item
+int \hyperlink{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point}
+\begin{DoxyCompactList}\small\item\em Marks the position (starting from 1) of the first nucleotide of the second molecule within the concatenated sequence. \end{DoxyCompactList}\item
+\hyperlink{structbondT}{bond\-T} $\ast$ \hyperlink{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{base\-\_\-pair}
+\begin{DoxyCompactList}\small\item\em Contains a list of base pairs after a call to \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}. \end{DoxyCompactList}\item
+double $\ast$ \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr}
+\begin{DoxyCompactList}\small\item\em A pointer to the base pair probability matrix. \end{DoxyCompactList}\item
+int $\ast$ \hyperlink{fold__vars_8h_a92089ae3a51b5d75a14ce9cc29cc8317}{iindx}
+\begin{DoxyCompactList}\small\item\em index array to move through pr. \end{DoxyCompactList}\item
+double \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale}
+\begin{DoxyCompactList}\small\item\em A scaling factor used by \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} to avoid overflows. \end{DoxyCompactList}\item
+int \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\-\_\-backtrack}
+\begin{DoxyCompactList}\small\item\em do backtracking, i.\-e. compute secondary structures or base pair probabilities \end{DoxyCompactList}\item
+char \hyperlink{fold__vars_8h_a83bdb43472a259c71e69fa9f70f420c3}{backtrack\-\_\-type}
+\begin{DoxyCompactList}\small\item\em A backtrack array marker for \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\-\_\-fold()} \end{DoxyCompactList}\item
+\hypertarget{fold__vars_8h_a25f2bdcdf56e813d288845484a13d704}{int \hyperlink{fold__vars_8h_a25f2bdcdf56e813d288845484a13d704}{gquad}}\label{fold__vars_8h_a25f2bdcdf56e813d288845484a13d704}
+
+\begin{DoxyCompactList}\small\item\em Allow G-\/quadruplex formation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Here all all declarations of the global variables used throughout R\-N\-Alib.
+
+\subsection{Function Documentation}
+\hypertarget{fold__vars_8h_a4c3257186a796182462f18a5480ac8b3}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!set\-\_\-model\-\_\-details@{set\-\_\-model\-\_\-details}}
+\index{set\-\_\-model\-\_\-details@{set\-\_\-model\-\_\-details}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{set\-\_\-model\-\_\-details}]{\setlength{\rightskip}{0pt plus 5cm}void set\-\_\-model\-\_\-details (
+\begin{DoxyParamCaption}
+\item[{{\bf model\-\_\-details\-T} $\ast$}]{md}
+\end{DoxyParamCaption}
+)}}\label{fold__vars_8h_a4c3257186a796182462f18a5480ac8b3}
+
+
+Set default model details.
+
+Use this function if you wish to initialize a \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} data structure with its default values, i.\-e. the global model settings
+
+\begin{DoxySeeAlso}{See Also}
+
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em md} & A pointer to the data structure that shall be initialized \\
+\hline
+\end{DoxyParams}
+
+
+\subsection{Variable Documentation}
+\hypertarget{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!no\-Lonely\-Pairs@{no\-Lonely\-Pairs}}
+\index{no\-Lonely\-Pairs@{no\-Lonely\-Pairs}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{no\-Lonely\-Pairs}]{\setlength{\rightskip}{0pt plus 5cm}int no\-Lonely\-Pairs}}\label{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}
+
+
+Global switch to avoid/allow helices of length 1.
+
+Disallow all pairs which can only occur as lonely pairs (i.\-e. as helix of length 1). This avoids lonely base pairs in the predicted structures in most cases. \hypertarget{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!dangles@{dangles}}
+\index{dangles@{dangles}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{dangles}]{\setlength{\rightskip}{0pt plus 5cm}int dangles}}\label{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}
+
+
+Switch the energy model for dangling end contributions (0, 1, 2, 3)
+
+If set to 0 no stabilizing energies are assigned to bases adjacent to helices in free ends and multiloops (so called dangling ends). Normally (dangles = 1) dangling end energies are assigned only to unpaired bases and a base cannot participate simultaneously in two dangling ends. In the partition function algorithm \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} these checks are neglected. If \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles} is set to 2, all folding routines will follow this convention. This treatment of dangling ends gives more favorable energies to helices directly adjacent to one another, which can be beneficial since such helices often do engage in stabilizing interactions through co-\/axial stacking.\par
+ If dangles = 3 co-\/axial stacking is explicitly included for adjacent helices in mutli-\/loops. The option affects only mfe folding and energy evaluation (\hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()} and \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure()}), as well as suboptimal folding (\hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt()}) via re-\/evaluation of energies. Co-\/axial stacking with one intervening mismatch is not considered so far.
+
+Default is 2 in most algorithms, partition function algorithms can only handle 0 and 2 \hypertarget{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!tetra\-\_\-loop@{tetra\-\_\-loop}}
+\index{tetra\-\_\-loop@{tetra\-\_\-loop}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{tetra\-\_\-loop}]{\setlength{\rightskip}{0pt plus 5cm}int tetra\-\_\-loop}}\label{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}
+
+
+Include special stabilizing energies for some tri-\/, tetra-\/ and hexa-\/loops;.
+
+default is 1. \hypertarget{fold__vars_8h_afb1ef1166da85092ae8a325e02dcae71}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!energy\-\_\-set@{energy\-\_\-set}}
+\index{energy\-\_\-set@{energy\-\_\-set}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{energy\-\_\-set}]{\setlength{\rightskip}{0pt plus 5cm}int energy\-\_\-set}}\label{fold__vars_8h_afb1ef1166da85092ae8a325e02dcae71}
+
+
+0 = B\-P; 1=any mit G\-C; 2=any mit A\-U-\/parameter
+
+If set to 1 or 2\-: fold sequences from an artificial alphabet A\-B\-C\-D..., where A pairs B, C pairs D, etc. using either G\-C (1) or A\-U parameters (2); default is 0, you probably don't want to change it. \hypertarget{fold__vars_8h_ac408868ba00671cbc7d1d535105af045}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!old\-Ali\-En@{old\-Ali\-En}}
+\index{old\-Ali\-En@{old\-Ali\-En}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{old\-Ali\-En}]{\setlength{\rightskip}{0pt plus 5cm}int old\-Ali\-En}}\label{fold__vars_8h_ac408868ba00671cbc7d1d535105af045}
+use old alifold energies (with gaps) \hypertarget{fold__vars_8h_a0656afca1d2853f9ee6591172f5638de}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!ribo@{ribo}}
+\index{ribo@{ribo}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{ribo}]{\setlength{\rightskip}{0pt plus 5cm}int ribo}}\label{fold__vars_8h_a0656afca1d2853f9ee6591172f5638de}
+use ribosum matrices \hypertarget{fold__vars_8h_a5dbaa0cca2c8c82048a0f0e38e164944}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!Ribosum\-File@{Ribosum\-File}}
+\index{Ribosum\-File@{Ribosum\-File}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{Ribosum\-File}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ Ribosum\-File}}\label{fold__vars_8h_a5dbaa0cca2c8c82048a0f0e38e164944}
+warning this variable will vanish in the future ribosums will be compiled in instead \hypertarget{fold__vars_8h_a2695d91cc535d09c2eae5c3884e2ec64}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!nonstandards@{nonstandards}}
+\index{nonstandards@{nonstandards}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{nonstandards}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ nonstandards}}\label{fold__vars_8h_a2695d91cc535d09c2eae5c3884e2ec64}
+
+
+contains allowed non standard base pairs
+
+Lists additional base pairs that will be allowed to form in addition to G\-C, C\-G, A\-U, U\-A, G\-U and U\-G. Nonstandard base pairs are given a stacking energy of 0. \hypertarget{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!temperature@{temperature}}
+\index{temperature@{temperature}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{temperature}]{\setlength{\rightskip}{0pt plus 5cm}double temperature}}\label{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}
+
+
+Rescale energy parameters to a temperature in deg\-C.
+
+Default is 37\-C. You have to call the update\-\_\-...\-\_\-params() functions after changing this parameter. \hypertarget{fold__vars_8h_af349001ad3b4d008d0051d935b1b6261}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!james\-\_\-rule@{james\-\_\-rule}}
+\index{james\-\_\-rule@{james\-\_\-rule}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{james\-\_\-rule}]{\setlength{\rightskip}{0pt plus 5cm}int james\-\_\-rule}}\label{fold__vars_8h_af349001ad3b4d008d0051d935b1b6261}
+interior loops of size 2 get energy 0.\-8\-Kcal and no mismatches, default 1 \hypertarget{fold__vars_8h_a80c3c5fd35e7479704cc91d2d0367743}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!log\-M\-L@{log\-M\-L}}
+\index{log\-M\-L@{log\-M\-L}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{log\-M\-L}]{\setlength{\rightskip}{0pt plus 5cm}int log\-M\-L}}\label{fold__vars_8h_a80c3c5fd35e7479704cc91d2d0367743}
+use logarithmic multiloop energy function \hypertarget{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!cut\-\_\-point@{cut\-\_\-point}}
+\index{cut\-\_\-point@{cut\-\_\-point}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{cut\-\_\-point}]{\setlength{\rightskip}{0pt plus 5cm}int cut\-\_\-point}}\label{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}
+
+
+Marks the position (starting from 1) of the first nucleotide of the second molecule within the concatenated sequence.
+
+To evaluate the energy of a duplex structure (a structure formed by two strands), concatenate the to sequences and set it to the first base of the second strand in the concatenated sequence. The default value of -\/1 stands for single molecule folding. The cut\-\_\-point variable is also used by \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot()} and \hyperlink{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}{P\-S\-\_\-dot\-\_\-plot()} to mark the chain break in postscript plots. \hypertarget{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!base\-\_\-pair@{base\-\_\-pair}}
+\index{base\-\_\-pair@{base\-\_\-pair}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{base\-\_\-pair}]{\setlength{\rightskip}{0pt plus 5cm}{\bf bond\-T}$\ast$ base\-\_\-pair}}\label{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}
+
+
+Contains a list of base pairs after a call to \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}.
+
+base\-\_\-pair\mbox{[}0\mbox{]}.i contains the total number of pairs. \begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000008}{Deprecated}]Do not use this variable anymore! \end{DoxyRefDesc}
+\hypertarget{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!pr@{pr}}
+\index{pr@{pr}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{pr}]{\setlength{\rightskip}{0pt plus 5cm}double$\ast$ pr}}\label{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}
+
+
+A pointer to the base pair probability matrix.
+
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000009}{Deprecated}]Do not use this variable anymore! \end{DoxyRefDesc}
+\hypertarget{fold__vars_8h_a92089ae3a51b5d75a14ce9cc29cc8317}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!iindx@{iindx}}
+\index{iindx@{iindx}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{iindx}]{\setlength{\rightskip}{0pt plus 5cm}int$\ast$ iindx}}\label{fold__vars_8h_a92089ae3a51b5d75a14ce9cc29cc8317}
+
+
+index array to move through pr.
+
+The probability for base i and j to form a pair is in pr\mbox{[}iindx\mbox{[}i\mbox{]}-\/j\mbox{]}. \begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000010}{Deprecated}]Do not use this variable anymore! \end{DoxyRefDesc}
+\hypertarget{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!pf\-\_\-scale@{pf\-\_\-scale}}
+\index{pf\-\_\-scale@{pf\-\_\-scale}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{pf\-\_\-scale}]{\setlength{\rightskip}{0pt plus 5cm}double pf\-\_\-scale}}\label{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}
+
+
+A scaling factor used by \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} to avoid overflows.
+
+Should be set to approximately $exp{((-F/kT)/length)}$, where $F$ is an estimate for the ensemble free energy, for example the minimum free energy. You must call \hyperlink{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}{update\-\_\-pf\-\_\-params()} after changing this parameter.\par
+ If pf\-\_\-scale is -\/1 (the default) , an estimate will be provided automatically when computing partition functions, e.\-g. \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} The automatic estimate is usually insufficient for sequences more than a few hundred bases long. \hypertarget{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!do\-\_\-backtrack@{do\-\_\-backtrack}}
+\index{do\-\_\-backtrack@{do\-\_\-backtrack}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{do\-\_\-backtrack}]{\setlength{\rightskip}{0pt plus 5cm}int do\-\_\-backtrack}}\label{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}
+
+
+do backtracking, i.\-e. compute secondary structures or base pair probabilities
+
+If 0, do not calculate pair probabilities in \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}; this is about twice as fast. Default is 1. \hypertarget{fold__vars_8h_a83bdb43472a259c71e69fa9f70f420c3}{\index{fold\-\_\-vars.\-h@{fold\-\_\-vars.\-h}!backtrack\-\_\-type@{backtrack\-\_\-type}}
+\index{backtrack\-\_\-type@{backtrack\-\_\-type}!fold_vars.h@{fold\-\_\-vars.\-h}}
+\subsubsection[{backtrack\-\_\-type}]{\setlength{\rightskip}{0pt plus 5cm}char backtrack\-\_\-type}}\label{fold__vars_8h_a83bdb43472a259c71e69fa9f70f420c3}
+
+
+A backtrack array marker for \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\-\_\-fold()}
+
+If set to 'C'\-: force (1,N) to be paired, 'M' fold as if the sequence were inside a multi-\/loop. Otherwise ('F') the usual mfe structure is computed.
\ No newline at end of file
--- /dev/null
+c942996278b819cb88d7718ecb0a5483
\ No newline at end of file
--- /dev/null
+2c4a3a42f583f17cf1dac826feebe768
\ No newline at end of file
--- /dev/null
+\hypertarget{fold__vars_8h}{\section{fold\-\_\-vars.\-h}
+\label{fold__vars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold\-\_\-vars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold\-\_\-vars.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_FOLD\_VARS\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_FOLD\_VARS\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00012 \textcolor{preprocessor}{#define PUBLIC}
+00013 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define PRIVATE static}
+00014 \textcolor{preprocessor}{}
+00018 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a0afc287c2464866d94858c39175154af}{fold\_constrained};
+00019
+00027 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}{noLonelyPairs};
+00028
+00050 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles};
+00051
+00055 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}{noGU};
+00056
+00060 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{no\_closingGU};
+00061
+00067 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{tetra\_loop};
+00068
+00076 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_afb1ef1166da85092ae8a325e02dcae71}{energy\_set};
+00077
+00081 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ};
+00082
+00086 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_af2763d55a74663a5e60652b8880baa5b}{csv};
+00087
+00091 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_ac408868ba00671cbc7d1d535105af045}{oldAliEn};
+00095 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a0656afca1d2853f9ee6591172f5638de}{ribo};
+00096
+00101 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *\hyperlink{fold__vars_8h_a5dbaa0cca2c8c82048a0f0e38e164944}{RibosumFile};
+00102
+00110 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *\hyperlink{fold__vars_8h_a2695d91cc535d09c2eae5c3884e2ec64}{nonstandards};
+00111
+00118 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature};
+00119
+00124 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_af349001ad3b4d008d0051d935b1b6261}{james\_rule};
+00125
+00129 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold_8h_a80c3c5fd35e7479704cc91d2d0367743}{logML};
+00130
+00142 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\_point};
+00143
+00150 \textcolor{keyword}{extern} \hyperlink{structbondT}{bondT} *\hyperlink{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{base\_pair};
+00151
+00157 \textcolor{keyword}{extern} FLT\_OR\_DBL *\hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr};
+00158
+00165 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} *\hyperlink{fold__vars_8h_a92089ae3a51b5d75a14ce9cc29cc8317}{iindx};
+00166
+00178 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\_scale};
+00179
+00186 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\_backtrack};
+00187
+00195 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} \hyperlink{fold__vars_8h_a83bdb43472a259c71e69fa9f70f420c3}{backtrack\_type};
+00196
+00200 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{fold__vars_8h_a25f2bdcdf56e813d288845484a13d704}{gquad};
+00201
+00202
+00203 \textcolor{keywordtype}{char} * option\_string(\textcolor{keywordtype}{void});
+00204
+00215 \textcolor{keywordtype}{void} \hyperlink{fold__vars_8h_a4c3257186a796182462f18a5480ac8b3}{set\_model\_details}(\hyperlink{structmodel__detailsT}{model\_detailsT} *md);
+00216
+00217 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{gquad_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/gquad.h File Reference}
+\label{gquad_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/gquad.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/gquad.\-h}}
+}
+
+
+Various functions related to G-\/quadruplex computations.
+
+
+Include dependency graph for gquad.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{gquad_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+int $\ast$ \hyperlink{gquad_8h_a8b0784c14fa1208d0aebbebdc1318b7a}{get\-\_\-gquad\-\_\-matrix} (short $\ast$S, \hyperlink{structparamT}{param\-T} $\ast$P)
+\begin{DoxyCompactList}\small\item\em Get a triangular matrix prefilled with minimum free energy contributions of G-\/quadruplexes. \end{DoxyCompactList}\item
+int \hyperlink{gquad_8h_ae41763215b9c64d2a7b67f0df8a28078}{parse\-\_\-gquad} (const char $\ast$struc, int $\ast$L, int l\mbox{[}3\mbox{]})
+\item
+P\-R\-I\-V\-A\-T\-E int \hyperlink{gquad_8h_a54475a8eb898fa1e8af8ab5f5375f3be}{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop} (int c, int i, int j, int type, short $\ast$S, int $\ast$ggg, int $\ast$index, int $\ast$p, int $\ast$q, \hyperlink{structparamT}{param\-T} $\ast$P)
+\item
+P\-R\-I\-V\-A\-T\-E int \hyperlink{gquad_8h_a118ec7289f1936bd810be7fe50b98212}{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L} (int c, int i, int j, int type, short $\ast$S, int $\ast$$\ast$ggg, int maxdist, int $\ast$p, int $\ast$q, \hyperlink{structparamT}{param\-T} $\ast$P)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Various functions related to G-\/quadruplex computations.
+
+\subsection{Function Documentation}
+\hypertarget{gquad_8h_a8b0784c14fa1208d0aebbebdc1318b7a}{\index{gquad.\-h@{gquad.\-h}!get\-\_\-gquad\-\_\-matrix@{get\-\_\-gquad\-\_\-matrix}}
+\index{get\-\_\-gquad\-\_\-matrix@{get\-\_\-gquad\-\_\-matrix}!gquad.h@{gquad.\-h}}
+\subsubsection[{get\-\_\-gquad\-\_\-matrix}]{\setlength{\rightskip}{0pt plus 5cm}int$\ast$ get\-\_\-gquad\-\_\-matrix (
+\begin{DoxyParamCaption}
+\item[{short $\ast$}]{S, }
+\item[{{\bf param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{gquad_8h_a8b0784c14fa1208d0aebbebdc1318b7a}
+
+
+Get a triangular matrix prefilled with minimum free energy contributions of G-\/quadruplexes.
+
+At each position ij in the matrix, the minimum free energy of any G-\/quadruplex delimited by i and j is stored. If no G-\/quadruplex formation is possible, the matrix element is set to I\-N\-F. Access the elements in the matrix via matrix\mbox{[}indx\mbox{[}j\mbox{]}+i\mbox{]}. To get the integer array indx see get\-\_\-jindx().
+
+\begin{DoxySeeAlso}{See Also}
+get\-\_\-jindx(), encode\-\_\-sequence()
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em S} & The encoded sequence \\
+\hline
+{\em P} & A pointer to the data structure containing the precomputed energy contributions \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pointer to the G-\/quadruplex contribution matrix
+\end{DoxyReturn}
+\hypertarget{gquad_8h_ae41763215b9c64d2a7b67f0df8a28078}{\index{gquad.\-h@{gquad.\-h}!parse\-\_\-gquad@{parse\-\_\-gquad}}
+\index{parse\-\_\-gquad@{parse\-\_\-gquad}!gquad.h@{gquad.\-h}}
+\subsubsection[{parse\-\_\-gquad}]{\setlength{\rightskip}{0pt plus 5cm}int parse\-\_\-gquad (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{struc, }
+\item[{int $\ast$}]{L, }
+\item[{int}]{l\mbox{[}3\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{gquad_8h_ae41763215b9c64d2a7b67f0df8a28078}
+given a dot-\/bracket structure (possibly) containing gquads encoded by '+' signs, find first gquad, return end position or 0 if none found Upon return L and l\mbox{[}\mbox{]} contain the number of stacked layers, as well as the lengths of the linker regions. To parse a string with many gquads, call parse\-\_\-gquad repeatedly e.\-g. end1 = parse\-\_\-gquad(struc, \&\-L, l); ... ; end2 = parse\-\_\-gquad(struc+end1, \&L, l); end2+=end1; ... ; end3 = parse\-\_\-gquad(struc+end2, \&L, l); end3+=end2; ... ; \hypertarget{gquad_8h_a54475a8eb898fa1e8af8ab5f5375f3be}{\index{gquad.\-h@{gquad.\-h}!backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop@{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop}}
+\index{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop@{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop}!gquad.h@{gquad.\-h}}
+\subsubsection[{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E int backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop (
+\begin{DoxyParamCaption}
+\item[{int}]{c, }
+\item[{int}]{i, }
+\item[{int}]{j, }
+\item[{int}]{type, }
+\item[{short $\ast$}]{S, }
+\item[{int $\ast$}]{ggg, }
+\item[{int $\ast$}]{index, }
+\item[{int $\ast$}]{p, }
+\item[{int $\ast$}]{q, }
+\item[{{\bf param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{gquad_8h_a54475a8eb898fa1e8af8ab5f5375f3be}
+backtrack an interior loop like enclosed g-\/quadruplex with closing pair (i,j)
+
+
+\begin{DoxyParams}{Parameters}
+{\em c} & The total contribution the loop should resemble \\
+\hline
+{\em i} & position i of enclosing pair \\
+\hline
+{\em j} & position j of enclosing pair \\
+\hline
+{\em type} & base pair type of enclosing pair (must be reverse type) \\
+\hline
+{\em S} & integer encoded sequence \\
+\hline
+{\em ggg} & triangular matrix containing g-\/quadruplex contributions \\
+\hline
+{\em index} & the index for accessing the triangular matrix \\
+\hline
+{\em p} & here the 5' position of the gquad is stored \\
+\hline
+{\em q} & here the 3' position of the gquad is stored \\
+\hline
+{\em P} & the datastructure containing the precalculated contibutions\\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 if no gquad found
+\end{DoxyReturn}
+\hypertarget{gquad_8h_a118ec7289f1936bd810be7fe50b98212}{\index{gquad.\-h@{gquad.\-h}!backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L@{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L}}
+\index{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L@{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L}!gquad.h@{gquad.\-h}}
+\subsubsection[{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E int backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L (
+\begin{DoxyParamCaption}
+\item[{int}]{c, }
+\item[{int}]{i, }
+\item[{int}]{j, }
+\item[{int}]{type, }
+\item[{short $\ast$}]{S, }
+\item[{int $\ast$$\ast$}]{ggg, }
+\item[{int}]{maxdist, }
+\item[{int $\ast$}]{p, }
+\item[{int $\ast$}]{q, }
+\item[{{\bf param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{gquad_8h_a118ec7289f1936bd810be7fe50b98212}
+backtrack an interior loop like enclosed g-\/quadruplex with closing pair (i,j) with underlying Lfold matrix
+
+
+\begin{DoxyParams}{Parameters}
+{\em c} & The total contribution the loop should resemble \\
+\hline
+{\em i} & position i of enclosing pair \\
+\hline
+{\em j} & position j of enclosing pair \\
+\hline
+{\em type} & base pair type of enclosing pair (must be reverse type) \\
+\hline
+{\em S} & integer encoded sequence \\
+\hline
+{\em ggg} & triangular matrix containing g-\/quadruplex contributions \\
+\hline
+{\em p} & here the 5' position of the gquad is stored \\
+\hline
+{\em q} & here the 3' position of the gquad is stored \\
+\hline
+{\em P} & the datastructure containing the precalculated contibutions\\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+1 on success, 0 if no gquad found
+\end{DoxyReturn}
--- /dev/null
+f37120578c972fa989f14e8a3e608178
\ No newline at end of file
--- /dev/null
+\hypertarget{gquad_8h}{\section{gquad.\-h}
+\label{gquad_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/gquad.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/gquad.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_GQUAD\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_GQUAD\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#ifndef INLINE}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{# define INLINE inline}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{# define INLINE}
+00011 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00012 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00013 \textcolor{preprocessor}{}
+00020 \textcolor{keywordtype}{int} E\_gquad(\textcolor{keywordtype}{int} L,
+00021 \textcolor{keywordtype}{int} l[3],
+00022 \hyperlink{structparamT}{paramT} *P);
+00023
+00024 FLT\_OR\_DBL exp\_E\_gquad( \textcolor{keywordtype}{int} L,
+00025 \textcolor{keywordtype}{int} l[3],
+00026 \hyperlink{structpf__paramT}{pf\_paramT} *pf);
+00027
+00028 \textcolor{keywordtype}{int} E\_gquad\_ali(\textcolor{keywordtype}{int} i,
+00029 \textcolor{keywordtype}{int} L,
+00030 \textcolor{keywordtype}{int} l[3],
+00031 \textcolor{keyword}{const} \textcolor{keywordtype}{short} **S,
+00032 \textcolor{keywordtype}{int} n\_seq,
+00033 \hyperlink{structparamT}{paramT} *P);
+00034
+00035
+00036 \textcolor{keywordtype}{void} E\_gquad\_ali\_en( \textcolor{keywordtype}{int} i,
+00037 \textcolor{keywordtype}{int} L,
+00038 \textcolor{keywordtype}{int} l[3],
+00039 \textcolor{keyword}{const} \textcolor{keywordtype}{short} **S,
+00040 \textcolor{keywordtype}{int} n\_seq,
+00041 \textcolor{keywordtype}{int} en[2],
+00042 \hyperlink{structparamT}{paramT} *P);
+00043
+00060 \textcolor{keywordtype}{int} *\hyperlink{gquad_8h_a8b0784c14fa1208d0aebbebdc1318b7a}{get\_gquad\_matrix}(\textcolor{keywordtype}{short} *S, \hyperlink{structparamT}{paramT} *P);
+00061
+00062 \textcolor{keywordtype}{int} *get\_gquad\_ali\_matrix(\textcolor{keywordtype}{short} *S\_cons,
+00063 \textcolor{keywordtype}{short} **S,
+00064 \textcolor{keywordtype}{int} n\_seq,
+00065 \hyperlink{structparamT}{paramT} *P);
+00066
+00067 FLT\_OR\_DBL *get\_gquad\_pf\_matrix( \textcolor{keywordtype}{short} *S,
+00068 FLT\_OR\_DBL *scale,
+00069 \hyperlink{structpf__paramT}{pf\_paramT} *pf);
+00070
+00071 \textcolor{keywordtype}{int} **get\_gquad\_L\_matrix( \textcolor{keywordtype}{short} *S,
+00072 \textcolor{keywordtype}{int} start,
+00073 \textcolor{keywordtype}{int} maxdist,
+00074 \textcolor{keywordtype}{int} **g,
+00075 \hyperlink{structparamT}{paramT} *P);
+00076
+00077 \textcolor{keywordtype}{void} get\_gquad\_pattern\_mfe(\textcolor{keywordtype}{short} *S,
+00078 \textcolor{keywordtype}{int} i,
+00079 \textcolor{keywordtype}{int} j,
+00080 \hyperlink{structparamT}{paramT} *P,
+00081 \textcolor{keywordtype}{int} *L,
+00082 \textcolor{keywordtype}{int} l[3]);
+00083
+00084 \textcolor{keywordtype}{void} get\_gquad\_pattern\_pf( \textcolor{keywordtype}{short} *S,
+00085 \textcolor{keywordtype}{int} i,
+00086 \textcolor{keywordtype}{int} j,
+00087 \hyperlink{structpf__paramT}{pf\_paramT} *pf,
+00088 \textcolor{keywordtype}{int} *L,
+00089 \textcolor{keywordtype}{int} l[3]);
+00090
+00091 \hyperlink{structplist}{plist} *get\_plist\_gquad\_from\_pr( \textcolor{keywordtype}{short} *S,
+00092 \textcolor{keywordtype}{int} gi,
+00093 \textcolor{keywordtype}{int} gj,
+00094 FLT\_OR\_DBL *G,
+00095 FLT\_OR\_DBL *probs,
+00096 FLT\_OR\_DBL *scale,
+00097 \hyperlink{structpf__paramT}{pf\_paramT} *pf);
+00098 \hyperlink{structplist}{plist} *get\_plist\_gquad\_from\_pr\_max(\textcolor{keywordtype}{short} *S,
+00099 \textcolor{keywordtype}{int} gi,
+00100 \textcolor{keywordtype}{int} gj,
+00101 FLT\_OR\_DBL *G,
+00102 FLT\_OR\_DBL *probs,
+00103 FLT\_OR\_DBL *scale,
+00104 \textcolor{keywordtype}{int} *L,
+00105 \textcolor{keywordtype}{int} l[3],
+00106 \hyperlink{structpf__paramT}{pf\_paramT} *pf);
+00107
+00108 \hyperlink{structplist}{plist} *get\_plist\_gquad\_from\_db( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure,
+00109 \textcolor{keywordtype}{float} pr);
+00110
+00121 \textcolor{keywordtype}{int} \hyperlink{gquad_8h_ae41763215b9c64d2a7b67f0df8a28078}{parse\_gquad}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *struc, \textcolor{keywordtype}{int} *L, \textcolor{keywordtype}{int} l[3]);
+00122
+00123
+00124
+\hypertarget{gquad_8h_source_l00142}{}\hyperlink{gquad_8h_a54475a8eb898fa1e8af8ab5f5375f3be}{00142} INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{gquad_8h_a54475a8eb898fa1e8af8ab5f5375f3be}{backtrack\_GQuad\_IntLoop}(\textcolor{keywordtype}{int} c,
+00143 \textcolor{keywordtype}{int} i,
+00144 \textcolor{keywordtype}{int} j,
+00145 \textcolor{keywordtype}{int} type,
+00146 \textcolor{keywordtype}{short} *S,
+00147 \textcolor{keywordtype}{int} *ggg,
+00148 \textcolor{keywordtype}{int} *index,
+00149 \textcolor{keywordtype}{int} *p,
+00150 \textcolor{keywordtype}{int} *q,
+00151 \hyperlink{structparamT}{paramT} *P)\{
+00152
+00153 \textcolor{keywordtype}{int} energy, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, k, l, maxl, minl, c0, l1;
+00154 \textcolor{keywordtype}{short} si, sj;
+00155
+00156 dangles = P->\hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\_details}.\hyperlink{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{dangles};
+00157 si = S[i + 1];
+00158 sj = S[j - 1];
+00159 energy = 0;
+00160
+00161 \textcolor{keywordflow}{if}(dangles == 2)
+00162 energy += P->mismatchI[type][si][sj];
+00163
+00164 \textcolor{keywordflow}{if}(type > 2)
+00165 energy += P->TerminalAU;
+00166
+00167 k = i + 1;
+00168 \textcolor{keywordflow}{if}(S[k] == 3)\{
+00169 \textcolor{keywordflow}{if}(k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE)\{
+00170 minl = j - i + k - \hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP} - 2;
+00171 c0 = k + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00172 minl = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minl);
+00173 c0 = j - 3;
+00174 maxl = k + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00175 maxl = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxl);
+00176 \textcolor{keywordflow}{for}(l = minl; l < maxl; l++)\{
+00177 \textcolor{keywordflow}{if}(S[l] != 3) \textcolor{keywordflow}{continue};
+00178 \textcolor{keywordflow}{if}(c == energy + ggg[index[l] + k] + P->internal\_loop[j - l - 1])\{
+00179 *p = k; *q = l;
+00180 \textcolor{keywordflow}{return} 1;
+00181 \}
+00182 \}
+00183 \}
+00184 \}
+00185
+00186 \textcolor{keywordflow}{for}(k = i + 2;
+00187 k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00188 k++)\{
+00189 l1 = k - i - 1;
+00190 \textcolor{keywordflow}{if}(l1>\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}) \textcolor{keywordflow}{break};
+00191 \textcolor{keywordflow}{if}(S[k] != 3) \textcolor{keywordflow}{continue};
+00192 minl = j - i + k - \hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP} - 2;
+00193 c0 = k + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00194 minl = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minl);
+00195 c0 = j - 1;
+00196 maxl = k + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00197 maxl = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxl);
+00198 \textcolor{keywordflow}{for}(l = minl; l < maxl; l++)\{
+00199 \textcolor{keywordflow}{if}(S[l] != 3) \textcolor{keywordflow}{continue};
+00200 \textcolor{keywordflow}{if}(c == energy + ggg[index[l] + k] + P->internal\_loop[l1 + j - l - 1])\{
+00201 *p = k; *q = l;
+00202 \textcolor{keywordflow}{return} 1;
+00203 \}
+00204 \}
+00205 \}
+00206
+00207 l = j - 1;
+00208 \textcolor{keywordflow}{if}(S[l] == 3)
+00209 \textcolor{keywordflow}{for}(k = i + 4;
+00210 k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00211 k++)\{
+00212 l1 = k - i - 1;
+00213 \textcolor{keywordflow}{if}(l1>\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}) \textcolor{keywordflow}{break};
+00214 \textcolor{keywordflow}{if}(S[k] != 3) \textcolor{keywordflow}{continue};
+00215 \textcolor{keywordflow}{if}(c == energy + ggg[index[l] + k] + P->internal\_loop[l1])\{
+00216 *p = k; *q = l;
+00217 \textcolor{keywordflow}{return} 1;
+00218 \}
+00219 \}
+00220
+00221 \textcolor{keywordflow}{return} 0;
+00222 \}
+00223
+\hypertarget{gquad_8h_source_l00240}{}\hyperlink{gquad_8h_a118ec7289f1936bd810be7fe50b98212}{00240} INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{gquad_8h_a118ec7289f1936bd810be7fe50b98212}{backtrack\_GQuad\_IntLoop\_L}(\textcolor{keywordtype}{int} c,
+00241 \textcolor{keywordtype}{int} i,
+00242 \textcolor{keywordtype}{int} j,
+00243 \textcolor{keywordtype}{int} type,
+00244 \textcolor{keywordtype}{short} *S,
+00245 \textcolor{keywordtype}{int} **ggg,
+00246 \textcolor{keywordtype}{int} maxdist,
+00247 \textcolor{keywordtype}{int} *p,
+00248 \textcolor{keywordtype}{int} *q,
+00249 \hyperlink{structparamT}{paramT} *P)\{
+00250
+00251 \textcolor{keywordtype}{int} energy, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, k, l, maxl, minl, c0, l1;
+00252 \textcolor{keywordtype}{short} si, sj;
+00253
+00254 dangles = P->\hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\_details}.\hyperlink{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{dangles};
+00255 si = S[i + 1];
+00256 sj = S[j - 1];
+00257 energy = 0;
+00258
+00259 \textcolor{keywordflow}{if}(dangles == 2)
+00260 energy += P->mismatchI[type][si][sj];
+00261
+00262 \textcolor{keywordflow}{if}(type > 2)
+00263 energy += P->TerminalAU;
+00264
+00265 k = i + 1;
+00266 \textcolor{keywordflow}{if}(S[k] == 3)\{
+00267 \textcolor{keywordflow}{if}(k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE)\{
+00268 minl = j - i + k - \hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP} - 2;
+00269 c0 = k + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00270 minl = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minl);
+00271 c0 = j - 3;
+00272 maxl = k + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00273 maxl = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxl);
+00274 \textcolor{keywordflow}{for}(l = minl; l < maxl; l++)\{
+00275 \textcolor{keywordflow}{if}(S[l] != 3) \textcolor{keywordflow}{continue};
+00276 \textcolor{keywordflow}{if}(c == energy + ggg[k][l - k] + P->internal\_loop[j - l - 1])\{
+00277 *p = k; *q = l;
+00278 \textcolor{keywordflow}{return} 1;
+00279 \}
+00280 \}
+00281 \}
+00282 \}
+00283
+00284 \textcolor{keywordflow}{for}(k = i + 2;
+00285 k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00286 k++)\{
+00287 l1 = k - i - 1;
+00288 \textcolor{keywordflow}{if}(l1>\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}) \textcolor{keywordflow}{break};
+00289 \textcolor{keywordflow}{if}(S[k] != 3) \textcolor{keywordflow}{continue};
+00290 minl = j - i + k - \hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP} - 2;
+00291 c0 = k + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00292 minl = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minl);
+00293 c0 = j - 1;
+00294 maxl = k + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00295 maxl = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxl);
+00296 \textcolor{keywordflow}{for}(l = minl; l < maxl; l++)\{
+00297 \textcolor{keywordflow}{if}(S[l] != 3) \textcolor{keywordflow}{continue};
+00298 \textcolor{keywordflow}{if}(c == energy + ggg[k][l - k] + P->internal\_loop[l1 + j - l - 1])\{
+00299 *p = k; *q = l;
+00300 \textcolor{keywordflow}{return} 1;
+00301 \}
+00302 \}
+00303 \}
+00304
+00305 l = j - 1;
+00306 \textcolor{keywordflow}{if}(S[l] == 3)
+00307 \textcolor{keywordflow}{for}(k = i + 4;
+00308 k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00309 k++)\{
+00310 l1 = k - i - 1;
+00311 \textcolor{keywordflow}{if}(l1>\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP}) \textcolor{keywordflow}{break};
+00312 \textcolor{keywordflow}{if}(S[k] != 3) \textcolor{keywordflow}{continue};
+00313 \textcolor{keywordflow}{if}(c == energy + ggg[k][l - k] + P->internal\_loop[l1])\{
+00314 *p = k; *q = l;
+00315 \textcolor{keywordflow}{return} 1;
+00316 \}
+00317 \}
+00318
+00319 \textcolor{keywordflow}{return} 0;
+00320 \}
+00321
+00322 INLINE PRIVATE
+00323 \textcolor{keywordtype}{int}
+00324 E\_GQuad\_IntLoop(\textcolor{keywordtype}{int} i,
+00325 \textcolor{keywordtype}{int} j,
+00326 \textcolor{keywordtype}{int} type,
+00327 \textcolor{keywordtype}{short} *S,
+00328 \textcolor{keywordtype}{int} *ggg,
+00329 \textcolor{keywordtype}{int} *index,
+00330 \hyperlink{structparamT}{paramT} *P)\{
+00331
+00332 \textcolor{keywordtype}{int} energy, ge, en1, en2, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, p, q, l1, minq, maxq;
+00333 \textcolor{keywordtype}{int} c0, c1, c2, c3, up, d53, d5, d3;
+00334 \textcolor{keywordtype}{short} si, sj;
+00335
+00336 dangles = P->\hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\_details}.\hyperlink{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{dangles};
+00337 si = S[i + 1];
+00338 sj = S[j - 1];
+00339 energy = 0;
+00340
+00341 \textcolor{keywordflow}{if}(dangles == 2)
+00342 energy += P->mismatchI[type][si][sj];
+00343
+00344 \textcolor{keywordflow}{if}(type > 2)
+00345 energy += P->TerminalAU;
+00346
+00347 ge = \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF};
+00348
+00349 p = i + 1;
+00350 \textcolor{keywordflow}{if}(S[p] == 3)\{
+00351 \textcolor{keywordflow}{if}(p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE)\{
+00352 minq = j - i + p - \hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP} - 2;
+00353 c0 = p + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00354 minq = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minq);
+00355 c0 = j - 3;
+00356 maxq = p + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00357 maxq = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxq);
+00358 \textcolor{keywordflow}{for}(q = minq; q < maxq; q++)\{
+00359 \textcolor{keywordflow}{if}(S[q] != 3) \textcolor{keywordflow}{continue};
+00360 c0 = energy + ggg[index[q] + p] + P->internal\_loop[j - q - 1];
+00361 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00362 \}
+00363 \}
+00364 \}
+00365
+00366 \textcolor{keywordflow}{for}(p = i + 2;
+00367 p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00368 p++)\{
+00369 l1 = p - i - 1;
+00370 \textcolor{keywordflow}{if}(l1>MAXLOOP) \textcolor{keywordflow}{break};
+00371 \textcolor{keywordflow}{if}(S[p] != 3) \textcolor{keywordflow}{continue};
+00372 minq = j - i + p - MAXLOOP - 2;
+00373 c0 = p + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00374 minq = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minq);
+00375 c0 = j - 1;
+00376 maxq = p + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00377 maxq = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxq);
+00378 \textcolor{keywordflow}{for}(q = minq; q < maxq; q++)\{
+00379 \textcolor{keywordflow}{if}(S[q] != 3) \textcolor{keywordflow}{continue};
+00380 c0 = energy + ggg[index[q] + p] + P->internal\_loop[l1 + j - q - 1];
+00381 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00382 \}
+00383 \}
+00384
+00385 q = j - 1;
+00386 \textcolor{keywordflow}{if}(S[q] == 3)
+00387 \textcolor{keywordflow}{for}(p = i + 4;
+00388 p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00389 p++)\{
+00390 l1 = p - i - 1;
+00391 \textcolor{keywordflow}{if}(l1>MAXLOOP) \textcolor{keywordflow}{break};
+00392 \textcolor{keywordflow}{if}(S[p] != 3) \textcolor{keywordflow}{continue};
+00393 c0 = energy + ggg[index[q] + p] + P->internal\_loop[l1];
+00394 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00395 \}
+00396
+00397 \textcolor{preprocessor}{#if 0}
+00398 \textcolor{preprocessor}{} \textcolor{comment}{/* here comes the additional stuff for the odd dangle models */}
+00399 \textcolor{keywordflow}{if}(dangles % 1)\{
+00400 en1 = energy + P->dangle5[type][si];
+00401 en2 = energy + P->dangle5[type][sj];
+00402 en3 = energy + P->mismatchI[type][si][sj];
+00403
+00404 \textcolor{comment}{/* first case with 5' dangle (i.e. j-1) onto enclosing pair */}
+00405 p = i + 1;
+00406 \textcolor{keywordflow}{if}(S[p] == 3)\{
+00407 \textcolor{keywordflow}{if}(p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE)\{
+00408 minq = j - i + p - MAXLOOP - 2;
+00409 c0 = p + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00410 minq = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minq);
+00411 c0 = j - 4;
+00412 maxq = p + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00413 maxq = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxq);
+00414 \textcolor{keywordflow}{for}(q = minq; q < maxq; q++)\{
+00415 \textcolor{keywordflow}{if}(S[q] != 3) \textcolor{keywordflow}{continue};
+00416 c0 = en1 + ggg[index[q] + p] + P->internal\_loop[j - q - 1];
+00417 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00418 \}
+00419 \}
+00420 \}
+00421
+00422 \textcolor{keywordflow}{for}(p = i + 2; p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE; p++)\{
+00423 l1 = p - i - 1;
+00424 \textcolor{keywordflow}{if}(l1>MAXLOOP) \textcolor{keywordflow}{break};
+00425 \textcolor{keywordflow}{if}(S[p] != 3) \textcolor{keywordflow}{continue};
+00426 minq = j - i + p - MAXLOOP - 2;
+00427 c0 = p + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00428 minq = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minq);
+00429 c0 = j - 2;
+00430 maxq = p + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00431 maxq = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxq);
+00432 \textcolor{keywordflow}{for}(q = minq; q < maxq; q++)\{
+00433 \textcolor{keywordflow}{if}(S[q] != 3) \textcolor{keywordflow}{continue};
+00434 c0 = en1 + ggg[index[q] + p] + P->internal\_loop[l1 + j - q - 1];
+00435 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00436 \}
+00437 \}
+00438
+00439 q = j - 2;
+00440 \textcolor{keywordflow}{if}(S[q] == 3)
+00441 \textcolor{keywordflow}{for}(p = i + 4; p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE; p++)\{
+00442 l1 = p - i - 1;
+00443 \textcolor{keywordflow}{if}(l1>MAXLOOP) \textcolor{keywordflow}{break};
+00444 \textcolor{keywordflow}{if}(S[p] != 3) \textcolor{keywordflow}{continue};
+00445 c0 = en1 + ggg[index[q] + p] + P->internal\_loop[l1 + 1];
+00446 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00447 \}
+00448
+00449 \textcolor{comment}{/* second case with 3' dangle (i.e. i+1) onto enclosing pair */}
+00450
+00451 \}
+00452 \textcolor{preprocessor}{#endif}
+00453 \textcolor{preprocessor}{} \textcolor{keywordflow}{return} ge;
+00454 \}
+00455
+00456 INLINE PRIVATE
+00457 \textcolor{keywordtype}{int}
+00458 E\_GQuad\_IntLoop\_L(\textcolor{keywordtype}{int} i,
+00459 \textcolor{keywordtype}{int} j,
+00460 \textcolor{keywordtype}{int} type,
+00461 \textcolor{keywordtype}{short} *S,
+00462 \textcolor{keywordtype}{int} **ggg,
+00463 \textcolor{keywordtype}{int} maxdist,
+00464 \hyperlink{structparamT}{paramT} *P)\{
+00465
+00466 \textcolor{keywordtype}{int} energy, ge, en1, en2, dangles, p, q, l1, minq, maxq;
+00467 \textcolor{keywordtype}{int} c0, c1, c2, c3, up, d53, d5, d3;
+00468 \textcolor{keywordtype}{short} si, sj;
+00469
+00470 dangles = P->\hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\_details}.\hyperlink{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{dangles};
+00471 si = S[i + 1];
+00472 sj = S[j - 1];
+00473 energy = 0;
+00474
+00475 \textcolor{keywordflow}{if}(dangles == 2)
+00476 energy += P->mismatchI[type][si][sj];
+00477
+00478 \textcolor{keywordflow}{if}(type > 2)
+00479 energy += P->TerminalAU;
+00480
+00481 ge = \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF};
+00482
+00483 p = i + 1;
+00484 \textcolor{keywordflow}{if}(S[p] == 3)\{
+00485 \textcolor{keywordflow}{if}(p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE)\{
+00486 minq = j - i + p - MAXLOOP - 2;
+00487 c0 = p + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00488 minq = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minq);
+00489 c0 = j - 3;
+00490 maxq = p + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00491 maxq = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxq);
+00492 \textcolor{keywordflow}{for}(q = minq; q < maxq; q++)\{
+00493 \textcolor{keywordflow}{if}(S[q] != 3) \textcolor{keywordflow}{continue};
+00494 c0 = energy + ggg[p][q-p] + P->internal\_loop[j - q - 1];
+00495 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00496 \}
+00497 \}
+00498 \}
+00499
+00500 \textcolor{keywordflow}{for}(p = i + 2;
+00501 p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00502 p++)\{
+00503 l1 = p - i - 1;
+00504 \textcolor{keywordflow}{if}(l1>MAXLOOP) \textcolor{keywordflow}{break};
+00505 \textcolor{keywordflow}{if}(S[p] != 3) \textcolor{keywordflow}{continue};
+00506 minq = j - i + p - MAXLOOP - 2;
+00507 c0 = p + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00508 minq = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(c0, minq);
+00509 c0 = j - 1;
+00510 maxq = p + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00511 maxq = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(c0, maxq);
+00512 \textcolor{keywordflow}{for}(q = minq; q < maxq; q++)\{
+00513 \textcolor{keywordflow}{if}(S[q] != 3) \textcolor{keywordflow}{continue};
+00514 c0 = energy + ggg[p][q - p] + P->internal\_loop[l1 + j - q - 1];
+00515 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00516 \}
+00517 \}
+00518
+00519 q = j - 1;
+00520 \textcolor{keywordflow}{if}(S[q] == 3)
+00521 \textcolor{keywordflow}{for}(p = i + 4;
+00522 p < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00523 p++)\{
+00524 l1 = p - i - 1;
+00525 \textcolor{keywordflow}{if}(l1>MAXLOOP) \textcolor{keywordflow}{break};
+00526 \textcolor{keywordflow}{if}(S[p] != 3) \textcolor{keywordflow}{continue};
+00527 c0 = energy + ggg[p][q - p] + P->internal\_loop[l1];
+00528 ge = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(ge, c0);
+00529 \}
+00530
+00531 \textcolor{keywordflow}{return} ge;
+00532 \}
+00533
+00534 INLINE PRIVATE
+00535 FLT\_OR\_DBL
+00536 exp\_E\_GQuad\_IntLoop(\textcolor{keywordtype}{int} i,
+00537 \textcolor{keywordtype}{int} j,
+00538 \textcolor{keywordtype}{int} type,
+00539 \textcolor{keywordtype}{short} *S,
+00540 FLT\_OR\_DBL *G,
+00541 \textcolor{keywordtype}{int} *index,
+00542 \hyperlink{structpf__paramT}{pf\_paramT} *pf)\{
+00543
+00544 \textcolor{keywordtype}{int} k, l, minl, maxl, u, r;
+00545 FLT\_OR\_DBL q, qe, *expintern;
+00546 \textcolor{keywordtype}{short} si, sj;
+00547
+00548 q = 0;
+00549 si = S[i + 1];
+00550 sj = S[j - 1];
+00551 qe = pf->expmismatchI[type][si][sj];
+00552 expintern = pf->expinternal;
+00553
+00554 \textcolor{keywordflow}{if}(type > 2)
+00555 qe *= pf->expTermAU;
+00556
+00557 k = i + 1;
+00558 \textcolor{keywordflow}{if}(S[k] == 3)\{
+00559 \textcolor{keywordflow}{if}(k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE)\{
+00560 minl = j - i + k - MAXLOOP - 2;
+00561 u = k + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00562 minl = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(u, minl);
+00563 u = j - 3;
+00564 maxl = k + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00565 maxl = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(u, maxl);
+00566 \textcolor{keywordflow}{for}(l = minl; l < maxl; l++)\{
+00567 \textcolor{keywordflow}{if}(S[l] != 3) \textcolor{keywordflow}{continue};
+00568 q += qe * G[index[k]-l] * expintern[j - l - 1];
+00569 \}
+00570 \}
+00571 \}
+00572
+00573
+00574 \textcolor{keywordflow}{for}(k = i + 2;
+00575 k <= j - VRNA\_GQUAD\_MIN\_BOX\_SIZE;
+00576 k++)\{
+00577 u = k - i - 1;
+00578 \textcolor{keywordflow}{if}(u > MAXLOOP) \textcolor{keywordflow}{break};
+00579 \textcolor{keywordflow}{if}(S[k] != 3) \textcolor{keywordflow}{continue};
+00580 minl = j - i + k - MAXLOOP - 2;
+00581 r = k + VRNA\_GQUAD\_MIN\_BOX\_SIZE - 1;
+00582 minl = \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{MAX2}(r, minl);
+00583 maxl = k + VRNA\_GQUAD\_MAX\_BOX\_SIZE + 1;
+00584 r = j - 1;
+00585 maxl = \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(r, maxl);
+00586 \textcolor{keywordflow}{for}(l = minl; l < maxl; l++)\{
+00587 \textcolor{keywordflow}{if}(S[l] != 3) \textcolor{keywordflow}{continue};
+00588 q += qe * G[index[k]-l] * expintern[u + j - l - 1];
+00589 \}
+00590 \}
+00591
+00592 l = j - 1;
+00593 \textcolor{keywordflow}{if}(S[l] == 3)
+00594 \textcolor{keywordflow}{for}(k = i + 4; k < j - VRNA\_GQUAD\_MIN\_BOX\_SIZE; k++)\{
+00595 u = k - i - 1;
+00596 \textcolor{keywordflow}{if}(u>MAXLOOP) \textcolor{keywordflow}{break};
+00597 \textcolor{keywordflow}{if}(S[k] != 3) \textcolor{keywordflow}{continue};
+00598 q += qe * G[index[k]-l] * expintern[u];
+00599 \}
+00600
+00601 \textcolor{keywordflow}{return} q;
+00602 \}
+00603
+00604 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\relax
+\gdef \LT@xi {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.5}Compute the centroid structure}{33}{section.9.5}}
+\newlabel{group__centroid__fold}{{9.5}{33}{Compute the centroid structure\relax }{section.9.5}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.5.1}Detailed Description}{33}{subsection.9.5.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.5.2}Function Documentation}{33}{subsection.9.5.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.5.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl}{33}{subsubsection.9.5.2.1}}
+\newlabel{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}{{9.5.2.1}{33}{get\-\_\-centroid\-\_\-struct\-\_\-pl\relax }{subsubsection.9.5.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.5.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr}{33}{subsubsection.9.5.2.2}}
+\newlabel{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}{{9.5.2.2}{33}{get\-\_\-centroid\-\_\-struct\-\_\-pr\relax }{subsubsection.9.5.2.2}{}}
+\gdef \LT@xii {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@setckpt{group__centroid__fold}{
+\setcounter{page}{35}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{5}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{12}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{41}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{12}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+c47da47b6ffd03ff925c5649e25a4d22
\ No newline at end of file
--- /dev/null
+\hypertarget{group__centroid__fold}{\section{Compute the centroid structure}
+\label{group__centroid__fold}\index{Compute the centroid structure@{Compute the centroid structure}}
+}
+Collaboration diagram for Compute the centroid structure\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__centroid__fold}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+char $\ast$ \hyperlink{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}{get\-\_\-centroid\-\_\-struct\-\_\-pl} (int length, double $\ast$dist, \hyperlink{structplist}{plist} $\ast$pl)
+\begin{DoxyCompactList}\small\item\em Get the centroid structure of the ensemble. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}{get\-\_\-centroid\-\_\-struct\-\_\-pr} (int length, double $\ast$dist, double $\ast$\hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr})
+\begin{DoxyCompactList}\small\item\em Get the centroid structure of the ensemble. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}{\index{Compute the centroid structure@{Compute the centroid structure}!get\-\_\-centroid\-\_\-struct\-\_\-pl@{get\-\_\-centroid\-\_\-struct\-\_\-pl}}
+\index{get\-\_\-centroid\-\_\-struct\-\_\-pl@{get\-\_\-centroid\-\_\-struct\-\_\-pl}!Compute the centroid structure@{Compute the centroid structure}}
+\subsubsection[{get\-\_\-centroid\-\_\-struct\-\_\-pl}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ get\-\_\-centroid\-\_\-struct\-\_\-pl (
+\begin{DoxyParamCaption}
+\item[{int}]{length, }
+\item[{double $\ast$}]{dist, }
+\item[{{\bf plist} $\ast$}]{pl}
+\end{DoxyParamCaption}
+)}}\label{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}
+
+
+Get the centroid structure of the ensemble.
+
+This function is a threadsafe replacement for \hyperlink{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{centroid()} with a 'plist' input
+
+The centroid is the structure with the minimal average distance to all other structures \par
+ $ <d(S)> = \sum_{(i,j) \in S} (1-p_{ij}) + \sum_{(i,j) \notin S} p_{ij} $ \par
+ Thus, the centroid is simply the structure containing all pairs with $p_ij>0.5$ The distance of the centroid to the ensemble is written to the memory adressed by {\itshape dist}.
+
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt in} & {\em length} & The length of the sequence \\
+\hline
+\mbox{\tt out} & {\em dist} & A pointer to the distance variable where the centroid distance will be written to \\
+\hline
+\mbox{\tt in} & {\em pl} & A pair list containing base pair probability information about the ensemble \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The centroid structure of the ensemble in dot-\/bracket notation
+\end{DoxyReturn}
+\hypertarget{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}{\index{Compute the centroid structure@{Compute the centroid structure}!get\-\_\-centroid\-\_\-struct\-\_\-pr@{get\-\_\-centroid\-\_\-struct\-\_\-pr}}
+\index{get\-\_\-centroid\-\_\-struct\-\_\-pr@{get\-\_\-centroid\-\_\-struct\-\_\-pr}!Compute the centroid structure@{Compute the centroid structure}}
+\subsubsection[{get\-\_\-centroid\-\_\-struct\-\_\-pr}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ get\-\_\-centroid\-\_\-struct\-\_\-pr (
+\begin{DoxyParamCaption}
+\item[{int}]{length, }
+\item[{double $\ast$}]{dist, }
+\item[{double $\ast$}]{pr}
+\end{DoxyParamCaption}
+)}}\label{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}
+
+
+Get the centroid structure of the ensemble.
+
+This function is a threadsafe replacement for \hyperlink{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{centroid()} with a probability array input
+
+The centroid is the structure with the minimal average distance to all other structures \par
+ $ <d(S)> = \sum_{(i,j) \in S} (1-p_{ij}) + \sum_{(i,j) \notin S} p_{ij} $ \par
+ Thus, the centroid is simply the structure containing all pairs with $p_ij>0.5$ The distance of the centroid to the ensemble is written to the memory adressed by {\itshape dist}.
+
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt in} & {\em length} & The length of the sequence \\
+\hline
+\mbox{\tt out} & {\em dist} & A pointer to the distance variable where the centroid distance will be written to \\
+\hline
+\mbox{\tt in} & {\em pr} & A upper triangular matrix containing base pair probabilities (access via iindx \hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx()} ) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The centroid structure of the ensemble in dot-\/bracket notation
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.27}Classified Dynamic Programming}{79}{section.9.27}}
+\newlabel{group__class__fold}{{9.27}{79}{Classified Dynamic Programming\relax }{section.9.27}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.27.1}Detailed Description}{79}{subsection.9.27.1}}
+\@setckpt{group__class__fold}{
+\setcounter{page}{80}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{27}
+\setcounter{subsection}{1}
+\setcounter{subsubsection}{0}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{61}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{188}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{61}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{2}
+}
--- /dev/null
+1d556274b6ef10a1d8bf1158d21f3021
\ No newline at end of file
--- /dev/null
+\hypertarget{group__class__fold}{\section{Classified Dynamic Programming}
+\label{group__class__fold}\index{Classified Dynamic Programming@{Classified Dynamic Programming}}
+}
+Collaboration diagram for Classified Dynamic Programming\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__class__fold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__kl__neighborhood}{Distance based partitioning of the Secondary Structure Space}
+\begin{DoxyCompactList}\small\item\em Compute Thermodynamic properties for a Distance Class Partitioning of the Secondary Structure Space. \end{DoxyCompactList}\item
+\hyperlink{group__dos}{Compute the Density of States}
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.10}Calculate Secondary Structures of two R\discretionary {-}{}{}N\discretionary {-}{}{}As upon Dimerization}{41}{section.9.10}}
+\newlabel{group__cofold}{{9.10}{41}{Calculate Secondary Structures of two R\-N\-As upon Dimerization\relax }{section.9.10}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.10.1}Detailed Description}{41}{subsection.9.10.1}}
+\@setckpt{group__cofold}{
+\setcounter{page}{42}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{10}
+\setcounter{subsection}{1}
+\setcounter{subsubsection}{0}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{17}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{61}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{17}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{2}
+}
--- /dev/null
+a3e1b7582ace3020d25e23b23eb42259
\ No newline at end of file
--- /dev/null
+\hypertarget{group__cofold}{\section{Calculate Secondary Structures of two R\-N\-As upon Dimerization}
+\label{group__cofold}\index{Calculate Secondary Structures of two R\-N\-As upon Dimerization@{Calculate Secondary Structures of two R\-N\-As upon Dimerization}}
+}
+
+
+Predict structures formed by two molecules upon hybridization.
+
+
+Collaboration diagram for Calculate Secondary Structures of two R\-N\-As upon Dimerization\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__cofold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__mfe__cofold}{M\-F\-E Structures of two hybridized Sequences}
+\item
+\hyperlink{group__pf__cofold}{Partition Function for two hybridized Sequences}
+\begin{DoxyCompactList}\small\item\em Partition Function Cofolding. \end{DoxyCompactList}\item
+\hyperlink{group__up__cofold}{Partition Function for two hybridized Sequences as a stepwise Process}
+\begin{DoxyCompactList}\small\item\em Partition Function Cofolding as a stepwise process. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Predict structures formed by two molecules upon hybridization. The function of an R\-N\-A molecule often depends on its interaction with other R\-N\-As. The following routines therefore allow to predict structures formed by two R\-N\-A molecules upon hybridization.\par
+ One approach to co-\/folding two R\-N\-As consists of concatenating the two sequences and keeping track of the concatenation point in all energy evaluations. Correspondingly, many of the \hyperlink{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{cofold()} and \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\-\_\-pf\-\_\-fold()} routines below take one sequence string as argument and use the the global variable \hyperlink{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point} to mark the concatenation point. Note that while the {\itshape R\-N\-Acofold} program uses the '\&' character to mark the chain break in its input, you should not use an '\&' when using the library routines (set \hyperlink{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point} instead).\par
+ In a second approach to co-\/folding two R\-N\-As, cofolding is seen as a stepwise process. In the first step the probability of an unpaired region is calculated and in a second step this probability of an unpaired region is multiplied with the probability of an interaction between the two R\-N\-As. This approach is implemented for the interaction between a long target sequence and a short ligand R\-N\-A. Function \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru()} calculates the partition function over all unpaired regions in the input sequence. Function \hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\-\_\-interact()}, which calculates the partition function over all possible interactions between two sequences, needs both sequence as separate strings as input.
\ No newline at end of file
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.14}Predicting Consensus Structures from Alignment(s)}{50}{section.9.14}}
+\newlabel{group__consensus__fold}{{9.14}{50}{Predicting Consensus Structures from Alignment(s)\relax }{section.9.14}{}}
+\newlabel{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{{9.14}{50}{Functions\relax }{section*.32}{}}
+\citation{hofacker:2002}
+\citation{bernhart:2008}
+\gdef \LT@xxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.14.1}Detailed Description}{51}{subsection.9.14.1}}
+\@writefile{brf}{\backcite{hofacker:2002}{{51}{9.14.1}{subsection.9.14.1}}}
+\@writefile{brf}{\backcite{bernhart:2008}{{51}{9.14.1}{subsection.9.14.1}}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.14.2}Function Documentation}{51}{subsection.9.14.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi}{51}{subsubsection.9.14.2.1}}
+\newlabel{group__consensus__fold_gaa2d600be90844094ec145ea14a314d2f}{{9.14.2.1}{51}{get\-\_\-mpi\relax }{subsubsection.9.14.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.2.2}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct}{51}{subsubsection.9.14.2.2}}
+\newlabel{group__consensus__fold_ga1c48869c03b49a342bf4cbdd61900081}{{9.14.2.2}{51}{energy\-\_\-of\-\_\-alistruct\relax }{subsubsection.9.14.2.2}{}}
+\gdef \LT@xxxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.2.3}encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence}{52}{subsubsection.9.14.2.3}}
+\newlabel{group__consensus__fold_gaa3e40277c837d6f7603afe319884c786}{{9.14.2.3}{52}{encode\-\_\-ali\-\_\-sequence\relax }{subsubsection.9.14.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.2.4}alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{52}{subsubsection.9.14.2.4}}
+\newlabel{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{{9.14.2.4}{52}{alloc\-\_\-sequence\-\_\-arrays\relax }{subsubsection.9.14.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.2.5}free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{52}{subsubsection.9.14.2.5}}
+\newlabel{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}{{9.14.2.5}{52}{free\-\_\-sequence\-\_\-arrays\relax }{subsubsection.9.14.2.5}{}}
+\gdef \LT@xxxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.2.6}get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{53}{subsubsection.9.14.2.6}}
+\newlabel{group__consensus__fold_ga0cc49457fd79eeb04d4a7f97c868b09b}{{9.14.2.6}{53}{get\-\_\-alipf\-\_\-arrays\relax }{subsubsection.9.14.2.6}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.14.3}Variable Documentation}{53}{subsection.9.14.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.3.1}cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact}{53}{subsubsection.9.14.3.1}}
+\newlabel{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}{{9.14.3.1}{53}{cv\-\_\-fact\relax }{subsubsection.9.14.3.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.14.3.2}nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact}{53}{subsubsection.9.14.3.2}}
+\newlabel{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}{{9.14.3.2}{53}{nc\-\_\-fact\relax }{subsubsection.9.14.3.2}{}}
+\@setckpt{group__consensus__fold}{
+\setcounter{page}{54}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{14}
+\setcounter{subsection}{3}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{34}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{94}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{34}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+2b11985476858553340a7c97b855e42b
\ No newline at end of file
--- /dev/null
+\hypertarget{group__consensus__fold}{\section{Predicting Consensus Structures from Alignment(s)}
+\label{group__consensus__fold}\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+}
+
+
+compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments
+
+
+Collaboration diagram for Predicting Consensus Structures from Alignment(s)\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__consensus__fold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__consensus__mfe__fold}{M\-F\-E Consensus Structures for Sequence Alignment(s)}
+\item
+\hyperlink{group__consensus__pf__fold}{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}
+\item
+\hyperlink{group__consensus__stochbt}{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}
+\item
+\hyperlink{group__local__consensus__fold}{Local M\-F\-E consensus structures for Sequence Alignments}
+\end{DoxyCompactItemize}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{alifold_8h}{alifold.\-h}
+\begin{DoxyCompactList}\small\item\em compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{group__consensus__fold_gaa2d600be90844094ec145ea14a314d2f}{get\-\_\-mpi} (char $\ast$Alseq\mbox{[}$\,$\mbox{]}, int n\-\_\-seq, int length, int $\ast$mini)
+\begin{DoxyCompactList}\small\item\em Get the mean pairwise identity in steps from ?to?(ident) \end{DoxyCompactList}\item
+\hypertarget{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{float $\ast$$\ast$ \hyperlink{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{readribosum} (char $\ast$name)}\label{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}
+
+\begin{DoxyCompactList}\small\item\em Read a ribosum or other user-\/defined scoring matrix. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__fold_ga1c48869c03b49a342bf4cbdd61900081}{energy\-\_\-of\-\_\-alistruct} (const char $\ast$$\ast$sequences, const char $\ast$structure, int n\-\_\-seq, float $\ast$energy)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of a consensus structure given a set of aligned sequences. \end{DoxyCompactList}\item
+void \hyperlink{group__consensus__fold_gaa3e40277c837d6f7603afe319884c786}{encode\-\_\-ali\-\_\-sequence} (const char $\ast$sequence, short $\ast$S, short $\ast$s5, short $\ast$s3, char $\ast$ss, unsigned short $\ast$as, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Get arrays with encoded sequence of the alignment. \end{DoxyCompactList}\item
+void \hyperlink{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{alloc\-\_\-sequence\-\_\-arrays} (const char $\ast$$\ast$sequences, short $\ast$$\ast$$\ast$S, short $\ast$$\ast$$\ast$S5, short $\ast$$\ast$$\ast$S3, unsigned short $\ast$$\ast$$\ast$a2s, char $\ast$$\ast$$\ast$Ss, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Allocate memory for sequence array used to deal with aligned sequences. \end{DoxyCompactList}\item
+void \hyperlink{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}{free\-\_\-sequence\-\_\-arrays} (unsigned int n\-\_\-seq, short $\ast$$\ast$$\ast$S, short $\ast$$\ast$$\ast$S5, short $\ast$$\ast$$\ast$S3, unsigned short $\ast$$\ast$$\ast$a2s, char $\ast$$\ast$$\ast$Ss)
+\begin{DoxyCompactList}\small\item\em Free the memory of the sequence arrays used to deal with aligned sequences. \end{DoxyCompactList}\item
+int \hyperlink{group__consensus__fold_ga0cc49457fd79eeb04d4a7f97c868b09b}{get\-\_\-alipf\-\_\-arrays} (short $\ast$$\ast$$\ast$S\-\_\-p, short $\ast$$\ast$$\ast$S5\-\_\-p, short $\ast$$\ast$$\ast$S3\-\_\-p, unsigned short $\ast$$\ast$$\ast$a2s\-\_\-p, char $\ast$$\ast$$\ast$Ss\-\_\-p, double $\ast$$\ast$qb\-\_\-p, double $\ast$$\ast$qm\-\_\-p, double $\ast$$\ast$q1k\-\_\-p, double $\ast$$\ast$qln\-\_\-p, short $\ast$$\ast$pscore)
+\begin{DoxyCompactList}\small\item\em Get pointers to (almost) all relavant arrays used in alifold's partition function computation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+double \hyperlink{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}{cv\-\_\-fact}
+\begin{DoxyCompactList}\small\item\em This variable controls the weight of the covariance term in the energy function of alignment folding algorithms. \end{DoxyCompactList}\item
+double \hyperlink{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}{nc\-\_\-fact}
+\begin{DoxyCompactList}\small\item\em This variable controls the magnitude of the penalty for non-\/compatible sequences in the covariance term of alignment folding algorithms. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments Consensus structures can be predicted by a modified version of the \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()} algorithm that takes a set of aligned sequences instead of a single sequence. The energy function consists of the mean energy averaged over the sequences, plus a covariance term that favors pairs with consistent and compensatory mutations and penalizes pairs that cannot be formed by all structures. For details see\cite{hofacker:2002} and \cite{bernhart:2008}.
+
+\subsection{Function Documentation}
+\hypertarget{group__consensus__fold_gaa2d600be90844094ec145ea14a314d2f}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!get\-\_\-mpi@{get\-\_\-mpi}}
+\index{get\-\_\-mpi@{get\-\_\-mpi}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{get\-\_\-mpi}]{\setlength{\rightskip}{0pt plus 5cm}int get\-\_\-mpi (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{Alseq\mbox{[}$\,$\mbox{]}, }
+\item[{int}]{n\-\_\-seq, }
+\item[{int}]{length, }
+\item[{int $\ast$}]{mini}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__fold_gaa2d600be90844094ec145ea14a314d2f}
+
+
+Get the mean pairwise identity in steps from ?to?(ident)
+
+
+\begin{DoxyParams}{Parameters}
+{\em Alseq} & \\
+\hline
+{\em n\-\_\-seq} & The number of sequences in the alignment \\
+\hline
+{\em length} & The length of the alignment \\
+\hline
+{\em mini} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The mean pairwise identity
+\end{DoxyReturn}
+\hypertarget{group__consensus__fold_ga1c48869c03b49a342bf4cbdd61900081}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!energy\-\_\-of\-\_\-alistruct@{energy\-\_\-of\-\_\-alistruct}}
+\index{energy\-\_\-of\-\_\-alistruct@{energy\-\_\-of\-\_\-alistruct}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{energy\-\_\-of\-\_\-alistruct}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-alistruct (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{sequences, }
+\item[{const char $\ast$}]{structure, }
+\item[{int}]{n\-\_\-seq, }
+\item[{float $\ast$}]{energy}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__fold_ga1c48869c03b49a342bf4cbdd61900081}
+
+
+Calculate the free energy of a consensus structure given a set of aligned sequences.
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequences} & The N\-U\-L\-L terminated array of sequences \\
+\hline
+{\em structure} & The consensus structure \\
+\hline
+{\em n\-\_\-seq} & The number of sequences in the alignment \\
+\hline
+{\em energy} & A pointer to an array of at least two floats that will hold the free energies (energy\mbox{[}0\mbox{]} will contain the free energy, energy\mbox{[}1\mbox{]} will be filled with the covariance energy term) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+free energy in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__consensus__fold_gaa3e40277c837d6f7603afe319884c786}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!encode\-\_\-ali\-\_\-sequence@{encode\-\_\-ali\-\_\-sequence}}
+\index{encode\-\_\-ali\-\_\-sequence@{encode\-\_\-ali\-\_\-sequence}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{encode\-\_\-ali\-\_\-sequence}]{\setlength{\rightskip}{0pt plus 5cm}void encode\-\_\-ali\-\_\-sequence (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{short $\ast$}]{S, }
+\item[{short $\ast$}]{s5, }
+\item[{short $\ast$}]{s3, }
+\item[{char $\ast$}]{ss, }
+\item[{unsigned short $\ast$}]{as, }
+\item[{int}]{circ}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__fold_gaa3e40277c837d6f7603afe319884c786}
+
+
+Get arrays with encoded sequence of the alignment.
+
+this function assumes that in S, S5, s3, ss and as enough space is already allocated (size must be at least sequence length+2)
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The gapped sequence from the alignment \\
+\hline
+{\em S} & pointer to an array that holds encoded sequence \\
+\hline
+{\em s5} & pointer to an array that holds the next base 5' of alignment position i \\
+\hline
+{\em s3} & pointer to an array that holds the next base 3' of alignment position i \\
+\hline
+{\em ss} & \\
+\hline
+{\em as} & \\
+\hline
+{\em circ} & assume the molecules to be circular instead of linear (circ=0) \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!alloc\-\_\-sequence\-\_\-arrays@{alloc\-\_\-sequence\-\_\-arrays}}
+\index{alloc\-\_\-sequence\-\_\-arrays@{alloc\-\_\-sequence\-\_\-arrays}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{alloc\-\_\-sequence\-\_\-arrays}]{\setlength{\rightskip}{0pt plus 5cm}void alloc\-\_\-sequence\-\_\-arrays (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{sequences, }
+\item[{short $\ast$$\ast$$\ast$}]{S, }
+\item[{short $\ast$$\ast$$\ast$}]{S5, }
+\item[{short $\ast$$\ast$$\ast$}]{S3, }
+\item[{unsigned short $\ast$$\ast$$\ast$}]{a2s, }
+\item[{char $\ast$$\ast$$\ast$}]{Ss, }
+\item[{int}]{circ}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}
+
+
+Allocate memory for sequence array used to deal with aligned sequences.
+
+Note that these arrays will also be initialized according to the sequence alignment given
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}{free\-\_\-sequence\-\_\-arrays()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequences} & The aligned sequences \\
+\hline
+{\em S} & A pointer to the array of encoded sequences \\
+\hline
+{\em S5} & A pointer to the array that contains the next 5' nucleotide of a sequence position \\
+\hline
+{\em S3} & A pointer to the array that contains the next 3' nucleotide of a sequence position \\
+\hline
+{\em a2s} & A pointer to the array that contains the alignment to sequence position mapping \\
+\hline
+{\em Ss} & A pointer to the array that contains the ungapped sequence \\
+\hline
+{\em circ} & assume the molecules to be circular instead of linear (circ=0) \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!free\-\_\-sequence\-\_\-arrays@{free\-\_\-sequence\-\_\-arrays}}
+\index{free\-\_\-sequence\-\_\-arrays@{free\-\_\-sequence\-\_\-arrays}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{free\-\_\-sequence\-\_\-arrays}]{\setlength{\rightskip}{0pt plus 5cm}void free\-\_\-sequence\-\_\-arrays (
+\begin{DoxyParamCaption}
+\item[{unsigned int}]{n\-\_\-seq, }
+\item[{short $\ast$$\ast$$\ast$}]{S, }
+\item[{short $\ast$$\ast$$\ast$}]{S5, }
+\item[{short $\ast$$\ast$$\ast$}]{S3, }
+\item[{unsigned short $\ast$$\ast$$\ast$}]{a2s, }
+\item[{char $\ast$$\ast$$\ast$}]{Ss}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__fold_ga298a420a8c879202e2617b3f724fde38}
+
+
+Free the memory of the sequence arrays used to deal with aligned sequences.
+
+This function frees the memory previously allocated with \hyperlink{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{alloc\-\_\-sequence\-\_\-arrays()}
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__consensus__fold_ga8a560930f7f2582cc3967723a86cfdfa}{alloc\-\_\-sequence\-\_\-arrays()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em n\-\_\-seq} & The number of aligned sequences \\
+\hline
+{\em S} & A pointer to the array of encoded sequences \\
+\hline
+{\em S5} & A pointer to the array that contains the next 5' nucleotide of a sequence position \\
+\hline
+{\em S3} & A pointer to the array that contains the next 3' nucleotide of a sequence position \\
+\hline
+{\em a2s} & A pointer to the array that contains the alignment to sequence position mapping \\
+\hline
+{\em Ss} & A pointer to the array that contains the ungapped sequence \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__consensus__fold_ga0cc49457fd79eeb04d4a7f97c868b09b}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!get\-\_\-alipf\-\_\-arrays@{get\-\_\-alipf\-\_\-arrays}}
+\index{get\-\_\-alipf\-\_\-arrays@{get\-\_\-alipf\-\_\-arrays}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{get\-\_\-alipf\-\_\-arrays}]{\setlength{\rightskip}{0pt plus 5cm}int get\-\_\-alipf\-\_\-arrays (
+\begin{DoxyParamCaption}
+\item[{short $\ast$$\ast$$\ast$}]{S\-\_\-p, }
+\item[{short $\ast$$\ast$$\ast$}]{S5\-\_\-p, }
+\item[{short $\ast$$\ast$$\ast$}]{S3\-\_\-p, }
+\item[{unsigned short $\ast$$\ast$$\ast$}]{a2s\-\_\-p, }
+\item[{char $\ast$$\ast$$\ast$}]{Ss\-\_\-p, }
+\item[{double $\ast$$\ast$}]{qb\-\_\-p, }
+\item[{double $\ast$$\ast$}]{qm\-\_\-p, }
+\item[{double $\ast$$\ast$}]{q1k\-\_\-p, }
+\item[{double $\ast$$\ast$}]{qln\-\_\-p, }
+\item[{short $\ast$$\ast$}]{pscore}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__fold_ga0cc49457fd79eeb04d4a7f97c868b09b}
+
+
+Get pointers to (almost) all relavant arrays used in alifold's partition function computation.
+
+\begin{DoxyNote}{Note}
+To obtain meaningful pointers, call alipf\-\_\-fold first!
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+pf\-\_\-alifold(), \hyperlink{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}{alipf\-\_\-circ\-\_\-fold()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em S\-\_\-p} & A pointer to the 'S' array (integer representation of nucleotides) \\
+\hline
+{\em S5\-\_\-p} & A pointer to the 'S5' array \\
+\hline
+{\em S3\-\_\-p} & A pointer to the 'S3' array \\
+\hline
+{\em a2s\-\_\-p} & A pointer to the pair type matrix \\
+\hline
+{\em Ss\-\_\-p} & A pointer to the 'Ss' array \\
+\hline
+{\em qb\-\_\-p} & A pointer to the Q$^{\mbox{B}}$ matrix \\
+\hline
+{\em qm\-\_\-p} & A pointer to the Q$^{\mbox{M}}$ matrix \\
+\hline
+{\em q1k\-\_\-p} & A pointer to the 5' slice of the Q matrix ( $q1k(k) = Q(1, k)$) \\
+\hline
+{\em qln\-\_\-p} & A pointer to the 3' slice of the Q matrix ( $qln(l) = Q(l, n)$) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+Non Zero if everything went fine, 0 otherwise
+\end{DoxyReturn}
+
+
+\subsection{Variable Documentation}
+\hypertarget{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!cv\-\_\-fact@{cv\-\_\-fact}}
+\index{cv\-\_\-fact@{cv\-\_\-fact}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{cv\-\_\-fact}]{\setlength{\rightskip}{0pt plus 5cm}double cv\-\_\-fact}}\label{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}
+
+
+This variable controls the weight of the covariance term in the energy function of alignment folding algorithms.
+
+Default is 1. \hypertarget{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}{\index{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!nc\-\_\-fact@{nc\-\_\-fact}}
+\index{nc\-\_\-fact@{nc\-\_\-fact}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}}
+\subsubsection[{nc\-\_\-fact}]{\setlength{\rightskip}{0pt plus 5cm}double nc\-\_\-fact}}\label{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}
+
+
+This variable controls the magnitude of the penalty for non-\/compatible sequences in the covariance term of alignment folding algorithms.
+
+Default is 1.
\ No newline at end of file
--- /dev/null
+\relax
+\gdef \LT@xxxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.15}M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}{54}{section.9.15}}
+\newlabel{group__consensus__mfe__fold}{{9.15}{54}{M\-F\-E Consensus Structures for Sequence Alignment(s)\relax }{section.9.15}{}}
+\newlabel{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{{9.15}{54}{Functions\relax }{section*.34}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.15.1}Detailed Description}{54}{subsection.9.15.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.15.2}Function Documentation}{54}{subsection.9.15.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.15.2.1}alifold}{54}{subsubsection.9.15.2.1}}
+\newlabel{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{{9.15.2.1}{54}{alifold\relax }{subsubsection.9.15.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.15.2.2}circalifold}{54}{subsubsection.9.15.2.2}}
+\newlabel{group__consensus__mfe__fold_gadbd3b0b1c144cbfb4efe704b2b260f96}{{9.15.2.2}{54}{circalifold\relax }{subsubsection.9.15.2.2}{}}
+\gdef \LT@xxxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@setckpt{group__consensus__mfe__fold}{
+\setcounter{page}{56}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{15}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{36}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{99}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{36}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+fa36773179acd2ba6dec0a37fd4cfc8c
\ No newline at end of file
--- /dev/null
+\hypertarget{group__consensus__mfe__fold}{\section{M\-F\-E Consensus Structures for Sequence Alignment(s)}
+\label{group__consensus__mfe__fold}\index{M\-F\-E Consensus Structures for Sequence Alignment(s)@{M\-F\-E Consensus Structures for Sequence Alignment(s)}}
+}
+Collaboration diagram for M\-F\-E Consensus Structures for Sequence Alignment(s)\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__consensus__mfe__fold}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold} (const char $\ast$$\ast$strings, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute M\-F\-E and according consensus structure of an alignment of sequences. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__mfe__fold_gadbd3b0b1c144cbfb4efe704b2b260f96}{circalifold} (const char $\ast$$\ast$strings, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute M\-F\-E and according structure of an alignment of sequences assuming the sequences are circular instead of linear. \end{DoxyCompactList}\item
+\hypertarget{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{void \hyperlink{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{free\-\_\-alifold\-\_\-arrays} (void)}\label{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}
+
+\begin{DoxyCompactList}\small\item\em Free the memory occupied by M\-F\-E alifold functions. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{\index{M\-F\-E Consensus Structures for Sequence Alignment(s)@{M\-F\-E Consensus Structures for Sequence Alignment(s)}!alifold@{alifold}}
+\index{alifold@{alifold}!MFE Consensus Structures for Sequence Alignment(s)@{M\-F\-E Consensus Structures for Sequence Alignment(s)}}
+\subsubsection[{alifold}]{\setlength{\rightskip}{0pt plus 5cm}float alifold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{strings, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}
+
+
+Compute M\-F\-E and according consensus structure of an alignment of sequences.
+
+This function predicts the consensus structure for the aligned 'sequences' and returns the minimum free energy; the mfe structure in bracket notation is returned in 'structure'.
+
+Sufficient space must be allocated for 'structure' before calling \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em strings} & A pointer to a N\-U\-L\-L terminated array of character arrays \\
+\hline
+{\em structure} & A pointer to a character array that may contain a constraining consensus structure (will be overwritten by a consensus structure that exhibits the M\-F\-E) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The free energy score in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__consensus__mfe__fold_gadbd3b0b1c144cbfb4efe704b2b260f96}{\index{M\-F\-E Consensus Structures for Sequence Alignment(s)@{M\-F\-E Consensus Structures for Sequence Alignment(s)}!circalifold@{circalifold}}
+\index{circalifold@{circalifold}!MFE Consensus Structures for Sequence Alignment(s)@{M\-F\-E Consensus Structures for Sequence Alignment(s)}}
+\subsubsection[{circalifold}]{\setlength{\rightskip}{0pt plus 5cm}float circalifold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{strings, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__mfe__fold_gadbd3b0b1c144cbfb4efe704b2b260f96}
+
+
+Compute M\-F\-E and according structure of an alignment of sequences assuming the sequences are circular instead of linear.
+
+
+\begin{DoxyParams}{Parameters}
+{\em strings} & A pointer to a N\-U\-L\-L terminated array of character arrays \\
+\hline
+{\em structure} & A pointer to a character array that may contain a constraining consensus structure (will be overwritten by a consensus structure that exhibits the M\-F\-E) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The free energy score in kcal/mol
+\end{DoxyReturn}
--- /dev/null
+\relax
+\gdef \LT@xxxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.16}Partition Function and Base Pair Probabilities for Sequence Alignment(s)}{56}{section.9.16}}
+\newlabel{group__consensus__pf__fold}{{9.16}{56}{Partition Function and Base Pair Probabilities for Sequence Alignment(s)\relax }{section.9.16}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.16.1}Detailed Description}{56}{subsection.9.16.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.16.2}Function Documentation}{56}{subsection.9.16.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.16.2.1}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{56}{subsubsection.9.16.2.1}}
+\newlabel{group__consensus__pf__fold_ga4d2ff54d8210fc7cceeeff389d4dbd1d}{{9.16.2.1}{56}{alipf\-\_\-fold\-\_\-par\relax }{subsubsection.9.16.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.16.2.2}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{56}{subsubsection.9.16.2.2}}
+\newlabel{group__consensus__pf__fold_gad32ded7d753ccaf211ab35782d1f42a9}{{9.16.2.2}{56}{alipf\-\_\-fold\relax }{subsubsection.9.16.2.2}{}}
+\gdef \LT@xxxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.16.2.3}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{57}{subsubsection.9.16.2.3}}
+\newlabel{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}{{9.16.2.3}{57}{alipf\-\_\-circ\-\_\-fold\relax }{subsubsection.9.16.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.16.2.4}export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{57}{subsubsection.9.16.2.4}}
+\newlabel{group__consensus__pf__fold_gadaaf83394216413505e48d913dbc1b4e}{{9.16.2.4}{57}{export\-\_\-ali\-\_\-bppm\relax }{subsubsection.9.16.2.4}{}}
+\@setckpt{group__consensus__pf__fold}{
+\setcounter{page}{58}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{16}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{4}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{39}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{106}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{39}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+57ea368e269ddfd4d086027651a487c4
\ No newline at end of file
--- /dev/null
+\hypertarget{group__consensus__pf__fold}{\section{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}
+\label{group__consensus__pf__fold}\index{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}}
+}
+Collaboration diagram for Partition Function and Base Pair Probabilities for Sequence Alignment(s)\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__consensus__pf__fold}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__consensus__pf__fold_ga4d2ff54d8210fc7cceeeff389d4dbd1d}{alipf\-\_\-fold\-\_\-par} (const char $\ast$$\ast$sequences, char $\ast$structure, \hyperlink{structplist}{plist} $\ast$$\ast$pl, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters, int calculate\-\_\-bppm, int is\-\_\-constrained, int is\-\_\-circular)
+\item
+float \hyperlink{group__consensus__pf__fold_gad32ded7d753ccaf211ab35782d1f42a9}{alipf\-\_\-fold} (const char $\ast$$\ast$sequences, char $\ast$structure, \hyperlink{structplist}{plist} $\ast$$\ast$pl)
+\begin{DoxyCompactList}\small\item\em The partition function version of \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold()} works in analogy to \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}. Pair probabilities and information about sequence covariations are returned via the 'pi' variable as a list of \hyperlink{structpair__info}{pair\-\_\-info} structs. The list is terminated by the first entry with pi.\-i = 0. \end{DoxyCompactList}\item
+float \hyperlink{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}{alipf\-\_\-circ\-\_\-fold} (const char $\ast$$\ast$sequences, char $\ast$structure, \hyperlink{structplist}{plist} $\ast$$\ast$pl)
+\item
+double $\ast$ \hyperlink{group__consensus__pf__fold_gadaaf83394216413505e48d913dbc1b4e}{export\-\_\-ali\-\_\-bppm} (void)
+\begin{DoxyCompactList}\small\item\em Get a pointer to the base pair probability array. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__consensus__pf__fold_ga4d2ff54d8210fc7cceeeff389d4dbd1d}{\index{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!alipf\-\_\-fold\-\_\-par@{alipf\-\_\-fold\-\_\-par}}
+\index{alipf\-\_\-fold\-\_\-par@{alipf\-\_\-fold\-\_\-par}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}}
+\subsubsection[{alipf\-\_\-fold\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}float alipf\-\_\-fold\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{sequences, }
+\item[{char $\ast$}]{structure, }
+\item[{{\bf plist} $\ast$$\ast$}]{pl, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{parameters, }
+\item[{int}]{calculate\-\_\-bppm, }
+\item[{int}]{is\-\_\-constrained, }
+\item[{int}]{is\-\_\-circular}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__pf__fold_ga4d2ff54d8210fc7cceeeff389d4dbd1d}
+
+\begin{DoxyParams}{Parameters}
+{\em sequences} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em pl} & \\
+\hline
+{\em parameters} & \\
+\hline
+{\em calculate\-\_\-bppm} & \\
+\hline
+{\em is\-\_\-constrained} & \\
+\hline
+{\em is\-\_\-circular} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{group__consensus__pf__fold_gad32ded7d753ccaf211ab35782d1f42a9}{\index{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!alipf\-\_\-fold@{alipf\-\_\-fold}}
+\index{alipf\-\_\-fold@{alipf\-\_\-fold}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}}
+\subsubsection[{alipf\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}float alipf\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{sequences, }
+\item[{char $\ast$}]{structure, }
+\item[{{\bf plist} $\ast$$\ast$}]{pl}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__pf__fold_gad32ded7d753ccaf211ab35782d1f42a9}
+
+
+The partition function version of \hyperlink{group__consensus__mfe__fold_ga4cf00f0659e5f0480335d69e797f05b1}{alifold()} works in analogy to \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}. Pair probabilities and information about sequence covariations are returned via the 'pi' variable as a list of \hyperlink{structpair__info}{pair\-\_\-info} structs. The list is terminated by the first entry with pi.\-i = 0.
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequences} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em pl} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}{\index{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!alipf\-\_\-circ\-\_\-fold@{alipf\-\_\-circ\-\_\-fold}}
+\index{alipf\-\_\-circ\-\_\-fold@{alipf\-\_\-circ\-\_\-fold}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}}
+\subsubsection[{alipf\-\_\-circ\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}float alipf\-\_\-circ\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{sequences, }
+\item[{char $\ast$}]{structure, }
+\item[{{\bf plist} $\ast$$\ast$}]{pl}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__pf__fold_ga6b4dde1d43b79ab3753508c46cf50363}
+
+\begin{DoxyParams}{Parameters}
+{\em sequences} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em pl} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{group__consensus__pf__fold_gadaaf83394216413505e48d913dbc1b4e}{\index{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!export\-\_\-ali\-\_\-bppm@{export\-\_\-ali\-\_\-bppm}}
+\index{export\-\_\-ali\-\_\-bppm@{export\-\_\-ali\-\_\-bppm}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}}
+\subsubsection[{export\-\_\-ali\-\_\-bppm}]{\setlength{\rightskip}{0pt plus 5cm}double$\ast$ export\-\_\-ali\-\_\-bppm (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__pf__fold_gadaaf83394216413505e48d913dbc1b4e}
+
+
+Get a pointer to the base pair probability array.
+
+Accessing the base pair probabilities for a pair (i,j) is achieved by \begin{DoxyVerb}FLT_OR_DBL *pr = export_bppm(); pr_ij = pr[iindx[i]-j]; \end{DoxyVerb}
+
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx()}
+\end{DoxySeeAlso}
+\begin{DoxyReturn}{Returns}
+A pointer to the base pair probability array
+\end{DoxyReturn}
--- /dev/null
+\relax
+\gdef \LT@xl {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.17}Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}{58}{section.9.17}}
+\newlabel{group__consensus__stochbt}{{9.17}{58}{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)\relax }{section.9.17}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.17.1}Detailed Description}{58}{subsection.9.17.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.17.2}Function Documentation}{58}{subsection.9.17.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.17.2.1}alipbacktrack}{58}{subsubsection.9.17.2.1}}
+\newlabel{group__consensus__stochbt_ga0df40248788f0fb17ebdc59d74116d1c}{{9.17.2.1}{58}{alipbacktrack\relax }{subsubsection.9.17.2.1}{}}
+\@setckpt{group__consensus__stochbt}{
+\setcounter{page}{59}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{17}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{40}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{110}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{40}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+b8d26dbf6d5790c58ecbdf3ab309dfea
\ No newline at end of file
--- /dev/null
+\hypertarget{group__consensus__stochbt}{\section{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}
+\label{group__consensus__stochbt}\index{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)@{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}}
+}
+Collaboration diagram for Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__consensus__stochbt}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+char $\ast$ \hyperlink{group__consensus__stochbt_ga0df40248788f0fb17ebdc59d74116d1c}{alipbacktrack} (double $\ast$prob)
+\begin{DoxyCompactList}\small\item\em Sample a consensus secondary structure from the Boltzmann ensemble according its probability\par
+. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__consensus__stochbt_ga0df40248788f0fb17ebdc59d74116d1c}{\index{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)@{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}!alipbacktrack@{alipbacktrack}}
+\index{alipbacktrack@{alipbacktrack}!Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)@{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}}
+\subsubsection[{alipbacktrack}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ alipbacktrack (
+\begin{DoxyParamCaption}
+\item[{double $\ast$}]{prob}
+\end{DoxyParamCaption}
+)}}\label{group__consensus__stochbt_ga0df40248788f0fb17ebdc59d74116d1c}
+
+
+Sample a consensus secondary structure from the Boltzmann ensemble according its probability\par
+.
+
+
+\begin{DoxyParams}{Parameters}
+{\em prob} & to be described (berni) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A sampled consensus secondary structure in dot-\/bracket notation
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.32}Compute the Density of States}{89}{section.9.32}}
+\newlabel{group__dos}{{9.32}{89}{Compute the Density of States\relax }{section.9.32}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.32.1}Detailed Description}{89}{subsection.9.32.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.32.2}Variable Documentation}{89}{subsection.9.32.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.32.2.1}density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states}{89}{subsubsection.9.32.2.1}}
+\newlabel{group__dos_ga937634a76b46a22530a74906f1957a9e}{{9.32.2.1}{89}{density\-\_\-of\-\_\-states\relax }{subsubsection.9.32.2.1}{}}
+\@setckpt{group__dos}{
+\setcounter{page}{90}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{32}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{71}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{213}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{71}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+2136750172267fec652c33e9e85f430e
\ No newline at end of file
--- /dev/null
+\hypertarget{group__dos}{\section{Compute the Density of States}
+\label{group__dos}\index{Compute the Density of States@{Compute the Density of States}}
+}
+Collaboration diagram for Compute the Density of States\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=320pt]{group__dos}
+\end{center}
+\end{figure}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{group__dos_ga937634a76b46a22530a74906f1957a9e}{density\-\_\-of\-\_\-states} \mbox{[}\hyperlink{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{M\-A\-X\-D\-O\-S}+1\mbox{]}
+\begin{DoxyCompactList}\small\item\em The Density of States. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Variable Documentation}
+\hypertarget{group__dos_ga937634a76b46a22530a74906f1957a9e}{\index{Compute the Density of States@{Compute the Density of States}!density\-\_\-of\-\_\-states@{density\-\_\-of\-\_\-states}}
+\index{density\-\_\-of\-\_\-states@{density\-\_\-of\-\_\-states}!Compute the Density of States@{Compute the Density of States}}
+\subsubsection[{density\-\_\-of\-\_\-states}]{\setlength{\rightskip}{0pt plus 5cm}int density\-\_\-of\-\_\-states\mbox{[}{\bf M\-A\-X\-D\-O\-S}+1\mbox{]}}}\label{group__dos_ga937634a76b46a22530a74906f1957a9e}
+
+
+The Density of States.
+
+This array contains the density of states for an R\-N\-A sequences after a call to \hyperlink{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{subopt\-\_\-par()}, \hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt()} or \hyperlink{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{subopt\-\_\-circ()}.
+
+\begin{DoxyPrecond}{Precondition}
+Call one of the functions \hyperlink{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{subopt\-\_\-par()}, \hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt()} or \hyperlink{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{subopt\-\_\-circ()} prior accessing the contents of this array
+\end{DoxyPrecond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{subopt\-\_\-par()}, \hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt()}, \hyperlink{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{subopt\-\_\-circ()}
+\end{DoxySeeAlso}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.22}Change and Precalculate Energy Parameter Sets and Boltzmann Factors}{64}{section.9.22}}
+\newlabel{group__energy__parameters}{{9.22}{64}{Change and Precalculate Energy Parameter Sets and Boltzmann Factors\relax }{section.9.22}{}}
+\newlabel{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{{9.22}{64}{Functions\relax }{section*.45}{}}
+\newlabel{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{{9.22}{64}{Functions\relax }{section*.45}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.22.1}Detailed Description}{64}{subsection.9.22.1}}
+\gdef \LT@xlviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.22.2}Function Documentation}{65}{subsection.9.22.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.22.2.1}scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}{65}{subsubsection.9.22.2.1}}
+\newlabel{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{{9.22.2.1}{65}{scale\-\_\-parameters\relax }{subsubsection.9.22.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.22.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}{65}{subsubsection.9.22.2.2}}
+\newlabel{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{{9.22.2.2}{65}{get\-\_\-scaled\-\_\-parameters\relax }{subsubsection.9.22.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.22.2.3}get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}{65}{subsubsection.9.22.2.3}}
+\newlabel{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{{9.22.2.3}{65}{get\-\_\-scaled\-\_\-pf\-\_\-parameters\relax }{subsubsection.9.22.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.22.2.4}get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors}{65}{subsubsection.9.22.2.4}}
+\newlabel{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{{9.22.2.4}{65}{get\-\_\-boltzmann\-\_\-factors\relax }{subsubsection.9.22.2.4}{}}
+\gdef \LT@xlix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@l {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.22.2.5}get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy}{66}{subsubsection.9.22.2.5}}
+\newlabel{group__energy__parameters_gacba212326a051734797e65987260fdd0}{{9.22.2.5}{66}{get\-\_\-boltzmann\-\_\-factor\-\_\-copy\relax }{subsubsection.9.22.2.5}{}}
+\@setckpt{group__energy__parameters}{
+\setcounter{page}{67}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{22}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{5}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{50}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{136}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{50}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+f8a06bc4b20af6461473627c572eb513
\ No newline at end of file
--- /dev/null
+\hypertarget{group__energy__parameters}{\section{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}
+\label{group__energy__parameters}\index{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}}
+}
+
+
+All relevant functions to retrieve and copy precalculated energy parameter sets as well as reading/writing the energy parameter set from/to file(s).
+
+
+Collaboration diagram for Change and Precalculate Energy Parameter Sets and Boltzmann Factors\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__energy__parameters}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__energy__parameters__rw}{Reading/\-Writing energy parameter sets from/to File}
+\begin{DoxyCompactList}\small\item\em Read and Write energy parameter sets from and to text files. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{params_8h}{params.\-h}
+\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structparamT}{param\-T} $\ast$ \hyperlink{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{scale\-\_\-parameters} (void)
+\begin{DoxyCompactList}\small\item\em Get precomputed energy contributions for all the known loop types. \end{DoxyCompactList}\item
+\hyperlink{structparamT}{param\-T} $\ast$ \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters} (double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} md)
+\begin{DoxyCompactList}\small\item\em Get precomputed energy contributions for all the known loop types. \end{DoxyCompactList}\item
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters} (void)
+\item
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors} (double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, double beta\-Scale, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} md, double \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale})
+\begin{DoxyCompactList}\small\item\em Get precomputed Boltzmann factors of the loop type dependent energy contributions with independent thermodynamic temperature. \end{DoxyCompactList}\item
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gacba212326a051734797e65987260fdd0}{get\-\_\-boltzmann\-\_\-factor\-\_\-copy} (\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)
+\begin{DoxyCompactList}\small\item\em Get a copy of already precomputed Boltzmann factors. \end{DoxyCompactList}\item
+\hypertarget{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{get\-\_\-scaled\-\_\-alipf\-\_\-parameters} (unsigned int n\-\_\-seq)}\label{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}
+
+\begin{DoxyCompactList}\small\item\em Get precomputed Boltzmann factors of the loop type dependent energy contributions (alifold variant) \end{DoxyCompactList}\item
+\hypertarget{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{P\-U\-B\-L\-I\-C \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{get\-\_\-boltzmann\-\_\-factors\-\_\-ali} (unsigned int n\-\_\-seq, double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, double beta\-Scale, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} md, double \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale})}\label{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}
+
+\begin{DoxyCompactList}\small\item\em Get precomputed Boltzmann factors of the loop type dependent energy contributions (alifold variant) with independent thermodynamic temperature. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+All relevant functions to retrieve and copy precalculated energy parameter sets as well as reading/writing the energy parameter set from/to file(s). This module covers all relevant functions for precalculation of the energy parameters necessary for the folding routines provided by R\-N\-Alib. Furthermore, the energy parameter set in the R\-N\-Alib can be easily exchanged by a user-\/defined one. It is also possible to write the current energy parameter set into a text file.
+
+\subsection{Function Documentation}
+\hypertarget{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{\index{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!scale\-\_\-parameters@{scale\-\_\-parameters}}
+\index{scale\-\_\-parameters@{scale\-\_\-parameters}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}}
+\subsubsection[{scale\-\_\-parameters}]{\setlength{\rightskip}{0pt plus 5cm}{\bf param\-T}$\ast$ scale\-\_\-parameters (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}
+
+
+Get precomputed energy contributions for all the known loop types.
+
+\begin{DoxyNote}{Note}
+Open\-M\-P\-: This function relies on several global model settings variables and thus is not to be considered threadsafe. See \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters()} for a completely threadsafe implementation.
+\end{DoxyNote}
+\begin{DoxyReturn}{Returns}
+A set of precomputed energy contributions
+\end{DoxyReturn}
+\hypertarget{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{\index{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\-\_\-scaled\-\_\-parameters@{get\-\_\-scaled\-\_\-parameters}}
+\index{get\-\_\-scaled\-\_\-parameters@{get\-\_\-scaled\-\_\-parameters}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}}
+\subsubsection[{get\-\_\-scaled\-\_\-parameters}]{\setlength{\rightskip}{0pt plus 5cm}{\bf param\-T}$\ast$ get\-\_\-scaled\-\_\-parameters (
+\begin{DoxyParamCaption}
+\item[{double}]{temperature, }
+\item[{{\bf model\-\_\-details\-T}}]{md}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}
+
+
+Get precomputed energy contributions for all the known loop types.
+
+Call this function to retrieve precomputed energy contributions, i.\-e. scaled according to the temperature passed. Furthermore, this function assumes a data structure that contains the model details as well, such that subsequent folding recursions are able to retrieve the correct model settings
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{structmodel__detailsT}{model\-\_\-details\-T}, \hyperlink{fold__vars_8h_a4c3257186a796182462f18a5480ac8b3}{set\-\_\-model\-\_\-details()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em temperature} & The temperature in degrees Celcius \\
+\hline
+{\em md} & The model details \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+precomputed energy contributions and model settings
+\end{DoxyReturn}
+\hypertarget{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{\index{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\-\_\-scaled\-\_\-pf\-\_\-parameters@{get\-\_\-scaled\-\_\-pf\-\_\-parameters}}
+\index{get\-\_\-scaled\-\_\-pf\-\_\-parameters@{get\-\_\-scaled\-\_\-pf\-\_\-parameters}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}}
+\subsubsection[{get\-\_\-scaled\-\_\-pf\-\_\-parameters}]{\setlength{\rightskip}{0pt plus 5cm}{\bf pf\-\_\-param\-T}$\ast$ get\-\_\-scaled\-\_\-pf\-\_\-parameters (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}
+get a datastructure of type \hyperlink{structpf__paramT}{pf\-\_\-param\-T} which contains the Boltzmann weights of several energy parameters scaled according to the current temperature \begin{DoxyReturn}{Returns}
+The datastructure containing Boltzmann weights for use in partition function calculations
+\end{DoxyReturn}
+\hypertarget{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{\index{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\-\_\-boltzmann\-\_\-factors@{get\-\_\-boltzmann\-\_\-factors}}
+\index{get\-\_\-boltzmann\-\_\-factors@{get\-\_\-boltzmann\-\_\-factors}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}}
+\subsubsection[{get\-\_\-boltzmann\-\_\-factors}]{\setlength{\rightskip}{0pt plus 5cm}{\bf pf\-\_\-param\-T}$\ast$ get\-\_\-boltzmann\-\_\-factors (
+\begin{DoxyParamCaption}
+\item[{double}]{temperature, }
+\item[{double}]{beta\-Scale, }
+\item[{{\bf model\-\_\-details\-T}}]{md, }
+\item[{double}]{pf\-\_\-scale}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}
+
+
+Get precomputed Boltzmann factors of the loop type dependent energy contributions with independent thermodynamic temperature.
+
+This function returns a data structure that contains all necessary precalculated Boltzmann factors for each loop type contribution.\par
+ In contrast to \hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters()}, this function enables setting of independent temperatures for both, the individual energy contributions as well as the thermodynamic temperature used in $ exp(-\Delta G / kT) $
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters()}, \hyperlink{group__energy__parameters_gacba212326a051734797e65987260fdd0}{get\-\_\-boltzmann\-\_\-factor\-\_\-copy()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em temperature} & The temperature in degrees Celcius used for (re-\/)scaling the energy contributions \\
+\hline
+{\em beta\-Scale} & A scaling value that is used as a multiplication factor for the absolute temperature of the system \\
+\hline
+{\em md} & The model details to be used \\
+\hline
+{\em pf\-\_\-scale} & The scaling factor for the Boltzmann factors \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A set of precomputed Boltzmann factors
+\end{DoxyReturn}
+\hypertarget{group__energy__parameters_gacba212326a051734797e65987260fdd0}{\index{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\-\_\-boltzmann\-\_\-factor\-\_\-copy@{get\-\_\-boltzmann\-\_\-factor\-\_\-copy}}
+\index{get\-\_\-boltzmann\-\_\-factor\-\_\-copy@{get\-\_\-boltzmann\-\_\-factor\-\_\-copy}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}}
+\subsubsection[{get\-\_\-boltzmann\-\_\-factor\-\_\-copy}]{\setlength{\rightskip}{0pt plus 5cm}{\bf pf\-\_\-param\-T}$\ast$ get\-\_\-boltzmann\-\_\-factor\-\_\-copy (
+\begin{DoxyParamCaption}
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{parameters}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters_gacba212326a051734797e65987260fdd0}
+
+
+Get a copy of already precomputed Boltzmann factors.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors()}, \hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em parameters} & The input data structure that shall be copied \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A copy of the provided Boltzmann factor dataset
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.24}Converting energy parameter files}{69}{section.9.24}}
+\newlabel{group__energy__parameters__convert}{{9.24}{69}{Converting energy parameter files\relax }{section.9.24}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.24.1}Detailed Description}{69}{subsection.9.24.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.24.2}Macro Definition Documentation}{70}{subsection.9.24.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.1}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}{70}{subsubsection.9.24.2.1}}
+\newlabel{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}{{9.24.2.1}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L\relax }{subsubsection.9.24.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.2}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}{70}{subsubsection.9.24.2.2}}
+\newlabel{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}{{9.24.2.2}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P\relax }{subsubsection.9.24.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.3}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}{70}{subsubsection.9.24.2.3}}
+\newlabel{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}{{9.24.2.3}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K\relax }{subsubsection.9.24.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.4}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}{70}{subsubsection.9.24.2.4}}
+\newlabel{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}{{9.24.2.4}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P\relax }{subsubsection.9.24.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.5}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}{70}{subsubsection.9.24.2.5}}
+\newlabel{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}{{9.24.2.5}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\relax }{subsubsection.9.24.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.6}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}1\discretionary {-}{}{}N}{70}{subsubsection.9.24.2.6}}
+\newlabel{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}{{9.24.2.6}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N\relax }{subsubsection.9.24.2.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.7}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}23}{70}{subsubsection.9.24.2.7}}
+\newlabel{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}{{9.24.2.7}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23\relax }{subsubsection.9.24.2.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.8}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I}{70}{subsubsection.9.24.2.8}}
+\newlabel{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}{{9.24.2.8}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I\relax }{subsubsection.9.24.2.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.9}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}X\discretionary {-}{}{}T}{70}{subsubsection.9.24.2.9}}
+\newlabel{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}{{9.24.2.9}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T\relax }{subsubsection.9.24.2.9}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.10}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E5}{70}{subsubsection.9.24.2.10}}
+\newlabel{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}{{9.24.2.10}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5\relax }{subsubsection.9.24.2.10}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.11}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E3}{70}{subsubsection.9.24.2.11}}
+\newlabel{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}{{9.24.2.11}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3\relax }{subsubsection.9.24.2.11}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.12}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}11}{70}{subsubsection.9.24.2.12}}
+\newlabel{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}{{9.24.2.12}{70}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11\relax }{subsubsection.9.24.2.12}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.13}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}21}{71}{subsubsection.9.24.2.13}}
+\newlabel{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}{{9.24.2.13}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21\relax }{subsubsection.9.24.2.13}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.14}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}22}{71}{subsubsection.9.24.2.14}}
+\newlabel{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}{{9.24.2.14}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22\relax }{subsubsection.9.24.2.14}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.15}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}G\discretionary {-}{}{}E}{71}{subsubsection.9.24.2.15}}
+\newlabel{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}{{9.24.2.15}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E\relax }{subsubsection.9.24.2.15}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.16}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}{71}{subsubsection.9.24.2.16}}
+\newlabel{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}{{9.24.2.16}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\relax }{subsubsection.9.24.2.16}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.17}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}L}{71}{subsubsection.9.24.2.17}}
+\newlabel{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}{{9.24.2.17}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L\relax }{subsubsection.9.24.2.17}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.18}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}{71}{subsubsection.9.24.2.18}}
+\newlabel{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}{{9.24.2.18}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C\relax }{subsubsection.9.24.2.18}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.19}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}{71}{subsubsection.9.24.2.19}}
+\newlabel{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}{{9.24.2.19}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P\relax }{subsubsection.9.24.2.19}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.20}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}L\discretionary {-}{}{}A}{71}{subsubsection.9.24.2.20}}
+\newlabel{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}{{9.24.2.20}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A\relax }{subsubsection.9.24.2.20}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.21}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}O}{71}{subsubsection.9.24.2.21}}
+\newlabel{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}{{9.24.2.21}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O\relax }{subsubsection.9.24.2.21}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.2.22}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}U\discretionary {-}{}{}M\discretionary {-}{}{}P}{71}{subsubsection.9.24.2.22}}
+\newlabel{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{{9.24.2.22}{71}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P\relax }{subsubsection.9.24.2.22}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.24.3}Function Documentation}{71}{subsection.9.24.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.24.3.1}convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}{71}{subsubsection.9.24.3.1}}
+\newlabel{group__energy__parameters__convert_gafbe538bc4eb2cf2a33326e1010005f8a}{{9.24.3.1}{71}{convert\-\_\-parameter\-\_\-file\relax }{subsubsection.9.24.3.1}{}}
+\gdef \LT@liii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@setckpt{group__energy__parameters__convert}{
+\setcounter{page}{73}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{24}
+\setcounter{subsection}{3}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{53}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{168}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{53}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+41dc70eab4e12e5dc071699b5e18013b
\ No newline at end of file
--- /dev/null
+\hypertarget{group__energy__parameters__convert}{\section{Converting energy parameter files}
+\label{group__energy__parameters__convert}\index{Converting energy parameter files@{Converting energy parameter files}}
+}
+
+
+Convert energy parameter files into the latest format.
+
+
+Collaboration diagram for Converting energy parameter files\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__energy__parameters__convert}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{convert__epars_8h}{convert\-\_\-epars.\-h}
+\begin{DoxyCompactList}\small\item\em Functions and definitions for energy parameter file format conversion. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Macros}
+\begin{DoxyCompactItemize}
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L}~1\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P}~2\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K}~4\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P}~8\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T}~16\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N}~32\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23}~64\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I}~128\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T}~256\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5}~512\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3}~1024\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11}~2048\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21}~4096\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22}~8192\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E}~16384\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T}~32768\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L}~65536\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C}~131072\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P}~262144\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A}~524288\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O}~1048576\-U
+\item
+\#define \hyperlink{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P}~2097152\-U
+\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{group__energy__parameters__convert_gafbe538bc4eb2cf2a33326e1010005f8a}{convert\-\_\-parameter\-\_\-file} (const char $\ast$iname, const char $\ast$oname, unsigned int options)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Convert energy parameter files into the latest format. To preserve some backward compatibility the R\-N\-Alib also provides functions to convert energy parameter files from the format used in version 1.\-4-\/1.\-8 into the new format used since version 2.\-0
+
+\subsection{Macro Definition Documentation}
+\hypertarget{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L~1\-U}}\label{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}
+Flag to indicate printing of a complete parameter set \hypertarget{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P~2\-U}}\label{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}
+Flag to indicate printing of hairpin contributions \hypertarget{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K~4\-U}}\label{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}
+Flag to indicate printing of base pair stack contributions \hypertarget{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P~8\-U}}\label{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}
+Flag to indicate printing of hairpin mismatch contribution \hypertarget{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T~16\-U}}\label{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}
+Flag to indicate printing of interior loop mismatch contribution \hypertarget{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N~32\-U}}\label{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}
+Flag to indicate printing of 1\-:n interior loop mismatch contribution \hypertarget{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23~64\-U}}\label{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}
+Flag to indicate printing of 2\-:3 interior loop mismatch contribution \hypertarget{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I~128\-U}}\label{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}
+Flag to indicate printing of multi loop mismatch contribution \hypertarget{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T~256\-U}}\label{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}
+Flag to indicate printing of exterior loop mismatch contribution \hypertarget{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5~512\-U}}\label{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}
+Flag to indicate printing of 5' dangle conctribution \hypertarget{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3~1024\-U}}\label{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}
+Flag to indicate printing of 3' dangle contribution \hypertarget{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11~2048\-U}}\label{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}
+Flag to indicate printing of 1\-:1 interior loop contribution \hypertarget{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21~4096\-U}}\label{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}
+Flag to indicate printing of 2\-:1 interior loop contribution \hypertarget{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22~8192\-U}}\label{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}
+Flag to indicate printing of 2\-:2 interior loop contribution \hypertarget{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E~16384\-U}}\label{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}
+Flag to indicate printing of bulge loop contribution \hypertarget{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T~32768\-U}}\label{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}
+Flag to indicate printing of interior loop contribution \hypertarget{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L~65536\-U}}\label{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}
+Flag to indicate printing of multi loop contribution \hypertarget{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C~131072\-U}}\label{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}
+Flag to indicate printing of misc contributions (such as terminal\-A\-U) \hypertarget{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P~262144\-U}}\label{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}
+Flag to indicate printing of special hairpin contributions (tri-\/, tetra-\/, hexa-\/loops) \hypertarget{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A~524288\-U}}\label{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}
+Flag to indicate printing of given parameters only\par
+\begin{DoxyNote}{Note}
+This option overrides all other output options, except \hyperlink{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P} !
+\end{DoxyNote}
+\hypertarget{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O~1048576\-U}}\label{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}
+Flag to indicate printing of interior loop asymmetry contribution \hypertarget{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{\index{Converting energy parameter files@{Converting energy parameter files}!V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P@{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P~2097152\-U}}\label{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}
+Flag to indicate dumping the energy contributions from the library instead of an input file
+
+\subsection{Function Documentation}
+\hypertarget{group__energy__parameters__convert_gafbe538bc4eb2cf2a33326e1010005f8a}{\index{Converting energy parameter files@{Converting energy parameter files}!convert\-\_\-parameter\-\_\-file@{convert\-\_\-parameter\-\_\-file}}
+\index{convert\-\_\-parameter\-\_\-file@{convert\-\_\-parameter\-\_\-file}!Converting energy parameter files@{Converting energy parameter files}}
+\subsubsection[{convert\-\_\-parameter\-\_\-file}]{\setlength{\rightskip}{0pt plus 5cm}void convert\-\_\-parameter\-\_\-file (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{iname, }
+\item[{const char $\ast$}]{oname, }
+\item[{unsigned int}]{options}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters__convert_gafbe538bc4eb2cf2a33326e1010005f8a}
+Convert/dump a Vienna 1.\-8.\-4 formatted energy parameter file
+
+The options argument allows to control the different output modes.\par
+ Currently available options are\-:\par
+ \hyperlink{group__energy__parameters__convert_ga8dc6aee5a806c49b71557152f9616bc4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-A\-L\-L}, \hyperlink{group__energy__parameters__convert_gaf66fe2cb11dfcfd32d791049c254a8a4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-H\-P}, \hyperlink{group__energy__parameters__convert_gad23522d63f8d4c50d5a5deee9bee3ef2}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-T\-A\-C\-K}\par
+ \hyperlink{group__energy__parameters__convert_gaa892c7b4957459090f3e08da298cc347}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-H\-P}, \hyperlink{group__energy__parameters__convert_ga4ff223fb1f9c62cd92d9ab811ad03d55}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T}, \hyperlink{group__energy__parameters__convert_gaf5d3743219f83c6348155cd81e755bbb}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-1\-N}\par
+ \hyperlink{group__energy__parameters__convert_ga78382ec622ba99e0ac2262317bdd7316}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-I\-N\-T\-\_\-23}, \hyperlink{group__energy__parameters__convert_gae67af9f1cdf7baf2865481282a5d1034}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-M\-U\-L\-T\-I}, \hyperlink{group__energy__parameters__convert_gaf14ead7ef1fdbe725ade653750fc51e3}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-M\-\_\-\-E\-X\-T}\par
+ \hyperlink{group__energy__parameters__convert_ga036ffd996d8c8a9acf631760dd1da24b}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E5}, \hyperlink{group__energy__parameters__convert_ga34a8a5479ef885834ef32f3fb43d79bc}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-A\-N\-G\-L\-E3}, \hyperlink{group__energy__parameters__convert_ga079aafefd5f8ab57ee5120099a34bd25}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-11}\par
+ \hyperlink{group__energy__parameters__convert_gacf770881d9034431ebe741642342a1f9}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-21}, \hyperlink{group__energy__parameters__convert_gaa307671e2631cdacad9cbe4c6583b05f}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T\-\_\-22}, \hyperlink{group__energy__parameters__convert_ga7092fe0be4de6f02cc0bf08e81af726a}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-B\-U\-L\-G\-E}\par
+ \hyperlink{group__energy__parameters__convert_gac5c2289fdf8ff1b980976d1613ff943a}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-I\-N\-T}, \hyperlink{group__energy__parameters__convert_gaf2c8755d64eff3852aa45df9ac80a4fe}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-L}, \hyperlink{group__energy__parameters__convert_ga46d5b1535ae86060b6317565b7c6b40b}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-M\-I\-S\-C}\par
+ \hyperlink{group__energy__parameters__convert_gaa1ff48a79642d69579d1766561ec6db6}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-S\-P\-E\-C\-I\-A\-L\-\_\-\-H\-P}, \hyperlink{group__energy__parameters__convert_ga0d4e8a836bb4864ab5129c085dbf592d}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-V\-A\-N\-I\-L\-L\-A}, \hyperlink{group__energy__parameters__convert_ga2eb0462f16939ddacdaf751a88d675ce}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-N\-I\-N\-I\-O}\par
+ \hyperlink{group__energy__parameters__convert_gac86976e9c2a55b3a6481ea60044f6098}{V\-R\-N\-A\-\_\-\-C\-O\-N\-V\-E\-R\-T\-\_\-\-O\-U\-T\-P\-U\-T\-\_\-\-D\-U\-M\-P}
+
+The defined options are fine for bitwise compare-\/ and assignment-\/operations, e. g.\-: pass a collection of options as a single value like this\-: \begin{DoxyVerb}convert_parameter_file(ifile, ofile, option_1 | option_2 | option_n) \end{DoxyVerb}
+
+
+
+\begin{DoxyParams}{Parameters}
+{\em iname} & The input file name (If N\-U\-L\-L input is read from stdin) \\
+\hline
+{\em oname} & The output file name (If N\-U\-L\-L output is written to stdout) \\
+\hline
+{\em options} & The options (as described above) \\
+\hline
+\end{DoxyParams}
--- /dev/null
+\relax
+\citation{mathews:2004}
+\citation{turner:2010}
+\gdef \LT@li {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.23}Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}{67}{section.9.23}}
+\newlabel{group__energy__parameters__rw}{{9.23}{67}{Reading/\-Writing energy parameter sets from/to File\relax }{section.9.23}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.23.1}Detailed Description}{67}{subsection.9.23.1}}
+\@writefile{brf}{\backcite{mathews:2004}{{67}{9.23.1}{subsection.9.23.1}}}
+\@writefile{brf}{\backcite{turner:2010}{{67}{9.23.1}{subsection.9.23.1}}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.23.2}Function Documentation}{67}{subsection.9.23.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.23.2.1}read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}{67}{subsubsection.9.23.2.1}}
+\newlabel{group__energy__parameters__rw_ga165a142a3c68fb6655c69ef4ab7cd749}{{9.23.2.1}{67}{read\-\_\-parameter\-\_\-file\relax }{subsubsection.9.23.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.23.2.2}write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}{67}{subsubsection.9.23.2.2}}
+\newlabel{group__energy__parameters__rw_ga8a43459be386a7489feeab68dc2c6c76}{{9.23.2.2}{67}{write\-\_\-parameter\-\_\-file\relax }{subsubsection.9.23.2.2}{}}
+\gdef \LT@lii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@setckpt{group__energy__parameters__rw}{
+\setcounter{page}{69}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{23}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{52}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{141}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{52}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+cac8ef30c5ed1570c93570db21116788
\ No newline at end of file
--- /dev/null
+\hypertarget{group__energy__parameters__rw}{\section{Reading/\-Writing energy parameter sets from/to File}
+\label{group__energy__parameters__rw}\index{Reading/\-Writing energy parameter sets from/to File@{Reading/\-Writing energy parameter sets from/to File}}
+}
+
+
+Read and Write energy parameter sets from and to text files.
+
+
+Collaboration diagram for Reading/\-Writing energy parameter sets from/to File\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__energy__parameters__rw}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__energy__parameters__convert}{Converting energy parameter files}
+\begin{DoxyCompactList}\small\item\em Convert energy parameter files into the latest format. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{read__epars_8h}{read\-\_\-epars.\-h}
+\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{group__energy__parameters__rw_ga165a142a3c68fb6655c69ef4ab7cd749}{read\-\_\-parameter\-\_\-file} (const char fname\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Read energy parameters from a file. \end{DoxyCompactList}\item
+void \hyperlink{group__energy__parameters__rw_ga8a43459be386a7489feeab68dc2c6c76}{write\-\_\-parameter\-\_\-file} (const char fname\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Write energy parameters to a file. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Read and Write energy parameter sets from and to text files. A default set of parameters, identical to the one described in \cite{mathews:2004} and\cite{turner:2010}, is compiled into the library.
+
+\subsection{Function Documentation}
+\hypertarget{group__energy__parameters__rw_ga165a142a3c68fb6655c69ef4ab7cd749}{\index{Reading/\-Writing energy parameter sets from/to File@{Reading/\-Writing energy parameter sets from/to File}!read\-\_\-parameter\-\_\-file@{read\-\_\-parameter\-\_\-file}}
+\index{read\-\_\-parameter\-\_\-file@{read\-\_\-parameter\-\_\-file}!Reading/Writing energy parameter sets from/to File@{Reading/\-Writing energy parameter sets from/to File}}
+\subsubsection[{read\-\_\-parameter\-\_\-file}]{\setlength{\rightskip}{0pt plus 5cm}void read\-\_\-parameter\-\_\-file (
+\begin{DoxyParamCaption}
+\item[{const char}]{fname\mbox{[}$\,$\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters__rw_ga165a142a3c68fb6655c69ef4ab7cd749}
+
+
+Read energy parameters from a file.
+
+
+\begin{DoxyParams}{Parameters}
+{\em fname} & The path to the file containing the energy parameters \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__energy__parameters__rw_ga8a43459be386a7489feeab68dc2c6c76}{\index{Reading/\-Writing energy parameter sets from/to File@{Reading/\-Writing energy parameter sets from/to File}!write\-\_\-parameter\-\_\-file@{write\-\_\-parameter\-\_\-file}}
+\index{write\-\_\-parameter\-\_\-file@{write\-\_\-parameter\-\_\-file}!Reading/Writing energy parameter sets from/to File@{Reading/\-Writing energy parameter sets from/to File}}
+\subsubsection[{write\-\_\-parameter\-\_\-file}]{\setlength{\rightskip}{0pt plus 5cm}void write\-\_\-parameter\-\_\-file (
+\begin{DoxyParamCaption}
+\item[{const char}]{fname\mbox{[}$\,$\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{group__energy__parameters__rw_ga8a43459be386a7489feeab68dc2c6c76}
+
+
+Write energy parameters to a file.
+
+
+\begin{DoxyParams}{Parameters}
+{\em fname} & A filename (path) for the file where the current energy parameters will be written to \\
+\hline
+\end{DoxyParams}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.25}Energy evaluation}{73}{section.9.25}}
+\newlabel{group__eval}{{9.25}{73}{Energy evaluation\relax }{section.9.25}{}}
+\newlabel{group__eval_ga567530678f6260a1a649a5beca5da4c5}{{9.25}{73}{Variables\relax }{section*.53}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.25.1}Detailed Description}{73}{subsection.9.25.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.25.2}Function Documentation}{73}{subsection.9.25.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.25.2.1}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{73}{subsubsection.9.25.2.1}}
+\newlabel{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{{9.25.2.1}{73}{energy\-\_\-of\-\_\-structure\relax }{subsubsection.9.25.2.1}{}}
+\gdef \LT@liv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.25.2.2}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}{74}{subsubsection.9.25.2.2}}
+\newlabel{group__eval_gab5169ea4f72f250e43811463a33f4e40}{{9.25.2.2}{74}{energy\-\_\-of\-\_\-struct\-\_\-par\relax }{subsubsection.9.25.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.25.2.3}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{74}{subsubsection.9.25.2.3}}
+\newlabel{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{{9.25.2.3}{74}{energy\-\_\-of\-\_\-circ\-\_\-structure\relax }{subsubsection.9.25.2.3}{}}
+\gdef \LT@lvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.25.2.4}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}{75}{subsubsection.9.25.2.4}}
+\newlabel{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{{9.25.2.4}{75}{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par\relax }{subsubsection.9.25.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.25.2.5}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{75}{subsubsection.9.25.2.5}}
+\newlabel{group__eval_ga8831445966b761417e713360791299d8}{{9.25.2.5}{75}{energy\-\_\-of\-\_\-structure\-\_\-pt\relax }{subsubsection.9.25.2.5}{}}
+\gdef \LT@lix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.25.2.6}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par}{76}{subsubsection.9.25.2.6}}
+\newlabel{group__eval_gada4701dd7519b29da75ceac147601f4e}{{9.25.2.6}{76}{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par\relax }{subsubsection.9.25.2.6}{}}
+\@setckpt{group__eval}{
+\setcounter{page}{77}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{25}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{6}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{59}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{177}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{59}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+393dc6aa36b73b451f000d7ceb5d61d7
\ No newline at end of file
--- /dev/null
+\hypertarget{group__eval}{\section{Energy evaluation}
+\label{group__eval}\index{Energy evaluation@{Energy evaluation}}
+}
+
+
+This module contains all functions and variables related to energy evaluation of sequence/structure pairs.
+
+
+Collaboration diagram for Energy evaluation\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=336pt]{group__eval}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{energy\-\_\-of\-\_\-structure} (const char $\ast$string, const char $\ast$structure, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A using global model detail settings. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par} (const char $\ast$string, const char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure} (const char $\ast$string, const char $\ast$structure, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded circular R\-N\-A. \end{DoxyCompactList}\item
+float \hyperlink{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par} (const char $\ast$string, const char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded circular R\-N\-A. \end{DoxyCompactList}\item
+int \hyperlink{group__eval_ga8831445966b761417e713360791299d8}{energy\-\_\-of\-\_\-structure\-\_\-pt} (const char $\ast$string, short $\ast$ptable, short $\ast$s, short $\ast$s1, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A. \end{DoxyCompactList}\item
+int \hyperlink{group__eval_gada4701dd7519b29da75ceac147601f4e}{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par} (const char $\ast$string, short $\ast$ptable, short $\ast$s, short $\ast$s1, \hyperlink{structparamT}{param\-T} $\ast$parameters, int verbosity\-\_\-level)
+\begin{DoxyCompactList}\small\item\em Calculate the free energy of an already folded R\-N\-A. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__eval_ga567530678f6260a1a649a5beca5da4c5}{int \hyperlink{group__eval_ga567530678f6260a1a649a5beca5da4c5}{eos\-\_\-debug}}\label{group__eval_ga567530678f6260a1a649a5beca5da4c5}
+
+\begin{DoxyCompactList}\small\item\em verbose info from energy\-\_\-of\-\_\-struct \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+This module contains all functions and variables related to energy evaluation of sequence/structure pairs.
+
+\subsection{Function Documentation}
+\hypertarget{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}{\index{Energy evaluation@{Energy evaluation}!energy\-\_\-of\-\_\-structure@{energy\-\_\-of\-\_\-structure}}
+\index{energy\-\_\-of\-\_\-structure@{energy\-\_\-of\-\_\-structure}!Energy evaluation@{Energy evaluation}}
+\subsubsection[{energy\-\_\-of\-\_\-structure}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-structure (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure, }
+\item[{int}]{verbosity\-\_\-level}
+\end{DoxyParamCaption}
+)}}\label{group__eval_gaf93986cb3cb29770ec9cca69c9fab8cf}
+
+
+Calculate the free energy of an already folded R\-N\-A using global model detail settings.
+
+If verbosity level is set to a value $>$0, energies of structure elements are printed to stdout
+
+\begin{DoxyNote}{Note}
+Open\-M\-P\-: This function relies on several global model settings variables and thus is not to be considered threadsafe. See \hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par()} for a completely threadsafe implementation.
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par()}, \hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em structure} & secondary structure in dot-\/bracket notation \\
+\hline
+{\em verbosity\-\_\-level} & a flag to turn verbose output on/off \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the free energy of the input structure given the input sequence in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__eval_gab5169ea4f72f250e43811463a33f4e40}{\index{Energy evaluation@{Energy evaluation}!energy\-\_\-of\-\_\-struct\-\_\-par@{energy\-\_\-of\-\_\-struct\-\_\-par}}
+\index{energy\-\_\-of\-\_\-struct\-\_\-par@{energy\-\_\-of\-\_\-struct\-\_\-par}!Energy evaluation@{Energy evaluation}}
+\subsubsection[{energy\-\_\-of\-\_\-struct\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-struct\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure, }
+\item[{{\bf param\-T} $\ast$}]{parameters, }
+\item[{int}]{verbosity\-\_\-level}
+\end{DoxyParamCaption}
+)}}\label{group__eval_gab5169ea4f72f250e43811463a33f4e40}
+
+
+Calculate the free energy of an already folded R\-N\-A.
+
+If verbosity level is set to a value $>$0, energies of structure elements are printed to stdout
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{energy\-\_\-of\-\_\-circ\-\_\-structure()}, \hyperlink{group__eval_ga8831445966b761417e713360791299d8}{energy\-\_\-of\-\_\-structure\-\_\-pt()}, \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence in uppercase letters \\
+\hline
+{\em structure} & Secondary structure in dot-\/bracket notation \\
+\hline
+{\em parameters} & A data structure containing the prescaled energy contributions and the model details. \\
+\hline
+{\em verbosity\-\_\-level} & A flag to turn verbose output on/off \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The free energy of the input structure given the input sequence in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}{\index{Energy evaluation@{Energy evaluation}!energy\-\_\-of\-\_\-circ\-\_\-structure@{energy\-\_\-of\-\_\-circ\-\_\-structure}}
+\index{energy\-\_\-of\-\_\-circ\-\_\-structure@{energy\-\_\-of\-\_\-circ\-\_\-structure}!Energy evaluation@{Energy evaluation}}
+\subsubsection[{energy\-\_\-of\-\_\-circ\-\_\-structure}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-circ\-\_\-structure (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure, }
+\item[{int}]{verbosity\-\_\-level}
+\end{DoxyParamCaption}
+)}}\label{group__eval_gaeb14f3664aec67fc03268ac75253f0f8}
+
+
+Calculate the free energy of an already folded circular R\-N\-A.
+
+\begin{DoxyNote}{Note}
+Open\-M\-P\-: This function relies on several global model settings variables and thus is not to be considered threadsafe. See \hyperlink{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par()} for a completely threadsafe implementation.
+\end{DoxyNote}
+If verbosity level is set to a value $>$0, energies of structure elements are printed to stdout
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par()}, \hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em structure} & Secondary structure in dot-\/bracket notation \\
+\hline
+{\em verbosity\-\_\-level} & A flag to turn verbose output on/off \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The free energy of the input structure given the input sequence in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}{\index{Energy evaluation@{Energy evaluation}!energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par@{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par}}
+\index{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par@{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par}!Energy evaluation@{Energy evaluation}}
+\subsubsection[{energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}float energy\-\_\-of\-\_\-circ\-\_\-struct\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{const char $\ast$}]{structure, }
+\item[{{\bf param\-T} $\ast$}]{parameters, }
+\item[{int}]{verbosity\-\_\-level}
+\end{DoxyParamCaption}
+)}}\label{group__eval_ga75dc765ee4a1177832bc817c94cf88e5}
+
+
+Calculate the free energy of an already folded circular R\-N\-A.
+
+If verbosity level is set to a value $>$0, energies of structure elements are printed to stdout
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par()}, \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em structure} & Secondary structure in dot-\/bracket notation \\
+\hline
+{\em parameters} & A data structure containing the prescaled energy contributions and the model details. \\
+\hline
+{\em verbosity\-\_\-level} & A flag to turn verbose output on/off \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The free energy of the input structure given the input sequence in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__eval_ga8831445966b761417e713360791299d8}{\index{Energy evaluation@{Energy evaluation}!energy\-\_\-of\-\_\-structure\-\_\-pt@{energy\-\_\-of\-\_\-structure\-\_\-pt}}
+\index{energy\-\_\-of\-\_\-structure\-\_\-pt@{energy\-\_\-of\-\_\-structure\-\_\-pt}!Energy evaluation@{Energy evaluation}}
+\subsubsection[{energy\-\_\-of\-\_\-structure\-\_\-pt}]{\setlength{\rightskip}{0pt plus 5cm}int energy\-\_\-of\-\_\-structure\-\_\-pt (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{short $\ast$}]{ptable, }
+\item[{short $\ast$}]{s, }
+\item[{short $\ast$}]{s1, }
+\item[{int}]{verbosity\-\_\-level}
+\end{DoxyParamCaption}
+)}}\label{group__eval_ga8831445966b761417e713360791299d8}
+
+
+Calculate the free energy of an already folded R\-N\-A.
+
+If verbosity level is set to a value $>$0, energies of structure elements are printed to stdout
+
+\begin{DoxyNote}{Note}
+Open\-M\-P\-: This function relies on several global model settings variables and thus is not to be considered threadsafe. See \hyperlink{group__eval_gada4701dd7519b29da75ceac147601f4e}{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par()} for a completely threadsafe implementation.
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{group__eval_gada4701dd7519b29da75ceac147601f4e}{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+{\em ptable} & the pair table of the secondary structure \\
+\hline
+{\em s} & encoded R\-N\-A sequence \\
+\hline
+{\em s1} & encoded R\-N\-A sequence \\
+\hline
+{\em verbosity\-\_\-level} & a flag to turn verbose output on/off \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the free energy of the input structure given the input sequence in 10kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__eval_gada4701dd7519b29da75ceac147601f4e}{\index{Energy evaluation@{Energy evaluation}!energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par@{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par}}
+\index{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par@{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par}!Energy evaluation@{Energy evaluation}}
+\subsubsection[{energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}int energy\-\_\-of\-\_\-struct\-\_\-pt\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{short $\ast$}]{ptable, }
+\item[{short $\ast$}]{s, }
+\item[{short $\ast$}]{s1, }
+\item[{{\bf param\-T} $\ast$}]{parameters, }
+\item[{int}]{verbosity\-\_\-level}
+\end{DoxyParamCaption}
+)}}\label{group__eval_gada4701dd7519b29da75ceac147601f4e}
+
+
+Calculate the free energy of an already folded R\-N\-A.
+
+If verbosity level is set to a value $>$0, energies of structure elements are printed to stdout
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{group__eval_gab5169ea4f72f250e43811463a33f4e40}{energy\-\_\-of\-\_\-struct\-\_\-par()}, \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence in uppercase letters \\
+\hline
+{\em ptable} & The pair table of the secondary structure \\
+\hline
+{\em s} & Encoded R\-N\-A sequence \\
+\hline
+{\em s1} & Encoded R\-N\-A sequence \\
+\hline
+{\em parameters} & A data structure containing the prescaled energy contributions and the model details. \\
+\hline
+{\em verbosity\-\_\-level} & A flag to turn verbose output on/off \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The free energy of the input structure given the input sequence in 10kcal/mol
+\end{DoxyReturn}
--- /dev/null
+705bec87e4dfa416d2d1324c5d637035
\ No newline at end of file
--- /dev/null
+\hypertarget{group__folding__routines}{\section{R\-N\-A Secondary Structure Folding}
+\label{group__folding__routines}\index{R\-N\-A Secondary Structure Folding@{R\-N\-A Secondary Structure Folding}}
+}
+
+
+This module contains all functions related to thermodynamic folding of R\-N\-As.
+
+
+Collaboration diagram for R\-N\-A Secondary Structure Folding\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__folding__routines}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__mfe__fold}{Calculating Minimum Free Energy (\-M\-F\-E) Structures}
+\begin{DoxyCompactList}\small\item\em This module contains all functions and variables related to the calculation of global minimum free energy structures for single sequences. \end{DoxyCompactList}\item
+\hyperlink{group__pf__fold}{Calculating Partition Functions and Pair Probabilities}
+\begin{DoxyCompactList}\small\item\em This section provides information about all functions and variables related to the calculation of the partition function and base pair probabilities. \end{DoxyCompactList}\item
+\hyperlink{group__subopt__fold}{Enumerating Suboptimal Structures}
+\item
+\hyperlink{group__cofold}{Calculate Secondary Structures of two R\-N\-As upon Dimerization}
+\begin{DoxyCompactList}\small\item\em Predict structures formed by two molecules upon hybridization. \end{DoxyCompactList}\item
+\hyperlink{group__consensus__fold}{Predicting Consensus Structures from Alignment(s)}
+\begin{DoxyCompactList}\small\item\em compute various properties (consensus M\-F\-E structures, partition function, Boltzmann distributed stochastic samples, ...) for R\-N\-A sequence alignments \end{DoxyCompactList}\item
+\hyperlink{group__local__fold}{Predicting Locally stable structures of large sequences}
+\item
+\hyperlink{group__energy__parameters}{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}
+\begin{DoxyCompactList}\small\item\em All relevant functions to retrieve and copy precalculated energy parameter sets as well as reading/writing the energy parameter set from/to file(s). \end{DoxyCompactList}\item
+\hyperlink{group__eval}{Energy evaluation}
+\begin{DoxyCompactList}\small\item\em This module contains all functions and variables related to energy evaluation of sequence/structure pairs. \end{DoxyCompactList}\item
+\hyperlink{group__inverse__fold}{Searching Sequences for Predefined Structures}
+\item
+\hyperlink{group__class__fold}{Classified Dynamic Programming}
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+This module contains all functions related to thermodynamic folding of R\-N\-As.
\ No newline at end of file
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.26}Searching Sequences for Predefined Structures}{77}{section.9.26}}
+\newlabel{group__inverse__fold}{{9.26}{77}{Searching Sequences for Predefined Structures\relax }{section.9.26}{}}
+\newlabel{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{{9.26}{77}{Variables\relax }{section*.56}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.26.1}Detailed Description}{77}{subsection.9.26.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.26.2}Function Documentation}{77}{subsection.9.26.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.26.2.1}inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{77}{subsubsection.9.26.2.1}}
+\newlabel{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{{9.26.2.1}{77}{inverse\-\_\-fold\relax }{subsubsection.9.26.2.1}{}}
+\gdef \LT@lx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.26.2.2}inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{78}{subsubsection.9.26.2.2}}
+\newlabel{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}{{9.26.2.2}{78}{inverse\-\_\-pf\-\_\-fold\relax }{subsubsection.9.26.2.2}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.26.3}Variable Documentation}{78}{subsection.9.26.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.26.3.1}final\discretionary {-}{}{}\_\discretionary {-}{}{}cost}{78}{subsubsection.9.26.3.1}}
+\newlabel{group__inverse__fold_ga7f17d3b169af048d32bb185039a9c09c}{{9.26.3.1}{78}{final\-\_\-cost\relax }{subsubsection.9.26.3.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.26.3.2}give\discretionary {-}{}{}\_\discretionary {-}{}{}up}{78}{subsubsection.9.26.3.2}}
+\newlabel{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}{{9.26.3.2}{78}{give\-\_\-up\relax }{subsubsection.9.26.3.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.26.3.3}inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose}{78}{subsubsection.9.26.3.3}}
+\newlabel{group__inverse__fold_gafcfc65fba01b9cca5946726ed9057a63}{{9.26.3.3}{78}{inv\-\_\-verbose\relax }{subsubsection.9.26.3.3}{}}
+\@setckpt{group__inverse__fold}{
+\setcounter{page}{79}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{26}
+\setcounter{subsection}{3}
+\setcounter{subsubsection}{3}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{61}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{186}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{61}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+5ac242d4b18704677422d14df9b00ea7
\ No newline at end of file
--- /dev/null
+\hypertarget{group__inverse__fold}{\section{Searching Sequences for Predefined Structures}
+\label{group__inverse__fold}\index{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}}
+}
+Collaboration diagram for Searching Sequences for Predefined Structures\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__inverse__fold}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{inverse_8h}{inverse.\-h}
+\begin{DoxyCompactList}\small\item\em Inverse folding routines. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\-\_\-fold} (char $\ast$start, const char $\ast$target)
+\begin{DoxyCompactList}\small\item\em Find sequences with predefined structure. \end{DoxyCompactList}\item
+float \hyperlink{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}{inverse\-\_\-pf\-\_\-fold} (char $\ast$start, const char $\ast$target)
+\begin{DoxyCompactList}\small\item\em Find sequence that maximizes probability of a predefined structure. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{char $\ast$ \hyperlink{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{symbolset}}\label{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}
+
+\begin{DoxyCompactList}\small\item\em This global variable points to the allowed bases, initially \char`\"{}\-A\-U\-G\-C\char`\"{}. It can be used to design sequences from reduced alphabets. \end{DoxyCompactList}\item
+float \hyperlink{group__inverse__fold_ga7f17d3b169af048d32bb185039a9c09c}{final\-\_\-cost}
+\item
+int \hyperlink{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}{give\-\_\-up}
+\item
+int \hyperlink{group__inverse__fold_gafcfc65fba01b9cca5946726ed9057a63}{inv\-\_\-verbose}
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+We provide two functions that search for sequences with a given structure, thereby inverting the folding routines.
+
+\subsection{Function Documentation}
+\hypertarget{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{\index{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!inverse\-\_\-fold@{inverse\-\_\-fold}}
+\index{inverse\-\_\-fold@{inverse\-\_\-fold}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}}
+\subsubsection[{inverse\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}float inverse\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{start, }
+\item[{const char $\ast$}]{target}
+\end{DoxyParamCaption}
+)}}\label{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}
+
+
+Find sequences with predefined structure.
+
+This function searches for a sequence with minimum free energy structure provided in the parameter 'target', starting with sequence 'start'. It returns 0 if the search was successful, otherwise a structure distance in terms of the energy difference between the search result and the actual target 'target' is returned. The found sequence is returned in 'start'. If \hyperlink{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}{give\-\_\-up} is set to 1, the function will return as soon as it is clear that the search will be unsuccessful, this speeds up the algorithm if you are only interested in exact solutions.
+
+
+\begin{DoxyParams}{Parameters}
+{\em start} & The start sequence \\
+\hline
+{\em target} & The target secondary structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The distance to the target in case a search was unsuccessful, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}{\index{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!inverse\-\_\-pf\-\_\-fold@{inverse\-\_\-pf\-\_\-fold}}
+\index{inverse\-\_\-pf\-\_\-fold@{inverse\-\_\-pf\-\_\-fold}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}}
+\subsubsection[{inverse\-\_\-pf\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}float inverse\-\_\-pf\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{start, }
+\item[{const char $\ast$}]{target}
+\end{DoxyParamCaption}
+)}}\label{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}
+
+
+Find sequence that maximizes probability of a predefined structure.
+
+This function searches for a sequence with maximum probability to fold into the provided structure 'target' using the partition function algorithm. It returns $-kT \cdot \log(p)$ where $p$ is the frequency of 'target' in the ensemble of possible structures. This is usually much slower than \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\-\_\-fold()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em start} & The start sequence \\
+\hline
+{\em target} & The target secondary structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The distance to the target in case a search was unsuccessful, 0 otherwise
+\end{DoxyReturn}
+
+
+\subsection{Variable Documentation}
+\hypertarget{group__inverse__fold_ga7f17d3b169af048d32bb185039a9c09c}{\index{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!final\-\_\-cost@{final\-\_\-cost}}
+\index{final\-\_\-cost@{final\-\_\-cost}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}}
+\subsubsection[{final\-\_\-cost}]{\setlength{\rightskip}{0pt plus 5cm}float final\-\_\-cost}}\label{group__inverse__fold_ga7f17d3b169af048d32bb185039a9c09c}
+when to stop \hyperlink{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}{inverse\-\_\-pf\-\_\-fold()} \hypertarget{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}{\index{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!give\-\_\-up@{give\-\_\-up}}
+\index{give\-\_\-up@{give\-\_\-up}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}}
+\subsubsection[{give\-\_\-up}]{\setlength{\rightskip}{0pt plus 5cm}int give\-\_\-up}}\label{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}
+default 0\-: try to minimize structure distance even if no exact solution can be found \hypertarget{group__inverse__fold_gafcfc65fba01b9cca5946726ed9057a63}{\index{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!inv\-\_\-verbose@{inv\-\_\-verbose}}
+\index{inv\-\_\-verbose@{inv\-\_\-verbose}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}}
+\subsubsection[{inv\-\_\-verbose}]{\setlength{\rightskip}{0pt plus 5cm}int inv\-\_\-verbose}}\label{group__inverse__fold_gafcfc65fba01b9cca5946726ed9057a63}
+print out substructure on which \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\-\_\-fold()} fails
\ No newline at end of file
--- /dev/null
+\relax
+\citation{lorenz:2009}
+\@writefile{toc}{\contentsline {section}{\numberline {9.28}Distance based partitioning of the Secondary Structure Space}{80}{section.9.28}}
+\newlabel{group__kl__neighborhood}{{9.28}{80}{Distance based partitioning of the Secondary Structure Space\relax }{section.9.28}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.28.1}Detailed Description}{80}{subsection.9.28.1}}
+\@writefile{brf}{\backcite{lorenz:2009}{{80}{9.28.1}{subsection.9.28.1}}}
+\@setckpt{group__kl__neighborhood}{
+\setcounter{page}{81}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{28}
+\setcounter{subsection}{1}
+\setcounter{subsubsection}{0}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{61}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{190}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{61}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{2}
+}
--- /dev/null
+2b8f596960ceee036b107496c27d7936
\ No newline at end of file
--- /dev/null
+\hypertarget{group__kl__neighborhood}{\section{Distance based partitioning of the Secondary Structure Space}
+\label{group__kl__neighborhood}\index{Distance based partitioning of the Secondary Structure Space@{Distance based partitioning of the Secondary Structure Space}}
+}
+
+
+Compute Thermodynamic properties for a Distance Class Partitioning of the Secondary Structure Space.
+
+
+Collaboration diagram for Distance based partitioning of the Secondary Structure Space\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__kl__neighborhood}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__kl__neighborhood__mfe}{Calculating M\-F\-E representatives of a Distance Based Partitioning}
+\begin{DoxyCompactList}\small\item\em Compute the minimum free energy (M\-F\-E) and secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures basepair distance to two fixed reference structures. \end{DoxyCompactList}\item
+\hyperlink{group__kl__neighborhood__pf}{Calculate Partition Functions of a Distance Based Partitioning}
+\begin{DoxyCompactList}\small\item\em Compute the partition function and stochastically sample secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures. \end{DoxyCompactList}\item
+\hyperlink{group__kl__neighborhood__stochbt}{Stochastic Backtracking of Structures from Distance Based Partitioning}
+\begin{DoxyCompactList}\small\item\em Contains functions related to stochastic backtracking from a specified distance class. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Compute Thermodynamic properties for a Distance Class Partitioning of the Secondary Structure Space. All functions related to this group implement the basic recursions for M\-F\-E folding, partition function computation and stochastic backtracking with a {\itshape classified} {\itshape dynamic} {\itshape programming} approach. The secondary structure space is divided into partitions according to the base pair distance to two given reference structures and all relevant properties are calculated for each of the resulting partitions \begin{DoxySeeAlso}{See Also}
+For further details have a look into\cite{lorenz:2009}
+\end{DoxySeeAlso}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.29}Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}{81}{section.9.29}}
+\newlabel{group__kl__neighborhood__mfe}{{9.29}{81}{Calculating M\-F\-E representatives of a Distance Based Partitioning\relax }{section.9.29}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.29.1}Detailed Description}{81}{subsection.9.29.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.29.2}Function Documentation}{81}{subsection.9.29.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.29.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{81}{subsubsection.9.29.2.1}}
+\newlabel{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{{9.29.2.1}{81}{get\-\_\-\-Two\-Dfold\-\_\-variables\relax }{subsubsection.9.29.2.1}{}}
+\gdef \LT@lxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.29.2.2}destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{82}{subsubsection.9.29.2.2}}
+\newlabel{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{{9.29.2.2}{82}{destroy\-\_\-\-Two\-Dfold\-\_\-variables\relax }{subsubsection.9.29.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.29.2.3}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List}{82}{subsubsection.9.29.2.3}}
+\newlabel{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{{9.29.2.3}{82}{Two\-Dfold\-List\relax }{subsubsection.9.29.2.3}{}}
+\gdef \LT@lxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.29.2.4}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5}{83}{subsubsection.9.29.2.4}}
+\newlabel{group__kl__neighborhood__mfe_gaf4dc05bf8fc1ea53acd7aeb798ba80c2}{{9.29.2.4}{83}{Two\-Dfold\-\_\-backtrack\-\_\-f5\relax }{subsubsection.9.29.2.4}{}}
+\@setckpt{group__kl__neighborhood__mfe}{
+\setcounter{page}{84}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{29}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{4}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{65}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{197}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{65}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+2d76f274329747bb74de386a76b63356
\ No newline at end of file
--- /dev/null
+\hypertarget{group__kl__neighborhood__mfe}{\section{Calculating M\-F\-E representatives of a Distance Based Partitioning}
+\label{group__kl__neighborhood__mfe}\index{Calculating M\-F\-E representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}}
+}
+
+
+Compute the minimum free energy (M\-F\-E) and secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures basepair distance to two fixed reference structures.
+
+
+Collaboration diagram for Calculating M\-F\-E representatives of a Distance Based Partitioning\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__kl__neighborhood__mfe}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{2Dfold_8h}{2\-Dfold.\-h}
+\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$ \hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables} (const char $\ast$seq, const char $\ast$structure1, const char $\ast$structure2, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Get a structure of type \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} prefilled with current global settings. \end{DoxyCompactList}\item
+void \hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\-\_\-\-Two\-Dfold\-\_\-variables} (\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$our\-\_\-variables)
+\begin{DoxyCompactList}\small\item\em Destroy a \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} datastructure without memory loss. \end{DoxyCompactList}\item
+\hyperlink{structTwoDfold__solution}{Two\-Dfold\-\_\-solution} $\ast$ \hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List} (\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$vars, int distance1, int distance2)
+\begin{DoxyCompactList}\small\item\em Compute M\-F\-E's and representative for distance partitioning. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__kl__neighborhood__mfe_gaf4dc05bf8fc1ea53acd7aeb798ba80c2}{Two\-Dfold\-\_\-backtrack\-\_\-f5} (unsigned int j, int k, int l, \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$vars)
+\begin{DoxyCompactList}\small\item\em Backtrack a minimum free energy structure from a 5' section of specified length. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Compute the minimum free energy (M\-F\-E) and secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures basepair distance to two fixed reference structures.
+
+\subsection{Function Documentation}
+\hypertarget{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{\index{Calculating M\-F\-E representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}!get\-\_\-\-Two\-Dfold\-\_\-variables@{get\-\_\-\-Two\-Dfold\-\_\-variables}}
+\index{get\-\_\-\-Two\-Dfold\-\_\-variables@{get\-\_\-\-Two\-Dfold\-\_\-variables}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}}
+\subsubsection[{get\-\_\-\-Two\-Dfold\-\_\-variables}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Two\-Dfold\-\_\-vars}$\ast$ get\-\_\-\-Two\-Dfold\-\_\-variables (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{seq, }
+\item[{const char $\ast$}]{structure1, }
+\item[{const char $\ast$}]{structure2, }
+\item[{int}]{circ}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}
+
+
+Get a structure of type \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} prefilled with current global settings.
+
+This function returns a datastructure of type \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars}. The data fields inside the \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} are prefilled by global settings and all memory allocations necessary to start a computation are already done for the convenience of the user
+
+\begin{DoxyNote}{Note}
+Make sure that the reference structures are compatible with the sequence according to Watson-\/\-Crick-\/ and Wobble-\/base pairing
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\-\_\-\-Two\-Dfold\-\_\-variables()}, Two\-Dfold(), Two\-Dfold\-\_\-circ
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & The R\-N\-A sequence \\
+\hline
+{\em structure1} & The first reference structure in dot-\/bracket notation \\
+\hline
+{\em structure2} & The second reference structure in dot-\/bracket notation \\
+\hline
+{\em circ} & A switch to indicate the assumption to fold a circular instead of linear R\-N\-A (0=O\-F\-F, 1=O\-N) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A datastructure prefilled with folding options and allocated memory
+\end{DoxyReturn}
+\hypertarget{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{\index{Calculating M\-F\-E representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}!destroy\-\_\-\-Two\-Dfold\-\_\-variables@{destroy\-\_\-\-Two\-Dfold\-\_\-variables}}
+\index{destroy\-\_\-\-Two\-Dfold\-\_\-variables@{destroy\-\_\-\-Two\-Dfold\-\_\-variables}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}}
+\subsubsection[{destroy\-\_\-\-Two\-Dfold\-\_\-variables}]{\setlength{\rightskip}{0pt plus 5cm}void destroy\-\_\-\-Two\-Dfold\-\_\-variables (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dfold\-\_\-vars} $\ast$}]{our\-\_\-variables}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}
+
+
+Destroy a \hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} datastructure without memory loss.
+
+This function free's all allocated memory that depends on the datastructure given.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em our\-\_\-variables} & A pointer to the datastructure to be destroyed \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{\index{Calculating M\-F\-E representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}!Two\-Dfold\-List@{Two\-Dfold\-List}}
+\index{Two\-Dfold\-List@{Two\-Dfold\-List}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}}
+\subsubsection[{Two\-Dfold\-List}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Two\-Dfold\-\_\-solution}$\ast$ Two\-Dfold\-List (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dfold\-\_\-vars} $\ast$}]{vars, }
+\item[{int}]{distance1, }
+\item[{int}]{distance2}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}
+
+
+Compute M\-F\-E's and representative for distance partitioning.
+
+This function computes the minimum free energies and a representative secondary structure for each distance class according to the two references specified in the datastructure 'vars'. The maximum basepair distance to each of both references may be set by the arguments 'distance1' and 'distance2', respectively. If both distance arguments are set to '-\/1', no restriction is assumed and the calculation is performed for each distance class possible.
+
+The returned list contains an entry for each distance class. If a maximum basepair distance to either of the references was passed, an entry with k=l=-\/1 will be appended in the list, denoting the class where all structures exceeding the maximum will be thrown into. The end of the list is denoted by an attribute value of \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{I\-N\-F} in the k-\/attribute of the list entry.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\-\_\-\-Two\-Dfold\-\_\-variables()}, \hyperlink{structTwoDfold__solution}{Two\-Dfold\-\_\-solution}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em vars} & the datastructure containing all predefined folding attributes \\
+\hline
+{\em distance1} & maximum distance to reference1 (-\/1 means no restriction) \\
+\hline
+{\em distance2} & maximum distance to reference2 (-\/1 means no restriction) \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__kl__neighborhood__mfe_gaf4dc05bf8fc1ea53acd7aeb798ba80c2}{\index{Calculating M\-F\-E representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}!Two\-Dfold\-\_\-backtrack\-\_\-f5@{Two\-Dfold\-\_\-backtrack\-\_\-f5}}
+\index{Two\-Dfold\-\_\-backtrack\-\_\-f5@{Two\-Dfold\-\_\-backtrack\-\_\-f5}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\-F\-E representatives of a Distance Based Partitioning}}
+\subsubsection[{Two\-Dfold\-\_\-backtrack\-\_\-f5}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ Two\-Dfold\-\_\-backtrack\-\_\-f5 (
+\begin{DoxyParamCaption}
+\item[{unsigned int}]{j, }
+\item[{int}]{k, }
+\item[{int}]{l, }
+\item[{{\bf Two\-Dfold\-\_\-vars} $\ast$}]{vars}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__mfe_gaf4dc05bf8fc1ea53acd7aeb798ba80c2}
+
+
+Backtrack a minimum free energy structure from a 5' section of specified length.
+
+This function allows to backtrack a secondary structure beginning at the 5' end, a specified length and residing in a specific distance class. If the argument 'k' gets a value of -\/1, the structure that is backtracked is assumed to reside in the distance class where all structures exceeding the maximum basepair distance specified in \hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List()} belong to. \begin{DoxyNote}{Note}
+The argument 'vars' must contain precalculated energy values in the energy matrices, i.\-e. a call to \hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List()} preceding this function is mandatory!
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List()}, \hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\-\_\-\-Two\-Dfold\-\_\-variables()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em j} & The length in nucleotides beginning from the 5' end \\
+\hline
+{\em k} & distance to reference1 (may be -\/1) \\
+\hline
+{\em l} & distance to reference2 \\
+\hline
+{\em vars} & the datastructure containing all predefined folding attributes \\
+\hline
+\end{DoxyParams}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.30}Calculate Partition Functions of a Distance Based Partitioning}{84}{section.9.30}}
+\newlabel{group__kl__neighborhood__pf}{{9.30}{84}{Calculate Partition Functions of a Distance Based Partitioning\relax }{section.9.30}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.30.1}Detailed Description}{84}{subsection.9.30.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.30.2}Function Documentation}{84}{subsection.9.30.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.30.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{84}{subsubsection.9.30.2.1}}
+\newlabel{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{{9.30.2.1}{84}{get\-\_\-\-Two\-Dpfold\-\_\-variables\relax }{subsubsection.9.30.2.1}{}}
+\gdef \LT@lxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.30.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E}{85}{subsubsection.9.30.2.2}}
+\newlabel{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{{9.30.2.2}{85}{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E\relax }{subsubsection.9.30.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.30.2.3}destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{85}{subsubsection.9.30.2.3}}
+\newlabel{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{{9.30.2.3}{85}{destroy\-\_\-\-Two\-Dpfold\-\_\-variables\relax }{subsubsection.9.30.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.30.2.4}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List}{85}{subsubsection.9.30.2.4}}
+\newlabel{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{{9.30.2.4}{85}{Two\-Dpfold\-List\relax }{subsubsection.9.30.2.4}{}}
+\gdef \LT@lxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@setckpt{group__kl__neighborhood__pf}{
+\setcounter{page}{87}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{30}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{4}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{69}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{204}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{69}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+bb47d3a9544dd16327172d1b13e4c877
\ No newline at end of file
--- /dev/null
+\hypertarget{group__kl__neighborhood__pf}{\section{Calculate Partition Functions of a Distance Based Partitioning}
+\label{group__kl__neighborhood__pf}\index{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}}
+}
+
+
+Compute the partition function and stochastically sample secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures.
+
+
+Collaboration diagram for Calculate Partition Functions of a Distance Based Partitioning\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__kl__neighborhood__pf}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{2Dpfold_8h}{2\-Dpfold.\-h}
+\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$ \hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables} (const char $\ast$seq, const char $\ast$structure1, char $\ast$structure2, int \hyperlink{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{circ})
+\begin{DoxyCompactList}\small\item\em Get a datastructure containing all necessary attributes and global folding switches. \end{DoxyCompactList}\item
+\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$ \hyperlink{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E} (\hyperlink{structTwoDfold__vars}{Two\-Dfold\-\_\-vars} $\ast$mfe\-\_\-vars)
+\begin{DoxyCompactList}\small\item\em Get the datastructure containing all necessary attributes and global folding switches from a pre-\/filled mfe-\/datastructure. \end{DoxyCompactList}\item
+void \hyperlink{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{destroy\-\_\-\-Two\-Dpfold\-\_\-variables} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars)
+\begin{DoxyCompactList}\small\item\em Free all memory occupied by a \hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} datastructure. \end{DoxyCompactList}\item
+\hyperlink{structTwoDpfold__solution}{Two\-Dpfold\-\_\-solution} $\ast$ \hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars, int max\-Distance1, int max\-Distance2)
+\begin{DoxyCompactList}\small\item\em Compute the partition function for all distance classes. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Compute the partition function and stochastically sample secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures.
+
+\subsection{Function Documentation}
+\hypertarget{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{\index{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!get\-\_\-\-Two\-Dpfold\-\_\-variables@{get\-\_\-\-Two\-Dpfold\-\_\-variables}}
+\index{get\-\_\-\-Two\-Dpfold\-\_\-variables@{get\-\_\-\-Two\-Dpfold\-\_\-variables}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}}
+\subsubsection[{get\-\_\-\-Two\-Dpfold\-\_\-variables}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Two\-Dpfold\-\_\-vars}$\ast$ get\-\_\-\-Two\-Dpfold\-\_\-variables (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{seq, }
+\item[{const char $\ast$}]{structure1, }
+\item[{char $\ast$}]{structure2, }
+\item[{int}]{circ}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}
+
+
+Get a datastructure containing all necessary attributes and global folding switches.
+
+This function prepares all necessary attributes and matrices etc which are needed for a call of Two\-Dpfold\-List. A snapshot of all current global model switches (dangles, temperature and so on) is done and stored in the returned datastructure. Additionally, all matrices that will hold the partition function values are prepared.
+
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & the R\-N\-A sequence in uppercase format with letters from the alphabet \{A\-U\-C\-G\} \\
+\hline
+{\em structure1} & the first reference structure in dot-\/bracket notation \\
+\hline
+{\em structure2} & the second reference structure in dot-\/bracket notation \\
+\hline
+{\em circ} & a switch indicating if the sequence is linear (0) or circular (1) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the datastructure containing all necessary partition function attributes
+\end{DoxyReturn}
+\hypertarget{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{\index{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E@{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E}}
+\index{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E@{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}}
+\subsubsection[{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Two\-Dpfold\-\_\-vars}$\ast$ get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dfold\-\_\-vars} $\ast$}]{mfe\-\_\-vars}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}
+
+
+Get the datastructure containing all necessary attributes and global folding switches from a pre-\/filled mfe-\/datastructure.
+
+This function actually does the same as get\-\_\-\-Two\-Dpfold\-\_\-variables but takes its switches and settings from a pre-\/filled M\-F\-E equivalent datastructure
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em mfe\-\_\-vars} & the pre-\/filled mfe datastructure \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the datastructure containing all necessary partition function attributes
+\end{DoxyReturn}
+\hypertarget{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{\index{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!destroy\-\_\-\-Two\-Dpfold\-\_\-variables@{destroy\-\_\-\-Two\-Dpfold\-\_\-variables}}
+\index{destroy\-\_\-\-Two\-Dpfold\-\_\-variables@{destroy\-\_\-\-Two\-Dpfold\-\_\-variables}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}}
+\subsubsection[{destroy\-\_\-\-Two\-Dpfold\-\_\-variables}]{\setlength{\rightskip}{0pt plus 5cm}void destroy\-\_\-\-Two\-Dpfold\-\_\-variables (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dpfold\-\_\-vars} $\ast$}]{vars}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}
+
+
+Free all memory occupied by a \hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} datastructure.
+
+This function free's all memory occupied by a datastructure obtained from from \hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables()} or \hyperlink{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E()}
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em vars} & the datastructure to be free'd \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{\index{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!Two\-Dpfold\-List@{Two\-Dpfold\-List}}
+\index{Two\-Dpfold\-List@{Two\-Dpfold\-List}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}}
+\subsubsection[{Two\-Dpfold\-List}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Two\-Dpfold\-\_\-solution}$\ast$ Two\-Dpfold\-List (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dpfold\-\_\-vars} $\ast$}]{vars, }
+\item[{int}]{max\-Distance1, }
+\item[{int}]{max\-Distance2}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}
+
+
+Compute the partition function for all distance classes.
+
+This function computes the partition functions for all distance classes according the two reference structures specified in the datastructure 'vars'. Similar to \hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List()} the arguments max\-Distance1 and max\-Distance2 specify the maximum distance to both reference structures. A value of '-\/1' in either of them makes the appropriate distance restrictionless, i.\-e. all basepair distancies to the reference are taken into account during computation. In case there is a restriction, the returned solution contains an entry where the attribute k=l=-\/1 contains the partition function for all structures exceeding the restriction. A values of \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{I\-N\-F} in the attribute 'k' of the returned list denotes the end of the list
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{destroy\-\_\-\-Two\-Dpfold\-\_\-variables()}, \hyperlink{structTwoDpfold__solution}{Two\-Dpfold\-\_\-solution}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em vars} & the datastructure containing all necessary folding attributes and matrices \\
+\hline
+{\em max\-Distance1} & the maximum basepair distance to reference1 (may be -\/1) \\
+\hline
+{\em max\-Distance2} & the maximum basepair distance to reference2 (may be -\/1) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+a list of partition funtions for the appropriate distance classes
+\end{DoxyReturn}
--- /dev/null
+\relax
+\gdef \LT@lxx {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.31}Stochastic Backtracking of Structures from Distance Based Partitioning}{87}{section.9.31}}
+\newlabel{group__kl__neighborhood__stochbt}{{9.31}{87}{Stochastic Backtracking of Structures from Distance Based Partitioning\relax }{section.9.31}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.31.1}Detailed Description}{87}{subsection.9.31.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.31.2}Function Documentation}{87}{subsection.9.31.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.31.2.1}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack}{87}{subsubsection.9.31.2.1}}
+\newlabel{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}{{9.31.2.1}{87}{Two\-Dpfold\-\_\-pbacktrack\relax }{subsubsection.9.31.2.1}{}}
+\gdef \LT@lxxi {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.31.2.2}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5}{88}{subsubsection.9.31.2.2}}
+\newlabel{group__kl__neighborhood__stochbt_ga13430ac6a7f90df426774f131647d2c7}{{9.31.2.2}{88}{Two\-Dpfold\-\_\-pbacktrack5\relax }{subsubsection.9.31.2.2}{}}
+\@setckpt{group__kl__neighborhood__stochbt}{
+\setcounter{page}{89}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{31}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{71}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{209}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{71}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+cfd18aef6319104463c18dcb8a6c4e03
\ No newline at end of file
--- /dev/null
+\hypertarget{group__kl__neighborhood__stochbt}{\section{Stochastic Backtracking of Structures from Distance Based Partitioning}
+\label{group__kl__neighborhood__stochbt}\index{Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}}
+}
+
+
+Contains functions related to stochastic backtracking from a specified distance class.
+
+
+Collaboration diagram for Stochastic Backtracking of Structures from Distance Based Partitioning\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__kl__neighborhood__stochbt}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+char $\ast$ \hyperlink{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}{Two\-Dpfold\-\_\-pbacktrack} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars, int d1, int d2)
+\begin{DoxyCompactList}\small\item\em Sample secondary structure representatives from a set of distance classes according to their Boltzmann probability. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__kl__neighborhood__stochbt_ga13430ac6a7f90df426774f131647d2c7}{Two\-Dpfold\-\_\-pbacktrack5} (\hyperlink{structTwoDpfold__vars}{Two\-Dpfold\-\_\-vars} $\ast$vars, int d1, int d2, unsigned int length)
+\begin{DoxyCompactList}\small\item\em Sample secondary structure representatives with a specified length from a set of distance classes according to their Boltzmann probability. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Contains functions related to stochastic backtracking from a specified distance class.
+
+\subsection{Function Documentation}
+\hypertarget{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}{\index{Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}!Two\-Dpfold\-\_\-pbacktrack@{Two\-Dpfold\-\_\-pbacktrack}}
+\index{Two\-Dpfold\-\_\-pbacktrack@{Two\-Dpfold\-\_\-pbacktrack}!Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}}
+\subsubsection[{Two\-Dpfold\-\_\-pbacktrack}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ Two\-Dpfold\-\_\-pbacktrack (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dpfold\-\_\-vars} $\ast$}]{vars, }
+\item[{int}]{d1, }
+\item[{int}]{d2}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}
+
+
+Sample secondary structure representatives from a set of distance classes according to their Boltzmann probability.
+
+If the argument 'd1' is set to '-\/1', the structure will be backtracked in the distance class where all structures exceeding the maximum basepair distance to either of the references reside.
+
+\begin{DoxyPrecond}{Precondition}
+The argument 'vars' must contain precalculated partition function matrices, i.\-e. a call to \hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List()} preceding this function is mandatory!
+\end{DoxyPrecond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt in} & {\em vars} & the datastructure containing all necessary folding attributes and matrices \\
+\hline
+\mbox{\tt in} & {\em d1} & the distance to reference1 (may be -\/1) \\
+\hline
+\mbox{\tt in} & {\em d2} & the distance to reference2 \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A sampled secondary structure in dot-\/bracket notation
+\end{DoxyReturn}
+\hypertarget{group__kl__neighborhood__stochbt_ga13430ac6a7f90df426774f131647d2c7}{\index{Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}!Two\-Dpfold\-\_\-pbacktrack5@{Two\-Dpfold\-\_\-pbacktrack5}}
+\index{Two\-Dpfold\-\_\-pbacktrack5@{Two\-Dpfold\-\_\-pbacktrack5}!Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}}
+\subsubsection[{Two\-Dpfold\-\_\-pbacktrack5}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ Two\-Dpfold\-\_\-pbacktrack5 (
+\begin{DoxyParamCaption}
+\item[{{\bf Two\-Dpfold\-\_\-vars} $\ast$}]{vars, }
+\item[{int}]{d1, }
+\item[{int}]{d2, }
+\item[{unsigned int}]{length}
+\end{DoxyParamCaption}
+)}}\label{group__kl__neighborhood__stochbt_ga13430ac6a7f90df426774f131647d2c7}
+
+
+Sample secondary structure representatives with a specified length from a set of distance classes according to their Boltzmann probability.
+
+This function does essentially the same as Two\-Dpfold\-\_\-pbacktrack with the only difference that partial structures, i.\-e. structures beginning from the 5' end with a specified length of the sequence, are backtracked
+
+\begin{DoxyNote}{Note}
+This function does not work (since it makes no sense) for circular R\-N\-A sequences!
+\end{DoxyNote}
+\begin{DoxyPrecond}{Precondition}
+The argument 'vars' must contain precalculated partition function matrices, i.\-e. a call to \hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List()} preceding this function is mandatory!
+\end{DoxyPrecond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__stochbt_gae251288f50dd4ae7d315af0085775f71}{Two\-Dpfold\-\_\-pbacktrack()}, \hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt in} & {\em vars} & the datastructure containing all necessary folding attributes and matrices \\
+\hline
+\mbox{\tt in} & {\em d1} & the distance to reference1 (may be -\/1) \\
+\hline
+\mbox{\tt in} & {\em d2} & the distance to reference2 \\
+\hline
+\mbox{\tt in} & {\em length} & the length of the structure beginning from the 5' end \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A sampled secondary structure in dot-\/bracket notation
+\end{DoxyReturn}
--- /dev/null
+\relax
+\gdef \LT@xlvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.21}Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments}{63}{section.9.21}}
+\newlabel{group__local__consensus__fold}{{9.21}{63}{Local M\-F\-E consensus structures for Sequence Alignments\relax }{section.9.21}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.21.1}Detailed Description}{63}{subsection.9.21.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.21.2}Function Documentation}{63}{subsection.9.21.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.21.2.1}ali\discretionary {-}{}{}Lfold}{63}{subsubsection.9.21.2.1}}
+\newlabel{group__local__consensus__fold_ga20a173a3cdb83f5d1778e36c1a6b1f2b}{{9.21.2.1}{63}{ali\-Lfold\relax }{subsubsection.9.21.2.1}{}}
+\@setckpt{group__local__consensus__fold}{
+\setcounter{page}{64}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{21}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{47}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{128}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{47}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+01785e165ad2c602746b85ae95c8ce1c
\ No newline at end of file
--- /dev/null
+\hypertarget{group__local__consensus__fold}{\section{Local M\-F\-E consensus structures for Sequence Alignments}
+\label{group__local__consensus__fold}\index{Local M\-F\-E consensus structures for Sequence Alignments@{Local M\-F\-E consensus structures for Sequence Alignments}}
+}
+Collaboration diagram for Local M\-F\-E consensus structures for Sequence Alignments\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__local__consensus__fold}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__local__consensus__fold_ga20a173a3cdb83f5d1778e36c1a6b1f2b}{ali\-Lfold} (const char $\ast$$\ast$strings, char $\ast$structure, int maxdist)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__local__consensus__fold_ga20a173a3cdb83f5d1778e36c1a6b1f2b}{\index{Local M\-F\-E consensus structures for Sequence Alignments@{Local M\-F\-E consensus structures for Sequence Alignments}!ali\-Lfold@{ali\-Lfold}}
+\index{ali\-Lfold@{ali\-Lfold}!Local MFE consensus structures for Sequence Alignments@{Local M\-F\-E consensus structures for Sequence Alignments}}
+\subsubsection[{ali\-Lfold}]{\setlength{\rightskip}{0pt plus 5cm}float ali\-Lfold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$$\ast$}]{strings, }
+\item[{char $\ast$}]{structure, }
+\item[{int}]{maxdist}
+\end{DoxyParamCaption}
+)}}\label{group__local__consensus__fold_ga20a173a3cdb83f5d1778e36c1a6b1f2b}
+
+\begin{DoxyParams}{Parameters}
+{\em strings} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em maxdist} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.18}Predicting Locally stable structures of large sequences}{59}{section.9.18}}
+\newlabel{group__local__fold}{{9.18}{59}{Predicting Locally stable structures of large sequences\relax }{section.9.18}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.18.1}Detailed Description}{59}{subsection.9.18.1}}
+\@setckpt{group__local__fold}{
+\setcounter{page}{60}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{18}
+\setcounter{subsection}{1}
+\setcounter{subsubsection}{0}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{40}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{112}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{40}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{2}
+}
--- /dev/null
+5bdb5361f0d7eed2f6ebc373bb1f11d9
\ No newline at end of file
--- /dev/null
+\hypertarget{group__local__fold}{\section{Predicting Locally stable structures of large sequences}
+\label{group__local__fold}\index{Predicting Locally stable structures of large sequences@{Predicting Locally stable structures of large sequences}}
+}
+Collaboration diagram for Predicting Locally stable structures of large sequences\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__local__fold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__local__mfe__fold}{Local M\-F\-E structure Prediction and Z-\/scores}
+\item
+\hyperlink{group__local__pf__fold}{Partition functions for locally stable secondary structures}
+\item
+\hyperlink{group__local__consensus__fold}{Local M\-F\-E consensus structures for Sequence Alignments}
+\end{DoxyCompactItemize}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{Lfold_8h}{Lfold.\-h}
+\begin{DoxyCompactList}\small\item\em Predicting local M\-F\-E structures of large sequences. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Local structures can be predicted by a modified version of the \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()} algorithm that restricts the span of all base pairs.
\ No newline at end of file
--- /dev/null
+\relax
+\gdef \LT@xli {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xlii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.19}Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}{60}{section.9.19}}
+\newlabel{group__local__mfe__fold}{{9.19}{60}{Local M\-F\-E structure Prediction and Z-\/scores\relax }{section.9.19}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.19.1}Detailed Description}{60}{subsection.9.19.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.19.2}Function Documentation}{60}{subsection.9.19.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.19.2.1}Lfold}{60}{subsubsection.9.19.2.1}}
+\newlabel{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}{{9.19.2.1}{60}{Lfold\relax }{subsubsection.9.19.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.19.2.2}Lfoldz}{60}{subsubsection.9.19.2.2}}
+\newlabel{group__local__mfe__fold_gab6d79eecc180f586679f7b85cce5cbe9}{{9.19.2.2}{60}{Lfoldz\relax }{subsubsection.9.19.2.2}{}}
+\@setckpt{group__local__mfe__fold}{
+\setcounter{page}{61}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{19}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{42}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{117}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{42}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+13d06b7c98385c74b7d821c314459eae
\ No newline at end of file
--- /dev/null
+\hypertarget{group__local__mfe__fold}{\section{Local M\-F\-E structure Prediction and Z-\/scores}
+\label{group__local__mfe__fold}\index{Local M\-F\-E structure Prediction and Z-\/scores@{Local M\-F\-E structure Prediction and Z-\/scores}}
+}
+Collaboration diagram for Local M\-F\-E structure Prediction and Z-\/scores\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__local__mfe__fold}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}{Lfold} (const char $\ast$string, char $\ast$structure, int maxdist)
+\begin{DoxyCompactList}\small\item\em The local analog to \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}. \end{DoxyCompactList}\item
+float \hyperlink{group__local__mfe__fold_gab6d79eecc180f586679f7b85cce5cbe9}{Lfoldz} (const char $\ast$string, char $\ast$structure, int maxdist, int zsc, double min\-\_\-z)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}{\index{Local M\-F\-E structure Prediction and Z-\/scores@{Local M\-F\-E structure Prediction and Z-\/scores}!Lfold@{Lfold}}
+\index{Lfold@{Lfold}!Local MFE structure Prediction and Z-scores@{Local M\-F\-E structure Prediction and Z-\/scores}}
+\subsubsection[{Lfold}]{\setlength{\rightskip}{0pt plus 5cm}float Lfold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{int}]{maxdist}
+\end{DoxyParamCaption}
+)}}\label{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}
+
+
+The local analog to \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}.
+
+Computes the minimum free energy structure including only base pairs with a span smaller than 'maxdist'
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em maxdist} & \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__local__mfe__fold_gab6d79eecc180f586679f7b85cce5cbe9}{\index{Local M\-F\-E structure Prediction and Z-\/scores@{Local M\-F\-E structure Prediction and Z-\/scores}!Lfoldz@{Lfoldz}}
+\index{Lfoldz@{Lfoldz}!Local MFE structure Prediction and Z-scores@{Local M\-F\-E structure Prediction and Z-\/scores}}
+\subsubsection[{Lfoldz}]{\setlength{\rightskip}{0pt plus 5cm}float Lfoldz (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string, }
+\item[{char $\ast$}]{structure, }
+\item[{int}]{maxdist, }
+\item[{int}]{zsc, }
+\item[{double}]{min\-\_\-z}
+\end{DoxyParamCaption}
+)}}\label{group__local__mfe__fold_gab6d79eecc180f586679f7b85cce5cbe9}
+
+\begin{DoxyParams}{Parameters}
+{\em string} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em maxdist} & \\
+\hline
+{\em zsc} & \\
+\hline
+{\em min\-\_\-z} & \\
+\hline
+\end{DoxyParams}
--- /dev/null
+\relax
+\gdef \LT@xliii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.20}Partition functions for locally stable secondary structures}{61}{section.9.20}}
+\newlabel{group__local__pf__fold}{{9.20}{61}{Partition functions for locally stable secondary structures\relax }{section.9.20}{}}
+\newlabel{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{{9.20}{61}{Functions\relax }{section*.41}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.20.1}Detailed Description}{61}{subsection.9.20.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.20.2}Function Documentation}{61}{subsection.9.20.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.20.2.1}update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P}{61}{subsubsection.9.20.2.1}}
+\newlabel{group__local__pf__fold_ga5a019014d37fe6105131dfc2fc447880}{{9.20.2.1}{61}{update\-\_\-pf\-\_\-params\-L\-P\relax }{subsubsection.9.20.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.20.2.2}pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{61}{subsubsection.9.20.2.2}}
+\newlabel{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}{{9.20.2.2}{61}{pfl\-\_\-fold\relax }{subsubsection.9.20.2.2}{}}
+\gdef \LT@xliv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xlv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xlvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.20.2.3}putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob}{62}{subsubsection.9.20.2.3}}
+\newlabel{group__local__pf__fold_ga0bcb751860bbf34e3dfee8c2fbdb3ef3}{{9.20.2.3}{62}{putoutp\-U\-\_\-prob\relax }{subsubsection.9.20.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.20.2.4}putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin}{62}{subsubsection.9.20.2.4}}
+\newlabel{group__local__pf__fold_ga9acb00ee10e96b1ca4ea394cd8bcec75}{{9.20.2.4}{62}{putoutp\-U\-\_\-prob\-\_\-bin\relax }{subsubsection.9.20.2.4}{}}
+\@setckpt{group__local__pf__fold}{
+\setcounter{page}{63}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{20}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{4}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{46}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{124}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{46}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+b14d8ea7457dd4b12cfe541ebddcc2e2
\ No newline at end of file
--- /dev/null
+\hypertarget{group__local__pf__fold}{\section{Partition functions for locally stable secondary structures}
+\label{group__local__pf__fold}\index{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}}
+}
+Collaboration diagram for Partition functions for locally stable secondary structures\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__local__pf__fold}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{LPfold_8h}{L\-Pfold.\-h}
+\begin{DoxyCompactList}\small\item\em Function declarations of partition function variants of the Lfold algorithm. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{group__local__pf__fold_ga5a019014d37fe6105131dfc2fc447880}{update\-\_\-pf\-\_\-params\-L\-P} (int length)
+\item
+\hyperlink{structplist}{plist} $\ast$ \hyperlink{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}{pfl\-\_\-fold} (char $\ast$sequence, int win\-Size, int pair\-Size, float cutoffb, double $\ast$$\ast$p\-U, struct \hyperlink{structplist}{plist} $\ast$$\ast$dpp2, F\-I\-L\-E $\ast$p\-Ufp, F\-I\-L\-E $\ast$spup)
+\begin{DoxyCompactList}\small\item\em Compute partition functions for locally stable secondary structures. \end{DoxyCompactList}\item
+\hypertarget{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{\hyperlink{structplist}{plist} $\ast$ \hyperlink{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{pfl\-\_\-fold\-\_\-par} (char $\ast$sequence, int win\-Size, int pair\-Size, float cutoffb, double $\ast$$\ast$p\-U, struct \hyperlink{structplist}{plist} $\ast$$\ast$dpp2, F\-I\-L\-E $\ast$p\-Ufp, F\-I\-L\-E $\ast$spup, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)}\label{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}
+
+\begin{DoxyCompactList}\small\item\em Compute partition functions for locally stable secondary structures. \end{DoxyCompactList}\item
+void \hyperlink{group__local__pf__fold_ga0bcb751860bbf34e3dfee8c2fbdb3ef3}{putoutp\-U\-\_\-prob} (double $\ast$$\ast$p\-U, int length, int ulength, F\-I\-L\-E $\ast$fp, int energies)
+\begin{DoxyCompactList}\small\item\em Writes the unpaired probabilities (p\-U) or opening energies into a file. \end{DoxyCompactList}\item
+void \hyperlink{group__local__pf__fold_ga9acb00ee10e96b1ca4ea394cd8bcec75}{putoutp\-U\-\_\-prob\-\_\-bin} (double $\ast$$\ast$p\-U, int length, int ulength, F\-I\-L\-E $\ast$fp, int energies)
+\begin{DoxyCompactList}\small\item\em Writes the unpaired probabilities (p\-U) or opening energies into a binary file. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__local__pf__fold_ga5a019014d37fe6105131dfc2fc447880}{\index{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!update\-\_\-pf\-\_\-params\-L\-P@{update\-\_\-pf\-\_\-params\-L\-P}}
+\index{update\-\_\-pf\-\_\-params\-L\-P@{update\-\_\-pf\-\_\-params\-L\-P}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}}
+\subsubsection[{update\-\_\-pf\-\_\-params\-L\-P}]{\setlength{\rightskip}{0pt plus 5cm}void update\-\_\-pf\-\_\-params\-L\-P (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{group__local__pf__fold_ga5a019014d37fe6105131dfc2fc447880}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}{\index{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!pfl\-\_\-fold@{pfl\-\_\-fold}}
+\index{pfl\-\_\-fold@{pfl\-\_\-fold}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}}
+\subsubsection[{pfl\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}{\bf plist}$\ast$ pfl\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence, }
+\item[{int}]{win\-Size, }
+\item[{int}]{pair\-Size, }
+\item[{float}]{cutoffb, }
+\item[{double $\ast$$\ast$}]{p\-U, }
+\item[{struct {\bf plist} $\ast$$\ast$}]{dpp2, }
+\item[{F\-I\-L\-E $\ast$}]{p\-Ufp, }
+\item[{F\-I\-L\-E $\ast$}]{spup}
+\end{DoxyParamCaption}
+)}}\label{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}
+
+
+Compute partition functions for locally stable secondary structures.
+
+pfl\-\_\-fold computes partition functions for every window of size 'win\-Size' possible in a R\-N\-A molecule, allowing only pairs with a span smaller than 'pair\-Size'. It returns the mean pair probabilities averaged over all windows containing the pair in 'pl'. 'win\-Size' should always be $>$= 'pair\-Size'. Note that in contrast to \hyperlink{group__local__mfe__fold_ga16e5a70e60835bb969eaecbe6482f1be}{Lfold()}, bases outside of the window do not influence the structure at all. Only probabilities higher than 'cutoffb' are kept.
+
+If 'p\-U' is supplied (i.\-e is not the N\-U\-L\-L pointer), \hyperlink{group__local__pf__fold_gaa1ecd401617ebc748a0220026543c777}{pfl\-\_\-fold()} will also compute the mean probability that regions of length 'u' and smaller are unpaired. The parameter 'u' is supplied in 'pup\mbox{[}0\mbox{]}\mbox{[}0\mbox{]}'. On return the 'pup' array will contain these probabilities, with the entry on 'pup\mbox{[}x\mbox{]}\mbox{[}y\mbox{]}' containing the mean probability that x and the y-\/1 preceding bases are unpaired. The 'p\-U' array needs to be large enough to hold n+1 float$\ast$ entries, where n is the sequence length.
+
+If an array dpp2 is supplied, the probability of base pair (i,j) given that there already exists a base pair (i+1,j-\/1) is also computed and saved in this array. If p\-Ufp is given (i.\-e. not N\-U\-L\-L), p\-U is not saved but put out imediately. If spup is given (i.\-e. is not N\-U\-L\-L), the pair probabilities in pl are not saved but put out imediately.
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & R\-N\-A sequence \\
+\hline
+{\em win\-Size} & size of the window \\
+\hline
+{\em pair\-Size} & maximum size of base pair \\
+\hline
+{\em cutoffb} & cutoffb for base pairs \\
+\hline
+{\em p\-U} & array holding all unpaired probabilities \\
+\hline
+{\em dpp2} & array of dependent pair probabilities \\
+\hline
+{\em p\-Ufp} & file pointer for p\-U \\
+\hline
+{\em spup} & file pointer for pair probabilities \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+list of pair probabilities
+\end{DoxyReturn}
+\hypertarget{group__local__pf__fold_ga0bcb751860bbf34e3dfee8c2fbdb3ef3}{\index{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!putoutp\-U\-\_\-prob@{putoutp\-U\-\_\-prob}}
+\index{putoutp\-U\-\_\-prob@{putoutp\-U\-\_\-prob}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}}
+\subsubsection[{putoutp\-U\-\_\-prob}]{\setlength{\rightskip}{0pt plus 5cm}void putoutp\-U\-\_\-prob (
+\begin{DoxyParamCaption}
+\item[{double $\ast$$\ast$}]{p\-U, }
+\item[{int}]{length, }
+\item[{int}]{ulength, }
+\item[{F\-I\-L\-E $\ast$}]{fp, }
+\item[{int}]{energies}
+\end{DoxyParamCaption}
+)}}\label{group__local__pf__fold_ga0bcb751860bbf34e3dfee8c2fbdb3ef3}
+
+
+Writes the unpaired probabilities (p\-U) or opening energies into a file.
+
+Can write either the unpaired probabilities (accessibilities) p\-U or the opening energies -\/log(p\-U)k\-T into a file
+
+
+\begin{DoxyParams}{Parameters}
+{\em p\-U} & pair probabilities \\
+\hline
+{\em length} & length of R\-N\-A sequence \\
+\hline
+{\em ulength} & maximum length of unpaired stretch \\
+\hline
+{\em fp} & file pointer of destination file \\
+\hline
+{\em energies} & switch to put out as opening energies \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__local__pf__fold_ga9acb00ee10e96b1ca4ea394cd8bcec75}{\index{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!putoutp\-U\-\_\-prob\-\_\-bin@{putoutp\-U\-\_\-prob\-\_\-bin}}
+\index{putoutp\-U\-\_\-prob\-\_\-bin@{putoutp\-U\-\_\-prob\-\_\-bin}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}}
+\subsubsection[{putoutp\-U\-\_\-prob\-\_\-bin}]{\setlength{\rightskip}{0pt plus 5cm}void putoutp\-U\-\_\-prob\-\_\-bin (
+\begin{DoxyParamCaption}
+\item[{double $\ast$$\ast$}]{p\-U, }
+\item[{int}]{length, }
+\item[{int}]{ulength, }
+\item[{F\-I\-L\-E $\ast$}]{fp, }
+\item[{int}]{energies}
+\end{DoxyParamCaption}
+)}}\label{group__local__pf__fold_ga9acb00ee10e96b1ca4ea394cd8bcec75}
+
+
+Writes the unpaired probabilities (p\-U) or opening energies into a binary file.
+
+Can write either the unpaired probabilities (accessibilities) p\-U or the opening energies -\/log(p\-U)k\-T into a file
+
+
+\begin{DoxyParams}{Parameters}
+{\em p\-U} & pair probabilities \\
+\hline
+{\em length} & length of R\-N\-A sequence \\
+\hline
+{\em ulength} & maximum length of unpaired stretch \\
+\hline
+{\em fp} & file pointer of destination file \\
+\hline
+{\em energies} & switch to put out as opening energies \\
+\hline
+\end{DoxyParams}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.4}Compute the structure with maximum expected accuracy (M\discretionary {-}{}{}E\discretionary {-}{}{}A)}{32}{section.9.4}}
+\newlabel{group__mea__fold}{{9.4}{32}{Compute the structure with maximum expected accuracy (M\-E\-A)\relax }{section.9.4}{}}
+\@setckpt{group__mea__fold}{
+\setcounter{page}{33}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{4}
+\setcounter{subsection}{0}
+\setcounter{subsubsection}{10}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{10}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{36}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{10}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{1}
+}
--- /dev/null
+89b75e29ab66d8f0158c2595149537a4
\ No newline at end of file
--- /dev/null
+\hypertarget{group__mea__fold}{\section{Compute the structure with maximum expected accuracy (M\-E\-A)}
+\label{group__mea__fold}\index{Compute the structure with maximum expected accuracy (\-M\-E\-A)@{Compute the structure with maximum expected accuracy (\-M\-E\-A)}}
+}
+Collaboration diagram for Compute the structure with maximum expected accuracy (M\-E\-A)\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__mea__fold}
+\end{center}
+\end{figure}
--- /dev/null
+\relax
+\gdef \LT@xviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.11}M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}{42}{section.9.11}}
+\newlabel{group__mfe__cofold}{{9.11}{42}{M\-F\-E Structures of two hybridized Sequences\relax }{section.9.11}{}}
+\newlabel{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{{9.11}{42}{Functions\relax }{section*.24}{}}
+\newlabel{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{{9.11}{42}{Functions\relax }{section*.24}{}}
+\newlabel{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{{9.11}{42}{Functions\relax }{section*.24}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.11.1}Detailed Description}{42}{subsection.9.11.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.11.2}Function Documentation}{42}{subsection.9.11.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.11.2.1}cofold}{42}{subsubsection.9.11.2.1}}
+\newlabel{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{{9.11.2.1}{42}{cofold\relax }{subsubsection.9.11.2.1}{}}
+\gdef \LT@xix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.11.2.2}export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq}{43}{subsubsection.9.11.2.2}}
+\newlabel{group__mfe__cofold_ga5f5bf4df35d0554f6ace9579f8744c48}{{9.11.2.2}{43}{export\-\_\-cofold\-\_\-arrays\-\_\-gq\relax }{subsubsection.9.11.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.11.2.3}export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{43}{subsubsection.9.11.2.3}}
+\newlabel{group__mfe__cofold_ga5cb6b59983f1f74ccc00b9b9c4e84482}{{9.11.2.3}{43}{export\-\_\-cofold\-\_\-arrays\relax }{subsubsection.9.11.2.3}{}}
+\@setckpt{group__mfe__cofold}{
+\setcounter{page}{44}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{11}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{3}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{20}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{67}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{20}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+ee6658e4598df507b03dfcba32472cb0
\ No newline at end of file
--- /dev/null
+\hypertarget{group__mfe__cofold}{\section{M\-F\-E Structures of two hybridized Sequences}
+\label{group__mfe__cofold}\index{M\-F\-E Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}}
+}
+Collaboration diagram for M\-F\-E Structures of two hybridized Sequences\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__mfe__cofold}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{cofold_8h}{cofold.\-h}
+\begin{DoxyCompactList}\small\item\em M\-F\-E version of cofolding routines. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{cofold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute the minimum free energy of two interacting R\-N\-A molecules. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{float \hyperlink{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{cofold\-\_\-par} (const char $\ast$string, char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int is\-\_\-constrained)}\label{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}
+
+\begin{DoxyCompactList}\small\item\em Compute the minimum free energy of two interacting R\-N\-A molecules. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{void \hyperlink{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{free\-\_\-co\-\_\-arrays} (void)}\label{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}
+
+\begin{DoxyCompactList}\small\item\em Free memory occupied by \hyperlink{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{cofold()} \end{DoxyCompactList}\item
+\hypertarget{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{void \hyperlink{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{update\-\_\-cofold\-\_\-params} (void)}\label{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}
+
+\begin{DoxyCompactList}\small\item\em Recalculate parameters. \end{DoxyCompactList}\item
+void \hyperlink{group__mfe__cofold_ga5f5bf4df35d0554f6ace9579f8744c48}{export\-\_\-cofold\-\_\-arrays\-\_\-gq} (int $\ast$$\ast$f5\-\_\-p, int $\ast$$\ast$c\-\_\-p, int $\ast$$\ast$f\-M\-L\-\_\-p, int $\ast$$\ast$f\-M1\-\_\-p, int $\ast$$\ast$fc\-\_\-p, int $\ast$$\ast$ggg\-\_\-p, int $\ast$$\ast$indx\-\_\-p, char $\ast$$\ast$ptype\-\_\-p)
+\begin{DoxyCompactList}\small\item\em Export the arrays of partition function cofold (with gquadruplex support) \end{DoxyCompactList}\item
+void \hyperlink{group__mfe__cofold_ga5cb6b59983f1f74ccc00b9b9c4e84482}{export\-\_\-cofold\-\_\-arrays} (int $\ast$$\ast$f5\-\_\-p, int $\ast$$\ast$c\-\_\-p, int $\ast$$\ast$f\-M\-L\-\_\-p, int $\ast$$\ast$f\-M1\-\_\-p, int $\ast$$\ast$fc\-\_\-p, int $\ast$$\ast$indx\-\_\-p, char $\ast$$\ast$ptype\-\_\-p)
+\begin{DoxyCompactList}\small\item\em Export the arrays of partition function cofold. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}{\index{M\-F\-E Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}!cofold@{cofold}}
+\index{cofold@{cofold}!MFE Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}}
+\subsubsection[{cofold}]{\setlength{\rightskip}{0pt plus 5cm}float cofold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__mfe__cofold_gabc8517f22cfe70595ee81fc837910d52}
+
+
+Compute the minimum free energy of two interacting R\-N\-A molecules.
+
+The code is analog to the \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()} function. If \hyperlink{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point} ==-\/1 results should be the same as with \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The two sequences concatenated \\
+\hline
+{\em structure} & Will hold the barcket dot structure of the dimer molecule \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+minimum free energy of the structure
+\end{DoxyReturn}
+\hypertarget{group__mfe__cofold_ga5f5bf4df35d0554f6ace9579f8744c48}{\index{M\-F\-E Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}!export\-\_\-cofold\-\_\-arrays\-\_\-gq@{export\-\_\-cofold\-\_\-arrays\-\_\-gq}}
+\index{export\-\_\-cofold\-\_\-arrays\-\_\-gq@{export\-\_\-cofold\-\_\-arrays\-\_\-gq}!MFE Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}}
+\subsubsection[{export\-\_\-cofold\-\_\-arrays\-\_\-gq}]{\setlength{\rightskip}{0pt plus 5cm}void export\-\_\-cofold\-\_\-arrays\-\_\-gq (
+\begin{DoxyParamCaption}
+\item[{int $\ast$$\ast$}]{f5\-\_\-p, }
+\item[{int $\ast$$\ast$}]{c\-\_\-p, }
+\item[{int $\ast$$\ast$}]{f\-M\-L\-\_\-p, }
+\item[{int $\ast$$\ast$}]{f\-M1\-\_\-p, }
+\item[{int $\ast$$\ast$}]{fc\-\_\-p, }
+\item[{int $\ast$$\ast$}]{ggg\-\_\-p, }
+\item[{int $\ast$$\ast$}]{indx\-\_\-p, }
+\item[{char $\ast$$\ast$}]{ptype\-\_\-p}
+\end{DoxyParamCaption}
+)}}\label{group__mfe__cofold_ga5f5bf4df35d0554f6ace9579f8744c48}
+
+
+Export the arrays of partition function cofold (with gquadruplex support)
+
+Export the cofold arrays for use e.\-g. in the concentration Computations or suboptimal secondary structure backtracking
+
+
+\begin{DoxyParams}{Parameters}
+{\em f5\-\_\-p} & A pointer to the 'f5' array, i.\-e. array conatining best free energy in interval \mbox{[}1,j\mbox{]} \\
+\hline
+{\em c\-\_\-p} & A pointer to the 'c' array, i.\-e. array containing best free energy in interval \mbox{[}i,j\mbox{]} given that i pairs with j \\
+\hline
+{\em f\-M\-L\-\_\-p} & A pointer to the 'M' array, i.\-e. array containing best free energy in interval \mbox{[}i,j\mbox{]} for any multiloop segment with at least one stem \\
+\hline
+{\em f\-M1\-\_\-p} & A pointer to the 'M1' array, i.\-e. array containing best free energy in interval \mbox{[}i,j\mbox{]} for multiloop segment with exactly one stem \\
+\hline
+{\em fc\-\_\-p} & A pointer to the 'fc' array, i.\-e. array ... \\
+\hline
+{\em ggg\-\_\-p} & A pointer to the 'ggg' array, i.\-e. array containing best free energy of a gquadruplex delimited by \mbox{[}i,j\mbox{]} \\
+\hline
+{\em indx\-\_\-p} & A pointer to the indexing array used for accessing the energy matrices \\
+\hline
+{\em ptype\-\_\-p} & A pointer to the ptype array containing the base pair types for each possibility (i,j) \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__mfe__cofold_ga5cb6b59983f1f74ccc00b9b9c4e84482}{\index{M\-F\-E Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}!export\-\_\-cofold\-\_\-arrays@{export\-\_\-cofold\-\_\-arrays}}
+\index{export\-\_\-cofold\-\_\-arrays@{export\-\_\-cofold\-\_\-arrays}!MFE Structures of two hybridized Sequences@{M\-F\-E Structures of two hybridized Sequences}}
+\subsubsection[{export\-\_\-cofold\-\_\-arrays}]{\setlength{\rightskip}{0pt plus 5cm}void export\-\_\-cofold\-\_\-arrays (
+\begin{DoxyParamCaption}
+\item[{int $\ast$$\ast$}]{f5\-\_\-p, }
+\item[{int $\ast$$\ast$}]{c\-\_\-p, }
+\item[{int $\ast$$\ast$}]{f\-M\-L\-\_\-p, }
+\item[{int $\ast$$\ast$}]{f\-M1\-\_\-p, }
+\item[{int $\ast$$\ast$}]{fc\-\_\-p, }
+\item[{int $\ast$$\ast$}]{indx\-\_\-p, }
+\item[{char $\ast$$\ast$}]{ptype\-\_\-p}
+\end{DoxyParamCaption}
+)}}\label{group__mfe__cofold_ga5cb6b59983f1f74ccc00b9b9c4e84482}
+
+
+Export the arrays of partition function cofold.
+
+Export the cofold arrays for use e.\-g. in the concentration Computations or suboptimal secondary structure backtracking
+
+
+\begin{DoxyParams}{Parameters}
+{\em f5\-\_\-p} & A pointer to the 'f5' array, i.\-e. array conatining best free energy in interval \mbox{[}1,j\mbox{]} \\
+\hline
+{\em c\-\_\-p} & A pointer to the 'c' array, i.\-e. array containing best free energy in interval \mbox{[}i,j\mbox{]} given that i pairs with j \\
+\hline
+{\em f\-M\-L\-\_\-p} & A pointer to the 'M' array, i.\-e. array containing best free energy in interval \mbox{[}i,j\mbox{]} for any multiloop segment with at least one stem \\
+\hline
+{\em f\-M1\-\_\-p} & A pointer to the 'M1' array, i.\-e. array containing best free energy in interval \mbox{[}i,j\mbox{]} for multiloop segment with exactly one stem \\
+\hline
+{\em fc\-\_\-p} & A pointer to the 'fc' array, i.\-e. array ... \\
+\hline
+{\em indx\-\_\-p} & A pointer to the indexing array used for accessing the energy matrices \\
+\hline
+{\em ptype\-\_\-p} & A pointer to the ptype array containing the base pair types for each possibility (i,j) \\
+\hline
+\end{DoxyParams}
--- /dev/null
+\relax
+\citation{zuker:1981}
+\@writefile{toc}{\contentsline {section}{\numberline {9.2}Calculating Minimum Free Energy (M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}{22}{section.9.2}}
+\newlabel{group__mfe__fold}{{9.2}{22}{Calculating Minimum Free Energy (M\-F\-E) Structures\relax }{section.9.2}{}}
+\newlabel{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{{9.2}{22}{Functions\relax }{section*.9}{}}
+\newlabel{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{{9.2}{22}{Functions\relax }{section*.9}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.1}Detailed Description}{22}{subsection.9.2.1}}
+\citation{hofacker:2006}
+\gdef \LT@i {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{brf}{\backcite{zuker:1981}{{23}{9.2.1}{subsection.9.2.1}}}
+\@writefile{brf}{\backcite{hofacker:2006}{{23}{9.2.1}{subsection.9.2.1}}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.2}Function Documentation}{23}{subsection.9.2.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.2.2.1}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{23}{subsubsection.9.2.2.1}}
+\newlabel{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{{9.2.2.1}{23}{fold\-\_\-par\relax }{subsubsection.9.2.2.1}{}}
+\gdef \LT@ii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@iii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.2.2.2}fold}{24}{subsubsection.9.2.2.2}}
+\newlabel{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{{9.2.2.2}{24}{fold\relax }{subsubsection.9.2.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.2.2.3}circfold}{24}{subsubsection.9.2.2.3}}
+\newlabel{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{{9.2.2.3}{24}{circfold\relax }{subsubsection.9.2.2.3}{}}
+\@setckpt{group__mfe__fold}{
+\setcounter{page}{25}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{2}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{3}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{3}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{22}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{3}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+029014fd32c878ca2be05553da023ba3
\ No newline at end of file
--- /dev/null
+\hypertarget{group__mfe__fold}{\section{Calculating Minimum Free Energy (M\-F\-E) Structures}
+\label{group__mfe__fold}\index{Calculating Minimum Free Energy (\-M\-F\-E) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}}
+}
+
+
+This module contains all functions and variables related to the calculation of global minimum free energy structures for single sequences.
+
+
+Collaboration diagram for Calculating Minimum Free Energy (M\-F\-E) Structures\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__mfe__fold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__mfe__cofold}{M\-F\-E Structures of two hybridized Sequences}
+\item
+\hyperlink{group__consensus__mfe__fold}{M\-F\-E Consensus Structures for Sequence Alignment(s)}
+\item
+\hyperlink{group__local__mfe__fold}{Local M\-F\-E structure Prediction and Z-\/scores}
+\item
+\hyperlink{group__kl__neighborhood__mfe}{Calculating M\-F\-E representatives of a Distance Based Partitioning}
+\begin{DoxyCompactList}\small\item\em Compute the minimum free energy (M\-F\-E) and secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures basepair distance to two fixed reference structures. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par} (const char $\ast$sequence, char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int is\-\_\-constrained, int is\-\_\-circular)
+\begin{DoxyCompactList}\small\item\em Compute minimum free energy and an appropriate secondary structure of an R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute minimum free energy and an appropriate secondary structure of an R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{circfold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute minimum free energy and an appropriate secondary structure of a circular R\-N\-A sequence. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{void \hyperlink{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{free\-\_\-arrays} (void)}\label{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}
+
+\begin{DoxyCompactList}\small\item\em Free arrays for mfe folding. \end{DoxyCompactList}\item
+\hypertarget{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{void \hyperlink{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{update\-\_\-fold\-\_\-params} (void)}\label{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}
+
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+This module contains all functions and variables related to the calculation of global minimum free energy structures for single sequences. This section covers all functions and variables related to the calculation of minimum free energy (M\-F\-E) structures.
+
+The library provides a fast dynamic programming minimum free energy folding algorithm as described by Zuker \& Stiegler (1981).
+
+The library provides a fast dynamic programming minimum free energy folding algorithm as described in\cite{zuker:1981}. All relevant parts that directly implement the \char`\"{}\-Zuker \& Stiegler\char`\"{} algorithm for single sequences are described in this section.
+
+Folding of circular R\-N\-A sequences is handled as a post-\/processing step of the forward recursions. See\cite{hofacker:2006} for further details.
+
+Nevertheless, the R\-N\-Alib also provides interfaces for the prediction of consensus M\-F\-E structures of sequence alignments, M\-F\-E structure for two hybridized sequences, local optimal structures and many more. For those more specialized variants of M\-F\-E folding routines, please consult the appropriate subsections (Modules) as listed above.
+
+\subsection{Function Documentation}
+\hypertarget{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{\index{Calculating Minimum Free Energy (\-M\-F\-E) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}!fold\-\_\-par@{fold\-\_\-par}}
+\index{fold\-\_\-par@{fold\-\_\-par}!Calculating Minimum Free Energy (MFE) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}}
+\subsubsection[{fold\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}float fold\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure, }
+\item[{{\bf param\-T} $\ast$}]{parameters, }
+\item[{int}]{is\-\_\-constrained, }
+\item[{int}]{is\-\_\-circular}
+\end{DoxyParamCaption}
+)}}\label{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}
+
+
+Compute minimum free energy and an appropriate secondary structure of an R\-N\-A sequence.
+
+The first parameter given, the R\-N\-A sequence, must be {\itshape uppercase} and should only contain an alphabet $\Sigma$ that is understood by the R\-N\-Alib\par
+ (e.\-g. $ \Sigma = \{A,U,C,G\} $)\par
+
+
+The second parameter, {\itshape structure}, must always point to an allocated block of memory with a size of at least $\mathrm{strlen}(\mathrm{sequence})+1$
+
+If the third parameter is N\-U\-L\-L, global model detail settings are assumed for the folding recursions. Otherwise, the provided parameters are used.
+
+The fourth parameter indicates whether a secondary structure constraint in enhanced dot-\/bracket notation is passed through the structure parameter or not. If so, the characters \char`\"{} $|$ x $<$ $>$ \char`\"{} are recognized to mark bases that are paired, unpaired, paired upstream, or downstream, respectively. Matching brackets \char`\"{} ( ) \char`\"{} denote base pairs, dots \char`\"{}.\char`\"{} are used for unconstrained bases.
+
+To indicate that the R\-N\-A sequence is circular and thus has to be post-\/processed, set the last parameter to non-\/zero
+
+After a successful call of \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()}, a backtracked secondary structure (in dot-\/bracket notation) that exhibits the minimum of free energy will be written to the memory {\itshape structure} is pointing to. The function returns the minimum of free energy for any fold of the sequence given.
+
+\begin{DoxyNote}{Note}
+Open\-M\-P\-: Passing N\-U\-L\-L to the 'parameters' argument involves access to several global model detail variables and thus is not to be considered threadsafe
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold()}, \hyperlink{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{circfold()}, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T}, set\-\_\-energy\-\_\-model(), \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & R\-N\-A sequence \\
+\hline
+{\em structure} & A pointer to the character array where the secondary structure in dot-\/bracket notation will be written to \\
+\hline
+{\em parameters} & A data structure containing the prescaled energy contributions and the model details. (N\-U\-L\-L may be passed, see Open\-M\-P notes above) \\
+\hline
+{\em is\-\_\-constrained} & Switch to indicate that a structure contraint is passed via the structure argument (0==off) \\
+\hline
+{\em is\-\_\-circular} & Switch to (de-\/)activate postprocessing steps in case R\-N\-A sequence is circular (0==off)\\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the minimum free energy (M\-F\-E) in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{\index{Calculating Minimum Free Energy (\-M\-F\-E) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}!fold@{fold}}
+\index{fold@{fold}!Calculating Minimum Free Energy (MFE) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}}
+\subsubsection[{fold}]{\setlength{\rightskip}{0pt plus 5cm}float fold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}
+
+
+Compute minimum free energy and an appropriate secondary structure of an R\-N\-A sequence.
+
+This function essentially does the same thing as \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()}. However, it takes its model details, i.\-e. \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, \hyperlink{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{tetra\-\_\-loop}, \hyperlink{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}{no\-G\-U}, \hyperlink{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{no\-\_\-closing\-G\-U}, \hyperlink{fold__vars_8h_a0afc287c2464866d94858c39175154af}{fold\-\_\-constrained}, \hyperlink{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}{no\-Lonely\-Pairs} from the current global settings within the library
+
+Use \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()} for a completely threadsafe variant
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()}, \hyperlink{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{circfold()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & R\-N\-A sequence \\
+\hline
+{\em structure} & A pointer to the character array where the secondary structure in dot-\/bracket notation will be written to \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the minimum free energy (M\-F\-E) in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{\index{Calculating Minimum Free Energy (\-M\-F\-E) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}!circfold@{circfold}}
+\index{circfold@{circfold}!Calculating Minimum Free Energy (MFE) Structures@{Calculating Minimum Free Energy (\-M\-F\-E) Structures}}
+\subsubsection[{circfold}]{\setlength{\rightskip}{0pt plus 5cm}float circfold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}
+
+
+Compute minimum free energy and an appropriate secondary structure of a circular R\-N\-A sequence.
+
+This function essentially does the same thing as \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()}. However, it takes its model details, i.\-e. \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, \hyperlink{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{tetra\-\_\-loop}, \hyperlink{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}{no\-G\-U}, \hyperlink{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{no\-\_\-closing\-G\-U}, \hyperlink{fold__vars_8h_a0afc287c2464866d94858c39175154af}{fold\-\_\-constrained}, \hyperlink{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}{no\-Lonely\-Pairs} from the current global settings within the library
+
+Use \hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()} for a completely threadsafe variant
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__mfe__fold_gadb973133c241d57c04b253df35e4d34e}{fold\-\_\-par()}, \hyperlink{group__mfe__fold_ga4ac63ab3e8d9a80ced28b8052d94e423}{circfold()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & R\-N\-A sequence \\
+\hline
+{\em structure} & A pointer to the character array where the secondary structure in dot-\/bracket notation will be written to \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+the minimum free energy (M\-F\-E) in kcal/mol
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.33}Parsing and Comparing -\/ Functions to Manipulate Structures}{90}{section.9.33}}
+\newlabel{group__parse}{{9.33}{90}{Parsing and Comparing -\/ Functions to Manipulate Structures\relax }{section.9.33}{}}
+\@setckpt{group__parse}{
+\setcounter{page}{91}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{33}
+\setcounter{subsection}{0}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{71}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{214}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{71}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{1}
+}
--- /dev/null
+\hypertarget{group__parse}{\section{Parsing and Comparing -\/ Functions to Manipulate Structures}
+\label{group__parse}\index{Parsing and Comparing -\/ Functions to Manipulate Structures@{Parsing and Comparing -\/ Functions to Manipulate Structures}}
+}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.12}Partition Function for two hybridized Sequences}{44}{section.9.12}}
+\newlabel{group__pf__cofold}{{9.12}{44}{Partition Function for two hybridized Sequences\relax }{section.9.12}{}}
+\newlabel{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{{9.12}{44}{Functions\relax }{section*.26}{}}
+\citation{bernhart:2006}
+\gdef \LT@xxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\newlabel{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{{9.12}{45}{Variables\relax }{section*.27}{}}
+\newlabel{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{{9.12}{45}{Variables\relax }{section*.27}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.12.1}Detailed Description}{45}{subsection.9.12.1}}
+\@writefile{brf}{\backcite{bernhart:2006}{{45}{9.12.1}{subsection.9.12.1}}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.12.2}Function Documentation}{45}{subsection.9.12.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.1}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{45}{subsubsection.9.12.2.1}}
+\newlabel{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{{9.12.2.1}{45}{co\-\_\-pf\-\_\-fold\relax }{subsubsection.9.12.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.2}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{45}{subsubsection.9.12.2.2}}
+\newlabel{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{{9.12.2.2}{45}{co\-\_\-pf\-\_\-fold\-\_\-par\relax }{subsubsection.9.12.2.2}{}}
+\gdef \LT@xxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.3}export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{46}{subsubsection.9.12.2.3}}
+\newlabel{group__pf__cofold_ga11f0252c1d2c4697253ff4b5bd392d3c}{{9.12.2.3}{46}{export\-\_\-co\-\_\-bppm\relax }{subsubsection.9.12.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.4}update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}{46}{subsubsection.9.12.2.4}}
+\newlabel{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}{{9.12.2.4}{46}{update\-\_\-co\-\_\-pf\-\_\-params\relax }{subsubsection.9.12.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.5}update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par}{46}{subsubsection.9.12.2.5}}
+\newlabel{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{{9.12.2.5}{46}{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par\relax }{subsubsection.9.12.2.5}{}}
+\gdef \LT@xxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.6}compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities}{47}{subsubsection.9.12.2.6}}
+\newlabel{group__pf__cofold_ga15ae04ac5ab84e876dcf0093120cb617}{{9.12.2.6}{47}{compute\-\_\-probabilities\relax }{subsubsection.9.12.2.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.12.2.7}get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations}{47}{subsubsection.9.12.2.7}}
+\newlabel{group__pf__cofold_ga5545cb936ac4ff93c7d699d46e72e8c7}{{9.12.2.7}{47}{get\-\_\-concentrations\relax }{subsubsection.9.12.2.7}{}}
+\@setckpt{group__pf__cofold}{
+\setcounter{page}{48}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{12}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{7}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{26}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{77}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{26}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+76fae59d04c592d4339110eea110c20a
\ No newline at end of file
--- /dev/null
+\hypertarget{group__pf__cofold}{\section{Partition Function for two hybridized Sequences}
+\label{group__pf__cofold}\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+}
+
+
+Partition Function Cofolding.
+
+
+Collaboration diagram for Partition Function for two hybridized Sequences\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__pf__cofold}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{part__func__co_8h}{part\-\_\-func\-\_\-co.\-h}
+\begin{DoxyCompactList}\small\item\em Partition function for two R\-N\-A sequences. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structcofoldF}{cofold\-F} \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\-\_\-pf\-\_\-fold} (char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Calculate partition function and base pair probabilities. \end{DoxyCompactList}\item
+\hyperlink{structcofoldF}{cofold\-F} \hyperlink{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{co\-\_\-pf\-\_\-fold\-\_\-par} (char $\ast$sequence, char $\ast$structure, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters, int calculate\-\_\-bppm, int is\-\_\-constrained)
+\begin{DoxyCompactList}\small\item\em Calculate partition function and base pair probabilities. \end{DoxyCompactList}\item
+double $\ast$ \hyperlink{group__pf__cofold_ga11f0252c1d2c4697253ff4b5bd392d3c}{export\-\_\-co\-\_\-bppm} (void)
+\begin{DoxyCompactList}\small\item\em Get a pointer to the base pair probability array. \end{DoxyCompactList}\item
+\hypertarget{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{void \hyperlink{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{free\-\_\-co\-\_\-pf\-\_\-arrays} (void)}\label{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}
+
+\begin{DoxyCompactList}\small\item\em Free the memory occupied by \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\-\_\-pf\-\_\-fold()} \end{DoxyCompactList}\item
+void \hyperlink{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}{update\-\_\-co\-\_\-pf\-\_\-params} (int length)
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par} (int length, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__cofold_ga15ae04ac5ab84e876dcf0093120cb617}{compute\-\_\-probabilities} (double F\-A\-B, double F\-E\-A, double F\-E\-B, struct \hyperlink{structplist}{plist} $\ast$pr\-A\-B, struct \hyperlink{structplist}{plist} $\ast$pr\-A, struct \hyperlink{structplist}{plist} $\ast$pr\-B, int Alength)
+\begin{DoxyCompactList}\small\item\em Compute Boltzmann probabilities of dimerization without homodimers. \end{DoxyCompactList}\item
+\hyperlink{structConcEnt}{Conc\-Ent} $\ast$ \hyperlink{group__pf__cofold_ga5545cb936ac4ff93c7d699d46e72e8c7}{get\-\_\-concentrations} (double F\-E\-A\-B, double F\-E\-A\-A, double F\-E\-B\-B, double F\-E\-A, double F\-E\-B, double $\ast$startconc)
+\begin{DoxyCompactList}\small\item\em Given two start monomer concentrations a and b, compute the concentrations in thermodynamic equilibrium of all dimers and the monomers. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{int \hyperlink{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{mirnatog}}\label{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}
+
+\begin{DoxyCompactList}\small\item\em Toggles no intrabp in 2nd mol. \end{DoxyCompactList}\item
+\hypertarget{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{double \hyperlink{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{F\-\_\-monomer} \mbox{[}2\mbox{]}}\label{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}
+
+\begin{DoxyCompactList}\small\item\em Free energies of the two monomers. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Partition Function Cofolding. To simplify the implementation the partition function computation is done internally in a null model that does not include the duplex initiation energy, i.\-e. the entropic penalty for producing a dimer from two monomers). The resulting free energies and pair probabilities are initially relative to that null model. In a second step the free energies can be corrected to include the dimerization penalty, and the pair probabilities can be divided into the conditional pair probabilities given that a re dimer is formed or not formed. See\cite{bernhart:2006} for further details.
+
+\subsection{Function Documentation}
+\hypertarget{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!co\-\_\-pf\-\_\-fold@{co\-\_\-pf\-\_\-fold}}
+\index{co\-\_\-pf\-\_\-fold@{co\-\_\-pf\-\_\-fold}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{co\-\_\-pf\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}{\bf cofold\-F} co\-\_\-pf\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}
+
+
+Calculate partition function and base pair probabilities.
+
+This is the cofold partition function folding. The second molecule starts at the \hyperlink{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point} nucleotide.
+
+\begin{DoxyNote}{Note}
+Open\-M\-P\-: Since this function relies on the global parameters \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\-\_\-backtrack}, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature} and \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale} it is not threadsafe according to concurrent changes in these variables! Use \hyperlink{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{co\-\_\-pf\-\_\-fold\-\_\-par()} instead to circumvent this issue.
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{co\-\_\-pf\-\_\-fold\-\_\-par()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & Concatenated R\-N\-A sequences \\
+\hline
+{\em structure} & Will hold the structure or constraints \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+\hyperlink{structcofoldF}{cofold\-F} structure containing a set of energies needed for concentration computations.
+\end{DoxyReturn}
+\hypertarget{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!co\-\_\-pf\-\_\-fold\-\_\-par@{co\-\_\-pf\-\_\-fold\-\_\-par}}
+\index{co\-\_\-pf\-\_\-fold\-\_\-par@{co\-\_\-pf\-\_\-fold\-\_\-par}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{co\-\_\-pf\-\_\-fold\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}{\bf cofold\-F} co\-\_\-pf\-\_\-fold\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{parameters, }
+\item[{int}]{calculate\-\_\-bppm, }
+\item[{int}]{is\-\_\-constrained}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}
+
+
+Calculate partition function and base pair probabilities.
+
+This is the cofold partition function folding. The second molecule starts at the \hyperlink{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{cut\-\_\-point} nucleotide.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors()}, \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\-\_\-pf\-\_\-fold()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & Concatenated R\-N\-A sequences \\
+\hline
+{\em structure} & Pointer to the structure constraint \\
+\hline
+{\em parameters} & Data structure containing the precalculated Boltzmann factors \\
+\hline
+{\em calculate\-\_\-bppm} & Switch to turn Base pair probability calculations on/off (0==off) \\
+\hline
+{\em is\-\_\-constrained} & Switch to indicate that a structure contraint is passed via the structure argument (0==off) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+\hyperlink{structcofoldF}{cofold\-F} structure containing a set of energies needed for concentration computations.
+\end{DoxyReturn}
+\hypertarget{group__pf__cofold_ga11f0252c1d2c4697253ff4b5bd392d3c}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!export\-\_\-co\-\_\-bppm@{export\-\_\-co\-\_\-bppm}}
+\index{export\-\_\-co\-\_\-bppm@{export\-\_\-co\-\_\-bppm}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{export\-\_\-co\-\_\-bppm}]{\setlength{\rightskip}{0pt plus 5cm}double$\ast$ export\-\_\-co\-\_\-bppm (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_ga11f0252c1d2c4697253ff4b5bd392d3c}
+
+
+Get a pointer to the base pair probability array.
+
+Accessing the base pair probabilities for a pair (i,j) is achieved by \begin{DoxyVerb}FLT_OR_DBL *pr = export_bppm(); pr_ij = pr[iindx[i]-j]; \end{DoxyVerb}
+
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx()}
+\end{DoxySeeAlso}
+\begin{DoxyReturn}{Returns}
+A pointer to the base pair probability array
+\end{DoxyReturn}
+\hypertarget{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!update\-\_\-co\-\_\-pf\-\_\-params@{update\-\_\-co\-\_\-pf\-\_\-params}}
+\index{update\-\_\-co\-\_\-pf\-\_\-params@{update\-\_\-co\-\_\-pf\-\_\-params}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{update\-\_\-co\-\_\-pf\-\_\-params}]{\setlength{\rightskip}{0pt plus 5cm}void update\-\_\-co\-\_\-pf\-\_\-params (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}
+
+
+Recalculate energy parameters.
+
+This function recalculates all energy parameters given the current model settings.
+
+\begin{DoxyNote}{Note}
+This function relies on the global variables \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale}, \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles} and \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}. Thus it might not be threadsafe in certain situations. Use \hyperlink{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par()} instead.
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors()}, \hyperlink{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & Length of the current R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par@{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par}}
+\index{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par@{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}void update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{int}]{length, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{parameters}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}
+
+
+Recalculate energy parameters.
+
+This function recalculates all energy parameters given the current model settings. It's second argument can either be N\-U\-L\-L or a data structure containing the precomputed Boltzmann factors. In the first scenario, the necessary data structure will be created automatically according to the current global model settings, i.\-e. this mode might not be threadsafe. However, if the provided data structure is not N\-U\-L\-L, threadsafety for the model parameters \hyperlink{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{dangles}, \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale} and \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature} is regained, since their values are taken from this data structure during subsequent calculations.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors()}, \hyperlink{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}{update\-\_\-co\-\_\-pf\-\_\-params()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & Length of the current R\-N\-A sequence \\
+\hline
+{\em parameters} & data structure containing the precomputed Boltzmann factors \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__pf__cofold_ga15ae04ac5ab84e876dcf0093120cb617}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!compute\-\_\-probabilities@{compute\-\_\-probabilities}}
+\index{compute\-\_\-probabilities@{compute\-\_\-probabilities}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{compute\-\_\-probabilities}]{\setlength{\rightskip}{0pt plus 5cm}void compute\-\_\-probabilities (
+\begin{DoxyParamCaption}
+\item[{double}]{F\-A\-B, }
+\item[{double}]{F\-E\-A, }
+\item[{double}]{F\-E\-B, }
+\item[{struct {\bf plist} $\ast$}]{pr\-A\-B, }
+\item[{struct {\bf plist} $\ast$}]{pr\-A, }
+\item[{struct {\bf plist} $\ast$}]{pr\-B, }
+\item[{int}]{Alength}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_ga15ae04ac5ab84e876dcf0093120cb617}
+
+
+Compute Boltzmann probabilities of dimerization without homodimers.
+
+Given the pair probabilities and free energies (in the null model) for a dimer A\-B and the two constituent monomers A and B, compute the conditional pair probabilities given that a dimer A\-B actually forms. Null model pair probabilities are given as a list as produced by \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr()}, the dimer probabilities 'pr\-A\-B' are modified in place.
+
+
+\begin{DoxyParams}{Parameters}
+{\em F\-A\-B} & free energy of dimer A\-B \\
+\hline
+{\em F\-E\-A} & free energy of monomer A \\
+\hline
+{\em F\-E\-B} & free energy of monomer B \\
+\hline
+{\em pr\-A\-B} & pair probabilities for dimer \\
+\hline
+{\em pr\-A} & pair probabilities monomer \\
+\hline
+{\em pr\-B} & pair probabilities monomer \\
+\hline
+{\em Alength} & Length of molecule A \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__pf__cofold_ga5545cb936ac4ff93c7d699d46e72e8c7}{\index{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!get\-\_\-concentrations@{get\-\_\-concentrations}}
+\index{get\-\_\-concentrations@{get\-\_\-concentrations}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}}
+\subsubsection[{get\-\_\-concentrations}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Conc\-Ent}$\ast$ get\-\_\-concentrations (
+\begin{DoxyParamCaption}
+\item[{double}]{F\-E\-A\-B, }
+\item[{double}]{F\-E\-A\-A, }
+\item[{double}]{F\-E\-B\-B, }
+\item[{double}]{F\-E\-A, }
+\item[{double}]{F\-E\-B, }
+\item[{double $\ast$}]{startconc}
+\end{DoxyParamCaption}
+)}}\label{group__pf__cofold_ga5545cb936ac4ff93c7d699d46e72e8c7}
+
+
+Given two start monomer concentrations a and b, compute the concentrations in thermodynamic equilibrium of all dimers and the monomers.
+
+This function takes an array 'startconc' of input concentrations with alternating entries for the initial concentrations of molecules A and B (terminated by two zeroes), then computes the resulting equilibrium concentrations from the free energies for the dimers. Dimer free energies should be the dimer-\/only free energies, i.\-e. the Fc\-A\-B entries from the \hyperlink{structcofoldF}{cofold\-F} struct.
+
+
+\begin{DoxyParams}{Parameters}
+{\em F\-E\-A\-B} & Free energy of A\-B dimer (Fc\-A\-B entry) \\
+\hline
+{\em F\-E\-A\-A} & Free energy of A\-A dimer (Fc\-A\-B entry) \\
+\hline
+{\em F\-E\-B\-B} & Free energy of B\-B dimer (Fc\-A\-B entry) \\
+\hline
+{\em F\-E\-A} & Free energy of monomer A \\
+\hline
+{\em F\-E\-B} & Free energy of monomer B \\
+\hline
+{\em startconc} & List of start concentrations \mbox{[}a0\mbox{]},\mbox{[}b0\mbox{]},\mbox{[}a1\mbox{]},\mbox{[}b1\mbox{]},...,\mbox{[}an\mbox{]}\mbox{[}bn\mbox{]},\mbox{[}0\mbox{]},\mbox{[}0\mbox{]} \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+\hyperlink{structConcEnt}{Conc\-Ent} array containing the equilibrium energies and start concentrations
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.3}Calculating Partition Functions and Pair Probabilities}{25}{section.9.3}}
+\newlabel{group__pf__fold}{{9.3}{25}{Calculating Partition Functions and Pair Probabilities\relax }{section.9.3}{}}
+\citation{mccaskill:1990}
+\newlabel{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{{9.3}{26}{Functions\relax }{section*.12}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.1}Detailed Description}{26}{subsection.9.3.1}}
+\@writefile{brf}{\backcite{mccaskill:1990}{{26}{9.3.1}{subsection.9.3.1}}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.2}Function Documentation}{26}{subsection.9.3.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.1}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{26}{subsubsection.9.3.2.1}}
+\newlabel{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{{9.3.2.1}{26}{pf\-\_\-fold\-\_\-par\relax }{subsubsection.9.3.2.1}{}}
+\gdef \LT@iv {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.2}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{27}{subsubsection.9.3.2.2}}
+\newlabel{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{{9.3.2.2}{27}{pf\-\_\-fold\relax }{subsubsection.9.3.2.2}{}}
+\gdef \LT@v {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@vi {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.3}pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{28}{subsubsection.9.3.2.3}}
+\newlabel{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{{9.3.2.3}{28}{pf\-\_\-circ\-\_\-fold\relax }{subsubsection.9.3.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.4}free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{29}{subsubsection.9.3.2.4}}
+\newlabel{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{{9.3.2.4}{29}{free\-\_\-pf\-\_\-arrays\relax }{subsubsection.9.3.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.5}update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}{29}{subsubsection.9.3.2.5}}
+\newlabel{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}{{9.3.2.5}{29}{update\-\_\-pf\-\_\-params\relax }{subsubsection.9.3.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.6}export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{29}{subsubsection.9.3.2.6}}
+\newlabel{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{{9.3.2.6}{29}{export\-\_\-bppm\relax }{subsubsection.9.3.2.6}{}}
+\gdef \LT@vii {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\gdef \LT@viii {\LT@entry
+ {1}{55.42702pt}\LT@entry
+ {1}{77.78368pt}\LT@entry
+ {1}{321.34094pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.7}assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr}{30}{subsubsection.9.3.2.7}}
+\newlabel{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{{9.3.2.7}{30}{assign\-\_\-plist\-\_\-from\-\_\-pr\relax }{subsubsection.9.3.2.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.8}get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{30}{subsubsection.9.3.2.8}}
+\newlabel{group__pf__fold_ga18607e79e106cad827f482eedd2f632e}{{9.3.2.8}{30}{get\-\_\-pf\-\_\-arrays\relax }{subsubsection.9.3.2.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.9}mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{30}{subsubsection.9.3.2.9}}
+\newlabel{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{{9.3.2.9}{30}{mean\-\_\-bp\-\_\-distance\relax }{subsubsection.9.3.2.9}{}}
+\gdef \LT@ix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@x {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.2.10}mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr}{31}{subsubsection.9.3.2.10}}
+\newlabel{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{{9.3.2.10}{31}{mean\-\_\-bp\-\_\-distance\-\_\-pr\relax }{subsubsection.9.3.2.10}{}}
+\@setckpt{group__pf__fold}{
+\setcounter{page}{32}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{3}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{10}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{10}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{35}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{10}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+21466cc33d0a2de730cde246ae769318
\ No newline at end of file
--- /dev/null
+\hypertarget{group__pf__fold}{\section{Calculating Partition Functions and Pair Probabilities}
+\label{group__pf__fold}\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+}
+
+
+This section provides information about all functions and variables related to the calculation of the partition function and base pair probabilities.
+
+
+Collaboration diagram for Calculating Partition Functions and Pair Probabilities\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__pf__fold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__mea__fold}{Compute the structure with maximum expected accuracy (\-M\-E\-A)}
+\item
+\hyperlink{group__centroid__fold}{Compute the centroid structure}
+\item
+\hyperlink{group__pf__cofold}{Partition Function for two hybridized Sequences}
+\begin{DoxyCompactList}\small\item\em Partition Function Cofolding. \end{DoxyCompactList}\item
+\hyperlink{group__up__cofold}{Partition Function for two hybridized Sequences as a stepwise Process}
+\begin{DoxyCompactList}\small\item\em Partition Function Cofolding as a stepwise process. \end{DoxyCompactList}\item
+\hyperlink{group__consensus__pf__fold}{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}
+\item
+\hyperlink{group__local__pf__fold}{Partition functions for locally stable secondary structures}
+\item
+\hyperlink{group__kl__neighborhood__pf}{Calculate Partition Functions of a Distance Based Partitioning}
+\begin{DoxyCompactList}\small\item\em Compute the partition function and stochastically sample secondary structures for a partitioning of the secondary structure space according to the base pair distance to two fixed reference structures. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{part__func_8h}{part\-\_\-func.\-h}
+\begin{DoxyCompactList}\small\item\em Partition function of single R\-N\-A sequences. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par} (const char $\ast$sequence, char $\ast$structure, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters, int calculate\-\_\-bppm, int is\-\_\-constrained, int is\-\_\-circular)
+\begin{DoxyCompactList}\small\item\em Compute the partition function $Q$ for a given R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute the partition function $Q$ of an R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute the partition function of a circular R\-N\-A sequence. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\-\_\-pf\-\_\-arrays} (void)
+\begin{DoxyCompactList}\small\item\em Free arrays for the partition function recursions. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}{update\-\_\-pf\-\_\-params} (int length)
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+\hypertarget{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{void \hyperlink{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{update\-\_\-pf\-\_\-params\-\_\-par} (int length, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)}\label{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}
+
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+double $\ast$ \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm} (void)
+\begin{DoxyCompactList}\small\item\em Get a pointer to the base pair probability array
+
+Accessing the base pair probabilities for a pair (i,j) is achieved by. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr} (\hyperlink{structplist}{plist} $\ast$$\ast$pl, double $\ast$probs, int length, double cutoff)
+\begin{DoxyCompactList}\small\item\em Create a plist from a probability matrix. \end{DoxyCompactList}\item
+int \hyperlink{group__pf__fold_ga18607e79e106cad827f482eedd2f632e}{get\-\_\-pf\-\_\-arrays} (short $\ast$$\ast$S\-\_\-p, short $\ast$$\ast$S1\-\_\-p, char $\ast$$\ast$ptype\-\_\-p, double $\ast$$\ast$qb\-\_\-p, double $\ast$$\ast$qm\-\_\-p, double $\ast$$\ast$q1k\-\_\-p, double $\ast$$\ast$qln\-\_\-p)
+\begin{DoxyCompactList}\small\item\em Get the pointers to (almost) all relavant computation arrays used in partition function computation. \end{DoxyCompactList}\item
+double \hyperlink{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{mean\-\_\-bp\-\_\-distance} (int length)
+\begin{DoxyCompactList}\small\item\em Get the mean base pair distance of the last partition function computation. \end{DoxyCompactList}\item
+double \hyperlink{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{mean\-\_\-bp\-\_\-distance\-\_\-pr} (int length, double $\ast$\hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr})
+\begin{DoxyCompactList}\small\item\em Get the mean base pair distance in the thermodynamic ensemble. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+This section provides information about all functions and variables related to the calculation of the partition function and base pair probabilities. Instead of the minimum free energy structure the partition function of all possible structures and from that the pairing probability for every possible pair can be calculated, using a dynamic programming algorithm as described in\cite{mccaskill:1990}.
+
+\subsection{Function Documentation}
+\hypertarget{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!pf\-\_\-fold\-\_\-par@{pf\-\_\-fold\-\_\-par}}
+\index{pf\-\_\-fold\-\_\-par@{pf\-\_\-fold\-\_\-par}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{pf\-\_\-fold\-\_\-par}]{\setlength{\rightskip}{0pt plus 5cm}float pf\-\_\-fold\-\_\-par (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{parameters, }
+\item[{int}]{calculate\-\_\-bppm, }
+\item[{int}]{is\-\_\-constrained, }
+\item[{int}]{is\-\_\-circular}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}
+
+
+Compute the partition function $Q$ for a given R\-N\-A sequence.
+
+If {\itshape structure} is not a N\-U\-L\-L pointer on input, it contains on return a string consisting of the letters \char`\"{} . , $|$ \{ \} ( ) \char`\"{} denoting bases that are essentially unpaired, weakly paired, strongly paired without preference, weakly upstream (downstream) paired, or strongly up-\/ (down-\/)stream paired bases, respectively. If \hyperlink{fold__vars_8h_a0afc287c2464866d94858c39175154af}{fold\-\_\-constrained} is not 0, the {\itshape structure} string is interpreted on input as a list of constraints for the folding. The character \char`\"{}x\char`\"{} marks bases that must be unpaired, matching brackets \char`\"{} ( ) \char`\"{} denote base pairs, all other characters are ignored. Any pairs conflicting with the constraint will be forbidden. This is usually sufficient to ensure the constraints are honored. If tha parameter calculate\-\_\-bppm is set to 0 base pairing probabilities will not be computed (saving C\-P\-U time), otherwise after calculations took place \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} will contain the probability that bases {\itshape i} and {\itshape j} pair.
+
+\begin{DoxyNote}{Note}
+The global array \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} is deprecated and the user who wants the calculated base pair probabilities for further computations is advised to use the function \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()}
+\end{DoxyNote}
+\begin{DoxyPostcond}{Postcondition}
+After successful run the hidden folding matrices are filled with the appropriate Boltzmann factors. Depending on whether the global variable \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\-\_\-backtrack} was set the base pair probabilities are already computed and may be accessed for further usage via the \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()} function. A call of \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\-\_\-pf\-\_\-arrays()} will free all memory allocated by this function. Successive calls will first free previously allocated memory before starting the computation.
+\end{DoxyPostcond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}, \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()}, \hyperlink{part__func_8h_a1f562d463c14d4703d9656056200eb38}{bppm\-\_\-to\-\_\-structure()}, \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()}, \hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors()}, \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\-\_\-pf\-\_\-arrays()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt in} & {\em sequence} & The R\-N\-A sequence input \\
+\hline
+\mbox{\tt in,out} & {\em structure} & A pointer to a char array where a base pair probability information can be stored in a pseudo-\/dot-\/bracket notation (may be N\-U\-L\-L, too) \\
+\hline
+\mbox{\tt in} & {\em parameters} & Data structure containing the precalculated Boltzmann factors \\
+\hline
+\mbox{\tt in} & {\em calculate\-\_\-bppm} & Switch to Base pair probability calculations on/off (0==off) \\
+\hline
+\mbox{\tt in} & {\em is\-\_\-constrained} & Switch to indicate that a structure contraint is passed via the structure argument (0==off) \\
+\hline
+\mbox{\tt in} & {\em is\-\_\-circular} & Switch to (de-\/)activate postprocessing steps in case R\-N\-A sequence is circular (0==off) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Gibbs free energy of the ensemble ( $G = -RT \cdot \log(Q) $) in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!pf\-\_\-fold@{pf\-\_\-fold}}
+\index{pf\-\_\-fold@{pf\-\_\-fold}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{pf\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}float pf\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}
+
+
+Compute the partition function $Q$ of an R\-N\-A sequence.
+
+If {\itshape structure} is not a N\-U\-L\-L pointer on input, it contains on return a string consisting of the letters \char`\"{} . , $|$ \{ \} ( ) \char`\"{} denoting bases that are essentially unpaired, weakly paired, strongly paired without preference, weakly upstream (downstream) paired, or strongly up-\/ (down-\/)stream paired bases, respectively. If \hyperlink{fold__vars_8h_a0afc287c2464866d94858c39175154af}{fold\-\_\-constrained} is not 0, the {\itshape structure} string is interpreted on input as a list of constraints for the folding. The character \char`\"{}x\char`\"{} marks bases that must be unpaired, matching brackets \char`\"{} ( ) \char`\"{} denote base pairs, all other characters are ignored. Any pairs conflicting with the constraint will be forbidden. This is usually sufficient to ensure the constraints are honored. If \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\-\_\-backtrack} has been set to 0 base pairing probabilities will not be computed (saving C\-P\-U time), otherwise \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} will contain the probability that bases {\itshape i} and {\itshape j} pair.
+
+\begin{DoxyNote}{Note}
+The global array \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} is deprecated and the user who wants the calculated base pair probabilities for further computations is advised to use the function \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()}.
+
+{\bfseries Open\-M\-P\-:} This function is not entirely threadsafe. While the recursions are working on their own copies of data the model details for the recursions are determined from the global settings just before entering the recursions. Consider using \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()} for a really threadsafe implementation.
+\end{DoxyNote}
+\begin{DoxyPrecond}{Precondition}
+This function takes its model details from the global variables provided in {\itshape R\-N\-Alib}
+\end{DoxyPrecond}
+\begin{DoxyPostcond}{Postcondition}
+After successful run the hidden folding matrices are filled with the appropriate Boltzmann factors. Depending on whether the global variable \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\-\_\-backtrack} was set the base pair probabilities are already computed and may be accessed for further usage via the \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()} function. A call of \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\-\_\-pf\-\_\-arrays()} will free all memory allocated by this function. Successive calls will first free previously allocated memory before starting the computation.
+\end{DoxyPostcond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()}, \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()}, \hyperlink{part__func_8h_a1f562d463c14d4703d9656056200eb38}{bppm\-\_\-to\-\_\-structure()}, \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The R\-N\-A sequence input \\
+\hline
+{\em structure} & A pointer to a char array where a base pair probability information can be stored in a pseudo-\/dot-\/bracket notation (may be N\-U\-L\-L, too) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Gibbs free energy of the ensemble ( $G = -RT \cdot \log(Q) $) in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!pf\-\_\-circ\-\_\-fold@{pf\-\_\-circ\-\_\-fold}}
+\index{pf\-\_\-circ\-\_\-fold@{pf\-\_\-circ\-\_\-fold}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{pf\-\_\-circ\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}float pf\-\_\-circ\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{sequence, }
+\item[{char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}
+
+
+Compute the partition function of a circular R\-N\-A sequence.
+
+\begin{DoxyNote}{Note}
+The global array \hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr} is deprecated and the user who wants the calculated base pair probabilities for further computations is advised to use the function \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()}.
+
+{\bfseries Open\-M\-P\-:} This function is not entirely threadsafe. While the recursions are working on their own copies of data the model details for the recursions are determined from the global settings just before entering the recursions. Consider using \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()} for a really threadsafe implementation.
+\end{DoxyNote}
+\begin{DoxyPrecond}{Precondition}
+This function takes its model details from the global variables provided in {\itshape R\-N\-Alib}
+\end{DoxyPrecond}
+\begin{DoxyPostcond}{Postcondition}
+After successful run the hidden folding matrices are filled with the appropriate Boltzmann factors. Depending on whether the global variable \hyperlink{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{do\-\_\-backtrack} was set the base pair probabilities are already computed and may be accessed for further usage via the \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm()} function. A call of \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\-\_\-pf\-\_\-arrays()} will free all memory allocated by this function. Successive calls will first free previously allocated memory before starting the computation.
+\end{DoxyPostcond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()}, \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt in} & {\em sequence} & The R\-N\-A sequence input \\
+\hline
+\mbox{\tt in,out} & {\em structure} & A pointer to a char array where a base pair probability information can be stored in a pseudo-\/dot-\/bracket notation (may be N\-U\-L\-L, too) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Gibbs free energy of the ensemble ( $G = -RT \cdot \log(Q) $) in kcal/mol
+\end{DoxyReturn}
+\hypertarget{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!free\-\_\-pf\-\_\-arrays@{free\-\_\-pf\-\_\-arrays}}
+\index{free\-\_\-pf\-\_\-arrays@{free\-\_\-pf\-\_\-arrays}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{free\-\_\-pf\-\_\-arrays}]{\setlength{\rightskip}{0pt plus 5cm}void free\-\_\-pf\-\_\-arrays (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}
+
+
+Free arrays for the partition function recursions.
+
+Call this function if you want to free all allocated memory associated with the partition function forward recursion. \begin{DoxyNote}{Note}
+Successive calls of \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}, \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()} already check if they should free any memory from a previous run.
+
+{\bfseries Open\-M\-P notice\-:}\par
+ This function should be called before leaving a thread in order to avoid leaking memory
+\end{DoxyNote}
+\begin{DoxyPostcond}{Postcondition}
+All memory allocated by \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()}, \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} or \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()} will be free'd
+\end{DoxyPostcond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()}, \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}, \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()}
+\end{DoxySeeAlso}
+\hypertarget{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!update\-\_\-pf\-\_\-params@{update\-\_\-pf\-\_\-params}}
+\index{update\-\_\-pf\-\_\-params@{update\-\_\-pf\-\_\-params}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{update\-\_\-pf\-\_\-params}]{\setlength{\rightskip}{0pt plus 5cm}void update\-\_\-pf\-\_\-params (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}
+
+
+Recalculate energy parameters.
+
+Call this function to recalculate the pair matrix and energy parameters after a change in folding parameters like \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature} \hypertarget{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!export\-\_\-bppm@{export\-\_\-bppm}}
+\index{export\-\_\-bppm@{export\-\_\-bppm}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{export\-\_\-bppm}]{\setlength{\rightskip}{0pt plus 5cm}double$\ast$ export\-\_\-bppm (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}
+
+
+Get a pointer to the base pair probability array
+
+Accessing the base pair probabilities for a pair (i,j) is achieved by.
+
+
+\begin{DoxyCode}
+FLT\_OR\_DBL *pr = \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\_bppm}();
+pr\_ij = pr[iindx[i]-j];
+\end{DoxyCode}
+
+
+\begin{DoxyPrecond}{Precondition}
+Call \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()}, \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} or \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()} first to fill the base pair probability array
+\end{DoxyPrecond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}, \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()}, \hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx()}
+\end{DoxySeeAlso}
+\begin{DoxyReturn}{Returns}
+A pointer to the base pair probability array
+\end{DoxyReturn}
+\hypertarget{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!assign\-\_\-plist\-\_\-from\-\_\-pr@{assign\-\_\-plist\-\_\-from\-\_\-pr}}
+\index{assign\-\_\-plist\-\_\-from\-\_\-pr@{assign\-\_\-plist\-\_\-from\-\_\-pr}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{assign\-\_\-plist\-\_\-from\-\_\-pr}]{\setlength{\rightskip}{0pt plus 5cm}void assign\-\_\-plist\-\_\-from\-\_\-pr (
+\begin{DoxyParamCaption}
+\item[{{\bf plist} $\ast$$\ast$}]{pl, }
+\item[{double $\ast$}]{probs, }
+\item[{int}]{length, }
+\item[{double}]{cutoff}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}
+
+
+Create a plist from a probability matrix.
+
+The probability matrix given is parsed and all pair probabilities above the given threshold are used to create an entry in the plist
+
+The end of the plist is marked by sequence positions i as well as j equal to 0. This condition should be used to stop looping over its entries
+
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt out} & {\em pl} & A pointer to the plist that is to be created \\
+\hline
+\mbox{\tt in} & {\em probs} & The probability matrix used for creting the plist \\
+\hline
+\mbox{\tt in} & {\em length} & The length of the R\-N\-A sequence \\
+\hline
+\mbox{\tt in} & {\em cutoff} & The cutoff value \\
+\hline
+\end{DoxyParams}
+\hypertarget{group__pf__fold_ga18607e79e106cad827f482eedd2f632e}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!get\-\_\-pf\-\_\-arrays@{get\-\_\-pf\-\_\-arrays}}
+\index{get\-\_\-pf\-\_\-arrays@{get\-\_\-pf\-\_\-arrays}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{get\-\_\-pf\-\_\-arrays}]{\setlength{\rightskip}{0pt plus 5cm}int get\-\_\-pf\-\_\-arrays (
+\begin{DoxyParamCaption}
+\item[{short $\ast$$\ast$}]{S\-\_\-p, }
+\item[{short $\ast$$\ast$}]{S1\-\_\-p, }
+\item[{char $\ast$$\ast$}]{ptype\-\_\-p, }
+\item[{double $\ast$$\ast$}]{qb\-\_\-p, }
+\item[{double $\ast$$\ast$}]{qm\-\_\-p, }
+\item[{double $\ast$$\ast$}]{q1k\-\_\-p, }
+\item[{double $\ast$$\ast$}]{qln\-\_\-p}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga18607e79e106cad827f482eedd2f632e}
+
+
+Get the pointers to (almost) all relavant computation arrays used in partition function computation.
+
+\begin{DoxyPrecond}{Precondition}
+In order to assign meaningful pointers, you have to call \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()} or \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} first!
+\end{DoxyPrecond}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()}, \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}, \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}[1]{Parameters}
+\mbox{\tt out} & {\em S\-\_\-p} & A pointer to the 'S' array (integer representation of nucleotides) \\
+\hline
+\mbox{\tt out} & {\em S1\-\_\-p} & A pointer to the 'S1' array (2nd integer representation of nucleotides) \\
+\hline
+\mbox{\tt out} & {\em ptype\-\_\-p} & A pointer to the pair type matrix \\
+\hline
+\mbox{\tt out} & {\em qb\-\_\-p} & A pointer to the Q$^{\mbox{B}}$ matrix \\
+\hline
+\mbox{\tt out} & {\em qm\-\_\-p} & A pointer to the Q$^{\mbox{M}}$ matrix \\
+\hline
+\mbox{\tt out} & {\em q1k\-\_\-p} & A pointer to the 5' slice of the Q matrix ( $q1k(k) = Q(1, k)$) \\
+\hline
+\mbox{\tt out} & {\em qln\-\_\-p} & A pointer to the 3' slice of the Q matrix ( $qln(l) = Q(l, n)$) \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+Non Zero if everything went fine, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!mean\-\_\-bp\-\_\-distance@{mean\-\_\-bp\-\_\-distance}}
+\index{mean\-\_\-bp\-\_\-distance@{mean\-\_\-bp\-\_\-distance}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{mean\-\_\-bp\-\_\-distance}]{\setlength{\rightskip}{0pt plus 5cm}double mean\-\_\-bp\-\_\-distance (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}
+
+
+Get the mean base pair distance of the last partition function computation.
+
+\begin{DoxyNote}{Note}
+To ensure thread-\/safety, use the function \hyperlink{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{mean\-\_\-bp\-\_\-distance\-\_\-pr()} instead!
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{mean\-\_\-bp\-\_\-distance\-\_\-pr()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+mean base pair distance in thermodynamic ensemble
+\end{DoxyReturn}
+\hypertarget{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{\index{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!mean\-\_\-bp\-\_\-distance\-\_\-pr@{mean\-\_\-bp\-\_\-distance\-\_\-pr}}
+\index{mean\-\_\-bp\-\_\-distance\-\_\-pr@{mean\-\_\-bp\-\_\-distance\-\_\-pr}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}}
+\subsubsection[{mean\-\_\-bp\-\_\-distance\-\_\-pr}]{\setlength{\rightskip}{0pt plus 5cm}double mean\-\_\-bp\-\_\-distance\-\_\-pr (
+\begin{DoxyParamCaption}
+\item[{int}]{length, }
+\item[{double $\ast$}]{pr}
+\end{DoxyParamCaption}
+)}}\label{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}
+
+
+Get the mean base pair distance in the thermodynamic ensemble.
+
+This is a threadsafe implementation of \hyperlink{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}{mean\-\_\-bp\-\_\-dist()} !
+
+$<d> = \sum_{a,b} p_a p_b d(S_a,S_b)$\par
+ this can be computed from the pair probs $p_ij$ as\par
+ $<d> = \sum_{ij} p_{ij}(1-p_{ij})$
+
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & The length of the sequence \\
+\hline
+{\em pr} & The matrix containing the base pair probabilities \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The mean pair distance of the structure ensemble
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.6}Enumerating Suboptimal Structures}{35}{section.9.6}}
+\newlabel{group__subopt__fold}{{9.6}{35}{Enumerating Suboptimal Structures\relax }{section.9.6}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.6.1}Detailed Description}{35}{subsection.9.6.1}}
+\@setckpt{group__subopt__fold}{
+\setcounter{page}{36}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{6}
+\setcounter{subsection}{1}
+\setcounter{subsubsection}{0}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{12}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{43}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{12}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{2}
+}
--- /dev/null
+59f17c54c4f4fd134554ebc0cad5b1e1
\ No newline at end of file
--- /dev/null
+\hypertarget{group__subopt__fold}{\section{Enumerating Suboptimal Structures}
+\label{group__subopt__fold}\index{Enumerating Suboptimal Structures@{Enumerating Suboptimal Structures}}
+}
+Collaboration diagram for Enumerating Suboptimal Structures\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__subopt__fold}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__subopt__zuker}{Suboptimal structures according to Zuker et al. 1989}
+\item
+\hyperlink{group__subopt__wuchty}{Suboptimal structures within an energy band arround the M\-F\-E}
+\item
+\hyperlink{group__subopt__stochbt}{Stochastic backtracking in the Ensemble}
+\end{DoxyCompactItemize}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{subopt_8h}{subopt.\-h}
+\begin{DoxyCompactList}\small\item\em R\-N\-Asubopt and density of states declarations. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
--- /dev/null
+\relax
+\gdef \LT@xvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.9}Stochastic backtracking in the Ensemble}{39}{section.9.9}}
+\newlabel{group__subopt__stochbt}{{9.9}{39}{Stochastic backtracking in the Ensemble\relax }{section.9.9}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.9.1}Detailed Description}{39}{subsection.9.9.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.9.2}Function Documentation}{39}{subsection.9.9.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.9.2.1}pbacktrack}{39}{subsubsection.9.9.2.1}}
+\newlabel{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{{9.9.2.1}{39}{pbacktrack\relax }{subsubsection.9.9.2.1}{}}
+\gdef \LT@xvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.9.2.2}pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ}{40}{subsubsection.9.9.2.2}}
+\newlabel{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}{{9.9.2.2}{40}{pbacktrack\-\_\-circ\relax }{subsubsection.9.9.2.2}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.9.3}Variable Documentation}{40}{subsection.9.9.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.9.3.1}st\discretionary {-}{}{}\_\discretionary {-}{}{}back}{40}{subsubsection.9.9.3.1}}
+\newlabel{group__subopt__stochbt_gacd79b1a570e6ad9be24cb11fe8cae30a}{{9.9.3.1}{40}{st\-\_\-back\relax }{subsubsection.9.9.3.1}{}}
+\@setckpt{group__subopt__stochbt}{
+\setcounter{page}{41}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{9}
+\setcounter{subsection}{3}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{17}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{59}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{17}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+624f1f9d827c2a6fe8bd27dd40906c1b
\ No newline at end of file
--- /dev/null
+\hypertarget{group__subopt__stochbt}{\section{Stochastic backtracking in the Ensemble}
+\label{group__subopt__stochbt}\index{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}}
+}
+Collaboration diagram for Stochastic backtracking in the Ensemble\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__subopt__stochbt}
+\end{center}
+\end{figure}
+\subsection*{Modules}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{group__consensus__stochbt}{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}
+\item
+\hyperlink{group__kl__neighborhood__stochbt}{Stochastic Backtracking of Structures from Distance Based Partitioning}
+\begin{DoxyCompactList}\small\item\em Contains functions related to stochastic backtracking from a specified distance class. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+char $\ast$ \hyperlink{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{pbacktrack} (char $\ast$sequence)
+\begin{DoxyCompactList}\small\item\em Sample a secondary structure from the Boltzmann ensemble according its probability\par
+. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}{pbacktrack\-\_\-circ} (char $\ast$sequence)
+\begin{DoxyCompactList}\small\item\em Sample a secondary structure of a circular R\-N\-A from the Boltzmann ensemble according its probability. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{group__subopt__stochbt_gacd79b1a570e6ad9be24cb11fe8cae30a}{st\-\_\-back}
+\begin{DoxyCompactList}\small\item\em Flag indicating that auxilary arrays are needed throughout the computations. This is essential for stochastic backtracking. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{\index{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}!pbacktrack@{pbacktrack}}
+\index{pbacktrack@{pbacktrack}!Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}}
+\subsubsection[{pbacktrack}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ pbacktrack (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence}
+\end{DoxyParamCaption}
+)}}\label{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}
+
+
+Sample a secondary structure from the Boltzmann ensemble according its probability\par
+.
+
+\begin{DoxyPrecond}{Precondition}
+\hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()} or \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} have to be called first to fill the partition function matrices
+\end{DoxyPrecond}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A sampled secondary structure in dot-\/bracket notation
+\end{DoxyReturn}
+\hypertarget{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}{\index{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}!pbacktrack\-\_\-circ@{pbacktrack\-\_\-circ}}
+\index{pbacktrack\-\_\-circ@{pbacktrack\-\_\-circ}!Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}}
+\subsubsection[{pbacktrack\-\_\-circ}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ pbacktrack\-\_\-circ (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence}
+\end{DoxyParamCaption}
+)}}\label{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}
+
+
+Sample a secondary structure of a circular R\-N\-A from the Boltzmann ensemble according its probability.
+
+This function does the same as \hyperlink{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{pbacktrack()} but assumes the R\-N\-A molecule to be circular
+
+\begin{DoxyPrecond}{Precondition}
+\hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par()} or pf\-\_\-fold\-\_\-circ() have to be called first to fill the partition function matrices
+\end{DoxyPrecond}
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A sampled secondary structure in dot-\/bracket notation
+\end{DoxyReturn}
+
+
+\subsection{Variable Documentation}
+\hypertarget{group__subopt__stochbt_gacd79b1a570e6ad9be24cb11fe8cae30a}{\index{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}!st\-\_\-back@{st\-\_\-back}}
+\index{st\-\_\-back@{st\-\_\-back}!Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}}
+\subsubsection[{st\-\_\-back}]{\setlength{\rightskip}{0pt plus 5cm}int st\-\_\-back}}\label{group__subopt__stochbt_gacd79b1a570e6ad9be24cb11fe8cae30a}
+
+
+Flag indicating that auxilary arrays are needed throughout the computations. This is essential for stochastic backtracking.
+
+Set this variable to 1 prior to a call of \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} to ensure that all matrices needed for stochastic backtracking are filled in the forward recursions
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{pbacktrack()}, \hyperlink{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}{pbacktrack\-\_\-circ}
+\end{DoxySeeAlso}
--- /dev/null
+\relax
+\gdef \LT@xiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.8}Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}{37}{section.9.8}}
+\newlabel{group__subopt__wuchty}{{9.8}{37}{Suboptimal structures within an energy band arround the M\-F\-E\relax }{section.9.8}{}}
+\newlabel{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{{9.8}{37}{Functions\relax }{section*.17}{}}
+\newlabel{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{{9.8}{37}{Variables\relax }{section*.18}{}}
+\newlabel{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{{9.8}{37}{Variables\relax }{section*.18}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.8.1}Detailed Description}{37}{subsection.9.8.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.8.2}Function Documentation}{37}{subsection.9.8.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.8.2.1}subopt}{37}{subsubsection.9.8.2.1}}
+\newlabel{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{{9.8.2.1}{37}{subopt\relax }{subsubsection.9.8.2.1}{}}
+\gdef \LT@xv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.8.2.2}subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ}{38}{subsubsection.9.8.2.2}}
+\newlabel{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{{9.8.2.2}{38}{subopt\-\_\-circ\relax }{subsubsection.9.8.2.2}{}}
+\@setckpt{group__subopt__wuchty}{
+\setcounter{page}{39}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{8}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{15}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{52}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{15}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+a1f28b3b088ff87f30b9adc70672daae
\ No newline at end of file
--- /dev/null
+\hypertarget{group__subopt__wuchty}{\section{Suboptimal structures within an energy band arround the M\-F\-E}
+\label{group__subopt__wuchty}\index{Suboptimal structures within an energy band arround the M\-F\-E@{Suboptimal structures within an energy band arround the M\-F\-E}}
+}
+Collaboration diagram for Suboptimal structures within an energy band arround the M\-F\-E\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=348pt]{group__subopt__wuchty}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt} (char $\ast$seq, char $\ast$structure, int delta, F\-I\-L\-E $\ast$fp)
+\begin{DoxyCompactList}\small\item\em Returns list of subopt structures or writes to fp. \end{DoxyCompactList}\item
+\hypertarget{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{subopt\-\_\-par} (char $\ast$seq, char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int delta, int is\-\_\-constrained, int is\-\_\-circular, F\-I\-L\-E $\ast$fp)}\label{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}
+
+\begin{DoxyCompactList}\small\item\em Returns list of subopt structures or writes to fp. \end{DoxyCompactList}\item
+\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{subopt\-\_\-circ} (char $\ast$seq, char $\ast$sequence, int delta, F\-I\-L\-E $\ast$fp)
+\begin{DoxyCompactList}\small\item\em Returns list of circular subopt structures or writes to fp. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{int \hyperlink{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{subopt\-\_\-sorted}}\label{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}
+
+\begin{DoxyCompactList}\small\item\em Sort output by energy. \end{DoxyCompactList}\item
+\hypertarget{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{double \hyperlink{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{print\-\_\-energy}}\label{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}
+
+\begin{DoxyCompactList}\small\item\em printing threshold for use with log\-M\-L \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{\index{Suboptimal structures within an energy band arround the M\-F\-E@{Suboptimal structures within an energy band arround the M\-F\-E}!subopt@{subopt}}
+\index{subopt@{subopt}!Suboptimal structures within an energy band arround the MFE@{Suboptimal structures within an energy band arround the M\-F\-E}}
+\subsubsection[{subopt}]{\setlength{\rightskip}{0pt plus 5cm}{\bf S\-O\-L\-U\-T\-I\-O\-N}$\ast$ subopt (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{seq, }
+\item[{char $\ast$}]{structure, }
+\item[{int}]{delta, }
+\item[{F\-I\-L\-E $\ast$}]{fp}
+\end{DoxyParamCaption}
+)}}\label{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}
+
+
+Returns list of subopt structures or writes to fp.
+
+This function produces {\bfseries all} suboptimal secondary structures within 'delta' $\ast$ 0.\-01 kcal/mol of the optimum. The results are either directly written to a 'fp' (if 'fp' is not N\-U\-L\-L), or (fp==N\-U\-L\-L) returned in a \hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ list terminated by an entry were the 'structure' pointer is N\-U\-L\-L.
+
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & \\
+\hline
+{\em structure} & \\
+\hline
+{\em delta} & \\
+\hline
+{\em fp} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{\index{Suboptimal structures within an energy band arround the M\-F\-E@{Suboptimal structures within an energy band arround the M\-F\-E}!subopt\-\_\-circ@{subopt\-\_\-circ}}
+\index{subopt\-\_\-circ@{subopt\-\_\-circ}!Suboptimal structures within an energy band arround the MFE@{Suboptimal structures within an energy band arround the M\-F\-E}}
+\subsubsection[{subopt\-\_\-circ}]{\setlength{\rightskip}{0pt plus 5cm}{\bf S\-O\-L\-U\-T\-I\-O\-N}$\ast$ subopt\-\_\-circ (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{seq, }
+\item[{char $\ast$}]{sequence, }
+\item[{int}]{delta, }
+\item[{F\-I\-L\-E $\ast$}]{fp}
+\end{DoxyParamCaption}
+)}}\label{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}
+
+
+Returns list of circular subopt structures or writes to fp.
+
+This function is similar to \hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt()} but calculates secondary structures assuming the R\-N\-A sequence to be circular instead of linear
+
+
+\begin{DoxyParams}{Parameters}
+{\em seq} & \\
+\hline
+{\em sequence} & \\
+\hline
+{\em delta} & \\
+\hline
+{\em fp} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
--- /dev/null
+\relax
+\gdef \LT@xiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {9.7}Suboptimal structures according to Zuker et al. 1989}{36}{section.9.7}}
+\newlabel{group__subopt__zuker}{{9.7}{36}{Suboptimal structures according to Zuker et al. 1989\relax }{section.9.7}{}}
+\newlabel{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{{9.7}{36}{Functions\relax }{section*.16}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.7.1}Detailed Description}{36}{subsection.9.7.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.7.2}Function Documentation}{36}{subsection.9.7.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.7.2.1}zukersubopt}{36}{subsubsection.9.7.2.1}}
+\newlabel{group__subopt__zuker_ga0d5104e3ecf119d8eabd40aa5fe47f90}{{9.7.2.1}{36}{zukersubopt\relax }{subsubsection.9.7.2.1}{}}
+\@setckpt{group__subopt__zuker}{
+\setcounter{page}{37}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{7}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{1}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{13}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{47}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{13}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+36c2ba6304b28a97e74f51677744fd8e
\ No newline at end of file
--- /dev/null
+\hypertarget{group__subopt__zuker}{\section{Suboptimal structures according to Zuker et al. 1989}
+\label{group__subopt__zuker}\index{Suboptimal structures according to Zuker et al. 1989@{Suboptimal structures according to Zuker et al. 1989}}
+}
+Collaboration diagram for Suboptimal structures according to Zuker et al. 1989\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=348pt]{group__subopt__zuker}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__zuker_ga0d5104e3ecf119d8eabd40aa5fe47f90}{zukersubopt} (const char $\ast$string)
+\begin{DoxyCompactList}\small\item\em Compute Zuker type suboptimal structures. \end{DoxyCompactList}\item
+\hypertarget{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{zukersubopt\-\_\-par} (const char $\ast$string, \hyperlink{structparamT}{param\-T} $\ast$parameters)}\label{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}
+
+\begin{DoxyCompactList}\small\item\em Compute Zuker type suboptimal structures. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+
+
+\subsection{Function Documentation}
+\hypertarget{group__subopt__zuker_ga0d5104e3ecf119d8eabd40aa5fe47f90}{\index{Suboptimal structures according to Zuker et al. 1989@{Suboptimal structures according to Zuker et al. 1989}!zukersubopt@{zukersubopt}}
+\index{zukersubopt@{zukersubopt}!Suboptimal structures according to Zuker et al. 1989@{Suboptimal structures according to Zuker et al. 1989}}
+\subsubsection[{zukersubopt}]{\setlength{\rightskip}{0pt plus 5cm}{\bf S\-O\-L\-U\-T\-I\-O\-N}$\ast$ zukersubopt (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{string}
+\end{DoxyParamCaption}
+)}}\label{group__subopt__zuker_ga0d5104e3ecf119d8eabd40aa5fe47f90}
+
+
+Compute Zuker type suboptimal structures.
+
+Compute Suboptimal structures according to M. Zuker, i.\-e. for every possible base pair the minimum energy structure containing the resp. base pair. Returns a list of these structures and their energies.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+List of zuker suboptimal structures
+\end{DoxyReturn}
--- /dev/null
+\relax
+\@writefile{toc}{\contentsline {section}{\numberline {9.13}Partition Function for two hybridized Sequences as a stepwise Process}{48}{section.9.13}}
+\newlabel{group__up__cofold}{{9.13}{48}{Partition Function for two hybridized Sequences as a stepwise Process\relax }{section.9.13}{}}
+\newlabel{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{{9.13}{48}{Functions\relax }{section*.29}{}}
+\newlabel{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{{9.13}{48}{Functions\relax }{section*.29}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.13.1}Detailed Description}{48}{subsection.9.13.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.13.2}Function Documentation}{48}{subsection.9.13.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.13.2.1}pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru}{48}{subsubsection.9.13.2.1}}
+\newlabel{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{{9.13.2.1}{48}{pf\-\_\-unstru\relax }{subsubsection.9.13.2.1}{}}
+\gdef \LT@xxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.13.2.2}pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact}{49}{subsubsection.9.13.2.2}}
+\newlabel{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{{9.13.2.2}{49}{pf\-\_\-interact\relax }{subsubsection.9.13.2.2}{}}
+\@setckpt{group__up__cofold}{
+\setcounter{page}{50}
+\setcounter{equation}{0}
+\setcounter{enumi}{0}
+\setcounter{enumii}{0}
+\setcounter{enumiii}{0}
+\setcounter{enumiv}{0}
+\setcounter{footnote}{0}
+\setcounter{mpfootnote}{0}
+\setcounter{part}{0}
+\setcounter{chapter}{9}
+\setcounter{section}{13}
+\setcounter{subsection}{2}
+\setcounter{subsubsection}{2}
+\setcounter{paragraph}{0}
+\setcounter{subparagraph}{0}
+\setcounter{figure}{0}
+\setcounter{table}{28}
+\setcounter{NAT@ctr}{0}
+\setcounter{float@type}{8}
+\setcounter{lstnumber}{1}
+\setcounter{Item}{0}
+\setcounter{Hfootnote}{0}
+\setcounter{bookmark@seq@number}{82}
+\setcounter{lofdepth}{1}
+\setcounter{lotdepth}{1}
+\setcounter{LT@tables}{28}
+\setcounter{LT@chunks}{1}
+\setcounter{PWSTtable}{0}
+\setcounter{lstlisting}{0}
+\setcounter{section@level}{3}
+}
--- /dev/null
+6bba55bf49d0b522d575279415d7a673
\ No newline at end of file
--- /dev/null
+\hypertarget{group__up__cofold}{\section{Partition Function for two hybridized Sequences as a stepwise Process}
+\label{group__up__cofold}\index{Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}}
+}
+
+
+Partition Function Cofolding as a stepwise process.
+
+
+Collaboration diagram for Partition Function for two hybridized Sequences as a stepwise Process\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{group__up__cofold}
+\end{center}
+\end{figure}
+\subsection*{Files}
+\begin{DoxyCompactItemize}
+\item
+file \hyperlink{part__func__up_8h}{part\-\_\-func\-\_\-up.\-h}
+\begin{DoxyCompactList}\small\item\em Partition Function Cofolding as stepwise process. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$ \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru} (char $\ast$sequence, int max\-\_\-w)
+\begin{DoxyCompactList}\small\item\em Calculate the partition function over all unpaired regions of a maximal length. \end{DoxyCompactList}\item
+\hyperlink{structinteract}{interact} $\ast$ \hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\-\_\-interact} (const char $\ast$s1, const char $\ast$s2, \hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$p\-\_\-c, \hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$p\-\_\-c2, int max\-\_\-w, char $\ast$cstruc, int incr3, int incr5)
+\begin{DoxyCompactList}\small\item\em Calculates the probability of a local interaction between two sequences. \end{DoxyCompactList}\item
+\hypertarget{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{void \hyperlink{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{free\-\_\-interact} (\hyperlink{structinteract}{interact} $\ast$pin)}\label{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}
+
+\begin{DoxyCompactList}\small\item\em Frees the output of function \hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\-\_\-interact()}. \end{DoxyCompactList}\item
+\hypertarget{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{void \hyperlink{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{free\-\_\-pu\-\_\-contrib\-\_\-struct} (\hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$pu)}\label{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}
+
+\begin{DoxyCompactList}\small\item\em Frees the output of function \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru()}. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Partition Function Cofolding as a stepwise process.
+
+\subsection{Function Documentation}
+\hypertarget{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{\index{Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}!pf\-\_\-unstru@{pf\-\_\-unstru}}
+\index{pf\-\_\-unstru@{pf\-\_\-unstru}!Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}}
+\subsubsection[{pf\-\_\-unstru}]{\setlength{\rightskip}{0pt plus 5cm}{\bf pu\-\_\-contrib}$\ast$ pf\-\_\-unstru (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence, }
+\item[{int}]{max\-\_\-w}
+\end{DoxyParamCaption}
+)}}\label{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}
+
+
+Calculate the partition function over all unpaired regions of a maximal length.
+
+You have to call function \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} providing the same sequence before calling \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru()}. If you want to calculate unpaired regions for a constrained structure, set variable 'structure' in function '\hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}' to the constrain string. It returns a \hyperlink{structpu__contrib}{pu\-\_\-contrib} struct containing four arrays of dimension \mbox{[}i = 1 to length(sequence)\mbox{]}\mbox{[}j = 0 to u-\/1\mbox{]} containing all possible contributions to the probabilities of unpaired regions of maximum length u. Each array in \hyperlink{structpu__contrib}{pu\-\_\-contrib} contains one of the contributions to the total probability of being unpaired\-: The probability of being unpaired within an exterior loop is in array \hyperlink{structpu__contrib}{pu\-\_\-contrib}-\/$>$E, the probability of being unpaired within a hairpin loop is in array \hyperlink{structpu__contrib}{pu\-\_\-contrib}-\/$>$H, the probability of being unpaired within an interior loop is in array \hyperlink{structpu__contrib}{pu\-\_\-contrib}-\/$>$I and probability of being unpaired within a multi-\/loop is in array \hyperlink{structpu__contrib}{pu\-\_\-contrib}-\/$>$M. The total probability of being unpaired is the sum of the four arrays of \hyperlink{structpu__contrib}{pu\-\_\-contrib}.
+
+This function frees everything allocated automatically. To free the output structure call free\-\_\-pu\-\_\-contrib().
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & \\
+\hline
+{\em max\-\_\-w} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{\index{Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}!pf\-\_\-interact@{pf\-\_\-interact}}
+\index{pf\-\_\-interact@{pf\-\_\-interact}!Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}}
+\subsubsection[{pf\-\_\-interact}]{\setlength{\rightskip}{0pt plus 5cm}{\bf interact}$\ast$ pf\-\_\-interact (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{s1, }
+\item[{const char $\ast$}]{s2, }
+\item[{{\bf pu\-\_\-contrib} $\ast$}]{p\-\_\-c, }
+\item[{{\bf pu\-\_\-contrib} $\ast$}]{p\-\_\-c2, }
+\item[{int}]{max\-\_\-w, }
+\item[{char $\ast$}]{cstruc, }
+\item[{int}]{incr3, }
+\item[{int}]{incr5}
+\end{DoxyParamCaption}
+)}}\label{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}
+
+
+Calculates the probability of a local interaction between two sequences.
+
+The function considers the probability that the region of interaction is unpaired within 's1' and 's2'. The longer sequence has to be given as 's1'. The shorter sequence has to be given as 's2'. Function \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru()} has to be called for 's1' and 's2', where the probabilities of being unpaired have to be given in 'p\-\_\-c' and 'p\-\_\-c2', respectively. If you do not want to include the probabilities of being unpaired for 's2' set 'p\-\_\-c2' to N\-U\-L\-L. If variable 'cstruc' is not N\-U\-L\-L, constrained folding is done\-: The available constrains for intermolecular interaction are\-: '.' (no constrain), 'x' (the base has no intermolecular interaction) and '$|$' (the corresponding base has to be paired intermolecularily).\par
+ The parameter 'w' determines the maximal length of the interaction. The parameters 'incr5' and 'incr3' allows inclusion of unpaired residues left ('incr5') and right ('incr3') of the region of interaction in 's1'. If the 'incr' options are used, function \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru()} has to be called with w=w+incr5+incr3 for the longer sequence 's1'.
+
+It returns a structure of type \hyperlink{structinteract}{interact} which contains the probability of the best local interaction including residue i in Pi and the minimum free energy in Gi, where i is the position in sequence 's1'. The member Gikjl of structure \hyperlink{structinteract}{interact} is the best interaction between region \mbox{[}k,i\mbox{]} k$<$i in longer sequence 's1' and region \mbox{[}j,l\mbox{]} j$<$l in 's2'. Gikjl\-\_\-wo is Gikjl without the probability of beeing unpaired.\par
+ Use \hyperlink{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{free\-\_\-interact()} to free the returned structure, all other stuff is freed inside \hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\-\_\-interact()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em s1} & \\
+\hline
+{\em s2} & \\
+\hline
+{\em p\-\_\-c} & \\
+\hline
+{\em p\-\_\-c2} & \\
+\hline
+{\em max\-\_\-w} & \\
+\hline
+{\em cstruc} & \\
+\hline
+{\em incr3} & \\
+\hline
+{\em incr5} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
--- /dev/null
+\par
+
+
+
+
+\subsection*{A Library for folding and comparing R\-N\-A secondary structures}
+
+
+
+\par
+
+
+\begin{DoxyDate}{Date}
+1994-\/2012
+\end{DoxyDate}
+\begin{DoxyAuthor}{Authors}
+Ivo Hofacker, Peter Stadler, Ronny Lorenz and many more
+\end{DoxyAuthor}
+\subsubsection*{Table of Contents}
+
+
+
+
+
+\begin{DoxyItemize}
+\item \hyperlink{index_mp_intro}{Introduction} \item \hyperlink{group__folding__routines}{R\-N\-A Secondary Structure Folding} \item \hyperlink{mp_parse}{Parsing and Comparing -\/ Functions to Manipulate Structures} \item \hyperlink{mp_utils}{Utilities -\/ Odds and Ends} \item \hyperlink{mp_example}{Example -\/ A Small Example Program} \item mp\-\_\-ref\end{DoxyItemize}
+
+
+\hypertarget{index_mp_intro}{}\section{Introduction}\label{index_mp_intro}
+The core of the Vienna R\-N\-A Package (\cite{lorenz:2011},\cite{hofacker:1994}) is formed by a collection of routines for the prediction and comparison of R\-N\-A secondary structures. These routines can be accessed through stand-\/alone programs, such as R\-N\-Afold, R\-N\-Adistance etc., which should be sufficient for most users. For those who wish to develop their own programs we provide a library which can be linked to your own code.
+
+This document describes the library and will be primarily useful to programmers. However, it also contains details about the implementation that may be of interest to advanced users. The stand-\/alone programs are described in separate man pages. The latest version of the package including source code and html versions of the documentation can be found at \par
+\par
+ \href{http://www.tbi.univie.ac.at/~ivo/RNA/}{\tt http\-://www.\-tbi.\-univie.\-ac.\-at/$\sim$ivo/\-R\-N\-A/}
\ No newline at end of file
--- /dev/null
+\hypertarget{intl11_8h}{\section{intl11.\-h}
+\label{intl11_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl11.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl11.\-h}}
+}
+
+\begin{DoxyCode}
+00001 PUBLIC \textcolor{keywordtype}{int} int11\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00002 \{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00007 \}
+00008 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00013 \}
+00014 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00019 \}
+00020 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00025 \}
+00026 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00029 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00031 \}
+00032 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00033 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00037 \}
+00038 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00039 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00043 \}
+00044 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00045 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00049 \}
+00050 \}
+00051 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00056 \}
+00057 ,\{\{ 90, 90, 50, 50, 50\}
+00058 ,\{ 90, 90, 50, 50, 50\}
+00059 ,\{ 50, 50, 50, 50, 50\}
+00060 ,\{ 50, 50, 50, -140, 50\}
+00061 ,\{ 50, 50, 50, 50, 40\}
+00062 \}
+00063 ,\{\{ 90, 90, 50, 50, 60\}
+00064 ,\{ 90, 90, -40, 50, 50\}
+00065 ,\{ 60, 30, 50, 50, 60\}
+00066 ,\{ 50, -10, 50, -220, 50\}
+00067 ,\{ 50, 50, 0, 50, -10\}
+00068 \}
+00069 ,\{\{ 120, 120, 120, 120, 120\}
+00070 ,\{ 120, 60, 50, 120, 120\}
+00071 ,\{ 120, 120, 120, 120, 120\}
+00072 ,\{ 120, -20, 120, -140, 120\}
+00073 ,\{ 120, 120, 100, 120, 110\}
+00074 \}
+00075 ,\{\{ 220, 220, 170, 120, 120\}
+00076 ,\{ 220, 220, 130, 120, 120\}
+00077 ,\{ 170, 120, 170, 120, 120\}
+00078 ,\{ 120, 120, 120, -140, 120\}
+00079 ,\{ 120, 120, 120, 120, 110\}
+00080 \}
+00081 ,\{\{ 120, 120, 120, 120, 120\}
+00082 ,\{ 120, 120, 120, 120, 120\}
+00083 ,\{ 120, 120, 120, 120, 120\}
+00084 ,\{ 120, 120, 120, -140, 120\}
+00085 ,\{ 120, 120, 120, 120, 80\}
+00086 \}
+00087 ,\{\{ 120, 120, 120, 120, 120\}
+00088 ,\{ 120, 120, 120, 120, 120\}
+00089 ,\{ 120, 120, 120, 120, 120\}
+00090 ,\{ 120, 120, 120, -140, 120\}
+00091 ,\{ 120, 120, 120, 120, 120\}
+00092 \}
+00093 ,\{\{ 220, 220, 170, 120, 120\}
+00094 ,\{ 220, 220, 130, 120, 120\}
+00095 ,\{ 170, 120, 170, 120, 120\}
+00096 ,\{ 120, 120, 120, -140, 120\}
+00097 ,\{ 120, 120, 120, 120, 120\}
+00098 \}
+00099 \}
+00100 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00101 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00105 \}
+00106 ,\{\{ 90, 90, 60, 50, 50\}
+00107 ,\{ 90, 90, 30, -10, 50\}
+00108 ,\{ 50, -40, 50, 50, 0\}
+00109 ,\{ 50, 50, 50, -220, 50\}
+00110 ,\{ 60, 50, 60, 50, -10\}
+00111 \}
+00112 ,\{\{ 80, 80, 50, 50, 50\}
+00113 ,\{ 80, 80, 50, 50, 50\}
+00114 ,\{ 50, 50, 50, 50, 50\}
+00115 ,\{ 50, 50, 50, -230, 50\}
+00116 ,\{ 50, 50, 50, 50, -60\}
+00117 \}
+00118 ,\{\{ 190, 190, 120, 150, 150\}
+00119 ,\{ 190, 190, 120, 150, 120\}
+00120 ,\{ 120, 120, 120, 120, 120\}
+00121 ,\{ 120, 120, 120, -140, 120\}
+00122 ,\{ 150, 120, 120, 120, 150\}
+00123 \}
+00124 ,\{\{ 160, 160, 120, 120, 120\}
+00125 ,\{ 160, 160, 120, 100, 120\}
+00126 ,\{ 120, 120, 120, 120, 120\}
+00127 ,\{ 120, 120, 120, -140, 120\}
+00128 ,\{ 120, 120, 120, 120, 70\}
+00129 \}
+00130 ,\{\{ 120, 120, 120, 120, 120\}
+00131 ,\{ 120, 120, 120, 120, 120\}
+00132 ,\{ 120, 120, 120, 120, 120\}
+00133 ,\{ 120, 120, 120, -140, 120\}
+00134 ,\{ 120, 120, 120, 120, 80\}
+00135 \}
+00136 ,\{\{ 120, 120, 120, 120, 120\}
+00137 ,\{ 120, 120, 120, 120, 120\}
+00138 ,\{ 120, 120, 120, 120, 120\}
+00139 ,\{ 120, 120, 120, -140, 120\}
+00140 ,\{ 120, 120, 120, 120, 120\}
+00141 \}
+00142 ,\{\{ 190, 190, 120, 150, 150\}
+00143 ,\{ 190, 190, 120, 150, 120\}
+00144 ,\{ 120, 120, 120, 120, 120\}
+00145 ,\{ 120, 120, 120, -140, 120\}
+00146 ,\{ 150, 120, 120, 120, 150\}
+00147 \}
+00148 \}
+00149 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00150 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00154 \}
+00155 ,\{\{ 120, 120, 120, 120, 120\}
+00156 ,\{ 120, 60, 120, -20, 120\}
+00157 ,\{ 120, 50, 120, 120, 100\}
+00158 ,\{ 120, 120, 120, -140, 120\}
+00159 ,\{ 120, 120, 120, 120, 110\}
+00160 \}
+00161 ,\{\{ 190, 190, 120, 120, 150\}
+00162 ,\{ 190, 190, 120, 120, 120\}
+00163 ,\{ 120, 120, 120, 120, 120\}
+00164 ,\{ 150, 150, 120, -140, 120\}
+00165 ,\{ 150, 120, 120, 120, 150\}
+00166 \}
+00167 ,\{\{ 190, 190, 190, 190, 190\}
+00168 ,\{ 190, 190, 190, 190, 190\}
+00169 ,\{ 190, 190, 190, 190, 190\}
+00170 ,\{ 190, 190, 190, -70, 190\}
+00171 ,\{ 190, 190, 190, 190, 120\}
+00172 \}
+00173 ,\{\{ 190, 190, 190, 190, 190\}
+00174 ,\{ 190, 190, 190, 190, 190\}
+00175 ,\{ 190, 190, 190, 190, 190\}
+00176 ,\{ 190, 190, 190, -70, 190\}
+00177 ,\{ 190, 190, 190, 190, 160\}
+00178 \}
+00179 ,\{\{ 190, 190, 190, 190, 190\}
+00180 ,\{ 190, 190, 190, 190, 190\}
+00181 ,\{ 190, 190, 190, 190, 190\}
+00182 ,\{ 190, 190, 190, -70, 190\}
+00183 ,\{ 190, 190, 190, 190, 120\}
+00184 \}
+00185 ,\{\{ 190, 190, 190, 190, 190\}
+00186 ,\{ 190, 190, 190, 190, 190\}
+00187 ,\{ 190, 190, 190, 190, 190\}
+00188 ,\{ 190, 190, 190, -70, 190\}
+00189 ,\{ 190, 190, 190, 190, 160\}
+00190 \}
+00191 ,\{\{ 190, 190, 190, 190, 190\}
+00192 ,\{ 190, 190, 190, 190, 190\}
+00193 ,\{ 190, 190, 190, 190, 190\}
+00194 ,\{ 190, 190, 190, -70, 190\}
+00195 ,\{ 190, 190, 190, 190, 160\}
+00196 \}
+00197 \}
+00198 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00199 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00200 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00201 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00203 \}
+00204 ,\{\{ 220, 220, 170, 120, 120\}
+00205 ,\{ 220, 220, 120, 120, 120\}
+00206 ,\{ 170, 130, 170, 120, 120\}
+00207 ,\{ 120, 120, 120, -140, 120\}
+00208 ,\{ 120, 120, 120, 120, 110\}
+00209 \}
+00210 ,\{\{ 160, 160, 120, 120, 120\}
+00211 ,\{ 160, 160, 120, 120, 120\}
+00212 ,\{ 120, 120, 120, 120, 120\}
+00213 ,\{ 120, 100, 120, -140, 120\}
+00214 ,\{ 120, 120, 120, 120, 70\}
+00215 \}
+00216 ,\{\{ 190, 190, 190, 190, 190\}
+00217 ,\{ 190, 190, 190, 190, 190\}
+00218 ,\{ 190, 190, 190, 190, 190\}
+00219 ,\{ 190, 190, 190, -70, 190\}
+00220 ,\{ 190, 190, 190, 190, 160\}
+00221 \}
+00222 ,\{\{ 190, 190, 190, 190, 190\}
+00223 ,\{ 190, 190, 190, 190, 190\}
+00224 ,\{ 190, 190, 190, 190, 190\}
+00225 ,\{ 190, 190, 190, -70, 190\}
+00226 ,\{ 190, 190, 190, 190, 190\}
+00227 \}
+00228 ,\{\{ 190, 190, 190, 190, 190\}
+00229 ,\{ 190, 190, 190, 190, 190\}
+00230 ,\{ 190, 190, 190, 190, 190\}
+00231 ,\{ 190, 190, 190, -70, 190\}
+00232 ,\{ 190, 190, 190, 190, 160\}
+00233 \}
+00234 ,\{\{ 190, 190, 190, 190, 190\}
+00235 ,\{ 190, 190, 190, 190, 190\}
+00236 ,\{ 190, 190, 190, 190, 190\}
+00237 ,\{ 190, 190, 190, -70, 190\}
+00238 ,\{ 190, 190, 190, 190, 190\}
+00239 \}
+00240 ,\{\{ 220, 220, 190, 190, 190\}
+00241 ,\{ 220, 220, 190, 190, 190\}
+00242 ,\{ 190, 190, 190, 190, 190\}
+00243 ,\{ 190, 190, 190, -70, 190\}
+00244 ,\{ 190, 190, 190, 190, 190\}
+00245 \}
+00246 \}
+00247 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00249 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00250 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00251 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00252 \}
+00253 ,\{\{ 120, 120, 120, 120, 120\}
+00254 ,\{ 120, 120, 120, 120, 120\}
+00255 ,\{ 120, 120, 120, 120, 120\}
+00256 ,\{ 120, 120, 120, -140, 120\}
+00257 ,\{ 120, 120, 120, 120, 80\}
+00258 \}
+00259 ,\{\{ 120, 120, 120, 120, 120\}
+00260 ,\{ 120, 120, 120, 120, 120\}
+00261 ,\{ 120, 120, 120, 120, 120\}
+00262 ,\{ 120, 120, 120, -140, 120\}
+00263 ,\{ 120, 120, 120, 120, 80\}
+00264 \}
+00265 ,\{\{ 190, 190, 190, 190, 190\}
+00266 ,\{ 190, 190, 190, 190, 190\}
+00267 ,\{ 190, 190, 190, 190, 190\}
+00268 ,\{ 190, 190, 190, -70, 190\}
+00269 ,\{ 190, 190, 190, 190, 120\}
+00270 \}
+00271 ,\{\{ 190, 190, 190, 190, 190\}
+00272 ,\{ 190, 190, 190, 190, 190\}
+00273 ,\{ 190, 190, 190, 190, 190\}
+00274 ,\{ 190, 190, 190, -70, 190\}
+00275 ,\{ 190, 190, 190, 190, 160\}
+00276 \}
+00277 ,\{\{ 190, 190, 190, 190, 190\}
+00278 ,\{ 190, 190, 190, 190, 190\}
+00279 ,\{ 190, 190, 190, 190, 190\}
+00280 ,\{ 190, 190, 190, -70, 190\}
+00281 ,\{ 190, 190, 190, 190, 120\}
+00282 \}
+00283 ,\{\{ 190, 190, 190, 190, 190\}
+00284 ,\{ 190, 190, 190, 190, 190\}
+00285 ,\{ 190, 190, 190, 190, 190\}
+00286 ,\{ 190, 190, 190, -70, 190\}
+00287 ,\{ 190, 190, 190, 190, 150\}
+00288 \}
+00289 ,\{\{ 190, 190, 190, 190, 190\}
+00290 ,\{ 190, 190, 190, 190, 190\}
+00291 ,\{ 190, 190, 190, 190, 190\}
+00292 ,\{ 190, 190, 190, -70, 190\}
+00293 ,\{ 190, 190, 190, 190, 160\}
+00294 \}
+00295 \}
+00296 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00299 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00300 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00301 \}
+00302 ,\{\{ 120, 120, 120, 120, 120\}
+00303 ,\{ 120, 120, 120, 120, 120\}
+00304 ,\{ 120, 120, 120, 120, 120\}
+00305 ,\{ 120, 120, 120, -140, 120\}
+00306 ,\{ 120, 120, 120, 120, 120\}
+00307 \}
+00308 ,\{\{ 120, 120, 120, 120, 120\}
+00309 ,\{ 120, 120, 120, 120, 120\}
+00310 ,\{ 120, 120, 120, 120, 120\}
+00311 ,\{ 120, 120, 120, -140, 120\}
+00312 ,\{ 120, 120, 120, 120, 120\}
+00313 \}
+00314 ,\{\{ 190, 190, 190, 190, 190\}
+00315 ,\{ 190, 190, 190, 190, 190\}
+00316 ,\{ 190, 190, 190, 190, 190\}
+00317 ,\{ 190, 190, 190, -70, 190\}
+00318 ,\{ 190, 190, 190, 190, 160\}
+00319 \}
+00320 ,\{\{ 190, 190, 190, 190, 190\}
+00321 ,\{ 190, 190, 190, 190, 190\}
+00322 ,\{ 190, 190, 190, 190, 190\}
+00323 ,\{ 190, 190, 190, -70, 190\}
+00324 ,\{ 190, 190, 190, 190, 190\}
+00325 \}
+00326 ,\{\{ 190, 190, 190, 190, 190\}
+00327 ,\{ 190, 190, 190, 190, 190\}
+00328 ,\{ 190, 190, 190, 190, 190\}
+00329 ,\{ 190, 190, 190, -70, 190\}
+00330 ,\{ 190, 190, 190, 190, 150\}
+00331 \}
+00332 ,\{\{ 190, 190, 190, 190, 190\}
+00333 ,\{ 190, 190, 190, 190, 190\}
+00334 ,\{ 190, 190, 190, 190, 190\}
+00335 ,\{ 190, 190, 190, -70, 190\}
+00336 ,\{ 190, 190, 190, 190, 170\}
+00337 \}
+00338 ,\{\{ 190, 190, 190, 190, 190\}
+00339 ,\{ 190, 190, 190, 190, 190\}
+00340 ,\{ 190, 190, 190, 190, 190\}
+00341 ,\{ 190, 190, 190, -70, 190\}
+00342 ,\{ 190, 190, 190, 190, 190\}
+00343 \}
+00344 \}
+00345 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00346 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00349 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00350 \}
+00351 ,\{\{ 220, 220, 170, 120, 120\}
+00352 ,\{ 220, 220, 120, 120, 120\}
+00353 ,\{ 170, 130, 170, 120, 120\}
+00354 ,\{ 120, 120, 120, -140, 120\}
+00355 ,\{ 120, 120, 120, 120, 120\}
+00356 \}
+00357 ,\{\{ 190, 190, 120, 120, 150\}
+00358 ,\{ 190, 190, 120, 120, 120\}
+00359 ,\{ 120, 120, 120, 120, 120\}
+00360 ,\{ 150, 150, 120, -140, 120\}
+00361 ,\{ 150, 120, 120, 120, 150\}
+00362 \}
+00363 ,\{\{ 190, 190, 190, 190, 190\}
+00364 ,\{ 190, 190, 190, 190, 190\}
+00365 ,\{ 190, 190, 190, 190, 190\}
+00366 ,\{ 190, 190, 190, -70, 190\}
+00367 ,\{ 190, 190, 190, 190, 160\}
+00368 \}
+00369 ,\{\{ 220, 220, 190, 190, 190\}
+00370 ,\{ 220, 220, 190, 190, 190\}
+00371 ,\{ 190, 190, 190, 190, 190\}
+00372 ,\{ 190, 190, 190, -70, 190\}
+00373 ,\{ 190, 190, 190, 190, 190\}
+00374 \}
+00375 ,\{\{ 190, 190, 190, 190, 190\}
+00376 ,\{ 190, 190, 190, 190, 190\}
+00377 ,\{ 190, 190, 190, 190, 190\}
+00378 ,\{ 190, 190, 190, -70, 190\}
+00379 ,\{ 190, 190, 190, 190, 160\}
+00380 \}
+00381 ,\{\{ 190, 190, 190, 190, 190\}
+00382 ,\{ 190, 190, 190, 190, 190\}
+00383 ,\{ 190, 190, 190, 190, 190\}
+00384 ,\{ 190, 190, 190, -70, 190\}
+00385 ,\{ 190, 190, 190, 190, 190\}
+00386 \}
+00387 ,\{\{ 220, 220, 190, 190, 190\}
+00388 ,\{ 220, 220, 190, 190, 190\}
+00389 ,\{ 190, 190, 190, 190, 190\}
+00390 ,\{ 190, 190, 190, -70, 190\}
+00391 ,\{ 190, 190, 190, 190, 190\}
+00392 \}
+00393 \}\};
+\end{DoxyCode}
--- /dev/null
+\hypertarget{intl11dH_8h}{\section{intl11d\-H.\-h}
+\label{intl11dH_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl11d\-H.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl11d\-H.\-h}}
+}
+
+\begin{DoxyCode}
+00001 PUBLIC \textcolor{keywordtype}{int} int11\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5] =
+00002 \{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00007 \}
+00008 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00013 \}
+00014 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00019 \}
+00020 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00025 \}
+00026 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00029 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00031 \}
+00032 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00033 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00037 \}
+00038 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00039 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00043 \}
+00044 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00045 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00049 \}
+00050 \}
+00051 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00056 \}
+00057 ,\{\{ -1050, -1050, -1050, -1050, -1050\}
+00058 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00059 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00060 ,\{ -1050, -1050, -1050, -1840, -1050\}
+00061 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00062 \}
+00063 ,\{\{ -1050, -1050, -1050, -1050, -1050\}
+00064 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00065 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00066 ,\{ -1050, -1050, -1050, -1840, -1050\}
+00067 ,\{ -1050, -1050, -1050, -1050, -1390\}
+00068 \}
+00069 ,\{\{ -550, -550, -550, -550, -550\}
+00070 ,\{ -550, -550, -550, -550, -550\}
+00071 ,\{ -550, -550, -550, -550, -550\}
+00072 ,\{ -550, -550, -550, -1340, -550\}
+00073 ,\{ -550, -550, -550, -550, -890\}
+00074 \}
+00075 ,\{\{ -550, -550, -550, -550, -550\}
+00076 ,\{ -550, -550, -550, -550, -550\}
+00077 ,\{ -550, -550, -550, -550, -550\}
+00078 ,\{ -550, -550, -550, -1340, -550\}
+00079 ,\{ -550, -550, -550, -550, -550\}
+00080 \}
+00081 ,\{\{ -550, -550, -550, -550, -550\}
+00082 ,\{ -550, -550, -550, -550, -550\}
+00083 ,\{ -550, -550, -550, -550, -550\}
+00084 ,\{ -550, -550, -550, -1340, -550\}
+00085 ,\{ -550, -550, -550, -550, -890\}
+00086 \}
+00087 ,\{\{ -550, -550, -550, -550, -550\}
+00088 ,\{ -550, -550, -550, -550, -550\}
+00089 ,\{ -550, -550, -550, -550, -550\}
+00090 ,\{ -550, -550, -550, -1340, -550\}
+00091 ,\{ -550, -550, -550, -550, -550\}
+00092 \}
+00093 ,\{\{ -550, -550, -550, -550, -550\}
+00094 ,\{ -550, -550, -550, -550, -550\}
+00095 ,\{ -550, -550, -550, -550, -550\}
+00096 ,\{ -550, -550, -550, -1340, -550\}
+00097 ,\{ -550, -550, -550, -550, -550\}
+00098 \}
+00099 \}
+00100 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00101 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00105 \}
+00106 ,\{\{ -1050, -1050, -1050, -1050, -1050\}
+00107 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00108 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00109 ,\{ -1050, -1050, -1050, -1840, -1050\}
+00110 ,\{ -1050, -1050, -1050, -1050, -1390\}
+00111 \}
+00112 ,\{\{ -1050, -1050, -1050, -1050, -1050\}
+00113 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00114 ,\{ -1050, -1050, -1050, -1050, -1050\}
+00115 ,\{ -1050, -1050, -1050, -1840, -1050\}
+00116 ,\{ -1050, -1050, -1050, -1050, -1730\}
+00117 \}
+00118 ,\{\{ -550, -550, -550, -550, -550\}
+00119 ,\{ -550, -550, -550, -550, -550\}
+00120 ,\{ -550, -550, -550, -550, -550\}
+00121 ,\{ -550, -550, -550, -1340, -550\}
+00122 ,\{ -550, -550, -550, -550, -1230\}
+00123 \}
+00124 ,\{\{ -550, -550, -550, -550, -550\}
+00125 ,\{ -550, -550, -550, -550, -550\}
+00126 ,\{ -550, -550, -550, -550, -550\}
+00127 ,\{ -550, -550, -550, -1340, -550\}
+00128 ,\{ -550, -550, -550, -550, -890\}
+00129 \}
+00130 ,\{\{ -550, -550, -550, -550, -550\}
+00131 ,\{ -550, -550, -550, -550, -550\}
+00132 ,\{ -550, -550, -550, -550, -550\}
+00133 ,\{ -550, -550, -550, -1340, -550\}
+00134 ,\{ -550, -550, -550, -550, -1230\}
+00135 \}
+00136 ,\{\{ -550, -550, -550, -550, -550\}
+00137 ,\{ -550, -550, -550, -550, -550\}
+00138 ,\{ -550, -550, -550, -550, -550\}
+00139 ,\{ -550, -550, -550, -1340, -550\}
+00140 ,\{ -550, -550, -550, -550, -890\}
+00141 \}
+00142 ,\{\{ -550, -550, -550, -550, -550\}
+00143 ,\{ -550, -550, -550, -550, -550\}
+00144 ,\{ -550, -550, -550, -550, -550\}
+00145 ,\{ -550, -550, -550, -1340, -550\}
+00146 ,\{ -550, -550, -550, -550, -890\}
+00147 \}
+00148 \}
+00149 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00150 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00154 \}
+00155 ,\{\{ -550, -550, -550, -550, -550\}
+00156 ,\{ -550, -550, -550, -550, -550\}
+00157 ,\{ -550, -550, -550, -550, -550\}
+00158 ,\{ -550, -550, -550, -1340, -550\}
+00159 ,\{ -550, -550, -550, -550, -890\}
+00160 \}
+00161 ,\{\{ -550, -550, -550, -550, -550\}
+00162 ,\{ -550, -550, -550, -550, -550\}
+00163 ,\{ -550, -550, -550, -550, -550\}
+00164 ,\{ -550, -550, -550, -1340, -550\}
+00165 ,\{ -550, -550, -550, -550, -1230\}
+00166 \}
+00167 ,\{\{ -50, -50, -50, -50, -50\}
+00168 ,\{ -50, -50, -50, -50, -50\}
+00169 ,\{ -50, -50, -50, -50, -50\}
+00170 ,\{ -50, -50, -50, -830, -50\}
+00171 ,\{ -50, -50, -50, -50, -730\}
+00172 \}
+00173 ,\{\{ -50, -50, -50, -50, -50\}
+00174 ,\{ -50, -50, -50, -50, -50\}
+00175 ,\{ -50, -50, -50, -50, -50\}
+00176 ,\{ -50, -50, -50, -830, -50\}
+00177 ,\{ -50, -50, -50, -50, -390\}
+00178 \}
+00179 ,\{\{ -50, -50, -50, -50, -50\}
+00180 ,\{ -50, -50, -50, -50, -50\}
+00181 ,\{ -50, -50, -50, -50, -50\}
+00182 ,\{ -50, -50, -50, -830, -50\}
+00183 ,\{ -50, -50, -50, -50, -730\}
+00184 \}
+00185 ,\{\{ -50, -50, -50, -50, -50\}
+00186 ,\{ -50, -50, -50, -50, -50\}
+00187 ,\{ -50, -50, -50, -50, -50\}
+00188 ,\{ -50, -50, -50, -830, -50\}
+00189 ,\{ -50, -50, -50, -50, -390\}
+00190 \}
+00191 ,\{\{ -50, -50, -50, -50, -50\}
+00192 ,\{ -50, -50, -50, -50, -50\}
+00193 ,\{ -50, -50, -50, -50, -50\}
+00194 ,\{ -50, -50, -50, -830, -50\}
+00195 ,\{ -50, -50, -50, -50, -390\}
+00196 \}
+00197 \}
+00198 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00199 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00200 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00201 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00203 \}
+00204 ,\{\{ -550, -550, -550, -550, -550\}
+00205 ,\{ -550, -550, -550, -550, -550\}
+00206 ,\{ -550, -550, -550, -550, -550\}
+00207 ,\{ -550, -550, -550, -1340, -550\}
+00208 ,\{ -550, -550, -550, -550, -550\}
+00209 \}
+00210 ,\{\{ -550, -550, -550, -550, -550\}
+00211 ,\{ -550, -550, -550, -550, -550\}
+00212 ,\{ -550, -550, -550, -550, -550\}
+00213 ,\{ -550, -550, -550, -1340, -550\}
+00214 ,\{ -550, -550, -550, -550, -890\}
+00215 \}
+00216 ,\{\{ -50, -50, -50, -50, -50\}
+00217 ,\{ -50, -50, -50, -50, -50\}
+00218 ,\{ -50, -50, -50, -50, -50\}
+00219 ,\{ -50, -50, -50, -830, -50\}
+00220 ,\{ -50, -50, -50, -50, -390\}
+00221 \}
+00222 ,\{\{ -50, -50, -50, -50, -50\}
+00223 ,\{ -50, -50, -50, -50, -50\}
+00224 ,\{ -50, -50, -50, -50, -50\}
+00225 ,\{ -50, -50, -50, -830, -50\}
+00226 ,\{ -50, -50, -50, -50, -50\}
+00227 \}
+00228 ,\{\{ -50, -50, -50, -50, -50\}
+00229 ,\{ -50, -50, -50, -50, -50\}
+00230 ,\{ -50, -50, -50, -50, -50\}
+00231 ,\{ -50, -50, -50, -830, -50\}
+00232 ,\{ -50, -50, -50, -50, -390\}
+00233 \}
+00234 ,\{\{ -50, -50, -50, -50, -50\}
+00235 ,\{ -50, -50, -50, -50, -50\}
+00236 ,\{ -50, -50, -50, -50, -50\}
+00237 ,\{ -50, -50, -50, -830, -50\}
+00238 ,\{ -50, -50, -50, -50, -50\}
+00239 \}
+00240 ,\{\{ -50, -50, -50, -50, -50\}
+00241 ,\{ -50, -50, -50, -50, -50\}
+00242 ,\{ -50, -50, -50, -50, -50\}
+00243 ,\{ -50, -50, -50, -830, -50\}
+00244 ,\{ -50, -50, -50, -50, -50\}
+00245 \}
+00246 \}
+00247 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00249 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00250 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00251 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00252 \}
+00253 ,\{\{ -550, -550, -550, -550, -550\}
+00254 ,\{ -550, -550, -550, -550, -550\}
+00255 ,\{ -550, -550, -550, -550, -550\}
+00256 ,\{ -550, -550, -550, -1340, -550\}
+00257 ,\{ -550, -550, -550, -550, -890\}
+00258 \}
+00259 ,\{\{ -550, -550, -550, -550, -550\}
+00260 ,\{ -550, -550, -550, -550, -550\}
+00261 ,\{ -550, -550, -550, -550, -550\}
+00262 ,\{ -550, -550, -550, -1340, -550\}
+00263 ,\{ -550, -550, -550, -550, -1230\}
+00264 \}
+00265 ,\{\{ -50, -50, -50, -50, -50\}
+00266 ,\{ -50, -50, -50, -50, -50\}
+00267 ,\{ -50, -50, -50, -50, -50\}
+00268 ,\{ -50, -50, -50, -830, -50\}
+00269 ,\{ -50, -50, -50, -50, -730\}
+00270 \}
+00271 ,\{\{ -50, -50, -50, -50, -50\}
+00272 ,\{ -50, -50, -50, -50, -50\}
+00273 ,\{ -50, -50, -50, -50, -50\}
+00274 ,\{ -50, -50, -50, -830, -50\}
+00275 ,\{ -50, -50, -50, -50, -390\}
+00276 \}
+00277 ,\{\{ -50, -50, -50, -50, -50\}
+00278 ,\{ -50, -50, -50, -50, -50\}
+00279 ,\{ -50, -50, -50, -50, -50\}
+00280 ,\{ -50, -50, -50, -830, -50\}
+00281 ,\{ -50, -50, -50, -50, -730\}
+00282 \}
+00283 ,\{\{ -50, -50, -50, -50, -50\}
+00284 ,\{ -50, -50, -50, -50, -50\}
+00285 ,\{ -50, -50, -50, -50, -50\}
+00286 ,\{ -50, -50, -50, -830, -50\}
+00287 ,\{ -50, -50, -50, -50, -390\}
+00288 \}
+00289 ,\{\{ -50, -50, -50, -50, -50\}
+00290 ,\{ -50, -50, -50, -50, -50\}
+00291 ,\{ -50, -50, -50, -50, -50\}
+00292 ,\{ -50, -50, -50, -830, -50\}
+00293 ,\{ -50, -50, -50, -50, -390\}
+00294 \}
+00295 \}
+00296 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00299 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00300 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00301 \}
+00302 ,\{\{ -550, -550, -550, -550, -550\}
+00303 ,\{ -550, -550, -550, -550, -550\}
+00304 ,\{ -550, -550, -550, -550, -550\}
+00305 ,\{ -550, -550, -550, -1340, -550\}
+00306 ,\{ -550, -550, -550, -550, -550\}
+00307 \}
+00308 ,\{\{ -550, -550, -550, -550, -550\}
+00309 ,\{ -550, -550, -550, -550, -550\}
+00310 ,\{ -550, -550, -550, -550, -550\}
+00311 ,\{ -550, -550, -550, -1340, -550\}
+00312 ,\{ -550, -550, -550, -550, -890\}
+00313 \}
+00314 ,\{\{ -50, -50, -50, -50, -50\}
+00315 ,\{ -50, -50, -50, -50, -50\}
+00316 ,\{ -50, -50, -50, -50, -50\}
+00317 ,\{ -50, -50, -50, -830, -50\}
+00318 ,\{ -50, -50, -50, -50, -390\}
+00319 \}
+00320 ,\{\{ -50, -50, -50, -50, -50\}
+00321 ,\{ -50, -50, -50, -50, -50\}
+00322 ,\{ -50, -50, -50, -50, -50\}
+00323 ,\{ -50, -50, -50, -830, -50\}
+00324 ,\{ -50, -50, -50, -50, -50\}
+00325 \}
+00326 ,\{\{ -50, -50, -50, -50, -50\}
+00327 ,\{ -50, -50, -50, -50, -50\}
+00328 ,\{ -50, -50, -50, -50, -50\}
+00329 ,\{ -50, -50, -50, -830, -50\}
+00330 ,\{ -50, -50, -50, -50, -390\}
+00331 \}
+00332 ,\{\{ -50, -50, -50, -50, -50\}
+00333 ,\{ -50, -50, -50, -50, -50\}
+00334 ,\{ -50, -50, -50, -50, -50\}
+00335 ,\{ -50, -50, -50, -830, -50\}
+00336 ,\{ -50, -50, -50, -50, -50\}
+00337 \}
+00338 ,\{\{ -50, -50, -50, -50, -50\}
+00339 ,\{ -50, -50, -50, -50, -50\}
+00340 ,\{ -50, -50, -50, -50, -50\}
+00341 ,\{ -50, -50, -50, -830, -50\}
+00342 ,\{ -50, -50, -50, -50, -50\}
+00343 \}
+00344 \}
+00345 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00346 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00349 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00350 \}
+00351 ,\{\{ -550, -550, -550, -550, -550\}
+00352 ,\{ -550, -550, -550, -550, -550\}
+00353 ,\{ -550, -550, -550, -550, -550\}
+00354 ,\{ -550, -550, -550, -1340, -550\}
+00355 ,\{ -550, -550, -550, -550, -550\}
+00356 \}
+00357 ,\{\{ -550, -550, -550, -550, -550\}
+00358 ,\{ -550, -550, -550, -550, -550\}
+00359 ,\{ -550, -550, -550, -550, -550\}
+00360 ,\{ -550, -550, -550, -1340, -550\}
+00361 ,\{ -550, -550, -550, -550, -890\}
+00362 \}
+00363 ,\{\{ -50, -50, -50, -50, -50\}
+00364 ,\{ -50, -50, -50, -50, -50\}
+00365 ,\{ -50, -50, -50, -50, -50\}
+00366 ,\{ -50, -50, -50, -830, -50\}
+00367 ,\{ -50, -50, -50, -50, -390\}
+00368 \}
+00369 ,\{\{ -50, -50, -50, -50, -50\}
+00370 ,\{ -50, -50, -50, -50, -50\}
+00371 ,\{ -50, -50, -50, -50, -50\}
+00372 ,\{ -50, -50, -50, -830, -50\}
+00373 ,\{ -50, -50, -50, -50, -50\}
+00374 \}
+00375 ,\{\{ -50, -50, -50, -50, -50\}
+00376 ,\{ -50, -50, -50, -50, -50\}
+00377 ,\{ -50, -50, -50, -50, -50\}
+00378 ,\{ -50, -50, -50, -830, -50\}
+00379 ,\{ -50, -50, -50, -50, -390\}
+00380 \}
+00381 ,\{\{ -50, -50, -50, -50, -50\}
+00382 ,\{ -50, -50, -50, -50, -50\}
+00383 ,\{ -50, -50, -50, -50, -50\}
+00384 ,\{ -50, -50, -50, -830, -50\}
+00385 ,\{ -50, -50, -50, -50, -50\}
+00386 \}
+00387 ,\{\{ -50, -50, -50, -50, -50\}
+00388 ,\{ -50, -50, -50, -50, -50\}
+00389 ,\{ -50, -50, -50, -50, -50\}
+00390 ,\{ -50, -50, -50, -830, -50\}
+00391 ,\{ -50, -50, -50, -50, -50\}
+00392 \}
+00393 \}\};
+\end{DoxyCode}
--- /dev/null
+\hypertarget{intl21_8h}{\section{intl21.\-h}
+\label{intl21_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl21.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl21.\-h}}
+}
+
+\begin{DoxyCode}
+00001 PUBLIC \textcolor{keywordtype}{int} int21\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5] =
+00002 \{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00007 \}
+00008 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00013 \}
+00014 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00019 \}
+00020 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00025 \}
+00026 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00029 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00031 \}
+00032 \}
+00033 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00037 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00038 \}
+00039 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00043 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00044 \}
+00045 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00049 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00050 \}
+00051 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00056 \}
+00057 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00058 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00059 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00060 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00061 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00062 \}
+00063 \}
+00064 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00065 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00066 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00067 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00068 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00069 \}
+00070 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00071 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00072 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00073 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00074 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00075 \}
+00076 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00077 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00078 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00079 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00080 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00081 \}
+00082 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00083 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00084 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00085 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00086 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00087 \}
+00088 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00089 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00090 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00091 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00092 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00093 \}
+00094 \}
+00095 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00096 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00097 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00099 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00100 \}
+00101 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00105 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00106 \}
+00107 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00108 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00109 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00111 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00112 \}
+00113 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00114 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00115 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00117 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00118 \}
+00119 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00120 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00121 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00122 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00123 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00124 \}
+00125 \}
+00126 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00127 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00128 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00130 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00131 \}
+00132 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00133 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00134 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00136 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00137 \}
+00138 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00139 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00140 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00142 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00143 \}
+00144 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00145 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00146 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00148 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00149 \}
+00150 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00154 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00155 \}
+00156 \}
+00157 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00158 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00159 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00160 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00161 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00162 \}
+00163 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00164 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00165 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00166 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00167 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00168 \}
+00169 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00170 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00171 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00172 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00173 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00174 \}
+00175 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00176 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00177 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00178 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00179 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00180 \}
+00181 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00182 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00183 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00184 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00185 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00186 \}
+00187 \}
+00188 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00189 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00190 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00191 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00192 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00193 \}
+00194 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00195 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00196 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00197 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00198 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00199 \}
+00200 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00201 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00203 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00204 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00205 \}
+00206 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00207 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00208 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00209 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00210 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00211 \}
+00212 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00213 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00214 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00215 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00216 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00217 \}
+00218 \}
+00219 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00220 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00221 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00222 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00223 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00224 \}
+00225 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00226 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00227 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00228 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00229 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00230 \}
+00231 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00232 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00233 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00234 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00235 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00236 \}
+00237 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00238 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00239 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00240 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00241 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00242 \}
+00243 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00244 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00245 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00246 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00247 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00248 \}
+00249 \}
+00250 \}
+00251 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00252 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00253 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00256 \}
+00257 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00258 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00259 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00262 \}
+00263 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00264 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00265 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00268 \}
+00269 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00270 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00271 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00274 \}
+00275 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00276 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00277 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00278 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00280 \}
+00281 \}
+00282 ,\{\{\{ 230, 230, 230, 230, 230\}
+00283 ,\{ 230, 230, 230, 230, 230\}
+00284 ,\{ 230, 230, 230, 230, 230\}
+00285 ,\{ 230, 230, 230, 230, 230\}
+00286 ,\{ 230, 230, 230, 230, 230\}
+00287 \}
+00288 ,\{\{ 230, 230, 230, 110, 230\}
+00289 ,\{ 230, 230, 230, 110, 230\}
+00290 ,\{ 230, 230, 230, 110, 230\}
+00291 ,\{ 110, 110, 110, 110, 110\}
+00292 ,\{ 230, 230, 230, 110, 230\}
+00293 \}
+00294 ,\{\{ 230, 230, 230, 230, 230\}
+00295 ,\{ 230, 230, 230, 230, 230\}
+00296 ,\{ 230, 230, 230, 230, 230\}
+00297 ,\{ 230, 230, 230, 230, 230\}
+00298 ,\{ 230, 230, 230, 230, 230\}
+00299 \}
+00300 ,\{\{ 230, 110, 230, 110, 230\}
+00301 ,\{ 110, 110, 110, 110, 110\}
+00302 ,\{ 230, 110, 230, 110, 230\}
+00303 ,\{ 110, 110, 110, 110, 110\}
+00304 ,\{ 230, 110, 230, 110, 230\}
+00305 \}
+00306 ,\{\{ 230, 230, 230, 230, 150\}
+00307 ,\{ 230, 230, 230, 230, 150\}
+00308 ,\{ 230, 230, 230, 230, 150\}
+00309 ,\{ 230, 230, 230, 230, 150\}
+00310 ,\{ 150, 150, 150, 150, 150\}
+00311 \}
+00312 \}
+00313 ,\{\{\{ 250, 250, 250, 230, 230\}
+00314 ,\{ 250, 250, 230, 230, 230\}
+00315 ,\{ 250, 230, 250, 230, 230\}
+00316 ,\{ 230, 230, 230, 230, 230\}
+00317 ,\{ 250, 250, 230, 230, 230\}
+00318 \}
+00319 ,\{\{ 250, 250, 230, 110, 230\}
+00320 ,\{ 250, 250, 230, 110, 230\}
+00321 ,\{ 230, 230, 170, 110, 230\}
+00322 ,\{ 110, 80, 110, 110, 110\}
+00323 ,\{ 230, 230, 230, 110, 230\}
+00324 \}
+00325 ,\{\{ 250, 250, 250, 230, 230\}
+00326 ,\{ 230, 230, 230, 230, 230\}
+00327 ,\{ 250, 230, 250, 230, 230\}
+00328 ,\{ 230, 230, 230, 230, 230\}
+00329 ,\{ 250, 250, 230, 230, 230\}
+00330 \}
+00331 ,\{\{ 230, 170, 230, 110, 230\}
+00332 ,\{ 230, 170, 230, 80, 230\}
+00333 ,\{ 230, 110, 230, 110, 230\}
+00334 ,\{ 120, 120, 110, 110, 110\}
+00335 ,\{ 230, 110, 230, 110, 230\}
+00336 \}
+00337 ,\{\{ 230, 230, 230, 230, 150\}
+00338 ,\{ 230, 230, 230, 230, 150\}
+00339 ,\{ 230, 230, 220, 230, 150\}
+00340 ,\{ 230, 230, 230, 230, 150\}
+00341 ,\{ 170, 150, 170, 150, 140\}
+00342 \}
+00343 \}
+00344 ,\{\{\{ 300, 300, 300, 300, 300\}
+00345 ,\{ 300, 300, 300, 300, 300\}
+00346 ,\{ 300, 300, 300, 300, 300\}
+00347 ,\{ 300, 300, 300, 300, 300\}
+00348 ,\{ 300, 300, 300, 300, 300\}
+00349 \}
+00350 ,\{\{ 300, 300, 300, 190, 300\}
+00351 ,\{ 300, 300, 300, 190, 300\}
+00352 ,\{ 300, 300, 300, 190, 300\}
+00353 ,\{ 190, 190, 190, 190, 190\}
+00354 ,\{ 300, 300, 300, 190, 300\}
+00355 \}
+00356 ,\{\{ 300, 300, 300, 300, 300\}
+00357 ,\{ 300, 300, 300, 300, 300\}
+00358 ,\{ 300, 300, 300, 300, 300\}
+00359 ,\{ 300, 300, 300, 300, 300\}
+00360 ,\{ 300, 300, 300, 300, 300\}
+00361 \}
+00362 ,\{\{ 300, 190, 300, 190, 300\}
+00363 ,\{ 300, 190, 300, 190, 300\}
+00364 ,\{ 300, 190, 300, 190, 300\}
+00365 ,\{ 190, 190, 190, 190, 190\}
+00366 ,\{ 300, 190, 300, 190, 300\}
+00367 \}
+00368 ,\{\{ 300, 300, 300, 300, 220\}
+00369 ,\{ 300, 300, 300, 300, 220\}
+00370 ,\{ 300, 300, 300, 300, 220\}
+00371 ,\{ 300, 300, 300, 300, 220\}
+00372 ,\{ 220, 220, 220, 220, 220\}
+00373 \}
+00374 \}
+00375 ,\{\{\{ 300, 300, 300, 300, 300\}
+00376 ,\{ 300, 300, 300, 300, 300\}
+00377 ,\{ 300, 300, 300, 300, 300\}
+00378 ,\{ 300, 300, 300, 300, 300\}
+00379 ,\{ 300, 300, 300, 300, 300\}
+00380 \}
+00381 ,\{\{ 300, 300, 300, 190, 300\}
+00382 ,\{ 300, 300, 300, 190, 300\}
+00383 ,\{ 300, 300, 300, 190, 300\}
+00384 ,\{ 190, 190, 190, 190, 190\}
+00385 ,\{ 300, 300, 300, 190, 300\}
+00386 \}
+00387 ,\{\{ 300, 300, 300, 300, 300\}
+00388 ,\{ 300, 300, 300, 300, 300\}
+00389 ,\{ 300, 300, 300, 300, 300\}
+00390 ,\{ 300, 300, 300, 300, 300\}
+00391 ,\{ 300, 300, 300, 300, 300\}
+00392 \}
+00393 ,\{\{ 300, 190, 300, 190, 300\}
+00394 ,\{ 190, 190, 190, 190, 190\}
+00395 ,\{ 300, 190, 300, 190, 300\}
+00396 ,\{ 190, 190, 190, 190, 190\}
+00397 ,\{ 300, 190, 300, 190, 300\}
+00398 \}
+00399 ,\{\{ 300, 300, 300, 300, 220\}
+00400 ,\{ 300, 300, 300, 300, 220\}
+00401 ,\{ 300, 300, 300, 300, 220\}
+00402 ,\{ 300, 300, 300, 300, 220\}
+00403 ,\{ 220, 220, 220, 220, 220\}
+00404 \}
+00405 \}
+00406 ,\{\{\{ 300, 300, 300, 300, 300\}
+00407 ,\{ 300, 300, 300, 300, 300\}
+00408 ,\{ 300, 300, 300, 300, 300\}
+00409 ,\{ 300, 300, 300, 300, 300\}
+00410 ,\{ 300, 300, 300, 300, 300\}
+00411 \}
+00412 ,\{\{ 300, 300, 300, 190, 300\}
+00413 ,\{ 300, 300, 300, 190, 300\}
+00414 ,\{ 300, 300, 300, 190, 300\}
+00415 ,\{ 190, 190, 190, 190, 190\}
+00416 ,\{ 300, 300, 300, 190, 300\}
+00417 \}
+00418 ,\{\{ 300, 300, 300, 300, 300\}
+00419 ,\{ 300, 300, 300, 300, 300\}
+00420 ,\{ 300, 300, 300, 300, 300\}
+00421 ,\{ 300, 300, 300, 300, 300\}
+00422 ,\{ 300, 300, 300, 300, 300\}
+00423 \}
+00424 ,\{\{ 300, 190, 300, 190, 300\}
+00425 ,\{ 300, 190, 300, 190, 300\}
+00426 ,\{ 300, 190, 300, 190, 300\}
+00427 ,\{ 190, 190, 190, 190, 190\}
+00428 ,\{ 300, 190, 300, 190, 300\}
+00429 \}
+00430 ,\{\{ 300, 300, 300, 300, 220\}
+00431 ,\{ 300, 300, 300, 300, 220\}
+00432 ,\{ 300, 300, 300, 300, 220\}
+00433 ,\{ 300, 300, 300, 300, 220\}
+00434 ,\{ 220, 220, 220, 220, 220\}
+00435 \}
+00436 \}
+00437 ,\{\{\{ 300, 300, 300, 300, 300\}
+00438 ,\{ 300, 300, 300, 300, 300\}
+00439 ,\{ 300, 300, 300, 300, 300\}
+00440 ,\{ 300, 300, 300, 300, 300\}
+00441 ,\{ 300, 300, 300, 300, 300\}
+00442 \}
+00443 ,\{\{ 300, 300, 300, 190, 300\}
+00444 ,\{ 300, 300, 300, 190, 300\}
+00445 ,\{ 300, 300, 300, 190, 300\}
+00446 ,\{ 190, 190, 190, 190, 190\}
+00447 ,\{ 300, 300, 300, 190, 300\}
+00448 \}
+00449 ,\{\{ 300, 300, 300, 300, 300\}
+00450 ,\{ 300, 300, 300, 300, 300\}
+00451 ,\{ 300, 300, 300, 300, 300\}
+00452 ,\{ 300, 300, 300, 300, 300\}
+00453 ,\{ 300, 300, 300, 300, 300\}
+00454 \}
+00455 ,\{\{ 300, 190, 300, 190, 300\}
+00456 ,\{ 190, 190, 190, 190, 190\}
+00457 ,\{ 300, 190, 300, 190, 300\}
+00458 ,\{ 190, 190, 190, 190, 190\}
+00459 ,\{ 300, 190, 300, 190, 300\}
+00460 \}
+00461 ,\{\{ 300, 300, 300, 300, 220\}
+00462 ,\{ 300, 300, 300, 300, 220\}
+00463 ,\{ 300, 300, 300, 300, 220\}
+00464 ,\{ 300, 300, 300, 300, 220\}
+00465 ,\{ 220, 220, 220, 220, 220\}
+00466 \}
+00467 \}
+00468 ,\{\{\{ 300, 300, 300, 300, 300\}
+00469 ,\{ 300, 300, 300, 300, 300\}
+00470 ,\{ 300, 300, 300, 300, 300\}
+00471 ,\{ 300, 300, 300, 300, 300\}
+00472 ,\{ 300, 300, 300, 300, 300\}
+00473 \}
+00474 ,\{\{ 300, 300, 300, 190, 300\}
+00475 ,\{ 300, 300, 300, 190, 300\}
+00476 ,\{ 300, 300, 300, 190, 300\}
+00477 ,\{ 190, 190, 190, 190, 190\}
+00478 ,\{ 300, 300, 300, 190, 300\}
+00479 \}
+00480 ,\{\{ 300, 300, 300, 300, 300\}
+00481 ,\{ 300, 300, 300, 300, 300\}
+00482 ,\{ 300, 300, 300, 300, 300\}
+00483 ,\{ 300, 300, 300, 300, 300\}
+00484 ,\{ 300, 300, 300, 300, 300\}
+00485 \}
+00486 ,\{\{ 300, 190, 300, 190, 300\}
+00487 ,\{ 300, 190, 300, 190, 300\}
+00488 ,\{ 300, 190, 300, 190, 300\}
+00489 ,\{ 190, 190, 190, 190, 190\}
+00490 ,\{ 300, 190, 300, 190, 300\}
+00491 \}
+00492 ,\{\{ 300, 300, 300, 300, 220\}
+00493 ,\{ 300, 300, 300, 300, 220\}
+00494 ,\{ 300, 300, 300, 300, 220\}
+00495 ,\{ 300, 300, 300, 300, 220\}
+00496 ,\{ 220, 220, 220, 220, 220\}
+00497 \}
+00498 \}
+00499 \}
+00500 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00501 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00502 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00505 \}
+00506 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00507 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00508 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00511 \}
+00512 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00513 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00514 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00517 \}
+00518 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00519 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00520 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00523 \}
+00524 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00525 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00526 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00527 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00529 \}
+00530 \}
+00531 ,\{\{\{ 250, 250, 230, 230, 230\}
+00532 ,\{ 250, 250, 230, 230, 230\}
+00533 ,\{ 230, 230, 230, 230, 230\}
+00534 ,\{ 230, 230, 230, 230, 230\}
+00535 ,\{ 230, 230, 230, 230, 230\}
+00536 \}
+00537 ,\{\{ 250, 250, 230, 230, 230\}
+00538 ,\{ 250, 250, 230, 210, 230\}
+00539 ,\{ 230, 230, 230, 230, 230\}
+00540 ,\{ 120, 120, 110, 110, 110\}
+00541 ,\{ 230, 230, 230, 230, 230\}
+00542 \}
+00543 ,\{\{ 230, 230, 230, 230, 230\}
+00544 ,\{ 230, 230, 230, 230, 230\}
+00545 ,\{ 230, 230, 230, 230, 230\}
+00546 ,\{ 230, 230, 230, 230, 230\}
+00547 ,\{ 230, 230, 190, 230, 230\}
+00548 \}
+00549 ,\{\{ 230, 110, 230, 110, 230\}
+00550 ,\{ 110, 110, 110, 110, 110\}
+00551 ,\{ 230, 110, 230, 110, 230\}
+00552 ,\{ 110, 110, 110, 110, 110\}
+00553 ,\{ 230, 110, 230, 110, 230\}
+00554 \}
+00555 ,\{\{ 230, 230, 230, 230, 150\}
+00556 ,\{ 230, 230, 230, 230, 150\}
+00557 ,\{ 230, 230, 230, 230, 150\}
+00558 ,\{ 230, 230, 230, 230, 150\}
+00559 ,\{ 150, 150, 150, 150, 150\}
+00560 \}
+00561 \}
+00562 ,\{\{\{ 230, 230, 230, 230, 230\}
+00563 ,\{ 230, 230, 230, 230, 230\}
+00564 ,\{ 230, 230, 230, 230, 230\}
+00565 ,\{ 230, 230, 230, 230, 230\}
+00566 ,\{ 230, 230, 230, 230, 230\}
+00567 \}
+00568 ,\{\{ 230, 230, 230, 230, 230\}
+00569 ,\{ 230, 230, 230, 230, 230\}
+00570 ,\{ 230, 230, 230, 230, 230\}
+00571 ,\{ 110, 110, 110, 110, 110\}
+00572 ,\{ 230, 230, 230, 230, 230\}
+00573 \}
+00574 ,\{\{ 230, 230, 230, 230, 230\}
+00575 ,\{ 230, 230, 230, 230, 230\}
+00576 ,\{ 230, 230, 230, 230, 230\}
+00577 ,\{ 230, 230, 230, 230, 230\}
+00578 ,\{ 230, 230, 230, 230, 230\}
+00579 \}
+00580 ,\{\{ 230, 110, 230, 110, 230\}
+00581 ,\{ 230, 110, 230, 110, 230\}
+00582 ,\{ 230, 110, 230, 110, 230\}
+00583 ,\{ 110, 110, 110, 110, 110\}
+00584 ,\{ 230, 110, 230, 110, 230\}
+00585 \}
+00586 ,\{\{ 230, 230, 230, 230, 150\}
+00587 ,\{ 230, 230, 230, 230, 150\}
+00588 ,\{ 230, 230, 230, 230, 150\}
+00589 ,\{ 230, 230, 230, 230, 150\}
+00590 ,\{ 150, 150, 150, 150, 150\}
+00591 \}
+00592 \}
+00593 ,\{\{\{ 300, 300, 300, 300, 300\}
+00594 ,\{ 300, 300, 300, 300, 300\}
+00595 ,\{ 300, 300, 300, 300, 300\}
+00596 ,\{ 300, 300, 300, 300, 300\}
+00597 ,\{ 300, 300, 300, 300, 300\}
+00598 \}
+00599 ,\{\{ 300, 300, 300, 300, 300\}
+00600 ,\{ 300, 300, 300, 300, 300\}
+00601 ,\{ 300, 300, 300, 300, 300\}
+00602 ,\{ 190, 190, 190, 190, 190\}
+00603 ,\{ 300, 300, 300, 300, 300\}
+00604 \}
+00605 ,\{\{ 300, 300, 300, 300, 300\}
+00606 ,\{ 300, 300, 300, 300, 300\}
+00607 ,\{ 300, 300, 300, 300, 300\}
+00608 ,\{ 300, 300, 300, 300, 300\}
+00609 ,\{ 300, 300, 300, 300, 300\}
+00610 \}
+00611 ,\{\{ 300, 190, 300, 190, 300\}
+00612 ,\{ 300, 190, 300, 190, 300\}
+00613 ,\{ 300, 190, 300, 190, 300\}
+00614 ,\{ 190, 190, 190, 190, 190\}
+00615 ,\{ 300, 190, 300, 190, 300\}
+00616 \}
+00617 ,\{\{ 300, 300, 300, 300, 220\}
+00618 ,\{ 300, 300, 300, 300, 220\}
+00619 ,\{ 300, 300, 300, 300, 220\}
+00620 ,\{ 300, 300, 300, 300, 220\}
+00621 ,\{ 220, 220, 220, 220, 220\}
+00622 \}
+00623 \}
+00624 ,\{\{\{ 300, 300, 300, 300, 300\}
+00625 ,\{ 300, 300, 300, 300, 300\}
+00626 ,\{ 300, 300, 300, 300, 300\}
+00627 ,\{ 300, 300, 300, 300, 300\}
+00628 ,\{ 300, 300, 300, 300, 300\}
+00629 \}
+00630 ,\{\{ 300, 300, 300, 300, 300\}
+00631 ,\{ 300, 250, 300, 210, 300\}
+00632 ,\{ 300, 300, 300, 300, 300\}
+00633 ,\{ 190, 120, 190, 190, 190\}
+00634 ,\{ 300, 300, 300, 300, 300\}
+00635 \}
+00636 ,\{\{ 300, 300, 300, 300, 300\}
+00637 ,\{ 300, 300, 300, 300, 300\}
+00638 ,\{ 300, 300, 300, 300, 300\}
+00639 ,\{ 300, 300, 300, 300, 300\}
+00640 ,\{ 300, 300, 190, 300, 300\}
+00641 \}
+00642 ,\{\{ 300, 190, 300, 190, 300\}
+00643 ,\{ 190, 190, 190, 190, 190\}
+00644 ,\{ 300, 190, 300, 190, 300\}
+00645 ,\{ 190, 190, 190, 190, 190\}
+00646 ,\{ 300, 190, 300, 190, 300\}
+00647 \}
+00648 ,\{\{ 300, 300, 300, 300, 220\}
+00649 ,\{ 300, 300, 300, 300, 220\}
+00650 ,\{ 300, 300, 300, 300, 220\}
+00651 ,\{ 300, 300, 300, 300, 220\}
+00652 ,\{ 220, 220, 220, 220, 220\}
+00653 \}
+00654 \}
+00655 ,\{\{\{ 300, 300, 300, 300, 300\}
+00656 ,\{ 300, 300, 300, 300, 300\}
+00657 ,\{ 300, 300, 300, 300, 300\}
+00658 ,\{ 300, 300, 300, 300, 300\}
+00659 ,\{ 300, 300, 300, 300, 300\}
+00660 \}
+00661 ,\{\{ 300, 300, 300, 300, 300\}
+00662 ,\{ 300, 300, 300, 300, 300\}
+00663 ,\{ 300, 300, 300, 300, 300\}
+00664 ,\{ 190, 190, 190, 190, 190\}
+00665 ,\{ 300, 300, 300, 300, 300\}
+00666 \}
+00667 ,\{\{ 300, 300, 300, 300, 300\}
+00668 ,\{ 300, 300, 300, 300, 300\}
+00669 ,\{ 300, 300, 300, 300, 300\}
+00670 ,\{ 300, 300, 300, 300, 300\}
+00671 ,\{ 300, 300, 300, 300, 300\}
+00672 \}
+00673 ,\{\{ 300, 190, 300, 190, 300\}
+00674 ,\{ 300, 190, 300, 190, 300\}
+00675 ,\{ 300, 190, 300, 190, 300\}
+00676 ,\{ 190, 190, 190, 190, 190\}
+00677 ,\{ 300, 190, 300, 190, 300\}
+00678 \}
+00679 ,\{\{ 300, 300, 300, 300, 220\}
+00680 ,\{ 300, 300, 300, 300, 220\}
+00681 ,\{ 300, 300, 300, 300, 220\}
+00682 ,\{ 300, 300, 300, 300, 220\}
+00683 ,\{ 220, 220, 220, 220, 220\}
+00684 \}
+00685 \}
+00686 ,\{\{\{ 300, 300, 300, 300, 300\}
+00687 ,\{ 300, 300, 300, 300, 300\}
+00688 ,\{ 300, 300, 300, 300, 300\}
+00689 ,\{ 300, 300, 300, 300, 300\}
+00690 ,\{ 300, 300, 300, 300, 300\}
+00691 \}
+00692 ,\{\{ 300, 300, 300, 300, 300\}
+00693 ,\{ 300, 300, 300, 300, 300\}
+00694 ,\{ 300, 300, 300, 300, 300\}
+00695 ,\{ 190, 190, 190, 190, 190\}
+00696 ,\{ 300, 300, 300, 300, 300\}
+00697 \}
+00698 ,\{\{ 300, 300, 300, 300, 300\}
+00699 ,\{ 300, 300, 300, 300, 300\}
+00700 ,\{ 300, 300, 300, 300, 300\}
+00701 ,\{ 300, 300, 300, 300, 300\}
+00702 ,\{ 300, 300, 300, 300, 300\}
+00703 \}
+00704 ,\{\{ 300, 190, 300, 190, 300\}
+00705 ,\{ 190, 190, 190, 190, 190\}
+00706 ,\{ 300, 190, 300, 190, 300\}
+00707 ,\{ 190, 190, 190, 190, 190\}
+00708 ,\{ 300, 190, 300, 190, 300\}
+00709 \}
+00710 ,\{\{ 300, 300, 300, 300, 220\}
+00711 ,\{ 300, 300, 300, 300, 220\}
+00712 ,\{ 300, 300, 300, 300, 220\}
+00713 ,\{ 300, 300, 300, 300, 220\}
+00714 ,\{ 220, 220, 220, 220, 220\}
+00715 \}
+00716 \}
+00717 ,\{\{\{ 300, 300, 300, 300, 300\}
+00718 ,\{ 300, 300, 300, 300, 300\}
+00719 ,\{ 300, 300, 300, 300, 300\}
+00720 ,\{ 300, 300, 300, 300, 300\}
+00721 ,\{ 300, 300, 300, 300, 300\}
+00722 \}
+00723 ,\{\{ 300, 300, 300, 300, 300\}
+00724 ,\{ 300, 300, 300, 300, 300\}
+00725 ,\{ 300, 300, 300, 300, 300\}
+00726 ,\{ 190, 190, 190, 190, 190\}
+00727 ,\{ 300, 300, 300, 300, 300\}
+00728 \}
+00729 ,\{\{ 300, 300, 300, 300, 300\}
+00730 ,\{ 300, 300, 300, 300, 300\}
+00731 ,\{ 300, 300, 300, 300, 300\}
+00732 ,\{ 300, 300, 300, 300, 300\}
+00733 ,\{ 300, 300, 300, 300, 300\}
+00734 \}
+00735 ,\{\{ 300, 190, 300, 190, 300\}
+00736 ,\{ 300, 190, 300, 190, 300\}
+00737 ,\{ 300, 190, 300, 190, 300\}
+00738 ,\{ 190, 190, 190, 190, 190\}
+00739 ,\{ 300, 190, 300, 190, 300\}
+00740 \}
+00741 ,\{\{ 300, 300, 300, 300, 220\}
+00742 ,\{ 300, 300, 300, 300, 220\}
+00743 ,\{ 300, 300, 300, 300, 220\}
+00744 ,\{ 300, 300, 300, 300, 220\}
+00745 ,\{ 220, 220, 220, 220, 220\}
+00746 \}
+00747 \}
+00748 \}
+00749 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00750 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00751 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00754 \}
+00755 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00756 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00757 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00760 \}
+00761 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00762 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00763 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00766 \}
+00767 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00768 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00769 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00772 \}
+00773 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00774 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00775 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00776 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00778 \}
+00779 \}
+00780 ,\{\{\{ 300, 300, 300, 300, 300\}
+00781 ,\{ 300, 300, 300, 300, 300\}
+00782 ,\{ 300, 300, 300, 300, 300\}
+00783 ,\{ 300, 300, 300, 300, 300\}
+00784 ,\{ 300, 300, 300, 300, 300\}
+00785 \}
+00786 ,\{\{ 300, 300, 300, 300, 300\}
+00787 ,\{ 300, 250, 300, 210, 300\}
+00788 ,\{ 300, 300, 300, 300, 300\}
+00789 ,\{ 190, 120, 190, 190, 190\}
+00790 ,\{ 300, 300, 300, 300, 300\}
+00791 \}
+00792 ,\{\{ 300, 300, 300, 300, 300\}
+00793 ,\{ 300, 300, 300, 300, 300\}
+00794 ,\{ 300, 300, 300, 300, 300\}
+00795 ,\{ 300, 300, 300, 300, 300\}
+00796 ,\{ 300, 300, 190, 300, 300\}
+00797 \}
+00798 ,\{\{ 300, 190, 300, 190, 300\}
+00799 ,\{ 190, 190, 190, 190, 190\}
+00800 ,\{ 300, 190, 300, 190, 300\}
+00801 ,\{ 190, 190, 190, 190, 190\}
+00802 ,\{ 300, 190, 300, 190, 300\}
+00803 \}
+00804 ,\{\{ 300, 300, 300, 300, 220\}
+00805 ,\{ 300, 300, 300, 300, 220\}
+00806 ,\{ 300, 300, 300, 300, 220\}
+00807 ,\{ 300, 300, 300, 300, 220\}
+00808 ,\{ 220, 220, 220, 220, 220\}
+00809 \}
+00810 \}
+00811 ,\{\{\{ 300, 300, 300, 300, 300\}
+00812 ,\{ 300, 300, 300, 300, 300\}
+00813 ,\{ 300, 300, 300, 300, 300\}
+00814 ,\{ 300, 300, 300, 300, 300\}
+00815 ,\{ 300, 300, 300, 300, 300\}
+00816 \}
+00817 ,\{\{ 300, 300, 300, 300, 300\}
+00818 ,\{ 300, 300, 300, 300, 300\}
+00819 ,\{ 300, 300, 300, 300, 300\}
+00820 ,\{ 190, 190, 190, 190, 190\}
+00821 ,\{ 300, 300, 300, 300, 300\}
+00822 \}
+00823 ,\{\{ 300, 300, 300, 300, 300\}
+00824 ,\{ 300, 300, 300, 300, 300\}
+00825 ,\{ 300, 300, 300, 300, 300\}
+00826 ,\{ 300, 300, 300, 300, 300\}
+00827 ,\{ 300, 300, 300, 300, 300\}
+00828 \}
+00829 ,\{\{ 300, 190, 300, 190, 300\}
+00830 ,\{ 300, 190, 300, 190, 300\}
+00831 ,\{ 300, 190, 300, 190, 300\}
+00832 ,\{ 190, 190, 190, 190, 190\}
+00833 ,\{ 300, 190, 300, 190, 300\}
+00834 \}
+00835 ,\{\{ 300, 300, 300, 300, 220\}
+00836 ,\{ 300, 300, 300, 300, 220\}
+00837 ,\{ 300, 300, 300, 300, 220\}
+00838 ,\{ 300, 300, 300, 300, 220\}
+00839 ,\{ 220, 220, 220, 220, 220\}
+00840 \}
+00841 \}
+00842 ,\{\{\{ 370, 370, 370, 370, 370\}
+00843 ,\{ 370, 370, 370, 370, 370\}
+00844 ,\{ 370, 370, 370, 370, 370\}
+00845 ,\{ 370, 370, 370, 370, 370\}
+00846 ,\{ 370, 370, 370, 370, 370\}
+00847 \}
+00848 ,\{\{ 370, 370, 370, 370, 370\}
+00849 ,\{ 370, 370, 370, 370, 370\}
+00850 ,\{ 370, 370, 370, 370, 370\}
+00851 ,\{ 260, 260, 260, 260, 260\}
+00852 ,\{ 370, 370, 370, 370, 370\}
+00853 \}
+00854 ,\{\{ 370, 370, 370, 370, 370\}
+00855 ,\{ 370, 370, 370, 370, 370\}
+00856 ,\{ 370, 370, 370, 370, 370\}
+00857 ,\{ 370, 370, 370, 370, 370\}
+00858 ,\{ 370, 370, 370, 370, 370\}
+00859 \}
+00860 ,\{\{ 370, 260, 370, 260, 370\}
+00861 ,\{ 370, 260, 370, 260, 370\}
+00862 ,\{ 370, 260, 370, 260, 370\}
+00863 ,\{ 260, 260, 260, 260, 260\}
+00864 ,\{ 370, 260, 370, 260, 370\}
+00865 \}
+00866 ,\{\{ 370, 370, 370, 370, 300\}
+00867 ,\{ 370, 370, 370, 370, 300\}
+00868 ,\{ 370, 370, 370, 370, 300\}
+00869 ,\{ 370, 370, 370, 370, 300\}
+00870 ,\{ 300, 300, 300, 300, 300\}
+00871 \}
+00872 \}
+00873 ,\{\{\{ 370, 370, 370, 370, 370\}
+00874 ,\{ 370, 370, 370, 370, 370\}
+00875 ,\{ 370, 370, 370, 370, 370\}
+00876 ,\{ 370, 370, 370, 370, 370\}
+00877 ,\{ 370, 370, 370, 370, 370\}
+00878 \}
+00879 ,\{\{ 370, 370, 370, 370, 370\}
+00880 ,\{ 370, 250, 370, 210, 370\}
+00881 ,\{ 370, 370, 370, 370, 370\}
+00882 ,\{ 260, 120, 260, 260, 260\}
+00883 ,\{ 370, 370, 370, 370, 370\}
+00884 \}
+00885 ,\{\{ 370, 370, 370, 370, 370\}
+00886 ,\{ 370, 370, 370, 370, 370\}
+00887 ,\{ 370, 370, 370, 370, 370\}
+00888 ,\{ 370, 370, 370, 370, 370\}
+00889 ,\{ 370, 370, 190, 370, 370\}
+00890 \}
+00891 ,\{\{ 370, 260, 370, 260, 370\}
+00892 ,\{ 260, 260, 260, 260, 260\}
+00893 ,\{ 370, 260, 370, 260, 370\}
+00894 ,\{ 260, 260, 260, 260, 260\}
+00895 ,\{ 370, 260, 370, 260, 370\}
+00896 \}
+00897 ,\{\{ 370, 370, 370, 370, 300\}
+00898 ,\{ 370, 370, 370, 370, 300\}
+00899 ,\{ 370, 370, 370, 370, 300\}
+00900 ,\{ 370, 370, 370, 370, 300\}
+00901 ,\{ 300, 300, 300, 300, 300\}
+00902 \}
+00903 \}
+00904 ,\{\{\{ 370, 370, 370, 370, 370\}
+00905 ,\{ 370, 370, 370, 370, 370\}
+00906 ,\{ 370, 370, 370, 370, 370\}
+00907 ,\{ 370, 370, 370, 370, 370\}
+00908 ,\{ 370, 370, 370, 370, 370\}
+00909 \}
+00910 ,\{\{ 370, 370, 370, 370, 370\}
+00911 ,\{ 370, 370, 370, 370, 370\}
+00912 ,\{ 370, 370, 370, 370, 370\}
+00913 ,\{ 260, 260, 260, 260, 260\}
+00914 ,\{ 370, 370, 370, 370, 370\}
+00915 \}
+00916 ,\{\{ 370, 370, 370, 370, 370\}
+00917 ,\{ 370, 370, 370, 370, 370\}
+00918 ,\{ 370, 370, 370, 370, 370\}
+00919 ,\{ 370, 370, 370, 370, 370\}
+00920 ,\{ 370, 370, 370, 370, 370\}
+00921 \}
+00922 ,\{\{ 370, 260, 370, 260, 370\}
+00923 ,\{ 370, 260, 370, 260, 370\}
+00924 ,\{ 370, 260, 370, 260, 370\}
+00925 ,\{ 260, 260, 260, 260, 260\}
+00926 ,\{ 370, 260, 370, 260, 370\}
+00927 \}
+00928 ,\{\{ 370, 370, 370, 370, 300\}
+00929 ,\{ 370, 370, 370, 370, 300\}
+00930 ,\{ 370, 370, 370, 370, 300\}
+00931 ,\{ 370, 370, 370, 370, 300\}
+00932 ,\{ 300, 300, 300, 300, 300\}
+00933 \}
+00934 \}
+00935 ,\{\{\{ 370, 370, 370, 370, 370\}
+00936 ,\{ 370, 370, 370, 370, 370\}
+00937 ,\{ 370, 370, 370, 370, 370\}
+00938 ,\{ 370, 370, 370, 370, 370\}
+00939 ,\{ 370, 370, 370, 370, 370\}
+00940 \}
+00941 ,\{\{ 370, 370, 370, 370, 370\}
+00942 ,\{ 370, 370, 370, 370, 370\}
+00943 ,\{ 370, 370, 370, 370, 370\}
+00944 ,\{ 260, 260, 260, 260, 260\}
+00945 ,\{ 370, 370, 370, 370, 370\}
+00946 \}
+00947 ,\{\{ 370, 370, 370, 370, 370\}
+00948 ,\{ 370, 370, 370, 370, 370\}
+00949 ,\{ 370, 370, 370, 370, 370\}
+00950 ,\{ 370, 370, 370, 370, 370\}
+00951 ,\{ 370, 370, 370, 370, 370\}
+00952 \}
+00953 ,\{\{ 370, 260, 370, 260, 370\}
+00954 ,\{ 260, 260, 260, 260, 260\}
+00955 ,\{ 370, 260, 370, 260, 370\}
+00956 ,\{ 260, 260, 260, 260, 260\}
+00957 ,\{ 370, 260, 370, 260, 370\}
+00958 \}
+00959 ,\{\{ 370, 370, 370, 370, 300\}
+00960 ,\{ 370, 370, 370, 370, 300\}
+00961 ,\{ 370, 370, 370, 370, 300\}
+00962 ,\{ 370, 370, 370, 370, 300\}
+00963 ,\{ 300, 300, 300, 300, 300\}
+00964 \}
+00965 \}
+00966 ,\{\{\{ 370, 370, 370, 370, 370\}
+00967 ,\{ 370, 370, 370, 370, 370\}
+00968 ,\{ 370, 370, 370, 370, 370\}
+00969 ,\{ 370, 370, 370, 370, 370\}
+00970 ,\{ 370, 370, 370, 370, 370\}
+00971 \}
+00972 ,\{\{ 370, 370, 370, 370, 370\}
+00973 ,\{ 370, 370, 370, 370, 370\}
+00974 ,\{ 370, 370, 370, 370, 370\}
+00975 ,\{ 260, 260, 260, 260, 260\}
+00976 ,\{ 370, 370, 370, 370, 370\}
+00977 \}
+00978 ,\{\{ 370, 370, 370, 370, 370\}
+00979 ,\{ 370, 370, 370, 370, 370\}
+00980 ,\{ 370, 370, 370, 370, 370\}
+00981 ,\{ 370, 370, 370, 370, 370\}
+00982 ,\{ 370, 370, 370, 370, 370\}
+00983 \}
+00984 ,\{\{ 370, 260, 370, 260, 370\}
+00985 ,\{ 370, 260, 370, 260, 370\}
+00986 ,\{ 370, 260, 370, 260, 370\}
+00987 ,\{ 260, 260, 260, 260, 260\}
+00988 ,\{ 370, 260, 370, 260, 370\}
+00989 \}
+00990 ,\{\{ 370, 370, 370, 370, 300\}
+00991 ,\{ 370, 370, 370, 370, 300\}
+00992 ,\{ 370, 370, 370, 370, 300\}
+00993 ,\{ 370, 370, 370, 370, 300\}
+00994 ,\{ 300, 300, 300, 300, 300\}
+00995 \}
+00996 \}
+00997 \}
+00998 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00999 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01000 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01001 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01002 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01003 \}
+01004 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01007 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01008 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01009 \}
+01010 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01013 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01014 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01015 \}
+01016 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01019 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01020 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01021 \}
+01022 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01025 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01026 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01027 \}
+01028 \}
+01029 ,\{\{\{ 300, 300, 300, 300, 300\}
+01030 ,\{ 300, 300, 300, 300, 300\}
+01031 ,\{ 300, 300, 300, 300, 300\}
+01032 ,\{ 300, 300, 300, 300, 300\}
+01033 ,\{ 300, 300, 300, 300, 300\}
+01034 \}
+01035 ,\{\{ 300, 300, 300, 190, 300\}
+01036 ,\{ 300, 300, 300, 190, 300\}
+01037 ,\{ 300, 300, 300, 190, 300\}
+01038 ,\{ 190, 190, 190, 190, 190\}
+01039 ,\{ 300, 300, 300, 190, 300\}
+01040 \}
+01041 ,\{\{ 300, 300, 300, 300, 300\}
+01042 ,\{ 300, 300, 300, 300, 300\}
+01043 ,\{ 300, 300, 300, 300, 300\}
+01044 ,\{ 300, 300, 300, 300, 300\}
+01045 ,\{ 300, 300, 300, 300, 300\}
+01046 \}
+01047 ,\{\{ 300, 190, 300, 190, 300\}
+01048 ,\{ 190, 190, 190, 190, 190\}
+01049 ,\{ 300, 190, 300, 190, 300\}
+01050 ,\{ 190, 190, 190, 190, 190\}
+01051 ,\{ 300, 190, 300, 190, 300\}
+01052 \}
+01053 ,\{\{ 300, 300, 300, 300, 220\}
+01054 ,\{ 300, 300, 300, 300, 220\}
+01055 ,\{ 300, 300, 300, 300, 220\}
+01056 ,\{ 300, 300, 300, 300, 220\}
+01057 ,\{ 220, 220, 220, 220, 220\}
+01058 \}
+01059 \}
+01060 ,\{\{\{ 300, 300, 300, 300, 300\}
+01061 ,\{ 300, 300, 300, 300, 300\}
+01062 ,\{ 300, 300, 300, 300, 300\}
+01063 ,\{ 300, 300, 300, 300, 300\}
+01064 ,\{ 300, 300, 300, 300, 300\}
+01065 \}
+01066 ,\{\{ 300, 300, 300, 190, 300\}
+01067 ,\{ 300, 300, 300, 190, 300\}
+01068 ,\{ 300, 300, 300, 190, 300\}
+01069 ,\{ 190, 190, 190, 190, 190\}
+01070 ,\{ 300, 300, 300, 190, 300\}
+01071 \}
+01072 ,\{\{ 300, 300, 300, 300, 300\}
+01073 ,\{ 300, 300, 300, 300, 300\}
+01074 ,\{ 300, 300, 300, 300, 300\}
+01075 ,\{ 300, 300, 300, 300, 300\}
+01076 ,\{ 300, 300, 300, 300, 300\}
+01077 \}
+01078 ,\{\{ 300, 190, 300, 190, 300\}
+01079 ,\{ 300, 190, 300, 190, 300\}
+01080 ,\{ 300, 190, 300, 190, 300\}
+01081 ,\{ 190, 190, 190, 190, 190\}
+01082 ,\{ 300, 190, 300, 190, 300\}
+01083 \}
+01084 ,\{\{ 300, 300, 300, 300, 220\}
+01085 ,\{ 300, 300, 300, 300, 220\}
+01086 ,\{ 300, 300, 300, 300, 220\}
+01087 ,\{ 300, 300, 300, 300, 220\}
+01088 ,\{ 220, 220, 220, 220, 220\}
+01089 \}
+01090 \}
+01091 ,\{\{\{ 370, 370, 370, 370, 370\}
+01092 ,\{ 370, 370, 370, 370, 370\}
+01093 ,\{ 370, 370, 370, 370, 370\}
+01094 ,\{ 370, 370, 370, 370, 370\}
+01095 ,\{ 370, 370, 370, 370, 370\}
+01096 \}
+01097 ,\{\{ 370, 370, 370, 260, 370\}
+01098 ,\{ 370, 370, 370, 260, 370\}
+01099 ,\{ 370, 370, 370, 260, 370\}
+01100 ,\{ 260, 260, 260, 260, 260\}
+01101 ,\{ 370, 370, 370, 260, 370\}
+01102 \}
+01103 ,\{\{ 370, 370, 370, 370, 370\}
+01104 ,\{ 370, 370, 370, 370, 370\}
+01105 ,\{ 370, 370, 370, 370, 370\}
+01106 ,\{ 370, 370, 370, 370, 370\}
+01107 ,\{ 370, 370, 370, 370, 370\}
+01108 \}
+01109 ,\{\{ 370, 260, 370, 260, 370\}
+01110 ,\{ 370, 260, 370, 260, 370\}
+01111 ,\{ 370, 260, 370, 260, 370\}
+01112 ,\{ 260, 260, 260, 260, 260\}
+01113 ,\{ 370, 260, 370, 260, 370\}
+01114 \}
+01115 ,\{\{ 370, 370, 370, 370, 300\}
+01116 ,\{ 370, 370, 370, 370, 300\}
+01117 ,\{ 370, 370, 370, 370, 300\}
+01118 ,\{ 370, 370, 370, 370, 300\}
+01119 ,\{ 300, 300, 300, 300, 300\}
+01120 \}
+01121 \}
+01122 ,\{\{\{ 370, 370, 370, 370, 370\}
+01123 ,\{ 370, 370, 370, 370, 370\}
+01124 ,\{ 370, 370, 370, 370, 370\}
+01125 ,\{ 370, 370, 370, 370, 370\}
+01126 ,\{ 370, 370, 370, 370, 370\}
+01127 \}
+01128 ,\{\{ 370, 370, 370, 260, 370\}
+01129 ,\{ 370, 370, 370, 260, 370\}
+01130 ,\{ 370, 370, 370, 260, 370\}
+01131 ,\{ 260, 260, 260, 260, 260\}
+01132 ,\{ 370, 370, 370, 260, 370\}
+01133 \}
+01134 ,\{\{ 370, 370, 370, 370, 370\}
+01135 ,\{ 370, 370, 370, 370, 370\}
+01136 ,\{ 370, 370, 370, 370, 370\}
+01137 ,\{ 370, 370, 370, 370, 370\}
+01138 ,\{ 370, 370, 370, 370, 370\}
+01139 \}
+01140 ,\{\{ 370, 260, 370, 260, 370\}
+01141 ,\{ 260, 260, 260, 260, 260\}
+01142 ,\{ 370, 260, 370, 260, 370\}
+01143 ,\{ 260, 260, 260, 260, 260\}
+01144 ,\{ 370, 260, 370, 260, 370\}
+01145 \}
+01146 ,\{\{ 370, 370, 370, 370, 300\}
+01147 ,\{ 370, 370, 370, 370, 300\}
+01148 ,\{ 370, 370, 370, 370, 300\}
+01149 ,\{ 370, 370, 370, 370, 300\}
+01150 ,\{ 300, 300, 300, 300, 300\}
+01151 \}
+01152 \}
+01153 ,\{\{\{ 370, 370, 370, 370, 370\}
+01154 ,\{ 370, 370, 370, 370, 370\}
+01155 ,\{ 370, 370, 370, 370, 370\}
+01156 ,\{ 370, 370, 370, 370, 370\}
+01157 ,\{ 370, 370, 370, 370, 370\}
+01158 \}
+01159 ,\{\{ 370, 370, 370, 260, 370\}
+01160 ,\{ 370, 370, 370, 260, 370\}
+01161 ,\{ 370, 370, 370, 260, 370\}
+01162 ,\{ 260, 260, 260, 260, 260\}
+01163 ,\{ 370, 370, 370, 260, 370\}
+01164 \}
+01165 ,\{\{ 370, 370, 370, 370, 370\}
+01166 ,\{ 370, 370, 370, 370, 370\}
+01167 ,\{ 370, 370, 370, 370, 370\}
+01168 ,\{ 370, 370, 370, 370, 370\}
+01169 ,\{ 370, 370, 370, 370, 370\}
+01170 \}
+01171 ,\{\{ 370, 260, 370, 260, 370\}
+01172 ,\{ 370, 260, 370, 260, 370\}
+01173 ,\{ 370, 260, 370, 260, 370\}
+01174 ,\{ 260, 260, 260, 260, 260\}
+01175 ,\{ 370, 260, 370, 260, 370\}
+01176 \}
+01177 ,\{\{ 370, 370, 370, 370, 300\}
+01178 ,\{ 370, 370, 370, 370, 300\}
+01179 ,\{ 370, 370, 370, 370, 300\}
+01180 ,\{ 370, 370, 370, 370, 300\}
+01181 ,\{ 300, 300, 300, 300, 300\}
+01182 \}
+01183 \}
+01184 ,\{\{\{ 370, 370, 370, 370, 370\}
+01185 ,\{ 370, 370, 370, 370, 370\}
+01186 ,\{ 370, 370, 370, 370, 370\}
+01187 ,\{ 370, 370, 370, 370, 370\}
+01188 ,\{ 370, 370, 370, 370, 370\}
+01189 \}
+01190 ,\{\{ 370, 370, 370, 260, 370\}
+01191 ,\{ 370, 370, 370, 260, 370\}
+01192 ,\{ 370, 370, 370, 260, 370\}
+01193 ,\{ 260, 260, 260, 260, 260\}
+01194 ,\{ 370, 370, 370, 260, 370\}
+01195 \}
+01196 ,\{\{ 370, 370, 370, 370, 370\}
+01197 ,\{ 370, 370, 370, 370, 370\}
+01198 ,\{ 370, 370, 370, 370, 370\}
+01199 ,\{ 370, 370, 370, 370, 370\}
+01200 ,\{ 370, 370, 370, 370, 370\}
+01201 \}
+01202 ,\{\{ 370, 260, 370, 260, 370\}
+01203 ,\{ 260, 260, 260, 260, 260\}
+01204 ,\{ 370, 260, 370, 260, 370\}
+01205 ,\{ 260, 260, 260, 260, 260\}
+01206 ,\{ 370, 260, 370, 260, 370\}
+01207 \}
+01208 ,\{\{ 370, 370, 370, 370, 300\}
+01209 ,\{ 370, 370, 370, 370, 300\}
+01210 ,\{ 370, 370, 370, 370, 300\}
+01211 ,\{ 370, 370, 370, 370, 300\}
+01212 ,\{ 300, 300, 300, 300, 300\}
+01213 \}
+01214 \}
+01215 ,\{\{\{ 370, 370, 370, 370, 370\}
+01216 ,\{ 370, 370, 370, 370, 370\}
+01217 ,\{ 370, 370, 370, 370, 370\}
+01218 ,\{ 370, 370, 370, 370, 370\}
+01219 ,\{ 370, 370, 370, 370, 370\}
+01220 \}
+01221 ,\{\{ 370, 370, 370, 260, 370\}
+01222 ,\{ 370, 370, 370, 260, 370\}
+01223 ,\{ 370, 370, 370, 260, 370\}
+01224 ,\{ 260, 260, 260, 260, 260\}
+01225 ,\{ 370, 370, 370, 260, 370\}
+01226 \}
+01227 ,\{\{ 370, 370, 370, 370, 370\}
+01228 ,\{ 370, 370, 370, 370, 370\}
+01229 ,\{ 370, 370, 370, 370, 370\}
+01230 ,\{ 370, 370, 370, 370, 370\}
+01231 ,\{ 370, 370, 370, 370, 370\}
+01232 \}
+01233 ,\{\{ 370, 260, 370, 260, 370\}
+01234 ,\{ 370, 260, 370, 260, 370\}
+01235 ,\{ 370, 260, 370, 260, 370\}
+01236 ,\{ 260, 260, 260, 260, 260\}
+01237 ,\{ 370, 260, 370, 260, 370\}
+01238 \}
+01239 ,\{\{ 370, 370, 370, 370, 300\}
+01240 ,\{ 370, 370, 370, 370, 300\}
+01241 ,\{ 370, 370, 370, 370, 300\}
+01242 ,\{ 370, 370, 370, 370, 300\}
+01243 ,\{ 300, 300, 300, 300, 300\}
+01244 \}
+01245 \}
+01246 \}
+01247 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01249 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01250 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01251 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01252 \}
+01253 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01256 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01257 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01258 \}
+01259 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01262 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01263 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01264 \}
+01265 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01268 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01269 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01270 \}
+01271 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01274 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01275 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01276 \}
+01277 \}
+01278 ,\{\{\{ 300, 300, 300, 300, 300\}
+01279 ,\{ 300, 300, 300, 300, 300\}
+01280 ,\{ 300, 300, 300, 300, 300\}
+01281 ,\{ 300, 300, 300, 300, 300\}
+01282 ,\{ 300, 300, 300, 300, 300\}
+01283 \}
+01284 ,\{\{ 300, 300, 300, 300, 300\}
+01285 ,\{ 300, 300, 300, 300, 300\}
+01286 ,\{ 300, 300, 300, 300, 300\}
+01287 ,\{ 190, 190, 190, 190, 190\}
+01288 ,\{ 300, 300, 300, 300, 300\}
+01289 \}
+01290 ,\{\{ 300, 300, 300, 300, 300\}
+01291 ,\{ 300, 300, 300, 300, 300\}
+01292 ,\{ 300, 300, 300, 300, 300\}
+01293 ,\{ 300, 300, 300, 300, 300\}
+01294 ,\{ 300, 300, 300, 300, 300\}
+01295 \}
+01296 ,\{\{ 300, 190, 300, 190, 300\}
+01297 ,\{ 190, 190, 190, 190, 190\}
+01298 ,\{ 300, 190, 300, 190, 300\}
+01299 ,\{ 190, 190, 190, 190, 190\}
+01300 ,\{ 300, 190, 300, 190, 300\}
+01301 \}
+01302 ,\{\{ 300, 300, 300, 300, 220\}
+01303 ,\{ 300, 300, 300, 300, 220\}
+01304 ,\{ 300, 300, 300, 300, 220\}
+01305 ,\{ 300, 300, 300, 300, 220\}
+01306 ,\{ 220, 220, 220, 220, 220\}
+01307 \}
+01308 \}
+01309 ,\{\{\{ 300, 300, 300, 300, 300\}
+01310 ,\{ 300, 300, 300, 300, 300\}
+01311 ,\{ 300, 300, 300, 300, 300\}
+01312 ,\{ 300, 300, 300, 300, 300\}
+01313 ,\{ 300, 300, 300, 300, 300\}
+01314 \}
+01315 ,\{\{ 300, 300, 300, 300, 300\}
+01316 ,\{ 300, 300, 300, 300, 300\}
+01317 ,\{ 300, 300, 300, 300, 300\}
+01318 ,\{ 190, 190, 190, 190, 190\}
+01319 ,\{ 300, 300, 300, 300, 300\}
+01320 \}
+01321 ,\{\{ 300, 300, 300, 300, 300\}
+01322 ,\{ 300, 300, 300, 300, 300\}
+01323 ,\{ 300, 300, 300, 300, 300\}
+01324 ,\{ 300, 300, 300, 300, 300\}
+01325 ,\{ 300, 300, 300, 300, 300\}
+01326 \}
+01327 ,\{\{ 300, 190, 300, 190, 300\}
+01328 ,\{ 300, 190, 300, 190, 300\}
+01329 ,\{ 300, 190, 300, 190, 300\}
+01330 ,\{ 190, 190, 190, 190, 190\}
+01331 ,\{ 300, 190, 300, 190, 300\}
+01332 \}
+01333 ,\{\{ 300, 300, 300, 300, 220\}
+01334 ,\{ 300, 300, 300, 300, 220\}
+01335 ,\{ 300, 300, 300, 300, 220\}
+01336 ,\{ 300, 300, 300, 300, 220\}
+01337 ,\{ 220, 220, 220, 220, 220\}
+01338 \}
+01339 \}
+01340 ,\{\{\{ 370, 370, 370, 370, 370\}
+01341 ,\{ 370, 370, 370, 370, 370\}
+01342 ,\{ 370, 370, 370, 370, 370\}
+01343 ,\{ 370, 370, 370, 370, 370\}
+01344 ,\{ 370, 370, 370, 370, 370\}
+01345 \}
+01346 ,\{\{ 370, 370, 370, 370, 370\}
+01347 ,\{ 370, 370, 370, 370, 370\}
+01348 ,\{ 370, 370, 370, 370, 370\}
+01349 ,\{ 260, 260, 260, 260, 260\}
+01350 ,\{ 370, 370, 370, 370, 370\}
+01351 \}
+01352 ,\{\{ 370, 370, 370, 370, 370\}
+01353 ,\{ 370, 370, 370, 370, 370\}
+01354 ,\{ 370, 370, 370, 370, 370\}
+01355 ,\{ 370, 370, 370, 370, 370\}
+01356 ,\{ 370, 370, 370, 370, 370\}
+01357 \}
+01358 ,\{\{ 370, 260, 370, 260, 370\}
+01359 ,\{ 370, 260, 370, 260, 370\}
+01360 ,\{ 370, 260, 370, 260, 370\}
+01361 ,\{ 260, 260, 260, 260, 260\}
+01362 ,\{ 370, 260, 370, 260, 370\}
+01363 \}
+01364 ,\{\{ 370, 370, 370, 370, 300\}
+01365 ,\{ 370, 370, 370, 370, 300\}
+01366 ,\{ 370, 370, 370, 370, 300\}
+01367 ,\{ 370, 370, 370, 370, 300\}
+01368 ,\{ 300, 300, 300, 300, 300\}
+01369 \}
+01370 \}
+01371 ,\{\{\{ 370, 370, 370, 370, 370\}
+01372 ,\{ 370, 370, 370, 370, 370\}
+01373 ,\{ 370, 370, 370, 370, 370\}
+01374 ,\{ 370, 370, 370, 370, 370\}
+01375 ,\{ 370, 370, 370, 370, 370\}
+01376 \}
+01377 ,\{\{ 370, 370, 370, 370, 370\}
+01378 ,\{ 370, 370, 370, 370, 370\}
+01379 ,\{ 370, 370, 370, 370, 370\}
+01380 ,\{ 260, 260, 260, 260, 260\}
+01381 ,\{ 370, 370, 370, 370, 370\}
+01382 \}
+01383 ,\{\{ 370, 370, 370, 370, 370\}
+01384 ,\{ 370, 370, 370, 370, 370\}
+01385 ,\{ 370, 370, 370, 370, 370\}
+01386 ,\{ 370, 370, 370, 370, 370\}
+01387 ,\{ 370, 370, 370, 370, 370\}
+01388 \}
+01389 ,\{\{ 370, 260, 370, 260, 370\}
+01390 ,\{ 260, 260, 260, 260, 260\}
+01391 ,\{ 370, 260, 370, 260, 370\}
+01392 ,\{ 260, 260, 260, 260, 260\}
+01393 ,\{ 370, 260, 370, 260, 370\}
+01394 \}
+01395 ,\{\{ 370, 370, 370, 370, 300\}
+01396 ,\{ 370, 370, 370, 370, 300\}
+01397 ,\{ 370, 370, 370, 370, 300\}
+01398 ,\{ 370, 370, 370, 370, 300\}
+01399 ,\{ 300, 300, 300, 300, 300\}
+01400 \}
+01401 \}
+01402 ,\{\{\{ 370, 370, 370, 370, 370\}
+01403 ,\{ 370, 370, 370, 370, 370\}
+01404 ,\{ 370, 370, 370, 370, 370\}
+01405 ,\{ 370, 370, 370, 370, 370\}
+01406 ,\{ 370, 370, 370, 370, 370\}
+01407 \}
+01408 ,\{\{ 370, 370, 370, 370, 370\}
+01409 ,\{ 370, 370, 370, 370, 370\}
+01410 ,\{ 370, 370, 370, 370, 370\}
+01411 ,\{ 260, 260, 260, 260, 260\}
+01412 ,\{ 370, 370, 370, 370, 370\}
+01413 \}
+01414 ,\{\{ 370, 370, 370, 370, 370\}
+01415 ,\{ 370, 370, 370, 370, 370\}
+01416 ,\{ 370, 370, 370, 370, 370\}
+01417 ,\{ 370, 370, 370, 370, 370\}
+01418 ,\{ 370, 370, 370, 370, 370\}
+01419 \}
+01420 ,\{\{ 370, 260, 370, 260, 370\}
+01421 ,\{ 370, 260, 370, 260, 370\}
+01422 ,\{ 370, 260, 370, 260, 370\}
+01423 ,\{ 260, 260, 260, 260, 260\}
+01424 ,\{ 370, 260, 370, 260, 370\}
+01425 \}
+01426 ,\{\{ 370, 370, 370, 370, 300\}
+01427 ,\{ 370, 370, 370, 370, 300\}
+01428 ,\{ 370, 370, 370, 370, 300\}
+01429 ,\{ 370, 370, 370, 370, 300\}
+01430 ,\{ 300, 300, 300, 300, 300\}
+01431 \}
+01432 \}
+01433 ,\{\{\{ 370, 370, 370, 370, 370\}
+01434 ,\{ 370, 370, 370, 370, 370\}
+01435 ,\{ 370, 370, 370, 370, 370\}
+01436 ,\{ 370, 370, 370, 370, 370\}
+01437 ,\{ 370, 370, 370, 370, 370\}
+01438 \}
+01439 ,\{\{ 370, 370, 370, 370, 370\}
+01440 ,\{ 370, 370, 370, 370, 370\}
+01441 ,\{ 370, 370, 370, 370, 370\}
+01442 ,\{ 260, 260, 260, 260, 260\}
+01443 ,\{ 370, 370, 370, 370, 370\}
+01444 \}
+01445 ,\{\{ 370, 370, 370, 370, 370\}
+01446 ,\{ 370, 370, 370, 370, 370\}
+01447 ,\{ 370, 370, 370, 370, 370\}
+01448 ,\{ 370, 370, 370, 370, 370\}
+01449 ,\{ 370, 370, 370, 370, 370\}
+01450 \}
+01451 ,\{\{ 370, 260, 370, 260, 370\}
+01452 ,\{ 260, 260, 260, 260, 260\}
+01453 ,\{ 370, 260, 370, 260, 370\}
+01454 ,\{ 260, 260, 260, 260, 260\}
+01455 ,\{ 370, 260, 370, 260, 370\}
+01456 \}
+01457 ,\{\{ 370, 370, 370, 370, 300\}
+01458 ,\{ 370, 370, 370, 370, 300\}
+01459 ,\{ 370, 370, 370, 370, 300\}
+01460 ,\{ 370, 370, 370, 370, 300\}
+01461 ,\{ 300, 300, 300, 300, 300\}
+01462 \}
+01463 \}
+01464 ,\{\{\{ 370, 370, 370, 370, 370\}
+01465 ,\{ 370, 370, 370, 370, 370\}
+01466 ,\{ 370, 370, 370, 370, 370\}
+01467 ,\{ 370, 370, 370, 370, 370\}
+01468 ,\{ 370, 370, 370, 370, 370\}
+01469 \}
+01470 ,\{\{ 370, 370, 370, 370, 370\}
+01471 ,\{ 370, 370, 370, 370, 370\}
+01472 ,\{ 370, 370, 370, 370, 370\}
+01473 ,\{ 260, 260, 260, 260, 260\}
+01474 ,\{ 370, 370, 370, 370, 370\}
+01475 \}
+01476 ,\{\{ 370, 370, 370, 370, 370\}
+01477 ,\{ 370, 370, 370, 370, 370\}
+01478 ,\{ 370, 370, 370, 370, 370\}
+01479 ,\{ 370, 370, 370, 370, 370\}
+01480 ,\{ 370, 370, 370, 370, 370\}
+01481 \}
+01482 ,\{\{ 370, 260, 370, 260, 370\}
+01483 ,\{ 370, 260, 370, 260, 370\}
+01484 ,\{ 370, 260, 370, 260, 370\}
+01485 ,\{ 260, 260, 260, 260, 260\}
+01486 ,\{ 370, 260, 370, 260, 370\}
+01487 \}
+01488 ,\{\{ 370, 370, 370, 370, 300\}
+01489 ,\{ 370, 370, 370, 370, 300\}
+01490 ,\{ 370, 370, 370, 370, 300\}
+01491 ,\{ 370, 370, 370, 370, 300\}
+01492 ,\{ 300, 300, 300, 300, 300\}
+01493 \}
+01494 \}
+01495 \}
+01496 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01497 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01498 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01499 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01500 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01501 \}
+01502 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01505 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01506 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01507 \}
+01508 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01511 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01512 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01513 \}
+01514 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01517 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01518 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01519 \}
+01520 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01523 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01524 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01525 \}
+01526 \}
+01527 ,\{\{\{ 300, 300, 300, 300, 300\}
+01528 ,\{ 300, 300, 300, 300, 300\}
+01529 ,\{ 300, 300, 300, 300, 300\}
+01530 ,\{ 300, 300, 300, 300, 300\}
+01531 ,\{ 300, 300, 300, 300, 300\}
+01532 \}
+01533 ,\{\{ 300, 300, 300, 190, 300\}
+01534 ,\{ 300, 300, 300, 190, 300\}
+01535 ,\{ 300, 300, 300, 190, 300\}
+01536 ,\{ 190, 190, 190, 190, 190\}
+01537 ,\{ 300, 300, 300, 190, 300\}
+01538 \}
+01539 ,\{\{ 300, 300, 300, 300, 300\}
+01540 ,\{ 300, 300, 300, 300, 300\}
+01541 ,\{ 300, 300, 300, 300, 300\}
+01542 ,\{ 300, 300, 300, 300, 300\}
+01543 ,\{ 300, 300, 300, 300, 300\}
+01544 \}
+01545 ,\{\{ 300, 190, 300, 190, 300\}
+01546 ,\{ 190, 190, 190, 190, 190\}
+01547 ,\{ 300, 190, 300, 190, 300\}
+01548 ,\{ 190, 190, 190, 190, 190\}
+01549 ,\{ 300, 190, 300, 190, 300\}
+01550 \}
+01551 ,\{\{ 300, 300, 300, 300, 220\}
+01552 ,\{ 300, 300, 300, 300, 220\}
+01553 ,\{ 300, 300, 300, 300, 220\}
+01554 ,\{ 300, 300, 300, 300, 220\}
+01555 ,\{ 220, 220, 220, 220, 220\}
+01556 \}
+01557 \}
+01558 ,\{\{\{ 300, 300, 300, 300, 300\}
+01559 ,\{ 300, 300, 300, 300, 300\}
+01560 ,\{ 300, 300, 300, 300, 300\}
+01561 ,\{ 300, 300, 300, 300, 300\}
+01562 ,\{ 300, 300, 300, 300, 300\}
+01563 \}
+01564 ,\{\{ 300, 300, 300, 190, 300\}
+01565 ,\{ 300, 300, 300, 190, 300\}
+01566 ,\{ 300, 300, 300, 190, 300\}
+01567 ,\{ 190, 190, 190, 190, 190\}
+01568 ,\{ 300, 300, 300, 190, 300\}
+01569 \}
+01570 ,\{\{ 300, 300, 300, 300, 300\}
+01571 ,\{ 300, 300, 300, 300, 300\}
+01572 ,\{ 300, 300, 300, 300, 300\}
+01573 ,\{ 300, 300, 300, 300, 300\}
+01574 ,\{ 300, 300, 300, 300, 300\}
+01575 \}
+01576 ,\{\{ 300, 190, 300, 190, 300\}
+01577 ,\{ 300, 190, 300, 190, 300\}
+01578 ,\{ 300, 190, 300, 190, 300\}
+01579 ,\{ 190, 190, 190, 190, 190\}
+01580 ,\{ 300, 190, 300, 190, 300\}
+01581 \}
+01582 ,\{\{ 300, 300, 300, 300, 220\}
+01583 ,\{ 300, 300, 300, 300, 220\}
+01584 ,\{ 300, 300, 300, 300, 220\}
+01585 ,\{ 300, 300, 300, 300, 220\}
+01586 ,\{ 220, 220, 220, 220, 220\}
+01587 \}
+01588 \}
+01589 ,\{\{\{ 370, 370, 370, 370, 370\}
+01590 ,\{ 370, 370, 370, 370, 370\}
+01591 ,\{ 370, 370, 370, 370, 370\}
+01592 ,\{ 370, 370, 370, 370, 370\}
+01593 ,\{ 370, 370, 370, 370, 370\}
+01594 \}
+01595 ,\{\{ 370, 370, 370, 260, 370\}
+01596 ,\{ 370, 370, 370, 260, 370\}
+01597 ,\{ 370, 370, 370, 260, 370\}
+01598 ,\{ 260, 260, 260, 260, 260\}
+01599 ,\{ 370, 370, 370, 260, 370\}
+01600 \}
+01601 ,\{\{ 370, 370, 370, 370, 370\}
+01602 ,\{ 370, 370, 370, 370, 370\}
+01603 ,\{ 370, 370, 370, 370, 370\}
+01604 ,\{ 370, 370, 370, 370, 370\}
+01605 ,\{ 370, 370, 370, 370, 370\}
+01606 \}
+01607 ,\{\{ 370, 260, 370, 260, 370\}
+01608 ,\{ 370, 260, 370, 260, 370\}
+01609 ,\{ 370, 260, 370, 260, 370\}
+01610 ,\{ 260, 260, 260, 260, 260\}
+01611 ,\{ 370, 260, 370, 260, 370\}
+01612 \}
+01613 ,\{\{ 370, 370, 370, 370, 300\}
+01614 ,\{ 370, 370, 370, 370, 300\}
+01615 ,\{ 370, 370, 370, 370, 300\}
+01616 ,\{ 370, 370, 370, 370, 300\}
+01617 ,\{ 300, 300, 300, 300, 300\}
+01618 \}
+01619 \}
+01620 ,\{\{\{ 370, 370, 370, 370, 370\}
+01621 ,\{ 370, 370, 370, 370, 370\}
+01622 ,\{ 370, 370, 370, 370, 370\}
+01623 ,\{ 370, 370, 370, 370, 370\}
+01624 ,\{ 370, 370, 370, 370, 370\}
+01625 \}
+01626 ,\{\{ 370, 370, 370, 260, 370\}
+01627 ,\{ 370, 370, 370, 260, 370\}
+01628 ,\{ 370, 370, 370, 260, 370\}
+01629 ,\{ 260, 260, 260, 260, 260\}
+01630 ,\{ 370, 370, 370, 260, 370\}
+01631 \}
+01632 ,\{\{ 370, 370, 370, 370, 370\}
+01633 ,\{ 370, 370, 370, 370, 370\}
+01634 ,\{ 370, 370, 370, 370, 370\}
+01635 ,\{ 370, 370, 370, 370, 370\}
+01636 ,\{ 370, 370, 370, 370, 370\}
+01637 \}
+01638 ,\{\{ 370, 260, 370, 260, 370\}
+01639 ,\{ 260, 260, 260, 260, 260\}
+01640 ,\{ 370, 260, 370, 260, 370\}
+01641 ,\{ 260, 260, 260, 260, 260\}
+01642 ,\{ 370, 260, 370, 260, 370\}
+01643 \}
+01644 ,\{\{ 370, 370, 370, 370, 300\}
+01645 ,\{ 370, 370, 370, 370, 300\}
+01646 ,\{ 370, 370, 370, 370, 300\}
+01647 ,\{ 370, 370, 370, 370, 300\}
+01648 ,\{ 300, 300, 300, 300, 300\}
+01649 \}
+01650 \}
+01651 ,\{\{\{ 370, 370, 370, 370, 370\}
+01652 ,\{ 370, 370, 370, 370, 370\}
+01653 ,\{ 370, 370, 370, 370, 370\}
+01654 ,\{ 370, 370, 370, 370, 370\}
+01655 ,\{ 370, 370, 370, 370, 370\}
+01656 \}
+01657 ,\{\{ 370, 370, 370, 260, 370\}
+01658 ,\{ 370, 370, 370, 260, 370\}
+01659 ,\{ 370, 370, 370, 260, 370\}
+01660 ,\{ 260, 260, 260, 260, 260\}
+01661 ,\{ 370, 370, 370, 260, 370\}
+01662 \}
+01663 ,\{\{ 370, 370, 370, 370, 370\}
+01664 ,\{ 370, 370, 370, 370, 370\}
+01665 ,\{ 370, 370, 370, 370, 370\}
+01666 ,\{ 370, 370, 370, 370, 370\}
+01667 ,\{ 370, 370, 370, 370, 370\}
+01668 \}
+01669 ,\{\{ 370, 260, 370, 260, 370\}
+01670 ,\{ 370, 260, 370, 260, 370\}
+01671 ,\{ 370, 260, 370, 260, 370\}
+01672 ,\{ 260, 260, 260, 260, 260\}
+01673 ,\{ 370, 260, 370, 260, 370\}
+01674 \}
+01675 ,\{\{ 370, 370, 370, 370, 300\}
+01676 ,\{ 370, 370, 370, 370, 300\}
+01677 ,\{ 370, 370, 370, 370, 300\}
+01678 ,\{ 370, 370, 370, 370, 300\}
+01679 ,\{ 300, 300, 300, 300, 300\}
+01680 \}
+01681 \}
+01682 ,\{\{\{ 370, 370, 370, 370, 370\}
+01683 ,\{ 370, 370, 370, 370, 370\}
+01684 ,\{ 370, 370, 370, 370, 370\}
+01685 ,\{ 370, 370, 370, 370, 370\}
+01686 ,\{ 370, 370, 370, 370, 370\}
+01687 \}
+01688 ,\{\{ 370, 370, 370, 260, 370\}
+01689 ,\{ 370, 370, 370, 260, 370\}
+01690 ,\{ 370, 370, 370, 260, 370\}
+01691 ,\{ 260, 260, 260, 260, 260\}
+01692 ,\{ 370, 370, 370, 260, 370\}
+01693 \}
+01694 ,\{\{ 370, 370, 370, 370, 370\}
+01695 ,\{ 370, 370, 370, 370, 370\}
+01696 ,\{ 370, 370, 370, 370, 370\}
+01697 ,\{ 370, 370, 370, 370, 370\}
+01698 ,\{ 370, 370, 370, 370, 370\}
+01699 \}
+01700 ,\{\{ 370, 260, 370, 260, 370\}
+01701 ,\{ 260, 260, 260, 260, 260\}
+01702 ,\{ 370, 260, 370, 260, 370\}
+01703 ,\{ 260, 260, 260, 260, 260\}
+01704 ,\{ 370, 260, 370, 260, 370\}
+01705 \}
+01706 ,\{\{ 370, 370, 370, 370, 300\}
+01707 ,\{ 370, 370, 370, 370, 300\}
+01708 ,\{ 370, 370, 370, 370, 300\}
+01709 ,\{ 370, 370, 370, 370, 300\}
+01710 ,\{ 300, 300, 300, 300, 300\}
+01711 \}
+01712 \}
+01713 ,\{\{\{ 370, 370, 370, 370, 370\}
+01714 ,\{ 370, 370, 370, 370, 370\}
+01715 ,\{ 370, 370, 370, 370, 370\}
+01716 ,\{ 370, 370, 370, 370, 370\}
+01717 ,\{ 370, 370, 370, 370, 370\}
+01718 \}
+01719 ,\{\{ 370, 370, 370, 260, 370\}
+01720 ,\{ 370, 370, 370, 260, 370\}
+01721 ,\{ 370, 370, 370, 260, 370\}
+01722 ,\{ 260, 260, 260, 260, 260\}
+01723 ,\{ 370, 370, 370, 260, 370\}
+01724 \}
+01725 ,\{\{ 370, 370, 370, 370, 370\}
+01726 ,\{ 370, 370, 370, 370, 370\}
+01727 ,\{ 370, 370, 370, 370, 370\}
+01728 ,\{ 370, 370, 370, 370, 370\}
+01729 ,\{ 370, 370, 370, 370, 370\}
+01730 \}
+01731 ,\{\{ 370, 260, 370, 260, 370\}
+01732 ,\{ 370, 260, 370, 260, 370\}
+01733 ,\{ 370, 260, 370, 260, 370\}
+01734 ,\{ 260, 260, 260, 260, 260\}
+01735 ,\{ 370, 260, 370, 260, 370\}
+01736 \}
+01737 ,\{\{ 370, 370, 370, 370, 300\}
+01738 ,\{ 370, 370, 370, 370, 300\}
+01739 ,\{ 370, 370, 370, 370, 300\}
+01740 ,\{ 370, 370, 370, 370, 300\}
+01741 ,\{ 300, 300, 300, 300, 300\}
+01742 \}
+01743 \}
+01744 \}
+01745 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01746 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01747 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01748 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01749 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01750 \}
+01751 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01754 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01755 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01756 \}
+01757 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01760 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01761 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01762 \}
+01763 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01766 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01767 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01768 \}
+01769 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01772 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01773 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01774 \}
+01775 \}
+01776 ,\{\{\{ 300, 300, 300, 300, 300\}
+01777 ,\{ 300, 300, 300, 300, 300\}
+01778 ,\{ 300, 300, 300, 300, 300\}
+01779 ,\{ 300, 300, 300, 300, 300\}
+01780 ,\{ 300, 300, 300, 300, 300\}
+01781 \}
+01782 ,\{\{ 300, 300, 300, 300, 300\}
+01783 ,\{ 300, 300, 300, 300, 300\}
+01784 ,\{ 300, 300, 300, 300, 300\}
+01785 ,\{ 190, 190, 190, 190, 190\}
+01786 ,\{ 300, 300, 300, 300, 300\}
+01787 \}
+01788 ,\{\{ 300, 300, 300, 300, 300\}
+01789 ,\{ 300, 300, 300, 300, 300\}
+01790 ,\{ 300, 300, 300, 300, 300\}
+01791 ,\{ 300, 300, 300, 300, 300\}
+01792 ,\{ 300, 300, 300, 300, 300\}
+01793 \}
+01794 ,\{\{ 300, 190, 300, 190, 300\}
+01795 ,\{ 190, 190, 190, 190, 190\}
+01796 ,\{ 300, 190, 300, 190, 300\}
+01797 ,\{ 190, 190, 190, 190, 190\}
+01798 ,\{ 300, 190, 300, 190, 300\}
+01799 \}
+01800 ,\{\{ 300, 300, 300, 300, 220\}
+01801 ,\{ 300, 300, 300, 300, 220\}
+01802 ,\{ 300, 300, 300, 300, 220\}
+01803 ,\{ 300, 300, 300, 300, 220\}
+01804 ,\{ 220, 220, 220, 220, 220\}
+01805 \}
+01806 \}
+01807 ,\{\{\{ 300, 300, 300, 300, 300\}
+01808 ,\{ 300, 300, 300, 300, 300\}
+01809 ,\{ 300, 300, 300, 300, 300\}
+01810 ,\{ 300, 300, 300, 300, 300\}
+01811 ,\{ 300, 300, 300, 300, 300\}
+01812 \}
+01813 ,\{\{ 300, 300, 300, 300, 300\}
+01814 ,\{ 300, 300, 300, 300, 300\}
+01815 ,\{ 300, 300, 300, 300, 300\}
+01816 ,\{ 190, 190, 190, 190, 190\}
+01817 ,\{ 300, 300, 300, 300, 300\}
+01818 \}
+01819 ,\{\{ 300, 300, 300, 300, 300\}
+01820 ,\{ 300, 300, 300, 300, 300\}
+01821 ,\{ 300, 300, 300, 300, 300\}
+01822 ,\{ 300, 300, 300, 300, 300\}
+01823 ,\{ 300, 300, 300, 300, 300\}
+01824 \}
+01825 ,\{\{ 300, 190, 300, 190, 300\}
+01826 ,\{ 300, 190, 300, 190, 300\}
+01827 ,\{ 300, 190, 300, 190, 300\}
+01828 ,\{ 190, 190, 190, 190, 190\}
+01829 ,\{ 300, 190, 300, 190, 300\}
+01830 \}
+01831 ,\{\{ 300, 300, 300, 300, 220\}
+01832 ,\{ 300, 300, 300, 300, 220\}
+01833 ,\{ 300, 300, 300, 300, 220\}
+01834 ,\{ 300, 300, 300, 300, 220\}
+01835 ,\{ 220, 220, 220, 220, 220\}
+01836 \}
+01837 \}
+01838 ,\{\{\{ 370, 370, 370, 370, 370\}
+01839 ,\{ 370, 370, 370, 370, 370\}
+01840 ,\{ 370, 370, 370, 370, 370\}
+01841 ,\{ 370, 370, 370, 370, 370\}
+01842 ,\{ 370, 370, 370, 370, 370\}
+01843 \}
+01844 ,\{\{ 370, 370, 370, 370, 370\}
+01845 ,\{ 370, 370, 370, 370, 370\}
+01846 ,\{ 370, 370, 370, 370, 370\}
+01847 ,\{ 260, 260, 260, 260, 260\}
+01848 ,\{ 370, 370, 370, 370, 370\}
+01849 \}
+01850 ,\{\{ 370, 370, 370, 370, 370\}
+01851 ,\{ 370, 370, 370, 370, 370\}
+01852 ,\{ 370, 370, 370, 370, 370\}
+01853 ,\{ 370, 370, 370, 370, 370\}
+01854 ,\{ 370, 370, 370, 370, 370\}
+01855 \}
+01856 ,\{\{ 370, 260, 370, 260, 370\}
+01857 ,\{ 370, 260, 370, 260, 370\}
+01858 ,\{ 370, 260, 370, 260, 370\}
+01859 ,\{ 260, 260, 260, 260, 260\}
+01860 ,\{ 370, 260, 370, 260, 370\}
+01861 \}
+01862 ,\{\{ 370, 370, 370, 370, 300\}
+01863 ,\{ 370, 370, 370, 370, 300\}
+01864 ,\{ 370, 370, 370, 370, 300\}
+01865 ,\{ 370, 370, 370, 370, 300\}
+01866 ,\{ 300, 300, 300, 300, 300\}
+01867 \}
+01868 \}
+01869 ,\{\{\{ 370, 370, 370, 370, 370\}
+01870 ,\{ 370, 370, 370, 370, 370\}
+01871 ,\{ 370, 370, 370, 370, 370\}
+01872 ,\{ 370, 370, 370, 370, 370\}
+01873 ,\{ 370, 370, 370, 370, 370\}
+01874 \}
+01875 ,\{\{ 370, 370, 370, 370, 370\}
+01876 ,\{ 370, 370, 370, 370, 370\}
+01877 ,\{ 370, 370, 370, 370, 370\}
+01878 ,\{ 260, 260, 260, 260, 260\}
+01879 ,\{ 370, 370, 370, 370, 370\}
+01880 \}
+01881 ,\{\{ 370, 370, 370, 370, 370\}
+01882 ,\{ 370, 370, 370, 370, 370\}
+01883 ,\{ 370, 370, 370, 370, 370\}
+01884 ,\{ 370, 370, 370, 370, 370\}
+01885 ,\{ 370, 370, 370, 370, 370\}
+01886 \}
+01887 ,\{\{ 370, 260, 370, 260, 370\}
+01888 ,\{ 260, 260, 260, 260, 260\}
+01889 ,\{ 370, 260, 370, 260, 370\}
+01890 ,\{ 260, 260, 260, 260, 260\}
+01891 ,\{ 370, 260, 370, 260, 370\}
+01892 \}
+01893 ,\{\{ 370, 370, 370, 370, 300\}
+01894 ,\{ 370, 370, 370, 370, 300\}
+01895 ,\{ 370, 370, 370, 370, 300\}
+01896 ,\{ 370, 370, 370, 370, 300\}
+01897 ,\{ 300, 300, 300, 300, 300\}
+01898 \}
+01899 \}
+01900 ,\{\{\{ 370, 370, 370, 370, 370\}
+01901 ,\{ 370, 370, 370, 370, 370\}
+01902 ,\{ 370, 370, 370, 370, 370\}
+01903 ,\{ 370, 370, 370, 370, 370\}
+01904 ,\{ 370, 370, 370, 370, 370\}
+01905 \}
+01906 ,\{\{ 370, 370, 370, 370, 370\}
+01907 ,\{ 370, 370, 370, 370, 370\}
+01908 ,\{ 370, 370, 370, 370, 370\}
+01909 ,\{ 260, 260, 260, 260, 260\}
+01910 ,\{ 370, 370, 370, 370, 370\}
+01911 \}
+01912 ,\{\{ 370, 370, 370, 370, 370\}
+01913 ,\{ 370, 370, 370, 370, 370\}
+01914 ,\{ 370, 370, 370, 370, 370\}
+01915 ,\{ 370, 370, 370, 370, 370\}
+01916 ,\{ 370, 370, 370, 370, 370\}
+01917 \}
+01918 ,\{\{ 370, 260, 370, 260, 370\}
+01919 ,\{ 370, 260, 370, 260, 370\}
+01920 ,\{ 370, 260, 370, 260, 370\}
+01921 ,\{ 260, 260, 260, 260, 260\}
+01922 ,\{ 370, 260, 370, 260, 370\}
+01923 \}
+01924 ,\{\{ 370, 370, 370, 370, 300\}
+01925 ,\{ 370, 370, 370, 370, 300\}
+01926 ,\{ 370, 370, 370, 370, 300\}
+01927 ,\{ 370, 370, 370, 370, 300\}
+01928 ,\{ 300, 300, 300, 300, 300\}
+01929 \}
+01930 \}
+01931 ,\{\{\{ 370, 370, 370, 370, 370\}
+01932 ,\{ 370, 370, 370, 370, 370\}
+01933 ,\{ 370, 370, 370, 370, 370\}
+01934 ,\{ 370, 370, 370, 370, 370\}
+01935 ,\{ 370, 370, 370, 370, 370\}
+01936 \}
+01937 ,\{\{ 370, 370, 370, 370, 370\}
+01938 ,\{ 370, 370, 370, 370, 370\}
+01939 ,\{ 370, 370, 370, 370, 370\}
+01940 ,\{ 260, 260, 260, 260, 260\}
+01941 ,\{ 370, 370, 370, 370, 370\}
+01942 \}
+01943 ,\{\{ 370, 370, 370, 370, 370\}
+01944 ,\{ 370, 370, 370, 370, 370\}
+01945 ,\{ 370, 370, 370, 370, 370\}
+01946 ,\{ 370, 370, 370, 370, 370\}
+01947 ,\{ 370, 370, 370, 370, 370\}
+01948 \}
+01949 ,\{\{ 370, 260, 370, 260, 370\}
+01950 ,\{ 260, 260, 260, 260, 260\}
+01951 ,\{ 370, 260, 370, 260, 370\}
+01952 ,\{ 260, 260, 260, 260, 260\}
+01953 ,\{ 370, 260, 370, 260, 370\}
+01954 \}
+01955 ,\{\{ 370, 370, 370, 370, 300\}
+01956 ,\{ 370, 370, 370, 370, 300\}
+01957 ,\{ 370, 370, 370, 370, 300\}
+01958 ,\{ 370, 370, 370, 370, 300\}
+01959 ,\{ 300, 300, 300, 300, 300\}
+01960 \}
+01961 \}
+01962 ,\{\{\{ 370, 370, 370, 370, 370\}
+01963 ,\{ 370, 370, 370, 370, 370\}
+01964 ,\{ 370, 370, 370, 370, 370\}
+01965 ,\{ 370, 370, 370, 370, 370\}
+01966 ,\{ 370, 370, 370, 370, 370\}
+01967 \}
+01968 ,\{\{ 370, 370, 370, 370, 370\}
+01969 ,\{ 370, 370, 370, 370, 370\}
+01970 ,\{ 370, 370, 370, 370, 370\}
+01971 ,\{ 260, 260, 260, 260, 260\}
+01972 ,\{ 370, 370, 370, 370, 370\}
+01973 \}
+01974 ,\{\{ 370, 370, 370, 370, 370\}
+01975 ,\{ 370, 370, 370, 370, 370\}
+01976 ,\{ 370, 370, 370, 370, 370\}
+01977 ,\{ 370, 370, 370, 370, 370\}
+01978 ,\{ 370, 370, 370, 370, 370\}
+01979 \}
+01980 ,\{\{ 370, 260, 370, 260, 370\}
+01981 ,\{ 370, 260, 370, 260, 370\}
+01982 ,\{ 370, 260, 370, 260, 370\}
+01983 ,\{ 260, 260, 260, 260, 260\}
+01984 ,\{ 370, 260, 370, 260, 370\}
+01985 \}
+01986 ,\{\{ 370, 370, 370, 370, 300\}
+01987 ,\{ 370, 370, 370, 370, 300\}
+01988 ,\{ 370, 370, 370, 370, 300\}
+01989 ,\{ 370, 370, 370, 370, 300\}
+01990 ,\{ 300, 300, 300, 300, 300\}
+01991 \}
+01992 \}
+01993 \}\};
+\end{DoxyCode}
--- /dev/null
+\hypertarget{intl21dH_8h}{\section{intl21d\-H.\-h}
+\label{intl21dH_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl21d\-H.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl21d\-H.\-h}}
+}
+
+\begin{DoxyCode}
+00001 PUBLIC \textcolor{keywordtype}{int} int21\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5] =
+00002 \{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00007 \}
+00008 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00013 \}
+00014 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00019 \}
+00020 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00025 \}
+00026 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00029 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00031 \}
+00032 \}
+00033 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00037 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00038 \}
+00039 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00043 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00044 \}
+00045 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00049 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00050 \}
+00051 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00056 \}
+00057 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00058 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00059 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00060 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00061 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00062 \}
+00063 \}
+00064 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00065 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00066 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00067 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00068 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00069 \}
+00070 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00071 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00072 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00073 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00074 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00075 \}
+00076 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00077 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00078 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00079 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00080 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00081 \}
+00082 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00083 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00084 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00085 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00086 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00087 \}
+00088 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00089 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00090 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00091 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00092 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00093 \}
+00094 \}
+00095 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00096 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00097 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00099 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00100 \}
+00101 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00105 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00106 \}
+00107 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00108 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00109 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00111 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00112 \}
+00113 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00114 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00115 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00117 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00118 \}
+00119 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00120 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00121 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00122 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00123 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00124 \}
+00125 \}
+00126 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00127 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00128 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00130 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00131 \}
+00132 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00133 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00134 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00136 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00137 \}
+00138 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00139 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00140 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00142 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00143 \}
+00144 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00145 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00146 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00148 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00149 \}
+00150 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00154 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00155 \}
+00156 \}
+00157 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00158 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00159 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00160 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00161 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00162 \}
+00163 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00164 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00165 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00166 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00167 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00168 \}
+00169 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00170 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00171 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00172 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00173 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00174 \}
+00175 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00176 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00177 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00178 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00179 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00180 \}
+00181 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00182 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00183 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00184 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00185 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00186 \}
+00187 \}
+00188 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00189 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00190 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00191 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00192 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00193 \}
+00194 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00195 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00196 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00197 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00198 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00199 \}
+00200 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00201 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00203 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00204 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00205 \}
+00206 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00207 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00208 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00209 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00210 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00211 \}
+00212 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00213 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00214 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00215 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00216 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00217 \}
+00218 \}
+00219 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00220 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00221 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00222 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00223 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00224 \}
+00225 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00226 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00227 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00228 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00229 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00230 \}
+00231 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00232 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00233 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00234 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00235 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00236 \}
+00237 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00238 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00239 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00240 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00241 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00242 \}
+00243 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00244 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00245 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00246 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00247 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00248 \}
+00249 \}
+00250 \}
+00251 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00252 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00253 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00256 \}
+00257 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00258 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00259 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00262 \}
+00263 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00264 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00265 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00268 \}
+00269 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00270 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00271 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00274 \}
+00275 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00276 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00277 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00278 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00280 \}
+00281 \}
+00282 ,\{\{\{ 350, 350, 350, 350, 350\}
+00283 ,\{ 350, 350, 350, 350, 350\}
+00284 ,\{ 350, 350, 350, 350, 350\}
+00285 ,\{ 350, 350, 350, 350, 350\}
+00286 ,\{ 350, 350, 350, 350, 350\}
+00287 \}
+00288 ,\{\{ 350, 350, 350, -230, 350\}
+00289 ,\{ 350, 350, 350, -230, 350\}
+00290 ,\{ 350, 350, 350, -230, 350\}
+00291 ,\{ -230, -230, -230, -230, -230\}
+00292 ,\{ 350, 350, 350, -230, 350\}
+00293 \}
+00294 ,\{\{ 350, 350, 350, 350, 350\}
+00295 ,\{ 350, 350, 350, 350, 350\}
+00296 ,\{ 350, 350, 350, 350, 350\}
+00297 ,\{ 350, 350, 350, 350, 350\}
+00298 ,\{ 350, 350, 350, 350, 350\}
+00299 \}
+00300 ,\{\{ 350, -230, 350, -230, 350\}
+00301 ,\{ -230, -230, -230, -230, -230\}
+00302 ,\{ 350, -230, 350, -230, 350\}
+00303 ,\{ -230, -230, -230, -230, -230\}
+00304 ,\{ 350, -230, 350, -230, 350\}
+00305 \}
+00306 ,\{\{ 350, 350, 350, 350, -670\}
+00307 ,\{ 350, 350, 350, 350, -670\}
+00308 ,\{ 350, 350, 350, 350, -670\}
+00309 ,\{ 350, 350, 350, 350, -670\}
+00310 ,\{ -670, -670, -670, -670, -670\}
+00311 \}
+00312 \}
+00313 ,\{\{\{ 780, 640, 780, 350, 350\}
+00314 ,\{ 350, 350, 350, 350, 350\}
+00315 ,\{ 780, 350, 780, 350, 350\}
+00316 ,\{ 350, 350, 350, 350, 350\}
+00317 ,\{ 640, 640, 350, 350, 350\}
+00318 \}
+00319 ,\{\{ 350, 350, 350, 250, 350\}
+00320 ,\{ 350, 260, 350, 250, 350\}
+00321 ,\{ 350, 350, -250, -230, 350\}
+00322 ,\{ -230, -230, -230, -230, -230\}
+00323 ,\{ 350, 350, 350, -230, 350\}
+00324 \}
+00325 ,\{\{ 780, 640, 780, 350, 350\}
+00326 ,\{ 350, 160, 350, 350, 350\}
+00327 ,\{ 780, 350, 780, 350, 350\}
+00328 ,\{ 350, 350, 350, 350, 350\}
+00329 ,\{ 640, 640, 350, 350, 350\}
+00330 \}
+00331 ,\{\{ 350, -160, 350, -230, 350\}
+00332 ,\{ 350, -160, 350, -410, 350\}
+00333 ,\{ 350, -230, 350, -230, 350\}
+00334 ,\{ -230, -310, -230, -230, -230\}
+00335 ,\{ 350, -230, 350, -230, 350\}
+00336 \}
+00337 ,\{\{ 580, 350, 580, 350, -580\}
+00338 ,\{ 350, 350, 350, 350, -670\}
+00339 ,\{ 580, 350, 580, 350, -580\}
+00340 ,\{ 350, 350, 350, 350, -670\}
+00341 ,\{ -670, -670, -690, -670, -700\}
+00342 \}
+00343 \}
+00344 ,\{\{\{ 850, 850, 850, 850, 850\}
+00345 ,\{ 850, 850, 850, 850, 850\}
+00346 ,\{ 850, 850, 850, 850, 850\}
+00347 ,\{ 850, 850, 850, 850, 850\}
+00348 ,\{ 850, 850, 850, 850, 850\}
+00349 \}
+00350 ,\{\{ 850, 850, 850, 280, 850\}
+00351 ,\{ 850, 850, 850, 280, 850\}
+00352 ,\{ 850, 850, 850, 280, 850\}
+00353 ,\{ 280, 280, 280, 280, 280\}
+00354 ,\{ 850, 850, 850, 280, 850\}
+00355 \}
+00356 ,\{\{ 850, 850, 850, 850, 850\}
+00357 ,\{ 850, 850, 850, 850, 850\}
+00358 ,\{ 850, 850, 850, 850, 850\}
+00359 ,\{ 850, 850, 850, 850, 850\}
+00360 ,\{ 850, 850, 850, 850, 850\}
+00361 \}
+00362 ,\{\{ 850, 280, 850, 280, 850\}
+00363 ,\{ 850, 280, 850, 280, 850\}
+00364 ,\{ 850, 280, 850, 280, 850\}
+00365 ,\{ 280, 280, 280, 280, 280\}
+00366 ,\{ 850, 280, 850, 280, 850\}
+00367 \}
+00368 ,\{\{ 850, 850, 850, 850, -160\}
+00369 ,\{ 850, 850, 850, 850, -160\}
+00370 ,\{ 850, 850, 850, 850, -160\}
+00371 ,\{ 850, 850, 850, 850, -160\}
+00372 ,\{ -160, -160, -160, -160, -160\}
+00373 \}
+00374 \}
+00375 ,\{\{\{ 850, 850, 850, 850, 850\}
+00376 ,\{ 850, 850, 850, 850, 850\}
+00377 ,\{ 850, 850, 850, 850, 850\}
+00378 ,\{ 850, 850, 850, 850, 850\}
+00379 ,\{ 850, 850, 850, 850, 850\}
+00380 \}
+00381 ,\{\{ 850, 850, 850, 280, 850\}
+00382 ,\{ 850, 850, 850, 280, 850\}
+00383 ,\{ 850, 850, 850, 280, 850\}
+00384 ,\{ 280, 280, 280, 280, 280\}
+00385 ,\{ 850, 850, 850, 280, 850\}
+00386 \}
+00387 ,\{\{ 850, 850, 850, 850, 850\}
+00388 ,\{ 850, 850, 850, 850, 850\}
+00389 ,\{ 850, 850, 850, 850, 850\}
+00390 ,\{ 850, 850, 850, 850, 850\}
+00391 ,\{ 850, 850, 850, 850, 850\}
+00392 \}
+00393 ,\{\{ 850, 280, 850, 280, 850\}
+00394 ,\{ 280, 280, 280, 280, 280\}
+00395 ,\{ 850, 280, 850, 280, 850\}
+00396 ,\{ 280, 280, 280, 280, 280\}
+00397 ,\{ 850, 280, 850, 280, 850\}
+00398 \}
+00399 ,\{\{ 850, 850, 850, 850, -160\}
+00400 ,\{ 850, 850, 850, 850, -160\}
+00401 ,\{ 850, 850, 850, 850, -160\}
+00402 ,\{ 850, 850, 850, 850, -160\}
+00403 ,\{ -160, -160, -160, -160, -160\}
+00404 \}
+00405 \}
+00406 ,\{\{\{ 850, 850, 850, 850, 850\}
+00407 ,\{ 850, 850, 850, 850, 850\}
+00408 ,\{ 850, 850, 850, 850, 850\}
+00409 ,\{ 850, 850, 850, 850, 850\}
+00410 ,\{ 850, 850, 850, 850, 850\}
+00411 \}
+00412 ,\{\{ 850, 850, 850, 280, 850\}
+00413 ,\{ 850, 850, 850, 280, 850\}
+00414 ,\{ 850, 850, 850, 280, 850\}
+00415 ,\{ 280, 280, 280, 280, 280\}
+00416 ,\{ 850, 850, 850, 280, 850\}
+00417 \}
+00418 ,\{\{ 850, 850, 850, 850, 850\}
+00419 ,\{ 850, 850, 850, 850, 850\}
+00420 ,\{ 850, 850, 850, 850, 850\}
+00421 ,\{ 850, 850, 850, 850, 850\}
+00422 ,\{ 850, 850, 850, 850, 850\}
+00423 \}
+00424 ,\{\{ 850, 280, 850, 280, 850\}
+00425 ,\{ 850, 280, 850, 280, 850\}
+00426 ,\{ 850, 280, 850, 280, 850\}
+00427 ,\{ 280, 280, 280, 280, 280\}
+00428 ,\{ 850, 280, 850, 280, 850\}
+00429 \}
+00430 ,\{\{ 850, 850, 850, 850, -160\}
+00431 ,\{ 850, 850, 850, 850, -160\}
+00432 ,\{ 850, 850, 850, 850, -160\}
+00433 ,\{ 850, 850, 850, 850, -160\}
+00434 ,\{ -160, -160, -160, -160, -160\}
+00435 \}
+00436 \}
+00437 ,\{\{\{ 850, 850, 850, 850, 850\}
+00438 ,\{ 850, 850, 850, 850, 850\}
+00439 ,\{ 850, 850, 850, 850, 850\}
+00440 ,\{ 850, 850, 850, 850, 850\}
+00441 ,\{ 850, 850, 850, 850, 850\}
+00442 \}
+00443 ,\{\{ 850, 850, 850, 280, 850\}
+00444 ,\{ 850, 850, 850, 280, 850\}
+00445 ,\{ 850, 850, 850, 280, 850\}
+00446 ,\{ 280, 280, 280, 280, 280\}
+00447 ,\{ 850, 850, 850, 280, 850\}
+00448 \}
+00449 ,\{\{ 850, 850, 850, 850, 850\}
+00450 ,\{ 850, 850, 850, 850, 850\}
+00451 ,\{ 850, 850, 850, 850, 850\}
+00452 ,\{ 850, 850, 850, 850, 850\}
+00453 ,\{ 850, 850, 850, 850, 850\}
+00454 \}
+00455 ,\{\{ 850, 280, 850, 280, 850\}
+00456 ,\{ 280, 280, 280, 280, 280\}
+00457 ,\{ 850, 280, 850, 280, 850\}
+00458 ,\{ 280, 280, 280, 280, 280\}
+00459 ,\{ 850, 280, 850, 280, 850\}
+00460 \}
+00461 ,\{\{ 850, 850, 850, 850, -160\}
+00462 ,\{ 850, 850, 850, 850, -160\}
+00463 ,\{ 850, 850, 850, 850, -160\}
+00464 ,\{ 850, 850, 850, 850, -160\}
+00465 ,\{ -160, -160, -160, -160, -160\}
+00466 \}
+00467 \}
+00468 ,\{\{\{ 850, 850, 850, 850, 850\}
+00469 ,\{ 850, 850, 850, 850, 850\}
+00470 ,\{ 850, 850, 850, 850, 850\}
+00471 ,\{ 850, 850, 850, 850, 850\}
+00472 ,\{ 850, 850, 850, 850, 850\}
+00473 \}
+00474 ,\{\{ 850, 850, 850, 280, 850\}
+00475 ,\{ 850, 850, 850, 280, 850\}
+00476 ,\{ 850, 850, 850, 280, 850\}
+00477 ,\{ 280, 280, 280, 280, 280\}
+00478 ,\{ 850, 850, 850, 280, 850\}
+00479 \}
+00480 ,\{\{ 850, 850, 850, 850, 850\}
+00481 ,\{ 850, 850, 850, 850, 850\}
+00482 ,\{ 850, 850, 850, 850, 850\}
+00483 ,\{ 850, 850, 850, 850, 850\}
+00484 ,\{ 850, 850, 850, 850, 850\}
+00485 \}
+00486 ,\{\{ 850, 280, 850, 280, 850\}
+00487 ,\{ 850, 280, 850, 280, 850\}
+00488 ,\{ 850, 280, 850, 280, 850\}
+00489 ,\{ 280, 280, 280, 280, 280\}
+00490 ,\{ 850, 280, 850, 280, 850\}
+00491 \}
+00492 ,\{\{ 850, 850, 850, 850, -160\}
+00493 ,\{ 850, 850, 850, 850, -160\}
+00494 ,\{ 850, 850, 850, 850, -160\}
+00495 ,\{ 850, 850, 850, 850, -160\}
+00496 ,\{ -160, -160, -160, -160, -160\}
+00497 \}
+00498 \}
+00499 \}
+00500 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00501 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00502 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00505 \}
+00506 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00507 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00508 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00511 \}
+00512 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00513 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00514 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00517 \}
+00518 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00519 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00520 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00523 \}
+00524 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00525 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00526 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00527 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00529 \}
+00530 \}
+00531 ,\{\{\{ 690, 690, 350, 350, 350\}
+00532 ,\{ 690, 690, 350, 350, 350\}
+00533 ,\{ 350, 350, 350, 350, 350\}
+00534 ,\{ 350, 350, 350, 350, 350\}
+00535 ,\{ 350, 350, 350, 350, 350\}
+00536 \}
+00537 ,\{\{ 690, 690, 350, 350, 350\}
+00538 ,\{ 690, 690, 350, 240, 350\}
+00539 ,\{ 350, 350, 350, 350, 350\}
+00540 ,\{ -230, -500, -230, -230, -230\}
+00541 ,\{ 350, 350, 350, 350, 350\}
+00542 \}
+00543 ,\{\{ 350, 350, 350, 350, 350\}
+00544 ,\{ 350, 350, 350, 350, 350\}
+00545 ,\{ 350, 350, 350, 350, 350\}
+00546 ,\{ 350, 350, 350, 350, 350\}
+00547 ,\{ 350, 350, 130, 350, 350\}
+00548 \}
+00549 ,\{\{ 350, -230, 350, -230, 350\}
+00550 ,\{ -230, -230, -230, -230, -230\}
+00551 ,\{ 350, -230, 350, -230, 350\}
+00552 ,\{ -230, -230, -230, -230, -230\}
+00553 ,\{ 350, -230, 350, -230, 350\}
+00554 \}
+00555 ,\{\{ 350, 350, 350, 350, -670\}
+00556 ,\{ 350, 350, 350, 350, -670\}
+00557 ,\{ 350, 350, 350, 350, -670\}
+00558 ,\{ 350, 350, 350, 350, -670\}
+00559 ,\{ -670, -670, -670, -670, -670\}
+00560 \}
+00561 \}
+00562 ,\{\{\{ 350, 350, 350, 350, 350\}
+00563 ,\{ 350, 350, 350, 350, 350\}
+00564 ,\{ 350, 350, 350, 350, 350\}
+00565 ,\{ 350, 350, 350, 350, 350\}
+00566 ,\{ 350, 350, 350, 350, 350\}
+00567 \}
+00568 ,\{\{ 350, 350, 350, 350, 350\}
+00569 ,\{ 350, 350, 350, 350, 350\}
+00570 ,\{ 350, 350, 350, 350, 350\}
+00571 ,\{ -230, -230, -230, -230, -230\}
+00572 ,\{ 350, 350, 350, 350, 350\}
+00573 \}
+00574 ,\{\{ 350, 350, 350, 350, 350\}
+00575 ,\{ 350, 350, 350, 350, 350\}
+00576 ,\{ 350, 350, 350, 350, 350\}
+00577 ,\{ 350, 350, 350, 350, 350\}
+00578 ,\{ 350, 350, 350, 350, 350\}
+00579 \}
+00580 ,\{\{ 350, -230, 350, -230, 350\}
+00581 ,\{ 350, -230, 350, -230, 350\}
+00582 ,\{ 350, -230, 350, -230, 350\}
+00583 ,\{ -230, -230, -230, -230, -230\}
+00584 ,\{ 350, -230, 350, -230, 350\}
+00585 \}
+00586 ,\{\{ 350, 350, 350, 350, -670\}
+00587 ,\{ 350, 350, 350, 350, -670\}
+00588 ,\{ 350, 350, 350, 350, -670\}
+00589 ,\{ 350, 350, 350, 350, -670\}
+00590 ,\{ -670, -670, -670, -670, -670\}
+00591 \}
+00592 \}
+00593 ,\{\{\{ 850, 850, 850, 850, 850\}
+00594 ,\{ 850, 850, 850, 850, 850\}
+00595 ,\{ 850, 850, 850, 850, 850\}
+00596 ,\{ 850, 850, 850, 850, 850\}
+00597 ,\{ 850, 850, 850, 850, 850\}
+00598 \}
+00599 ,\{\{ 850, 850, 850, 850, 850\}
+00600 ,\{ 850, 850, 850, 850, 850\}
+00601 ,\{ 850, 850, 850, 850, 850\}
+00602 ,\{ 280, 280, 280, 280, 280\}
+00603 ,\{ 850, 850, 850, 850, 850\}
+00604 \}
+00605 ,\{\{ 850, 850, 850, 850, 850\}
+00606 ,\{ 850, 850, 850, 850, 850\}
+00607 ,\{ 850, 850, 850, 850, 850\}
+00608 ,\{ 850, 850, 850, 850, 850\}
+00609 ,\{ 850, 850, 850, 850, 850\}
+00610 \}
+00611 ,\{\{ 850, 280, 850, 280, 850\}
+00612 ,\{ 850, 280, 850, 280, 850\}
+00613 ,\{ 850, 280, 850, 280, 850\}
+00614 ,\{ 280, 280, 280, 280, 280\}
+00615 ,\{ 850, 280, 850, 280, 850\}
+00616 \}
+00617 ,\{\{ 850, 850, 850, 850, -160\}
+00618 ,\{ 850, 850, 850, 850, -160\}
+00619 ,\{ 850, 850, 850, 850, -160\}
+00620 ,\{ 850, 850, 850, 850, -160\}
+00621 ,\{ -160, -160, -160, -160, -160\}
+00622 \}
+00623 \}
+00624 ,\{\{\{ 850, 850, 850, 850, 850\}
+00625 ,\{ 850, 850, 850, 850, 850\}
+00626 ,\{ 850, 850, 850, 850, 850\}
+00627 ,\{ 850, 850, 850, 850, 850\}
+00628 ,\{ 850, 850, 850, 850, 850\}
+00629 \}
+00630 ,\{\{ 850, 850, 850, 850, 850\}
+00631 ,\{ 850, 690, 850, 240, 850\}
+00632 ,\{ 850, 850, 850, 850, 850\}
+00633 ,\{ 280, -500, 280, 280, 280\}
+00634 ,\{ 850, 850, 850, 850, 850\}
+00635 \}
+00636 ,\{\{ 850, 850, 850, 850, 850\}
+00637 ,\{ 850, 850, 850, 850, 850\}
+00638 ,\{ 850, 850, 850, 850, 850\}
+00639 ,\{ 850, 850, 850, 850, 850\}
+00640 ,\{ 850, 850, 130, 850, 850\}
+00641 \}
+00642 ,\{\{ 850, 280, 850, 280, 850\}
+00643 ,\{ 280, 280, 280, 280, 280\}
+00644 ,\{ 850, 280, 850, 280, 850\}
+00645 ,\{ 280, 280, 280, 280, 280\}
+00646 ,\{ 850, 280, 850, 280, 850\}
+00647 \}
+00648 ,\{\{ 850, 850, 850, 850, -160\}
+00649 ,\{ 850, 850, 850, 850, -160\}
+00650 ,\{ 850, 850, 850, 850, -160\}
+00651 ,\{ 850, 850, 850, 850, -160\}
+00652 ,\{ -160, -160, -160, -160, -160\}
+00653 \}
+00654 \}
+00655 ,\{\{\{ 850, 850, 850, 850, 850\}
+00656 ,\{ 850, 850, 850, 850, 850\}
+00657 ,\{ 850, 850, 850, 850, 850\}
+00658 ,\{ 850, 850, 850, 850, 850\}
+00659 ,\{ 850, 850, 850, 850, 850\}
+00660 \}
+00661 ,\{\{ 850, 850, 850, 850, 850\}
+00662 ,\{ 850, 850, 850, 850, 850\}
+00663 ,\{ 850, 850, 850, 850, 850\}
+00664 ,\{ 280, 280, 280, 280, 280\}
+00665 ,\{ 850, 850, 850, 850, 850\}
+00666 \}
+00667 ,\{\{ 850, 850, 850, 850, 850\}
+00668 ,\{ 850, 850, 850, 850, 850\}
+00669 ,\{ 850, 850, 850, 850, 850\}
+00670 ,\{ 850, 850, 850, 850, 850\}
+00671 ,\{ 850, 850, 850, 850, 850\}
+00672 \}
+00673 ,\{\{ 850, 280, 850, 280, 850\}
+00674 ,\{ 850, 280, 850, 280, 850\}
+00675 ,\{ 850, 280, 850, 280, 850\}
+00676 ,\{ 280, 280, 280, 280, 280\}
+00677 ,\{ 850, 280, 850, 280, 850\}
+00678 \}
+00679 ,\{\{ 850, 850, 850, 850, -160\}
+00680 ,\{ 850, 850, 850, 850, -160\}
+00681 ,\{ 850, 850, 850, 850, -160\}
+00682 ,\{ 850, 850, 850, 850, -160\}
+00683 ,\{ -160, -160, -160, -160, -160\}
+00684 \}
+00685 \}
+00686 ,\{\{\{ 850, 850, 850, 850, 850\}
+00687 ,\{ 850, 850, 850, 850, 850\}
+00688 ,\{ 850, 850, 850, 850, 850\}
+00689 ,\{ 850, 850, 850, 850, 850\}
+00690 ,\{ 850, 850, 850, 850, 850\}
+00691 \}
+00692 ,\{\{ 850, 850, 850, 850, 850\}
+00693 ,\{ 850, 850, 850, 850, 850\}
+00694 ,\{ 850, 850, 850, 850, 850\}
+00695 ,\{ 280, 280, 280, 280, 280\}
+00696 ,\{ 850, 850, 850, 850, 850\}
+00697 \}
+00698 ,\{\{ 850, 850, 850, 850, 850\}
+00699 ,\{ 850, 850, 850, 850, 850\}
+00700 ,\{ 850, 850, 850, 850, 850\}
+00701 ,\{ 850, 850, 850, 850, 850\}
+00702 ,\{ 850, 850, 850, 850, 850\}
+00703 \}
+00704 ,\{\{ 850, 280, 850, 280, 850\}
+00705 ,\{ 280, 280, 280, 280, 280\}
+00706 ,\{ 850, 280, 850, 280, 850\}
+00707 ,\{ 280, 280, 280, 280, 280\}
+00708 ,\{ 850, 280, 850, 280, 850\}
+00709 \}
+00710 ,\{\{ 850, 850, 850, 850, -160\}
+00711 ,\{ 850, 850, 850, 850, -160\}
+00712 ,\{ 850, 850, 850, 850, -160\}
+00713 ,\{ 850, 850, 850, 850, -160\}
+00714 ,\{ -160, -160, -160, -160, -160\}
+00715 \}
+00716 \}
+00717 ,\{\{\{ 850, 850, 850, 850, 850\}
+00718 ,\{ 850, 850, 850, 850, 850\}
+00719 ,\{ 850, 850, 850, 850, 850\}
+00720 ,\{ 850, 850, 850, 850, 850\}
+00721 ,\{ 850, 850, 850, 850, 850\}
+00722 \}
+00723 ,\{\{ 850, 850, 850, 850, 850\}
+00724 ,\{ 850, 850, 850, 850, 850\}
+00725 ,\{ 850, 850, 850, 850, 850\}
+00726 ,\{ 280, 280, 280, 280, 280\}
+00727 ,\{ 850, 850, 850, 850, 850\}
+00728 \}
+00729 ,\{\{ 850, 850, 850, 850, 850\}
+00730 ,\{ 850, 850, 850, 850, 850\}
+00731 ,\{ 850, 850, 850, 850, 850\}
+00732 ,\{ 850, 850, 850, 850, 850\}
+00733 ,\{ 850, 850, 850, 850, 850\}
+00734 \}
+00735 ,\{\{ 850, 280, 850, 280, 850\}
+00736 ,\{ 850, 280, 850, 280, 850\}
+00737 ,\{ 850, 280, 850, 280, 850\}
+00738 ,\{ 280, 280, 280, 280, 280\}
+00739 ,\{ 850, 280, 850, 280, 850\}
+00740 \}
+00741 ,\{\{ 850, 850, 850, 850, -160\}
+00742 ,\{ 850, 850, 850, 850, -160\}
+00743 ,\{ 850, 850, 850, 850, -160\}
+00744 ,\{ 850, 850, 850, 850, -160\}
+00745 ,\{ -160, -160, -160, -160, -160\}
+00746 \}
+00747 \}
+00748 \}
+00749 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00750 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00751 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00754 \}
+00755 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00756 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00757 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00760 \}
+00761 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00762 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00763 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00766 \}
+00767 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00768 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00769 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00772 \}
+00773 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00774 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00775 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00776 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00778 \}
+00779 \}
+00780 ,\{\{\{ 850, 850, 850, 850, 850\}
+00781 ,\{ 850, 850, 850, 850, 850\}
+00782 ,\{ 850, 850, 850, 850, 850\}
+00783 ,\{ 850, 850, 850, 850, 850\}
+00784 ,\{ 850, 850, 850, 850, 850\}
+00785 \}
+00786 ,\{\{ 850, 850, 850, 850, 850\}
+00787 ,\{ 850, 690, 850, 240, 850\}
+00788 ,\{ 850, 850, 850, 850, 850\}
+00789 ,\{ 280, -500, 280, 280, 280\}
+00790 ,\{ 850, 850, 850, 850, 850\}
+00791 \}
+00792 ,\{\{ 850, 850, 850, 850, 850\}
+00793 ,\{ 850, 850, 850, 850, 850\}
+00794 ,\{ 850, 850, 850, 850, 850\}
+00795 ,\{ 850, 850, 850, 850, 850\}
+00796 ,\{ 850, 850, 130, 850, 850\}
+00797 \}
+00798 ,\{\{ 850, 280, 850, 280, 850\}
+00799 ,\{ 280, 280, 280, 280, 280\}
+00800 ,\{ 850, 280, 850, 280, 850\}
+00801 ,\{ 280, 280, 280, 280, 280\}
+00802 ,\{ 850, 280, 850, 280, 850\}
+00803 \}
+00804 ,\{\{ 850, 850, 850, 850, -160\}
+00805 ,\{ 850, 850, 850, 850, -160\}
+00806 ,\{ 850, 850, 850, 850, -160\}
+00807 ,\{ 850, 850, 850, 850, -160\}
+00808 ,\{ -160, -160, -160, -160, -160\}
+00809 \}
+00810 \}
+00811 ,\{\{\{ 850, 850, 850, 850, 850\}
+00812 ,\{ 850, 850, 850, 850, 850\}
+00813 ,\{ 850, 850, 850, 850, 850\}
+00814 ,\{ 850, 850, 850, 850, 850\}
+00815 ,\{ 850, 850, 850, 850, 850\}
+00816 \}
+00817 ,\{\{ 850, 850, 850, 850, 850\}
+00818 ,\{ 850, 850, 850, 850, 850\}
+00819 ,\{ 850, 850, 850, 850, 850\}
+00820 ,\{ 280, 280, 280, 280, 280\}
+00821 ,\{ 850, 850, 850, 850, 850\}
+00822 \}
+00823 ,\{\{ 850, 850, 850, 850, 850\}
+00824 ,\{ 850, 850, 850, 850, 850\}
+00825 ,\{ 850, 850, 850, 850, 850\}
+00826 ,\{ 850, 850, 850, 850, 850\}
+00827 ,\{ 850, 850, 850, 850, 850\}
+00828 \}
+00829 ,\{\{ 850, 280, 850, 280, 850\}
+00830 ,\{ 850, 280, 850, 280, 850\}
+00831 ,\{ 850, 280, 850, 280, 850\}
+00832 ,\{ 280, 280, 280, 280, 280\}
+00833 ,\{ 850, 280, 850, 280, 850\}
+00834 \}
+00835 ,\{\{ 850, 850, 850, 850, -160\}
+00836 ,\{ 850, 850, 850, 850, -160\}
+00837 ,\{ 850, 850, 850, 850, -160\}
+00838 ,\{ 850, 850, 850, 850, -160\}
+00839 ,\{ -160, -160, -160, -160, -160\}
+00840 \}
+00841 \}
+00842 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+00843 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00844 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00845 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00846 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00847 \}
+00848 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00849 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00850 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00851 ,\{ 780, 780, 780, 780, 780\}
+00852 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00853 \}
+00854 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00855 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00856 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00857 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00858 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00859 \}
+00860 ,\{\{ 1350, 780, 1350, 780, 1350\}
+00861 ,\{ 1350, 780, 1350, 780, 1350\}
+00862 ,\{ 1350, 780, 1350, 780, 1350\}
+00863 ,\{ 780, 780, 780, 780, 780\}
+00864 ,\{ 1350, 780, 1350, 780, 1350\}
+00865 \}
+00866 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+00867 ,\{ 1350, 1350, 1350, 1350, 340\}
+00868 ,\{ 1350, 1350, 1350, 1350, 340\}
+00869 ,\{ 1350, 1350, 1350, 1350, 340\}
+00870 ,\{ 340, 340, 340, 340, 340\}
+00871 \}
+00872 \}
+00873 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+00874 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00875 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00876 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00877 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00878 \}
+00879 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00880 ,\{ 1350, 690, 1350, 240, 1350\}
+00881 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00882 ,\{ 780, -500, 780, 780, 780\}
+00883 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00884 \}
+00885 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00886 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00887 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00888 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00889 ,\{ 1350, 1350, 130, 1350, 1350\}
+00890 \}
+00891 ,\{\{ 1350, 780, 1350, 780, 1350\}
+00892 ,\{ 780, 780, 780, 780, 780\}
+00893 ,\{ 1350, 780, 1350, 780, 1350\}
+00894 ,\{ 780, 780, 780, 780, 780\}
+00895 ,\{ 1350, 780, 1350, 780, 1350\}
+00896 \}
+00897 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+00898 ,\{ 1350, 1350, 1350, 1350, 340\}
+00899 ,\{ 1350, 1350, 1350, 1350, 340\}
+00900 ,\{ 1350, 1350, 1350, 1350, 340\}
+00901 ,\{ 340, 340, 340, 340, 340\}
+00902 \}
+00903 \}
+00904 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+00905 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00906 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00907 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00908 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00909 \}
+00910 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00911 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00912 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00913 ,\{ 780, 780, 780, 780, 780\}
+00914 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00915 \}
+00916 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00917 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00918 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00919 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00920 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00921 \}
+00922 ,\{\{ 1350, 780, 1350, 780, 1350\}
+00923 ,\{ 1350, 780, 1350, 780, 1350\}
+00924 ,\{ 1350, 780, 1350, 780, 1350\}
+00925 ,\{ 780, 780, 780, 780, 780\}
+00926 ,\{ 1350, 780, 1350, 780, 1350\}
+00927 \}
+00928 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+00929 ,\{ 1350, 1350, 1350, 1350, 340\}
+00930 ,\{ 1350, 1350, 1350, 1350, 340\}
+00931 ,\{ 1350, 1350, 1350, 1350, 340\}
+00932 ,\{ 340, 340, 340, 340, 340\}
+00933 \}
+00934 \}
+00935 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+00936 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00937 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00938 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00939 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00940 \}
+00941 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00942 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00943 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00944 ,\{ 780, 780, 780, 780, 780\}
+00945 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00946 \}
+00947 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00948 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00949 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00950 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00951 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00952 \}
+00953 ,\{\{ 1350, 780, 1350, 780, 1350\}
+00954 ,\{ 780, 780, 780, 780, 780\}
+00955 ,\{ 1350, 780, 1350, 780, 1350\}
+00956 ,\{ 780, 780, 780, 780, 780\}
+00957 ,\{ 1350, 780, 1350, 780, 1350\}
+00958 \}
+00959 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+00960 ,\{ 1350, 1350, 1350, 1350, 340\}
+00961 ,\{ 1350, 1350, 1350, 1350, 340\}
+00962 ,\{ 1350, 1350, 1350, 1350, 340\}
+00963 ,\{ 340, 340, 340, 340, 340\}
+00964 \}
+00965 \}
+00966 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+00967 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00968 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00969 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00970 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00971 \}
+00972 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00973 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00974 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00975 ,\{ 780, 780, 780, 780, 780\}
+00976 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00977 \}
+00978 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+00979 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00980 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00981 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00982 ,\{ 1350, 1350, 1350, 1350, 1350\}
+00983 \}
+00984 ,\{\{ 1350, 780, 1350, 780, 1350\}
+00985 ,\{ 1350, 780, 1350, 780, 1350\}
+00986 ,\{ 1350, 780, 1350, 780, 1350\}
+00987 ,\{ 780, 780, 780, 780, 780\}
+00988 ,\{ 1350, 780, 1350, 780, 1350\}
+00989 \}
+00990 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+00991 ,\{ 1350, 1350, 1350, 1350, 340\}
+00992 ,\{ 1350, 1350, 1350, 1350, 340\}
+00993 ,\{ 1350, 1350, 1350, 1350, 340\}
+00994 ,\{ 340, 340, 340, 340, 340\}
+00995 \}
+00996 \}
+00997 \}
+00998 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00999 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01000 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01001 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01002 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01003 \}
+01004 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01007 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01008 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01009 \}
+01010 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01013 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01014 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01015 \}
+01016 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01019 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01020 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01021 \}
+01022 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01025 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01026 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01027 \}
+01028 \}
+01029 ,\{\{\{ 850, 850, 850, 850, 850\}
+01030 ,\{ 850, 850, 850, 850, 850\}
+01031 ,\{ 850, 850, 850, 850, 850\}
+01032 ,\{ 850, 850, 850, 850, 850\}
+01033 ,\{ 850, 850, 850, 850, 850\}
+01034 \}
+01035 ,\{\{ 850, 850, 850, 280, 850\}
+01036 ,\{ 850, 850, 850, 280, 850\}
+01037 ,\{ 850, 850, 850, 280, 850\}
+01038 ,\{ 280, 280, 280, 280, 280\}
+01039 ,\{ 850, 850, 850, 280, 850\}
+01040 \}
+01041 ,\{\{ 850, 850, 850, 850, 850\}
+01042 ,\{ 850, 850, 850, 850, 850\}
+01043 ,\{ 850, 850, 850, 850, 850\}
+01044 ,\{ 850, 850, 850, 850, 850\}
+01045 ,\{ 850, 850, 850, 850, 850\}
+01046 \}
+01047 ,\{\{ 850, 280, 850, 280, 850\}
+01048 ,\{ 280, 280, 280, 280, 280\}
+01049 ,\{ 850, 280, 850, 280, 850\}
+01050 ,\{ 280, 280, 280, 280, 280\}
+01051 ,\{ 850, 280, 850, 280, 850\}
+01052 \}
+01053 ,\{\{ 850, 850, 850, 850, -160\}
+01054 ,\{ 850, 850, 850, 850, -160\}
+01055 ,\{ 850, 850, 850, 850, -160\}
+01056 ,\{ 850, 850, 850, 850, -160\}
+01057 ,\{ -160, -160, -160, -160, -160\}
+01058 \}
+01059 \}
+01060 ,\{\{\{ 850, 850, 850, 850, 850\}
+01061 ,\{ 850, 850, 850, 850, 850\}
+01062 ,\{ 850, 850, 850, 850, 850\}
+01063 ,\{ 850, 850, 850, 850, 850\}
+01064 ,\{ 850, 850, 850, 850, 850\}
+01065 \}
+01066 ,\{\{ 850, 850, 850, 280, 850\}
+01067 ,\{ 850, 850, 850, 280, 850\}
+01068 ,\{ 850, 850, 850, 280, 850\}
+01069 ,\{ 280, 280, 280, 280, 280\}
+01070 ,\{ 850, 850, 850, 280, 850\}
+01071 \}
+01072 ,\{\{ 850, 850, 850, 850, 850\}
+01073 ,\{ 850, 850, 850, 850, 850\}
+01074 ,\{ 850, 850, 850, 850, 850\}
+01075 ,\{ 850, 850, 850, 850, 850\}
+01076 ,\{ 850, 850, 850, 850, 850\}
+01077 \}
+01078 ,\{\{ 850, 280, 850, 280, 850\}
+01079 ,\{ 850, 280, 850, 280, 850\}
+01080 ,\{ 850, 280, 850, 280, 850\}
+01081 ,\{ 280, 280, 280, 280, 280\}
+01082 ,\{ 850, 280, 850, 280, 850\}
+01083 \}
+01084 ,\{\{ 850, 850, 850, 850, -160\}
+01085 ,\{ 850, 850, 850, 850, -160\}
+01086 ,\{ 850, 850, 850, 850, -160\}
+01087 ,\{ 850, 850, 850, 850, -160\}
+01088 ,\{ -160, -160, -160, -160, -160\}
+01089 \}
+01090 \}
+01091 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01092 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01093 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01094 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01095 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01096 \}
+01097 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01098 ,\{ 1350, 1350, 1350, 780, 1350\}
+01099 ,\{ 1350, 1350, 1350, 780, 1350\}
+01100 ,\{ 780, 780, 780, 780, 780\}
+01101 ,\{ 1350, 1350, 1350, 780, 1350\}
+01102 \}
+01103 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01104 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01105 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01106 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01107 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01108 \}
+01109 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01110 ,\{ 1350, 780, 1350, 780, 1350\}
+01111 ,\{ 1350, 780, 1350, 780, 1350\}
+01112 ,\{ 780, 780, 780, 780, 780\}
+01113 ,\{ 1350, 780, 1350, 780, 1350\}
+01114 \}
+01115 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01116 ,\{ 1350, 1350, 1350, 1350, 340\}
+01117 ,\{ 1350, 1350, 1350, 1350, 340\}
+01118 ,\{ 1350, 1350, 1350, 1350, 340\}
+01119 ,\{ 340, 340, 340, 340, 340\}
+01120 \}
+01121 \}
+01122 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01123 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01124 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01125 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01126 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01127 \}
+01128 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01129 ,\{ 1350, 1350, 1350, 780, 1350\}
+01130 ,\{ 1350, 1350, 1350, 780, 1350\}
+01131 ,\{ 780, 780, 780, 780, 780\}
+01132 ,\{ 1350, 1350, 1350, 780, 1350\}
+01133 \}
+01134 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01135 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01136 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01137 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01138 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01139 \}
+01140 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01141 ,\{ 780, 780, 780, 780, 780\}
+01142 ,\{ 1350, 780, 1350, 780, 1350\}
+01143 ,\{ 780, 780, 780, 780, 780\}
+01144 ,\{ 1350, 780, 1350, 780, 1350\}
+01145 \}
+01146 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01147 ,\{ 1350, 1350, 1350, 1350, 340\}
+01148 ,\{ 1350, 1350, 1350, 1350, 340\}
+01149 ,\{ 1350, 1350, 1350, 1350, 340\}
+01150 ,\{ 340, 340, 340, 340, 340\}
+01151 \}
+01152 \}
+01153 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01154 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01155 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01156 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01157 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01158 \}
+01159 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01160 ,\{ 1350, 1350, 1350, 780, 1350\}
+01161 ,\{ 1350, 1350, 1350, 780, 1350\}
+01162 ,\{ 780, 780, 780, 780, 780\}
+01163 ,\{ 1350, 1350, 1350, 780, 1350\}
+01164 \}
+01165 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01166 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01167 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01168 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01169 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01170 \}
+01171 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01172 ,\{ 1350, 780, 1350, 780, 1350\}
+01173 ,\{ 1350, 780, 1350, 780, 1350\}
+01174 ,\{ 780, 780, 780, 780, 780\}
+01175 ,\{ 1350, 780, 1350, 780, 1350\}
+01176 \}
+01177 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01178 ,\{ 1350, 1350, 1350, 1350, 340\}
+01179 ,\{ 1350, 1350, 1350, 1350, 340\}
+01180 ,\{ 1350, 1350, 1350, 1350, 340\}
+01181 ,\{ 340, 340, 340, 340, 340\}
+01182 \}
+01183 \}
+01184 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01185 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01186 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01187 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01188 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01189 \}
+01190 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01191 ,\{ 1350, 1350, 1350, 780, 1350\}
+01192 ,\{ 1350, 1350, 1350, 780, 1350\}
+01193 ,\{ 780, 780, 780, 780, 780\}
+01194 ,\{ 1350, 1350, 1350, 780, 1350\}
+01195 \}
+01196 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01197 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01198 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01199 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01200 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01201 \}
+01202 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01203 ,\{ 780, 780, 780, 780, 780\}
+01204 ,\{ 1350, 780, 1350, 780, 1350\}
+01205 ,\{ 780, 780, 780, 780, 780\}
+01206 ,\{ 1350, 780, 1350, 780, 1350\}
+01207 \}
+01208 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01209 ,\{ 1350, 1350, 1350, 1350, 340\}
+01210 ,\{ 1350, 1350, 1350, 1350, 340\}
+01211 ,\{ 1350, 1350, 1350, 1350, 340\}
+01212 ,\{ 340, 340, 340, 340, 340\}
+01213 \}
+01214 \}
+01215 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01216 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01217 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01218 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01219 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01220 \}
+01221 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01222 ,\{ 1350, 1350, 1350, 780, 1350\}
+01223 ,\{ 1350, 1350, 1350, 780, 1350\}
+01224 ,\{ 780, 780, 780, 780, 780\}
+01225 ,\{ 1350, 1350, 1350, 780, 1350\}
+01226 \}
+01227 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01228 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01229 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01230 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01231 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01232 \}
+01233 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01234 ,\{ 1350, 780, 1350, 780, 1350\}
+01235 ,\{ 1350, 780, 1350, 780, 1350\}
+01236 ,\{ 780, 780, 780, 780, 780\}
+01237 ,\{ 1350, 780, 1350, 780, 1350\}
+01238 \}
+01239 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01240 ,\{ 1350, 1350, 1350, 1350, 340\}
+01241 ,\{ 1350, 1350, 1350, 1350, 340\}
+01242 ,\{ 1350, 1350, 1350, 1350, 340\}
+01243 ,\{ 340, 340, 340, 340, 340\}
+01244 \}
+01245 \}
+01246 \}
+01247 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01249 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01250 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01251 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01252 \}
+01253 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01256 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01257 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01258 \}
+01259 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01262 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01263 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01264 \}
+01265 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01268 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01269 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01270 \}
+01271 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01274 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01275 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01276 \}
+01277 \}
+01278 ,\{\{\{ 850, 850, 850, 850, 850\}
+01279 ,\{ 850, 850, 850, 850, 850\}
+01280 ,\{ 850, 850, 850, 850, 850\}
+01281 ,\{ 850, 850, 850, 850, 850\}
+01282 ,\{ 850, 850, 850, 850, 850\}
+01283 \}
+01284 ,\{\{ 850, 850, 850, 850, 850\}
+01285 ,\{ 850, 850, 850, 850, 850\}
+01286 ,\{ 850, 850, 850, 850, 850\}
+01287 ,\{ 280, 280, 280, 280, 280\}
+01288 ,\{ 850, 850, 850, 850, 850\}
+01289 \}
+01290 ,\{\{ 850, 850, 850, 850, 850\}
+01291 ,\{ 850, 850, 850, 850, 850\}
+01292 ,\{ 850, 850, 850, 850, 850\}
+01293 ,\{ 850, 850, 850, 850, 850\}
+01294 ,\{ 850, 850, 850, 850, 850\}
+01295 \}
+01296 ,\{\{ 850, 280, 850, 280, 850\}
+01297 ,\{ 280, 280, 280, 280, 280\}
+01298 ,\{ 850, 280, 850, 280, 850\}
+01299 ,\{ 280, 280, 280, 280, 280\}
+01300 ,\{ 850, 280, 850, 280, 850\}
+01301 \}
+01302 ,\{\{ 850, 850, 850, 850, -160\}
+01303 ,\{ 850, 850, 850, 850, -160\}
+01304 ,\{ 850, 850, 850, 850, -160\}
+01305 ,\{ 850, 850, 850, 850, -160\}
+01306 ,\{ -160, -160, -160, -160, -160\}
+01307 \}
+01308 \}
+01309 ,\{\{\{ 850, 850, 850, 850, 850\}
+01310 ,\{ 850, 850, 850, 850, 850\}
+01311 ,\{ 850, 850, 850, 850, 850\}
+01312 ,\{ 850, 850, 850, 850, 850\}
+01313 ,\{ 850, 850, 850, 850, 850\}
+01314 \}
+01315 ,\{\{ 850, 850, 850, 850, 850\}
+01316 ,\{ 850, 850, 850, 850, 850\}
+01317 ,\{ 850, 850, 850, 850, 850\}
+01318 ,\{ 280, 280, 280, 280, 280\}
+01319 ,\{ 850, 850, 850, 850, 850\}
+01320 \}
+01321 ,\{\{ 850, 850, 850, 850, 850\}
+01322 ,\{ 850, 850, 850, 850, 850\}
+01323 ,\{ 850, 850, 850, 850, 850\}
+01324 ,\{ 850, 850, 850, 850, 850\}
+01325 ,\{ 850, 850, 850, 850, 850\}
+01326 \}
+01327 ,\{\{ 850, 280, 850, 280, 850\}
+01328 ,\{ 850, 280, 850, 280, 850\}
+01329 ,\{ 850, 280, 850, 280, 850\}
+01330 ,\{ 280, 280, 280, 280, 280\}
+01331 ,\{ 850, 280, 850, 280, 850\}
+01332 \}
+01333 ,\{\{ 850, 850, 850, 850, -160\}
+01334 ,\{ 850, 850, 850, 850, -160\}
+01335 ,\{ 850, 850, 850, 850, -160\}
+01336 ,\{ 850, 850, 850, 850, -160\}
+01337 ,\{ -160, -160, -160, -160, -160\}
+01338 \}
+01339 \}
+01340 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01341 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01342 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01343 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01344 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01345 \}
+01346 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01347 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01348 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01349 ,\{ 780, 780, 780, 780, 780\}
+01350 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01351 \}
+01352 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01353 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01354 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01355 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01356 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01357 \}
+01358 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01359 ,\{ 1350, 780, 1350, 780, 1350\}
+01360 ,\{ 1350, 780, 1350, 780, 1350\}
+01361 ,\{ 780, 780, 780, 780, 780\}
+01362 ,\{ 1350, 780, 1350, 780, 1350\}
+01363 \}
+01364 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01365 ,\{ 1350, 1350, 1350, 1350, 340\}
+01366 ,\{ 1350, 1350, 1350, 1350, 340\}
+01367 ,\{ 1350, 1350, 1350, 1350, 340\}
+01368 ,\{ 340, 340, 340, 340, 340\}
+01369 \}
+01370 \}
+01371 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01372 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01373 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01374 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01375 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01376 \}
+01377 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01378 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01379 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01380 ,\{ 780, 780, 780, 780, 780\}
+01381 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01382 \}
+01383 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01384 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01385 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01386 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01387 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01388 \}
+01389 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01390 ,\{ 780, 780, 780, 780, 780\}
+01391 ,\{ 1350, 780, 1350, 780, 1350\}
+01392 ,\{ 780, 780, 780, 780, 780\}
+01393 ,\{ 1350, 780, 1350, 780, 1350\}
+01394 \}
+01395 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01396 ,\{ 1350, 1350, 1350, 1350, 340\}
+01397 ,\{ 1350, 1350, 1350, 1350, 340\}
+01398 ,\{ 1350, 1350, 1350, 1350, 340\}
+01399 ,\{ 340, 340, 340, 340, 340\}
+01400 \}
+01401 \}
+01402 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01403 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01404 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01405 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01406 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01407 \}
+01408 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01409 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01410 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01411 ,\{ 780, 780, 780, 780, 780\}
+01412 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01413 \}
+01414 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01415 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01416 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01417 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01418 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01419 \}
+01420 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01421 ,\{ 1350, 780, 1350, 780, 1350\}
+01422 ,\{ 1350, 780, 1350, 780, 1350\}
+01423 ,\{ 780, 780, 780, 780, 780\}
+01424 ,\{ 1350, 780, 1350, 780, 1350\}
+01425 \}
+01426 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01427 ,\{ 1350, 1350, 1350, 1350, 340\}
+01428 ,\{ 1350, 1350, 1350, 1350, 340\}
+01429 ,\{ 1350, 1350, 1350, 1350, 340\}
+01430 ,\{ 340, 340, 340, 340, 340\}
+01431 \}
+01432 \}
+01433 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01434 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01435 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01436 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01437 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01438 \}
+01439 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01440 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01441 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01442 ,\{ 780, 780, 780, 780, 780\}
+01443 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01444 \}
+01445 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01446 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01447 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01448 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01449 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01450 \}
+01451 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01452 ,\{ 780, 780, 780, 780, 780\}
+01453 ,\{ 1350, 780, 1350, 780, 1350\}
+01454 ,\{ 780, 780, 780, 780, 780\}
+01455 ,\{ 1350, 780, 1350, 780, 1350\}
+01456 \}
+01457 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01458 ,\{ 1350, 1350, 1350, 1350, 340\}
+01459 ,\{ 1350, 1350, 1350, 1350, 340\}
+01460 ,\{ 1350, 1350, 1350, 1350, 340\}
+01461 ,\{ 340, 340, 340, 340, 340\}
+01462 \}
+01463 \}
+01464 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01465 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01466 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01467 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01468 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01469 \}
+01470 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01471 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01472 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01473 ,\{ 780, 780, 780, 780, 780\}
+01474 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01475 \}
+01476 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01477 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01478 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01479 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01480 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01481 \}
+01482 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01483 ,\{ 1350, 780, 1350, 780, 1350\}
+01484 ,\{ 1350, 780, 1350, 780, 1350\}
+01485 ,\{ 780, 780, 780, 780, 780\}
+01486 ,\{ 1350, 780, 1350, 780, 1350\}
+01487 \}
+01488 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01489 ,\{ 1350, 1350, 1350, 1350, 340\}
+01490 ,\{ 1350, 1350, 1350, 1350, 340\}
+01491 ,\{ 1350, 1350, 1350, 1350, 340\}
+01492 ,\{ 340, 340, 340, 340, 340\}
+01493 \}
+01494 \}
+01495 \}
+01496 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01497 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01498 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01499 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01500 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01501 \}
+01502 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01505 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01506 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01507 \}
+01508 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01511 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01512 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01513 \}
+01514 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01517 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01518 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01519 \}
+01520 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01523 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01524 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01525 \}
+01526 \}
+01527 ,\{\{\{ 850, 850, 850, 850, 850\}
+01528 ,\{ 850, 850, 850, 850, 850\}
+01529 ,\{ 850, 850, 850, 850, 850\}
+01530 ,\{ 850, 850, 850, 850, 850\}
+01531 ,\{ 850, 850, 850, 850, 850\}
+01532 \}
+01533 ,\{\{ 850, 850, 850, 280, 850\}
+01534 ,\{ 850, 850, 850, 280, 850\}
+01535 ,\{ 850, 850, 850, 280, 850\}
+01536 ,\{ 280, 280, 280, 280, 280\}
+01537 ,\{ 850, 850, 850, 280, 850\}
+01538 \}
+01539 ,\{\{ 850, 850, 850, 850, 850\}
+01540 ,\{ 850, 850, 850, 850, 850\}
+01541 ,\{ 850, 850, 850, 850, 850\}
+01542 ,\{ 850, 850, 850, 850, 850\}
+01543 ,\{ 850, 850, 850, 850, 850\}
+01544 \}
+01545 ,\{\{ 850, 280, 850, 280, 850\}
+01546 ,\{ 280, 280, 280, 280, 280\}
+01547 ,\{ 850, 280, 850, 280, 850\}
+01548 ,\{ 280, 280, 280, 280, 280\}
+01549 ,\{ 850, 280, 850, 280, 850\}
+01550 \}
+01551 ,\{\{ 850, 850, 850, 850, -160\}
+01552 ,\{ 850, 850, 850, 850, -160\}
+01553 ,\{ 850, 850, 850, 850, -160\}
+01554 ,\{ 850, 850, 850, 850, -160\}
+01555 ,\{ -160, -160, -160, -160, -160\}
+01556 \}
+01557 \}
+01558 ,\{\{\{ 850, 850, 850, 850, 850\}
+01559 ,\{ 850, 850, 850, 850, 850\}
+01560 ,\{ 850, 850, 850, 850, 850\}
+01561 ,\{ 850, 850, 850, 850, 850\}
+01562 ,\{ 850, 850, 850, 850, 850\}
+01563 \}
+01564 ,\{\{ 850, 850, 850, 280, 850\}
+01565 ,\{ 850, 850, 850, 280, 850\}
+01566 ,\{ 850, 850, 850, 280, 850\}
+01567 ,\{ 280, 280, 280, 280, 280\}
+01568 ,\{ 850, 850, 850, 280, 850\}
+01569 \}
+01570 ,\{\{ 850, 850, 850, 850, 850\}
+01571 ,\{ 850, 850, 850, 850, 850\}
+01572 ,\{ 850, 850, 850, 850, 850\}
+01573 ,\{ 850, 850, 850, 850, 850\}
+01574 ,\{ 850, 850, 850, 850, 850\}
+01575 \}
+01576 ,\{\{ 850, 280, 850, 280, 850\}
+01577 ,\{ 850, 280, 850, 280, 850\}
+01578 ,\{ 850, 280, 850, 280, 850\}
+01579 ,\{ 280, 280, 280, 280, 280\}
+01580 ,\{ 850, 280, 850, 280, 850\}
+01581 \}
+01582 ,\{\{ 850, 850, 850, 850, -160\}
+01583 ,\{ 850, 850, 850, 850, -160\}
+01584 ,\{ 850, 850, 850, 850, -160\}
+01585 ,\{ 850, 850, 850, 850, -160\}
+01586 ,\{ -160, -160, -160, -160, -160\}
+01587 \}
+01588 \}
+01589 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01590 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01591 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01592 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01593 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01594 \}
+01595 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01596 ,\{ 1350, 1350, 1350, 780, 1350\}
+01597 ,\{ 1350, 1350, 1350, 780, 1350\}
+01598 ,\{ 780, 780, 780, 780, 780\}
+01599 ,\{ 1350, 1350, 1350, 780, 1350\}
+01600 \}
+01601 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01602 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01603 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01604 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01605 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01606 \}
+01607 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01608 ,\{ 1350, 780, 1350, 780, 1350\}
+01609 ,\{ 1350, 780, 1350, 780, 1350\}
+01610 ,\{ 780, 780, 780, 780, 780\}
+01611 ,\{ 1350, 780, 1350, 780, 1350\}
+01612 \}
+01613 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01614 ,\{ 1350, 1350, 1350, 1350, 340\}
+01615 ,\{ 1350, 1350, 1350, 1350, 340\}
+01616 ,\{ 1350, 1350, 1350, 1350, 340\}
+01617 ,\{ 340, 340, 340, 340, 340\}
+01618 \}
+01619 \}
+01620 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01621 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01622 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01623 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01624 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01625 \}
+01626 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01627 ,\{ 1350, 1350, 1350, 780, 1350\}
+01628 ,\{ 1350, 1350, 1350, 780, 1350\}
+01629 ,\{ 780, 780, 780, 780, 780\}
+01630 ,\{ 1350, 1350, 1350, 780, 1350\}
+01631 \}
+01632 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01633 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01634 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01635 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01636 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01637 \}
+01638 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01639 ,\{ 780, 780, 780, 780, 780\}
+01640 ,\{ 1350, 780, 1350, 780, 1350\}
+01641 ,\{ 780, 780, 780, 780, 780\}
+01642 ,\{ 1350, 780, 1350, 780, 1350\}
+01643 \}
+01644 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01645 ,\{ 1350, 1350, 1350, 1350, 340\}
+01646 ,\{ 1350, 1350, 1350, 1350, 340\}
+01647 ,\{ 1350, 1350, 1350, 1350, 340\}
+01648 ,\{ 340, 340, 340, 340, 340\}
+01649 \}
+01650 \}
+01651 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01652 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01653 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01654 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01655 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01656 \}
+01657 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01658 ,\{ 1350, 1350, 1350, 780, 1350\}
+01659 ,\{ 1350, 1350, 1350, 780, 1350\}
+01660 ,\{ 780, 780, 780, 780, 780\}
+01661 ,\{ 1350, 1350, 1350, 780, 1350\}
+01662 \}
+01663 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01664 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01665 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01666 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01667 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01668 \}
+01669 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01670 ,\{ 1350, 780, 1350, 780, 1350\}
+01671 ,\{ 1350, 780, 1350, 780, 1350\}
+01672 ,\{ 780, 780, 780, 780, 780\}
+01673 ,\{ 1350, 780, 1350, 780, 1350\}
+01674 \}
+01675 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01676 ,\{ 1350, 1350, 1350, 1350, 340\}
+01677 ,\{ 1350, 1350, 1350, 1350, 340\}
+01678 ,\{ 1350, 1350, 1350, 1350, 340\}
+01679 ,\{ 340, 340, 340, 340, 340\}
+01680 \}
+01681 \}
+01682 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01683 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01684 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01685 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01686 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01687 \}
+01688 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01689 ,\{ 1350, 1350, 1350, 780, 1350\}
+01690 ,\{ 1350, 1350, 1350, 780, 1350\}
+01691 ,\{ 780, 780, 780, 780, 780\}
+01692 ,\{ 1350, 1350, 1350, 780, 1350\}
+01693 \}
+01694 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01695 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01696 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01697 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01698 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01699 \}
+01700 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01701 ,\{ 780, 780, 780, 780, 780\}
+01702 ,\{ 1350, 780, 1350, 780, 1350\}
+01703 ,\{ 780, 780, 780, 780, 780\}
+01704 ,\{ 1350, 780, 1350, 780, 1350\}
+01705 \}
+01706 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01707 ,\{ 1350, 1350, 1350, 1350, 340\}
+01708 ,\{ 1350, 1350, 1350, 1350, 340\}
+01709 ,\{ 1350, 1350, 1350, 1350, 340\}
+01710 ,\{ 340, 340, 340, 340, 340\}
+01711 \}
+01712 \}
+01713 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01714 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01715 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01716 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01717 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01718 \}
+01719 ,\{\{ 1350, 1350, 1350, 780, 1350\}
+01720 ,\{ 1350, 1350, 1350, 780, 1350\}
+01721 ,\{ 1350, 1350, 1350, 780, 1350\}
+01722 ,\{ 780, 780, 780, 780, 780\}
+01723 ,\{ 1350, 1350, 1350, 780, 1350\}
+01724 \}
+01725 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01726 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01727 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01728 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01729 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01730 \}
+01731 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01732 ,\{ 1350, 780, 1350, 780, 1350\}
+01733 ,\{ 1350, 780, 1350, 780, 1350\}
+01734 ,\{ 780, 780, 780, 780, 780\}
+01735 ,\{ 1350, 780, 1350, 780, 1350\}
+01736 \}
+01737 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01738 ,\{ 1350, 1350, 1350, 1350, 340\}
+01739 ,\{ 1350, 1350, 1350, 1350, 340\}
+01740 ,\{ 1350, 1350, 1350, 1350, 340\}
+01741 ,\{ 340, 340, 340, 340, 340\}
+01742 \}
+01743 \}
+01744 \}
+01745 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01746 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01747 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01748 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01749 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01750 \}
+01751 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01754 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01755 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01756 \}
+01757 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01760 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01761 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01762 \}
+01763 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01766 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01767 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01768 \}
+01769 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01772 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01773 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01774 \}
+01775 \}
+01776 ,\{\{\{ 850, 850, 850, 850, 850\}
+01777 ,\{ 850, 850, 850, 850, 850\}
+01778 ,\{ 850, 850, 850, 850, 850\}
+01779 ,\{ 850, 850, 850, 850, 850\}
+01780 ,\{ 850, 850, 850, 850, 850\}
+01781 \}
+01782 ,\{\{ 850, 850, 850, 850, 850\}
+01783 ,\{ 850, 850, 850, 850, 850\}
+01784 ,\{ 850, 850, 850, 850, 850\}
+01785 ,\{ 280, 280, 280, 280, 280\}
+01786 ,\{ 850, 850, 850, 850, 850\}
+01787 \}
+01788 ,\{\{ 850, 850, 850, 850, 850\}
+01789 ,\{ 850, 850, 850, 850, 850\}
+01790 ,\{ 850, 850, 850, 850, 850\}
+01791 ,\{ 850, 850, 850, 850, 850\}
+01792 ,\{ 850, 850, 850, 850, 850\}
+01793 \}
+01794 ,\{\{ 850, 280, 850, 280, 850\}
+01795 ,\{ 280, 280, 280, 280, 280\}
+01796 ,\{ 850, 280, 850, 280, 850\}
+01797 ,\{ 280, 280, 280, 280, 280\}
+01798 ,\{ 850, 280, 850, 280, 850\}
+01799 \}
+01800 ,\{\{ 850, 850, 850, 850, -160\}
+01801 ,\{ 850, 850, 850, 850, -160\}
+01802 ,\{ 850, 850, 850, 850, -160\}
+01803 ,\{ 850, 850, 850, 850, -160\}
+01804 ,\{ -160, -160, -160, -160, -160\}
+01805 \}
+01806 \}
+01807 ,\{\{\{ 850, 850, 850, 850, 850\}
+01808 ,\{ 850, 850, 850, 850, 850\}
+01809 ,\{ 850, 850, 850, 850, 850\}
+01810 ,\{ 850, 850, 850, 850, 850\}
+01811 ,\{ 850, 850, 850, 850, 850\}
+01812 \}
+01813 ,\{\{ 850, 850, 850, 850, 850\}
+01814 ,\{ 850, 850, 850, 850, 850\}
+01815 ,\{ 850, 850, 850, 850, 850\}
+01816 ,\{ 280, 280, 280, 280, 280\}
+01817 ,\{ 850, 850, 850, 850, 850\}
+01818 \}
+01819 ,\{\{ 850, 850, 850, 850, 850\}
+01820 ,\{ 850, 850, 850, 850, 850\}
+01821 ,\{ 850, 850, 850, 850, 850\}
+01822 ,\{ 850, 850, 850, 850, 850\}
+01823 ,\{ 850, 850, 850, 850, 850\}
+01824 \}
+01825 ,\{\{ 850, 280, 850, 280, 850\}
+01826 ,\{ 850, 280, 850, 280, 850\}
+01827 ,\{ 850, 280, 850, 280, 850\}
+01828 ,\{ 280, 280, 280, 280, 280\}
+01829 ,\{ 850, 280, 850, 280, 850\}
+01830 \}
+01831 ,\{\{ 850, 850, 850, 850, -160\}
+01832 ,\{ 850, 850, 850, 850, -160\}
+01833 ,\{ 850, 850, 850, 850, -160\}
+01834 ,\{ 850, 850, 850, 850, -160\}
+01835 ,\{ -160, -160, -160, -160, -160\}
+01836 \}
+01837 \}
+01838 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01839 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01840 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01841 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01842 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01843 \}
+01844 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01845 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01846 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01847 ,\{ 780, 780, 780, 780, 780\}
+01848 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01849 \}
+01850 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01851 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01852 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01853 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01854 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01855 \}
+01856 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01857 ,\{ 1350, 780, 1350, 780, 1350\}
+01858 ,\{ 1350, 780, 1350, 780, 1350\}
+01859 ,\{ 780, 780, 780, 780, 780\}
+01860 ,\{ 1350, 780, 1350, 780, 1350\}
+01861 \}
+01862 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01863 ,\{ 1350, 1350, 1350, 1350, 340\}
+01864 ,\{ 1350, 1350, 1350, 1350, 340\}
+01865 ,\{ 1350, 1350, 1350, 1350, 340\}
+01866 ,\{ 340, 340, 340, 340, 340\}
+01867 \}
+01868 \}
+01869 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01870 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01871 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01872 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01873 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01874 \}
+01875 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01876 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01877 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01878 ,\{ 780, 780, 780, 780, 780\}
+01879 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01880 \}
+01881 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01882 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01883 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01884 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01885 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01886 \}
+01887 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01888 ,\{ 780, 780, 780, 780, 780\}
+01889 ,\{ 1350, 780, 1350, 780, 1350\}
+01890 ,\{ 780, 780, 780, 780, 780\}
+01891 ,\{ 1350, 780, 1350, 780, 1350\}
+01892 \}
+01893 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01894 ,\{ 1350, 1350, 1350, 1350, 340\}
+01895 ,\{ 1350, 1350, 1350, 1350, 340\}
+01896 ,\{ 1350, 1350, 1350, 1350, 340\}
+01897 ,\{ 340, 340, 340, 340, 340\}
+01898 \}
+01899 \}
+01900 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01901 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01902 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01903 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01904 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01905 \}
+01906 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01907 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01908 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01909 ,\{ 780, 780, 780, 780, 780\}
+01910 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01911 \}
+01912 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01913 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01914 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01915 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01916 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01917 \}
+01918 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01919 ,\{ 1350, 780, 1350, 780, 1350\}
+01920 ,\{ 1350, 780, 1350, 780, 1350\}
+01921 ,\{ 780, 780, 780, 780, 780\}
+01922 ,\{ 1350, 780, 1350, 780, 1350\}
+01923 \}
+01924 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01925 ,\{ 1350, 1350, 1350, 1350, 340\}
+01926 ,\{ 1350, 1350, 1350, 1350, 340\}
+01927 ,\{ 1350, 1350, 1350, 1350, 340\}
+01928 ,\{ 340, 340, 340, 340, 340\}
+01929 \}
+01930 \}
+01931 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01932 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01933 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01934 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01935 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01936 \}
+01937 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01938 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01939 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01940 ,\{ 780, 780, 780, 780, 780\}
+01941 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01942 \}
+01943 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01944 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01945 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01946 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01947 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01948 \}
+01949 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01950 ,\{ 780, 780, 780, 780, 780\}
+01951 ,\{ 1350, 780, 1350, 780, 1350\}
+01952 ,\{ 780, 780, 780, 780, 780\}
+01953 ,\{ 1350, 780, 1350, 780, 1350\}
+01954 \}
+01955 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01956 ,\{ 1350, 1350, 1350, 1350, 340\}
+01957 ,\{ 1350, 1350, 1350, 1350, 340\}
+01958 ,\{ 1350, 1350, 1350, 1350, 340\}
+01959 ,\{ 340, 340, 340, 340, 340\}
+01960 \}
+01961 \}
+01962 ,\{\{\{ 1350, 1350, 1350, 1350, 1350\}
+01963 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01964 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01965 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01966 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01967 \}
+01968 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01969 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01970 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01971 ,\{ 780, 780, 780, 780, 780\}
+01972 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01973 \}
+01974 ,\{\{ 1350, 1350, 1350, 1350, 1350\}
+01975 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01976 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01977 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01978 ,\{ 1350, 1350, 1350, 1350, 1350\}
+01979 \}
+01980 ,\{\{ 1350, 780, 1350, 780, 1350\}
+01981 ,\{ 1350, 780, 1350, 780, 1350\}
+01982 ,\{ 1350, 780, 1350, 780, 1350\}
+01983 ,\{ 780, 780, 780, 780, 780\}
+01984 ,\{ 1350, 780, 1350, 780, 1350\}
+01985 \}
+01986 ,\{\{ 1350, 1350, 1350, 1350, 340\}
+01987 ,\{ 1350, 1350, 1350, 1350, 340\}
+01988 ,\{ 1350, 1350, 1350, 1350, 340\}
+01989 ,\{ 1350, 1350, 1350, 1350, 340\}
+01990 ,\{ 340, 340, 340, 340, 340\}
+01991 \}
+01992 \}
+01993 \}\};
+\end{DoxyCode}
--- /dev/null
+\hypertarget{intl22_8h}{\section{intl22.\-h}
+\label{intl22_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl22.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl22.\-h}}
+}
+
+\begin{DoxyCode}
+00001 PUBLIC \textcolor{keywordtype}{int} int22\_37[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5] =
+00002 \{\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00007 \}
+00008 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00013 \}
+00014 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00019 \}
+00020 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00025 \}
+00026 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00029 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00031 \}
+00032 \}
+00033 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00037 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00038 \}
+00039 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00043 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00044 \}
+00045 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00049 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00050 \}
+00051 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00056 \}
+00057 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00058 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00059 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00060 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00061 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00062 \}
+00063 \}
+00064 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00065 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00066 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00067 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00068 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00069 \}
+00070 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00071 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00072 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00073 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00074 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00075 \}
+00076 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00077 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00078 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00079 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00080 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00081 \}
+00082 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00083 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00084 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00085 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00086 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00087 \}
+00088 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00089 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00090 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00091 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00092 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00093 \}
+00094 \}
+00095 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00096 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00097 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00099 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00100 \}
+00101 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00105 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00106 \}
+00107 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00108 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00109 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00111 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00112 \}
+00113 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00114 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00115 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00117 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00118 \}
+00119 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00120 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00121 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00122 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00123 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00124 \}
+00125 \}
+00126 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00127 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00128 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00130 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00131 \}
+00132 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00133 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00134 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00136 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00137 \}
+00138 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00139 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00140 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00142 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00143 \}
+00144 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00145 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00146 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00148 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00149 \}
+00150 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00154 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00155 \}
+00156 \}
+00157 \}
+00158 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00159 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00160 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00161 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00162 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00163 \}
+00164 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00165 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00166 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00167 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00168 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00169 \}
+00170 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00171 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00172 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00173 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00174 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00175 \}
+00176 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00177 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00178 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00179 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00180 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00181 \}
+00182 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00183 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00184 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00185 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00186 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00187 \}
+00188 \}
+00189 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00190 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00191 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00192 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00193 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00194 \}
+00195 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00196 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00197 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00198 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00199 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00200 \}
+00201 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00203 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00204 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00205 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00206 \}
+00207 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00208 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00209 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00210 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00211 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00212 \}
+00213 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00214 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00215 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00216 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00217 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00218 \}
+00219 \}
+00220 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00221 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00222 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00223 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00224 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00225 \}
+00226 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00227 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00228 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00229 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00230 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00231 \}
+00232 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00233 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00234 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00235 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00236 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00237 \}
+00238 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00239 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00240 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00241 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00242 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00243 \}
+00244 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00245 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00246 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00247 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00249 \}
+00250 \}
+00251 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00252 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00253 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00256 \}
+00257 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00258 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00259 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00262 \}
+00263 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00264 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00265 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00268 \}
+00269 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00270 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00271 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00274 \}
+00275 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00276 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00277 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00278 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00280 \}
+00281 \}
+00282 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00283 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00284 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00285 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00286 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00287 \}
+00288 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00289 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00290 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00291 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00292 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00293 \}
+00294 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00295 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00296 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00299 \}
+00300 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00301 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00302 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00303 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00304 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00305 \}
+00306 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00307 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00308 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00309 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00310 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00311 \}
+00312 \}
+00313 \}
+00314 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00315 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00316 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00317 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00318 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00319 \}
+00320 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00321 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00322 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00323 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00324 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00325 \}
+00326 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00327 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00328 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00329 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00330 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00331 \}
+00332 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00333 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00334 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00335 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00336 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00337 \}
+00338 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00339 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00340 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00341 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00342 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00343 \}
+00344 \}
+00345 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00346 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00349 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00350 \}
+00351 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00352 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00353 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00354 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00355 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00356 \}
+00357 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00358 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00359 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00360 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00361 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00362 \}
+00363 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00364 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00365 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00366 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00367 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00368 \}
+00369 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00370 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00371 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00372 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00373 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00374 \}
+00375 \}
+00376 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00377 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00378 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00379 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00380 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00381 \}
+00382 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00383 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00384 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00385 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00386 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00387 \}
+00388 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00389 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00390 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00391 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00392 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00393 \}
+00394 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00395 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00396 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00397 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00398 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00399 \}
+00400 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00401 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00402 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00403 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00404 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00405 \}
+00406 \}
+00407 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00408 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00409 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00410 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00411 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00412 \}
+00413 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00414 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00415 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00416 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00417 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00418 \}
+00419 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00420 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00421 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00422 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00423 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00424 \}
+00425 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00426 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00427 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00428 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00429 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00430 \}
+00431 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00432 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00433 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00434 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00435 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00436 \}
+00437 \}
+00438 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00439 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00440 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00441 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00442 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00443 \}
+00444 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00445 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00446 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00447 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00448 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00449 \}
+00450 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00451 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00452 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00453 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00454 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00455 \}
+00456 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00457 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00458 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00459 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00460 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00461 \}
+00462 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00463 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00464 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00465 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00466 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00467 \}
+00468 \}
+00469 \}
+00470 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00471 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00472 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00473 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00474 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00475 \}
+00476 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00477 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00478 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00479 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00480 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00481 \}
+00482 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00483 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00484 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00485 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00486 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00487 \}
+00488 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00489 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00490 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00491 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00492 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00493 \}
+00494 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00495 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00496 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00497 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00498 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00499 \}
+00500 \}
+00501 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00502 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00505 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00506 \}
+00507 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00508 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00511 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00512 \}
+00513 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00514 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00517 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00518 \}
+00519 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00520 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00523 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00524 \}
+00525 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00526 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00527 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00529 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00530 \}
+00531 \}
+00532 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00533 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00534 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00535 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00536 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00537 \}
+00538 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00539 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00540 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00541 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00542 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00543 \}
+00544 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00545 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00546 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00547 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00548 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00549 \}
+00550 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00551 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00552 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00553 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00554 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00555 \}
+00556 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00557 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00558 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00559 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00560 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00561 \}
+00562 \}
+00563 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00564 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00565 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00566 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00567 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00568 \}
+00569 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00570 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00571 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00572 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00573 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00574 \}
+00575 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00576 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00577 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00578 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00579 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00580 \}
+00581 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00582 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00583 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00584 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00585 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00586 \}
+00587 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00588 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00589 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00590 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00591 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00592 \}
+00593 \}
+00594 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00595 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00596 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00597 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00598 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00599 \}
+00600 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00601 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00602 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00603 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00604 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00605 \}
+00606 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00607 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00608 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00609 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00610 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00611 \}
+00612 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00613 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00614 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00615 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00616 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00617 \}
+00618 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00619 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00620 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00621 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00622 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00623 \}
+00624 \}
+00625 \}
+00626 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00627 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00628 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00629 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00630 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00631 \}
+00632 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00633 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00634 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00635 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00636 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00637 \}
+00638 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00639 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00640 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00641 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00642 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00643 \}
+00644 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00645 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00646 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00647 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00648 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00649 \}
+00650 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00651 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00652 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00653 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00654 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00655 \}
+00656 \}
+00657 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00658 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00659 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00660 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00661 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00662 \}
+00663 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00664 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00665 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00666 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00667 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00668 \}
+00669 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00670 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00671 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00672 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00673 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00674 \}
+00675 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00676 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00677 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00678 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00679 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00680 \}
+00681 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00682 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00683 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00684 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00685 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00686 \}
+00687 \}
+00688 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00689 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00690 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00691 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00692 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00693 \}
+00694 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00695 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00696 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00697 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00698 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00699 \}
+00700 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00701 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00702 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00703 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00704 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00705 \}
+00706 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00707 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00708 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00709 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00710 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00711 \}
+00712 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00713 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00714 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00715 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00716 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00717 \}
+00718 \}
+00719 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00720 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00721 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00722 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00723 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00724 \}
+00725 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00726 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00727 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00728 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00729 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00730 \}
+00731 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00732 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00733 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00734 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00735 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00736 \}
+00737 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00738 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00739 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00740 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00741 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00742 \}
+00743 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00744 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00745 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00746 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00747 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00748 \}
+00749 \}
+00750 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00751 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00754 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00755 \}
+00756 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00757 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00760 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00761 \}
+00762 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00763 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00766 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00767 \}
+00768 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00769 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00772 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00773 \}
+00774 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00775 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00776 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00778 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00779 \}
+00780 \}
+00781 \}
+00782 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00783 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00784 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00785 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00786 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00787 \}
+00788 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00789 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00790 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00791 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00792 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00793 \}
+00794 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00795 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00796 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00797 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00798 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00799 \}
+00800 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00801 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00802 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00803 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00804 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00805 \}
+00806 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00807 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00808 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00809 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00810 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00811 \}
+00812 \}
+00813 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00814 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00815 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00816 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00817 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00818 \}
+00819 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00820 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00821 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00822 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00823 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00824 \}
+00825 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00826 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00827 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00828 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00829 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00830 \}
+00831 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00832 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00833 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00834 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00835 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00836 \}
+00837 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00838 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00839 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00840 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00841 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00842 \}
+00843 \}
+00844 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00845 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00846 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00847 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00848 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00849 \}
+00850 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00851 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00852 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00853 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00854 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00855 \}
+00856 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00857 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00858 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00859 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00860 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00861 \}
+00862 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00863 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00864 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00865 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00866 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00867 \}
+00868 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00869 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00870 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00871 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00872 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00873 \}
+00874 \}
+00875 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00876 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00877 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00878 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00879 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00880 \}
+00881 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00882 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00883 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00884 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00885 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00886 \}
+00887 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00888 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00889 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00890 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00891 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00892 \}
+00893 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00894 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00895 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00896 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00897 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00898 \}
+00899 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00900 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00901 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00902 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00903 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00904 \}
+00905 \}
+00906 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00907 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00908 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00909 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00910 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00911 \}
+00912 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00913 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00914 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00915 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00916 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00917 \}
+00918 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00919 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00920 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00921 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00922 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00923 \}
+00924 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00925 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00926 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00927 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00928 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00929 \}
+00930 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00931 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00932 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00933 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00934 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00935 \}
+00936 \}
+00937 \}
+00938 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00939 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00940 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00941 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00942 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00943 \}
+00944 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00945 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00946 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00947 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00948 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00949 \}
+00950 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00951 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00952 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00953 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00954 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00955 \}
+00956 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00957 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00958 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00959 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00960 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00961 \}
+00962 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00963 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00964 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00965 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00966 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00967 \}
+00968 \}
+00969 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00970 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00971 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00972 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00973 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00974 \}
+00975 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00976 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00977 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00978 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00979 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00980 \}
+00981 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00982 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00983 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00984 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00985 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00986 \}
+00987 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00988 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00989 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00990 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00991 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00992 \}
+00993 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00994 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00995 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00996 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00997 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00998 \}
+00999 \}
+01000 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01001 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01002 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01005 \}
+01006 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01007 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01008 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01011 \}
+01012 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01013 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01014 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01017 \}
+01018 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01019 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01020 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01023 \}
+01024 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01025 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01026 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01029 \}
+01030 \}
+01031 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01032 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01033 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01036 \}
+01037 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01038 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01039 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01042 \}
+01043 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01044 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01045 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01048 \}
+01049 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01050 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01051 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01054 \}
+01055 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01056 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01057 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01058 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01059 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01060 \}
+01061 \}
+01062 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01063 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01064 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01065 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01066 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01067 \}
+01068 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01069 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01070 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01071 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01072 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01073 \}
+01074 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01075 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01076 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01077 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01078 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01079 \}
+01080 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01081 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01082 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01083 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01084 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01085 \}
+01086 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01087 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01088 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01089 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01090 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01091 \}
+01092 \}
+01093 \}
+01094 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01095 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01096 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01097 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01099 \}
+01100 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01101 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01105 \}
+01106 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01107 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01108 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01109 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01111 \}
+01112 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01113 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01114 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01115 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01117 \}
+01118 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01119 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01120 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01121 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01122 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01123 \}
+01124 \}
+01125 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01126 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01127 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01128 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01130 \}
+01131 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01132 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01133 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01134 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01136 \}
+01137 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01138 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01139 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01140 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01142 \}
+01143 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01144 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01145 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01146 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01148 \}
+01149 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01150 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01154 \}
+01155 \}
+01156 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01157 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01158 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01159 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01160 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01161 \}
+01162 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01163 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01164 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01165 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01166 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01167 \}
+01168 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01169 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01170 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01171 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01172 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01173 \}
+01174 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01175 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01176 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01177 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01178 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01179 \}
+01180 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01181 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01182 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01183 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01184 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01185 \}
+01186 \}
+01187 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01188 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01189 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01190 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01191 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01192 \}
+01193 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01194 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01195 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01196 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01197 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01198 \}
+01199 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01200 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01201 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01203 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01204 \}
+01205 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01206 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01207 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01208 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01209 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01210 \}
+01211 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01212 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01213 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01214 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01215 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01216 \}
+01217 \}
+01218 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01219 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01220 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01221 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01222 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01223 \}
+01224 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01225 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01226 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01227 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01228 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01229 \}
+01230 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01231 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01232 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01233 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01234 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01235 \}
+01236 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01237 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01238 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01239 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01240 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01241 \}
+01242 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01243 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01244 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01245 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01246 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01247 \}
+01248 \}
+01249 \}
+01250 \}
+01251 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01252 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01253 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01256 \}
+01257 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01258 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01259 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01262 \}
+01263 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01264 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01265 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01268 \}
+01269 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01270 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01271 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01274 \}
+01275 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01276 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01277 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01278 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01280 \}
+01281 \}
+01282 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01283 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01284 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01285 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01286 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01287 \}
+01288 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01289 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01290 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01291 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01292 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01293 \}
+01294 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01295 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01296 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01299 \}
+01300 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01301 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01302 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01303 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01304 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01305 \}
+01306 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01307 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01308 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01309 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01310 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01311 \}
+01312 \}
+01313 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01314 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01315 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01316 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01317 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01318 \}
+01319 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01320 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01321 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01322 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01323 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01324 \}
+01325 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01326 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01327 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01328 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01329 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01330 \}
+01331 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01332 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01333 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01334 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01335 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01336 \}
+01337 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01338 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01339 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01340 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01341 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01342 \}
+01343 \}
+01344 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01345 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01346 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01349 \}
+01350 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01351 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01352 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01353 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01354 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01355 \}
+01356 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01357 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01358 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01359 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01360 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01361 \}
+01362 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01363 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01364 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01365 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01366 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01367 \}
+01368 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01369 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01370 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01371 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01372 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01373 \}
+01374 \}
+01375 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01376 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01377 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01378 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01379 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01380 \}
+01381 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01382 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01383 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01384 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01385 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01386 \}
+01387 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01388 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01389 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01390 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01391 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01392 \}
+01393 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01394 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01395 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01396 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01397 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01398 \}
+01399 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01400 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01401 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01402 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01403 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01404 \}
+01405 \}
+01406 \}
+01407 ,\{\{\{\{ 200, 160, 200, 150, 200\}
+01408 ,\{ 200, 160, 200, 150, 200\}
+01409 ,\{ 180, 140, 180, 140, 180\}
+01410 ,\{ 200, 160, 200, 150, 200\}
+01411 ,\{ 170, 130, 170, 120, 170\}
+01412 \}
+01413 ,\{\{ 160, 120, 160, 110, 160\}
+01414 ,\{ 160, 120, 160, 110, 160\}
+01415 ,\{ 150, 110, 150, 110, 150\}
+01416 ,\{ 110, 20, 110, 20, 90\}
+01417 ,\{ 150, 110, 150, 110, 150\}
+01418 \}
+01419 ,\{\{ 200, 160, 200, 150, 200\}
+01420 ,\{ 200, 160, 200, 150, 200\}
+01421 ,\{ 180, 140, 180, 140, 180\}
+01422 ,\{ 200, 160, 200, 150, 200\}
+01423 ,\{ 170, 130, 170, 120, 170\}
+01424 \}
+01425 ,\{\{ 150, 110, 150, 110, 150\}
+01426 ,\{ 110, 20, 110, 20, 90\}
+01427 ,\{ 150, 110, 150, 110, 150\}
+01428 ,\{ 80, 0, 10, 80, 20\}
+01429 ,\{ 150, 110, 150, 110, 150\}
+01430 \}
+01431 ,\{\{ 200, 160, 200, 150, 200\}
+01432 ,\{ 200, 160, 200, 150, 200\}
+01433 ,\{ 170, 130, 170, 120, 170\}
+01434 ,\{ 200, 160, 200, 150, 200\}
+01435 ,\{ 100, 100, 80, 30, 80\}
+01436 \}
+01437 \}
+01438 ,\{\{\{ 200, 160, 200, 110, 200\}
+01439 ,\{ 200, 160, 200, 60, 200\}
+01440 ,\{ 180, 140, 180, 110, 180\}
+01441 ,\{ 200, 160, 200, 60, 200\}
+01442 ,\{ 170, 130, 170, 90, 170\}
+01443 \}
+01444 ,\{\{ 160, 120, 160, 20, 160\}
+01445 ,\{ 160, 120, 160, 20, 160\}
+01446 ,\{ 150, 110, 150, 20, 150\}
+01447 ,\{ 60, 20, 60, -70, 60\}
+01448 ,\{ 150, 110, 150, 20, 150\}
+01449 \}
+01450 ,\{\{ 200, 160, 200, 110, 200\}
+01451 ,\{ 200, 160, 200, 60, 200\}
+01452 ,\{ 180, 140, 180, 110, 180\}
+01453 ,\{ 200, 160, 200, 60, 200\}
+01454 ,\{ 170, 130, 170, 90, 170\}
+01455 \}
+01456 ,\{\{ 150, 110, 150, 20, 150\}
+01457 ,\{ 60, 20, 60, -70, 60\}
+01458 ,\{ 150, 110, 150, 20, 150\}
+01459 ,\{ 10, -30, 10, 0, 10\}
+01460 ,\{ 150, 110, 150, 20, 150\}
+01461 \}
+01462 ,\{\{ 200, 160, 200, 90, 200\}
+01463 ,\{ 200, 160, 200, 60, 200\}
+01464 ,\{ 170, 130, 170, 90, 170\}
+01465 ,\{ 200, 160, 200, 60, 200\}
+01466 ,\{ 100, 100, 80, -50, 80\}
+01467 \}
+01468 \}
+01469 ,\{\{\{ 180, 150, 180, 150, 170\}
+01470 ,\{ 180, 150, 180, 150, 170\}
+01471 ,\{ 170, 140, 170, 140, 150\}
+01472 ,\{ 180, 150, 180, 150, 170\}
+01473 ,\{ 150, 120, 150, 120, 140\}
+01474 \}
+01475 ,\{\{ 140, 110, 140, 110, 130\}
+01476 ,\{ 140, 110, 140, 110, 130\}
+01477 ,\{ 140, 110, 140, 110, 120\}
+01478 ,\{ 110, 20, 110, 20, 90\}
+01479 ,\{ 140, 110, 140, 110, 120\}
+01480 \}
+01481 ,\{\{ 180, 150, 180, 150, 170\}
+01482 ,\{ 180, 150, 180, 150, 170\}
+01483 ,\{ 170, 140, 170, 140, 150\}
+01484 ,\{ 180, 150, 180, 150, 170\}
+01485 ,\{ 150, 120, 150, 120, 140\}
+01486 \}
+01487 ,\{\{ 140, 110, 140, 110, 120\}
+01488 ,\{ 110, 20, 110, 20, 90\}
+01489 ,\{ 140, 110, 140, 110, 120\}
+01490 ,\{ -10, -40, -10, -40, -20\}
+01491 ,\{ 140, 110, 140, 110, 120\}
+01492 \}
+01493 ,\{\{ 180, 150, 180, 150, 170\}
+01494 ,\{ 180, 150, 180, 150, 170\}
+01495 ,\{ 150, 120, 150, 120, 140\}
+01496 ,\{ 180, 150, 180, 150, 170\}
+01497 ,\{ 60, 30, 60, 30, 50\}
+01498 \}
+01499 \}
+01500 ,\{\{\{ 200, 110, 200, 80, 200\}
+01501 ,\{ 200, 60, 200, 10, 200\}
+01502 ,\{ 180, 110, 180, -10, 180\}
+01503 ,\{ 200, 60, 200, 80, 200\}
+01504 ,\{ 170, 90, 170, 20, 170\}
+01505 \}
+01506 ,\{\{ 160, 20, 160, 0, 160\}
+01507 ,\{ 160, 20, 160, -30, 160\}
+01508 ,\{ 150, 20, 150, -40, 150\}
+01509 ,\{ 60, -70, 60, 0, 60\}
+01510 ,\{ 150, 20, 150, -40, 150\}
+01511 \}
+01512 ,\{\{ 200, 110, 200, 10, 200\}
+01513 ,\{ 200, 60, 200, 10, 200\}
+01514 ,\{ 180, 110, 180, -10, 180\}
+01515 ,\{ 200, 60, 200, 10, 200\}
+01516 ,\{ 170, 90, 170, -20, 170\}
+01517 \}
+01518 ,\{\{ 150, 20, 150, 80, 150\}
+01519 ,\{ 60, -70, 60, 0, 60\}
+01520 ,\{ 150, 20, 150, -40, 150\}
+01521 ,\{ 80, 0, 10, 80, 10\}
+01522 ,\{ 150, 20, 150, -40, 150\}
+01523 \}
+01524 ,\{\{ 200, 90, 200, 20, 200\}
+01525 ,\{ 200, 60, 200, 10, 200\}
+01526 ,\{ 170, 90, 170, -20, 170\}
+01527 ,\{ 200, 60, 200, 10, 200\}
+01528 ,\{ 80, -50, 80, 20, 80\}
+01529 \}
+01530 \}
+01531 ,\{\{\{ 170, 150, 170, 150, 100\}
+01532 ,\{ 170, 150, 170, 150, 100\}
+01533 ,\{ 150, 140, 150, 140, 60\}
+01534 ,\{ 170, 150, 170, 150, 80\}
+01535 ,\{ 140, 120, 140, 120, 50\}
+01536 \}
+01537 ,\{\{ 130, 110, 130, 110, 100\}
+01538 ,\{ 130, 110, 130, 110, 100\}
+01539 ,\{ 120, 110, 120, 110, 30\}
+01540 ,\{ 90, 20, 90, 20, -50\}
+01541 ,\{ 120, 110, 120, 110, 30\}
+01542 \}
+01543 ,\{\{ 170, 150, 170, 150, 80\}
+01544 ,\{ 170, 150, 170, 150, 80\}
+01545 ,\{ 150, 140, 150, 140, 60\}
+01546 ,\{ 170, 150, 170, 150, 80\}
+01547 ,\{ 140, 120, 140, 120, 50\}
+01548 \}
+01549 ,\{\{ 120, 110, 120, 110, 30\}
+01550 ,\{ 90, 20, 90, 20, -50\}
+01551 ,\{ 120, 110, 120, 110, 30\}
+01552 ,\{ 20, -40, -20, -40, 20\}
+01553 ,\{ 120, 110, 120, 110, 30\}
+01554 \}
+01555 ,\{\{ 170, 150, 170, 150, 80\}
+01556 ,\{ 170, 150, 170, 150, 80\}
+01557 ,\{ 140, 120, 140, 120, 50\}
+01558 ,\{ 170, 150, 170, 150, 80\}
+01559 ,\{ 50, 30, 50, 30, -40\}
+01560 \}
+01561 \}
+01562 \}
+01563 ,\{\{\{\{ 220, 150, 220, 140, 170\}
+01564 ,\{ 220, 130, 220, 130, 170\}
+01565 ,\{ 150, 110, 150, 110, 150\}
+01566 ,\{ 140, 100, 140, 100, 140\}
+01567 ,\{ 170, 150, 150, 140, 170\}
+01568 \}
+01569 ,\{\{ 220, 130, 220, 130, 170\}
+01570 ,\{ 220, 130, 220, 130, 170\}
+01571 ,\{ 150, 110, 150, 100, 150\}
+01572 ,\{ 70, -30, 70, -70, 50\}
+01573 ,\{ 150, 110, 150, 100, 150\}
+01574 \}
+01575 ,\{\{ 190, 110, 190, 100, 170\}
+01576 ,\{ 190, 110, 190, 100, 140\}
+01577 ,\{ 150, 110, 150, 100, 150\}
+01578 ,\{ 140, 100, 140, 100, 140\}
+01579 ,\{ 170, 110, 150, 100, 170\}
+01580 \}
+01581 ,\{\{ 150, 110, 150, 100, 150\}
+01582 ,\{ 140, 70, 70, -10, 140\}
+01583 ,\{ 150, 110, 150, 100, 150\}
+01584 ,\{ 80, -30, 10, 80, 70\}
+01585 ,\{ 150, 110, 150, 100, 150\}
+01586 \}
+01587 ,\{\{ 150, 150, 150, 140, 150\}
+01588 ,\{ 140, 100, 140, 100, 140\}
+01589 ,\{ 150, 110, 150, 110, 150\}
+01590 ,\{ 140, 100, 140, 100, 140\}
+01591 ,\{ 150, 150, 70, 140, 70\}
+01592 \}
+01593 \}
+01594 ,\{\{\{ 170, 150, 150, 90, 170\}
+01595 ,\{ 170, 130, 140, 10, 170\}
+01596 ,\{ 150, 110, 150, 80, 150\}
+01597 ,\{ 140, 100, 140, 10, 140\}
+01598 ,\{ 150, 150, 150, 90, 150\}
+01599 \}
+01600 ,\{\{ 170, 130, 150, 10, 170\}
+01601 ,\{ 170, 130, 60, 0, 170\}
+01602 ,\{ 150, 110, 150, -70, 150\}
+01603 ,\{ 10, -30, 10, -160, -30\}
+01604 ,\{ 150, 110, 150, 10, 150\}
+01605 \}
+01606 ,\{\{ 150, 110, 150, 70, 150\}
+01607 ,\{ 140, 100, 50, -100, 140\}
+01608 ,\{ 150, 110, 150, -60, 150\}
+01609 ,\{ 140, 100, 140, 10, 140\}
+01610 ,\{ 150, 110, 150, 70, 150\}
+01611 \}
+01612 ,\{\{ 150, 110, 150, 10, 150\}
+01613 ,\{ 40, 40, 30, -70, 30\}
+01614 ,\{ 150, 110, 150, 10, 150\}
+01615 ,\{ 10, -30, -30, 0, 10\}
+01616 ,\{ 150, 110, 150, 10, 150\}
+01617 \}
+01618 ,\{\{ 150, 150, 150, 90, 150\}
+01619 ,\{ 140, 100, 140, 10, 140\}
+01620 ,\{ 150, 110, 150, 80, 150\}
+01621 ,\{ 140, 100, 140, 10, 140\}
+01622 ,\{ 150, 150, 0, 90, 70\}
+01623 \}
+01624 \}
+01625 ,\{\{\{ 220, 130, 220, 130, 170\}
+01626 ,\{ 220, 130, 220, 130, 140\}
+01627 ,\{ 140, 110, 140, 110, 120\}
+01628 ,\{ 130, 100, 130, 100, 110\}
+01629 ,\{ 170, 100, 130, 100, 170\}
+01630 \}
+01631 ,\{\{ 220, 130, 220, 130, 140\}
+01632 ,\{ 220, 130, 220, 130, 140\}
+01633 ,\{ 130, 100, 130, 100, 120\}
+01634 ,\{ 70, -70, 70, -70, 0\}
+01635 ,\{ 130, 100, 130, 100, 120\}
+01636 \}
+01637 ,\{\{ 190, 110, 190, 100, 170\}
+01638 ,\{ 190, 110, 190, 100, 110\}
+01639 ,\{ 130, 100, 130, 100, 120\}
+01640 ,\{ 130, 100, 130, 100, 110\}
+01641 ,\{ 170, 100, 130, 100, 170\}
+01642 \}
+01643 ,\{\{ 130, 100, 130, 100, 120\}
+01644 ,\{ 70, 70, 70, -10, 60\}
+01645 ,\{ 130, 100, 130, 100, 120\}
+01646 ,\{ 20, -40, -10, -40, 20\}
+01647 ,\{ 130, 100, 130, 100, 120\}
+01648 \}
+01649 ,\{\{ 140, 110, 140, 110, 120\}
+01650 ,\{ 130, 100, 130, 100, 110\}
+01651 ,\{ 140, 110, 140, 110, 120\}
+01652 ,\{ 130, 100, 130, 100, 110\}
+01653 ,\{ 30, -20, -10, 30, 20\}
+01654 \}
+01655 \}
+01656 ,\{\{\{ 170, 90, 170, 140, 170\}
+01657 ,\{ 170, 70, 170, -10, 170\}
+01658 ,\{ 150, 80, 150, -40, 150\}
+01659 ,\{ 140, 10, 140, 80, 140\}
+01660 ,\{ 150, 90, 150, 140, 150\}
+01661 \}
+01662 ,\{\{ 170, 10, 170, -10, 170\}
+01663 ,\{ 170, -20, 170, -10, 170\}
+01664 ,\{ 150, -40, 150, -40, 150\}
+01665 ,\{ -30, -170, -30, -90, -30\}
+01666 ,\{ 150, 10, 150, -40, 150\}
+01667 \}
+01668 ,\{\{ 150, 70, 150, 20, 150\}
+01669 ,\{ 140, 70, 140, -50, 140\}
+01670 ,\{ 150, 70, 150, -40, 150\}
+01671 ,\{ 140, 10, 140, -50, 140\}
+01672 ,\{ 150, 70, 150, 20, 150\}
+01673 \}
+01674 ,\{\{ 150, 10, 150, 80, 150\}
+01675 ,\{ 30, -50, 30, -30, 30\}
+01676 ,\{ 150, 10, 150, -40, 150\}
+01677 ,\{ 80, -30, 10, 80, 10\}
+01678 ,\{ 150, 10, 150, -40, 150\}
+01679 \}
+01680 ,\{\{ 150, 90, 150, 140, 150\}
+01681 ,\{ 140, 10, 140, -50, 140\}
+01682 ,\{ 150, 80, 150, -50, 150\}
+01683 ,\{ 140, 10, 140, -50, 140\}
+01684 ,\{ 140, 90, 70, 140, 70\}
+01685 \}
+01686 \}
+01687 ,\{\{\{ 140, 130, 140, 130, 140\}
+01688 ,\{ 140, 130, 140, 130, 140\}
+01689 ,\{ 120, 110, 120, 110, 30\}
+01690 ,\{ 110, 100, 110, 100, 70\}
+01691 ,\{ 120, 100, 120, 100, 30\}
+01692 \}
+01693 ,\{\{ 140, 130, 140, 130, 140\}
+01694 ,\{ 140, 130, 140, 130, 140\}
+01695 ,\{ 120, 100, 120, 100, 30\}
+01696 ,\{ 50, -70, 0, -70, 50\}
+01697 ,\{ 120, 100, 120, 100, 30\}
+01698 \}
+01699 ,\{\{ 120, 100, 120, 100, 30\}
+01700 ,\{ 110, 100, 110, 100, 30\}
+01701 ,\{ 120, 100, 120, 100, 30\}
+01702 ,\{ 110, 100, 110, 100, 20\}
+01703 ,\{ 120, 100, 120, 100, 30\}
+01704 \}
+01705 ,\{\{ 140, 100, 120, 100, 140\}
+01706 ,\{ 140, -10, 50, -10, 140\}
+01707 ,\{ 120, 100, 120, 100, 30\}
+01708 ,\{ 70, -40, -60, -40, 70\}
+01709 ,\{ 120, 100, 120, 100, 30\}
+01710 \}
+01711 ,\{\{ 120, 110, 120, 110, 30\}
+01712 ,\{ 110, 100, 110, 100, 20\}
+01713 ,\{ 120, 110, 120, 110, 30\}
+01714 ,\{ 110, 100, 110, 100, 20\}
+01715 ,\{ 40, 30, 40, 30, -60\}
+01716 \}
+01717 \}
+01718 \}
+01719 ,\{\{\{\{ 300, 290, 300, 260, 300\}
+01720 ,\{ 300, 270, 300, 260, 300\}
+01721 ,\{ 270, 230, 270, 220, 270\}
+01722 ,\{ 270, 230, 270, 220, 270\}
+01723 ,\{ 290, 290, 270, 220, 270\}
+01724 \}
+01725 ,\{\{ 300, 270, 300, 260, 300\}
+01726 ,\{ 300, 270, 300, 260, 300\}
+01727 ,\{ 270, 230, 270, 220, 270\}
+01728 ,\{ 230, 150, 230, 140, 220\}
+01729 ,\{ 270, 230, 270, 220, 270\}
+01730 \}
+01731 ,\{\{ 270, 230, 270, 220, 270\}
+01732 ,\{ 270, 230, 270, 220, 270\}
+01733 ,\{ 270, 230, 270, 220, 270\}
+01734 ,\{ 270, 230, 270, 220, 270\}
+01735 ,\{ 270, 230, 270, 220, 270\}
+01736 \}
+01737 ,\{\{ 270, 230, 270, 220, 270\}
+01738 ,\{ 270, 190, 270, 180, 260\}
+01739 ,\{ 270, 230, 270, 220, 270\}
+01740 ,\{ 210, 130, 140, 210, 150\}
+01741 ,\{ 270, 230, 270, 220, 270\}
+01742 \}
+01743 ,\{\{ 290, 290, 270, 220, 270\}
+01744 ,\{ 270, 230, 270, 220, 270\}
+01745 ,\{ 270, 230, 270, 220, 270\}
+01746 ,\{ 270, 230, 270, 220, 270\}
+01747 ,\{ 290, 290, 270, 220, 270\}
+01748 \}
+01749 \}
+01750 ,\{\{\{ 300, 290, 300, 190, 300\}
+01751 ,\{ 300, 270, 300, 170, 300\}
+01752 ,\{ 270, 230, 270, 190, 270\}
+01753 ,\{ 270, 230, 270, 130, 270\}
+01754 ,\{ 290, 290, 270, 190, 270\}
+01755 \}
+01756 ,\{\{ 300, 270, 300, 170, 300\}
+01757 ,\{ 300, 270, 300, 170, 300\}
+01758 ,\{ 270, 230, 270, 130, 270\}
+01759 ,\{ 190, 150, 190, 50, 190\}
+01760 ,\{ 270, 230, 270, 130, 270\}
+01761 \}
+01762 ,\{\{ 270, 230, 270, 190, 270\}
+01763 ,\{ 270, 230, 270, 130, 270\}
+01764 ,\{ 270, 230, 270, 190, 270\}
+01765 ,\{ 270, 230, 270, 130, 270\}
+01766 ,\{ 270, 230, 270, 190, 270\}
+01767 \}
+01768 ,\{\{ 270, 230, 270, 130, 270\}
+01769 ,\{ 230, 190, 230, 90, 230\}
+01770 ,\{ 270, 230, 270, 130, 270\}
+01771 ,\{ 140, 100, 140, 130, 140\}
+01772 ,\{ 270, 230, 270, 130, 270\}
+01773 \}
+01774 ,\{\{ 290, 290, 270, 190, 270\}
+01775 ,\{ 270, 230, 270, 130, 270\}
+01776 ,\{ 270, 230, 270, 190, 270\}
+01777 ,\{ 270, 230, 270, 130, 270\}
+01778 ,\{ 290, 290, 270, 130, 270\}
+01779 \}
+01780 \}
+01781 ,\{\{\{ 290, 260, 290, 260, 270\}
+01782 ,\{ 290, 260, 290, 260, 270\}
+01783 ,\{ 250, 220, 250, 220, 240\}
+01784 ,\{ 250, 220, 250, 220, 240\}
+01785 ,\{ 250, 220, 250, 220, 240\}
+01786 \}
+01787 ,\{\{ 290, 260, 290, 260, 270\}
+01788 ,\{ 290, 260, 290, 260, 270\}
+01789 ,\{ 250, 220, 250, 220, 240\}
+01790 ,\{ 230, 140, 230, 140, 220\}
+01791 ,\{ 250, 220, 250, 220, 240\}
+01792 \}
+01793 ,\{\{ 250, 220, 250, 220, 240\}
+01794 ,\{ 250, 220, 250, 220, 240\}
+01795 ,\{ 250, 220, 250, 220, 240\}
+01796 ,\{ 250, 220, 250, 220, 240\}
+01797 ,\{ 250, 220, 250, 220, 240\}
+01798 \}
+01799 ,\{\{ 270, 220, 270, 220, 260\}
+01800 ,\{ 270, 180, 270, 180, 260\}
+01801 ,\{ 250, 220, 250, 220, 240\}
+01802 ,\{ 120, 90, 120, 90, 110\}
+01803 ,\{ 250, 220, 250, 220, 240\}
+01804 \}
+01805 ,\{\{ 250, 220, 250, 220, 240\}
+01806 ,\{ 250, 220, 250, 220, 240\}
+01807 ,\{ 250, 220, 250, 220, 240\}
+01808 ,\{ 250, 220, 250, 220, 240\}
+01809 ,\{ 250, 220, 250, 220, 240\}
+01810 \}
+01811 \}
+01812 ,\{\{\{ 300, 190, 300, 210, 300\}
+01813 ,\{ 300, 170, 300, 170, 300\}
+01814 ,\{ 270, 190, 270, 80, 270\}
+01815 ,\{ 270, 130, 270, 210, 270\}
+01816 ,\{ 270, 190, 270, 210, 270\}
+01817 \}
+01818 ,\{\{ 300, 170, 300, 130, 300\}
+01819 ,\{ 300, 170, 300, 110, 300\}
+01820 ,\{ 270, 130, 270, 80, 270\}
+01821 ,\{ 190, 50, 190, 130, 190\}
+01822 ,\{ 270, 130, 270, 80, 270\}
+01823 \}
+01824 ,\{\{ 270, 190, 270, 80, 270\}
+01825 ,\{ 270, 130, 270, 80, 270\}
+01826 ,\{ 270, 190, 270, 80, 270\}
+01827 ,\{ 270, 130, 270, 80, 270\}
+01828 ,\{ 270, 190, 270, 80, 270\}
+01829 \}
+01830 ,\{\{ 270, 130, 270, 210, 270\}
+01831 ,\{ 230, 90, 230, 170, 230\}
+01832 ,\{ 270, 130, 270, 80, 270\}
+01833 ,\{ 210, 130, 140, 210, 140\}
+01834 ,\{ 270, 130, 270, 80, 270\}
+01835 \}
+01836 ,\{\{ 270, 190, 270, 210, 270\}
+01837 ,\{ 270, 130, 270, 80, 270\}
+01838 ,\{ 270, 190, 270, 80, 270\}
+01839 ,\{ 270, 130, 270, 80, 270\}
+01840 ,\{ 270, 130, 270, 210, 270\}
+01841 \}
+01842 \}
+01843 ,\{\{\{ 270, 260, 270, 260, 240\}
+01844 ,\{ 270, 260, 270, 260, 240\}
+01845 ,\{ 240, 220, 240, 220, 150\}
+01846 ,\{ 240, 220, 240, 220, 150\}
+01847 ,\{ 240, 220, 240, 220, 150\}
+01848 \}
+01849 ,\{\{ 270, 260, 270, 260, 240\}
+01850 ,\{ 270, 260, 270, 260, 240\}
+01851 ,\{ 240, 220, 240, 220, 150\}
+01852 ,\{ 220, 140, 220, 140, 70\}
+01853 ,\{ 240, 220, 240, 220, 150\}
+01854 \}
+01855 ,\{\{ 240, 220, 240, 220, 150\}
+01856 ,\{ 240, 220, 240, 220, 150\}
+01857 ,\{ 240, 220, 240, 220, 150\}
+01858 ,\{ 240, 220, 240, 220, 150\}
+01859 ,\{ 240, 220, 240, 220, 150\}
+01860 \}
+01861 ,\{\{ 260, 220, 260, 220, 150\}
+01862 ,\{ 260, 180, 260, 180, 110\}
+01863 ,\{ 240, 220, 240, 220, 150\}
+01864 ,\{ 150, 90, 110, 90, 150\}
+01865 ,\{ 240, 220, 240, 220, 150\}
+01866 \}
+01867 ,\{\{ 240, 220, 240, 220, 150\}
+01868 ,\{ 240, 220, 240, 220, 150\}
+01869 ,\{ 240, 220, 240, 220, 150\}
+01870 ,\{ 240, 220, 240, 220, 150\}
+01871 ,\{ 240, 220, 240, 220, 150\}
+01872 \}
+01873 \}
+01874 \}
+01875 ,\{\{\{\{ 310, 260, 310, 220, 300\}
+01876 ,\{ 310, 230, 310, 220, 300\}
+01877 ,\{ 240, 200, 240, 190, 240\}
+01878 ,\{ 240, 200, 240, 190, 240\}
+01879 ,\{ 260, 260, 240, 190, 240\}
+01880 \}
+01881 ,\{\{ 240, 200, 240, 190, 240\}
+01882 ,\{ 200, 160, 200, 160, 200\}
+01883 ,\{ 240, 200, 240, 190, 240\}
+01884 ,\{ 150, 60, 150, 60, 130\}
+01885 ,\{ 240, 200, 240, 190, 240\}
+01886 \}
+01887 ,\{\{ 240, 200, 240, 190, 240\}
+01888 ,\{ 240, 200, 240, 190, 240\}
+01889 ,\{ 240, 200, 240, 190, 240\}
+01890 ,\{ 240, 200, 240, 190, 240\}
+01891 ,\{ 240, 200, 240, 190, 240\}
+01892 \}
+01893 ,\{\{ 310, 230, 310, 220, 300\}
+01894 ,\{ 310, 230, 310, 220, 300\}
+01895 ,\{ 240, 200, 240, 190, 240\}
+01896 ,\{ 180, 100, 110, 180, 120\}
+01897 ,\{ 240, 200, 240, 190, 240\}
+01898 \}
+01899 ,\{\{ 260, 260, 240, 190, 240\}
+01900 ,\{ 240, 200, 240, 190, 240\}
+01901 ,\{ 240, 200, 240, 190, 240\}
+01902 ,\{ 240, 200, 240, 190, 240\}
+01903 ,\{ 260, 260, 240, 190, 240\}
+01904 \}
+01905 \}
+01906 ,\{\{\{ 270, 260, 270, 160, 270\}
+01907 ,\{ 270, 230, 270, 130, 270\}
+01908 ,\{ 240, 200, 240, 160, 240\}
+01909 ,\{ 240, 200, 240, 100, 240\}
+01910 ,\{ 260, 260, 240, 160, 240\}
+01911 \}
+01912 ,\{\{ 240, 200, 240, 100, 240\}
+01913 ,\{ 200, 160, 200, 70, 200\}
+01914 ,\{ 240, 200, 240, 100, 240\}
+01915 ,\{ 100, 60, 100, -30, 100\}
+01916 ,\{ 240, 200, 240, 100, 240\}
+01917 \}
+01918 ,\{\{ 240, 200, 240, 160, 240\}
+01919 ,\{ 240, 200, 240, 100, 240\}
+01920 ,\{ 240, 200, 240, 160, 240\}
+01921 ,\{ 240, 200, 240, 100, 240\}
+01922 ,\{ 240, 200, 240, 160, 240\}
+01923 \}
+01924 ,\{\{ 270, 230, 270, 130, 270\}
+01925 ,\{ 270, 230, 270, 130, 270\}
+01926 ,\{ 240, 200, 240, 100, 240\}
+01927 ,\{ 110, 70, 110, 100, 110\}
+01928 ,\{ 240, 200, 240, 100, 240\}
+01929 \}
+01930 ,\{\{ 260, 260, 240, 160, 240\}
+01931 ,\{ 240, 200, 240, 100, 240\}
+01932 ,\{ 240, 200, 240, 160, 240\}
+01933 ,\{ 240, 200, 240, 100, 240\}
+01934 ,\{ 260, 260, 240, 100, 240\}
+01935 \}
+01936 \}
+01937 ,\{\{\{ 310, 220, 310, 220, 300\}
+01938 ,\{ 310, 220, 310, 220, 300\}
+01939 ,\{ 220, 190, 220, 190, 210\}
+01940 ,\{ 220, 190, 220, 190, 210\}
+01941 ,\{ 220, 190, 220, 190, 210\}
+01942 \}
+01943 ,\{\{ 220, 190, 220, 190, 210\}
+01944 ,\{ 190, 160, 190, 160, 170\}
+01945 ,\{ 220, 190, 220, 190, 210\}
+01946 ,\{ 150, 60, 150, 60, 130\}
+01947 ,\{ 220, 190, 220, 190, 210\}
+01948 \}
+01949 ,\{\{ 220, 190, 220, 190, 210\}
+01950 ,\{ 220, 190, 220, 190, 210\}
+01951 ,\{ 220, 190, 220, 190, 210\}
+01952 ,\{ 220, 190, 220, 190, 210\}
+01953 ,\{ 220, 190, 220, 190, 210\}
+01954 \}
+01955 ,\{\{ 310, 220, 310, 220, 300\}
+01956 ,\{ 310, 220, 310, 220, 300\}
+01957 ,\{ 220, 190, 220, 190, 210\}
+01958 ,\{ 90, 60, 90, 60, 80\}
+01959 ,\{ 220, 190, 220, 190, 210\}
+01960 \}
+01961 ,\{\{ 220, 190, 220, 190, 210\}
+01962 ,\{ 220, 190, 220, 190, 210\}
+01963 ,\{ 220, 190, 220, 190, 210\}
+01964 ,\{ 220, 190, 220, 190, 210\}
+01965 ,\{ 220, 190, 220, 190, 210\}
+01966 \}
+01967 \}
+01968 ,\{\{\{ 270, 160, 270, 210, 270\}
+01969 ,\{ 270, 130, 270, 210, 270\}
+01970 ,\{ 240, 160, 240, 50, 240\}
+01971 ,\{ 240, 100, 240, 180, 240\}
+01972 ,\{ 240, 160, 240, 180, 240\}
+01973 \}
+01974 ,\{\{ 240, 100, 240, 50, 240\}
+01975 ,\{ 200, 70, 200, 10, 200\}
+01976 ,\{ 240, 100, 240, 50, 240\}
+01977 ,\{ 100, -30, 100, 40, 100\}
+01978 ,\{ 240, 100, 240, 50, 240\}
+01979 \}
+01980 ,\{\{ 240, 160, 240, 50, 240\}
+01981 ,\{ 240, 100, 240, 50, 240\}
+01982 ,\{ 240, 160, 240, 50, 240\}
+01983 ,\{ 240, 100, 240, 50, 240\}
+01984 ,\{ 240, 160, 240, 50, 240\}
+01985 \}
+01986 ,\{\{ 270, 130, 270, 210, 270\}
+01987 ,\{ 270, 130, 270, 210, 270\}
+01988 ,\{ 240, 100, 240, 50, 240\}
+01989 ,\{ 180, 100, 110, 180, 110\}
+01990 ,\{ 240, 100, 240, 50, 240\}
+01991 \}
+01992 ,\{\{ 240, 160, 240, 180, 240\}
+01993 ,\{ 240, 100, 240, 50, 240\}
+01994 ,\{ 240, 160, 240, 50, 240\}
+01995 ,\{ 240, 100, 240, 50, 240\}
+01996 ,\{ 240, 100, 240, 180, 240\}
+01997 \}
+01998 \}
+01999 ,\{\{\{ 300, 220, 300, 220, 150\}
+02000 ,\{ 300, 220, 300, 220, 150\}
+02001 ,\{ 210, 190, 210, 190, 120\}
+02002 ,\{ 210, 190, 210, 190, 120\}
+02003 ,\{ 210, 190, 210, 190, 120\}
+02004 \}
+02005 ,\{\{ 210, 190, 210, 190, 140\}
+02006 ,\{ 170, 160, 170, 160, 140\}
+02007 ,\{ 210, 190, 210, 190, 120\}
+02008 ,\{ 130, 60, 130, 60, -10\}
+02009 ,\{ 210, 190, 210, 190, 120\}
+02010 \}
+02011 ,\{\{ 210, 190, 210, 190, 120\}
+02012 ,\{ 210, 190, 210, 190, 120\}
+02013 ,\{ 210, 190, 210, 190, 120\}
+02014 ,\{ 210, 190, 210, 190, 120\}
+02015 ,\{ 210, 190, 210, 190, 120\}
+02016 \}
+02017 ,\{\{ 300, 220, 300, 220, 150\}
+02018 ,\{ 300, 220, 300, 220, 150\}
+02019 ,\{ 210, 190, 210, 190, 120\}
+02020 ,\{ 120, 60, 80, 60, 120\}
+02021 ,\{ 210, 190, 210, 190, 120\}
+02022 \}
+02023 ,\{\{ 210, 190, 210, 190, 120\}
+02024 ,\{ 210, 190, 210, 190, 120\}
+02025 ,\{ 210, 190, 210, 190, 120\}
+02026 ,\{ 210, 190, 210, 190, 120\}
+02027 ,\{ 210, 190, 210, 190, 120\}
+02028 \}
+02029 \}
+02030 \}
+02031 ,\{\{\{\{ 240, 200, 240, 190, 240\}
+02032 ,\{ 240, 200, 240, 190, 240\}
+02033 ,\{ 220, 180, 220, 170, 220\}
+02034 ,\{ 220, 180, 220, 180, 220\}
+02035 ,\{ 220, 180, 220, 170, 220\}
+02036 \}
+02037 ,\{\{ 240, 200, 240, 190, 240\}
+02038 ,\{ 240, 200, 240, 190, 240\}
+02039 ,\{ 210, 170, 210, 170, 210\}
+02040 ,\{ 160, 70, 160, 70, 140\}
+02041 ,\{ 210, 170, 210, 170, 210\}
+02042 \}
+02043 ,\{\{ 220, 180, 220, 180, 220\}
+02044 ,\{ 220, 180, 220, 180, 220\}
+02045 ,\{ 220, 180, 220, 170, 220\}
+02046 ,\{ 220, 180, 220, 180, 220\}
+02047 ,\{ 220, 180, 220, 170, 220\}
+02048 \}
+02049 ,\{\{ 230, 170, 230, 170, 210\}
+02050 ,\{ 230, 140, 230, 140, 210\}
+02051 ,\{ 210, 170, 210, 170, 210\}
+02052 ,\{ 130, 60, 60, 130, 70\}
+02053 ,\{ 210, 170, 210, 170, 210\}
+02054 \}
+02055 ,\{\{ 220, 180, 220, 180, 220\}
+02056 ,\{ 220, 180, 220, 180, 220\}
+02057 ,\{ 220, 180, 220, 170, 220\}
+02058 ,\{ 220, 180, 220, 180, 220\}
+02059 ,\{ 150, 150, 130, 80, 130\}
+02060 \}
+02061 \}
+02062 ,\{\{\{ 240, 200, 240, 140, 240\}
+02063 ,\{ 240, 200, 240, 100, 240\}
+02064 ,\{ 220, 180, 220, 140, 220\}
+02065 ,\{ 220, 180, 220, 90, 220\}
+02066 ,\{ 220, 180, 220, 140, 220\}
+02067 \}
+02068 ,\{\{ 240, 200, 240, 100, 240\}
+02069 ,\{ 240, 200, 240, 100, 240\}
+02070 ,\{ 210, 170, 210, 80, 210\}
+02071 ,\{ 110, 70, 110, -20, 110\}
+02072 ,\{ 210, 170, 210, 80, 210\}
+02073 \}
+02074 ,\{\{ 220, 180, 220, 140, 220\}
+02075 ,\{ 220, 180, 220, 90, 220\}
+02076 ,\{ 220, 180, 220, 140, 220\}
+02077 ,\{ 220, 180, 220, 90, 220\}
+02078 ,\{ 220, 180, 220, 140, 220\}
+02079 \}
+02080 ,\{\{ 210, 170, 210, 80, 210\}
+02081 ,\{ 180, 140, 180, 50, 180\}
+02082 ,\{ 210, 170, 210, 80, 210\}
+02083 ,\{ 60, 20, 60, 60, 60\}
+02084 ,\{ 210, 170, 210, 80, 210\}
+02085 \}
+02086 ,\{\{ 220, 180, 220, 140, 220\}
+02087 ,\{ 220, 180, 220, 90, 220\}
+02088 ,\{ 220, 180, 220, 140, 220\}
+02089 ,\{ 220, 180, 220, 90, 220\}
+02090 ,\{ 150, 150, 130, 0, 130\}
+02091 \}
+02092 \}
+02093 ,\{\{\{ 230, 190, 230, 190, 210\}
+02094 ,\{ 230, 190, 230, 190, 210\}
+02095 ,\{ 200, 170, 200, 170, 190\}
+02096 ,\{ 210, 180, 210, 180, 190\}
+02097 ,\{ 200, 170, 200, 170, 190\}
+02098 \}
+02099 ,\{\{ 220, 190, 220, 190, 210\}
+02100 ,\{ 220, 190, 220, 190, 210\}
+02101 ,\{ 200, 170, 200, 170, 180\}
+02102 ,\{ 160, 70, 160, 70, 140\}
+02103 ,\{ 200, 170, 200, 170, 180\}
+02104 \}
+02105 ,\{\{ 210, 180, 210, 180, 190\}
+02106 ,\{ 210, 180, 210, 180, 190\}
+02107 ,\{ 200, 170, 200, 170, 190\}
+02108 ,\{ 210, 180, 210, 180, 190\}
+02109 ,\{ 200, 170, 200, 170, 190\}
+02110 \}
+02111 ,\{\{ 230, 170, 230, 170, 210\}
+02112 ,\{ 230, 140, 230, 140, 210\}
+02113 ,\{ 200, 170, 200, 170, 180\}
+02114 ,\{ 50, 20, 50, 20, 30\}
+02115 ,\{ 200, 170, 200, 170, 180\}
+02116 \}
+02117 ,\{\{ 210, 180, 210, 180, 190\}
+02118 ,\{ 210, 180, 210, 180, 190\}
+02119 ,\{ 200, 170, 200, 170, 190\}
+02120 ,\{ 210, 180, 210, 180, 190\}
+02121 ,\{ 110, 80, 110, 80, 100\}
+02122 \}
+02123 \}
+02124 ,\{\{\{ 240, 140, 240, 130, 240\}
+02125 ,\{ 240, 100, 240, 120, 240\}
+02126 ,\{ 220, 140, 220, 30, 220\}
+02127 ,\{ 220, 90, 220, 130, 220\}
+02128 ,\{ 220, 140, 220, 70, 220\}
+02129 \}
+02130 ,\{\{ 240, 100, 240, 50, 240\}
+02131 ,\{ 240, 100, 240, 50, 240\}
+02132 ,\{ 210, 80, 210, 20, 210\}
+02133 ,\{ 110, -20, 110, 50, 110\}
+02134 ,\{ 210, 80, 210, 20, 210\}
+02135 \}
+02136 ,\{\{ 220, 140, 220, 30, 220\}
+02137 ,\{ 220, 90, 220, 30, 220\}
+02138 ,\{ 220, 140, 220, 30, 220\}
+02139 ,\{ 220, 90, 220, 30, 220\}
+02140 ,\{ 220, 140, 220, 30, 220\}
+02141 \}
+02142 ,\{\{ 210, 80, 210, 130, 210\}
+02143 ,\{ 180, 50, 180, 120, 180\}
+02144 ,\{ 210, 80, 210, 20, 210\}
+02145 ,\{ 130, 60, 60, 130, 60\}
+02146 ,\{ 210, 80, 210, 20, 210\}
+02147 \}
+02148 ,\{\{ 220, 140, 220, 70, 220\}
+02149 ,\{ 220, 90, 220, 30, 220\}
+02150 ,\{ 220, 140, 220, 30, 220\}
+02151 ,\{ 220, 90, 220, 30, 220\}
+02152 ,\{ 130, 0, 130, 70, 130\}
+02153 \}
+02154 \}
+02155 ,\{\{\{ 210, 190, 210, 190, 180\}
+02156 ,\{ 210, 190, 210, 190, 180\}
+02157 ,\{ 190, 170, 190, 170, 100\}
+02158 ,\{ 190, 180, 190, 180, 100\}
+02159 ,\{ 190, 170, 190, 170, 100\}
+02160 \}
+02161 ,\{\{ 210, 190, 210, 190, 180\}
+02162 ,\{ 210, 190, 210, 190, 180\}
+02163 ,\{ 180, 170, 180, 170, 90\}
+02164 ,\{ 140, 70, 140, 70, 0\}
+02165 ,\{ 180, 170, 180, 170, 90\}
+02166 \}
+02167 ,\{\{ 190, 180, 190, 180, 100\}
+02168 ,\{ 190, 180, 190, 180, 100\}
+02169 ,\{ 190, 170, 190, 170, 100\}
+02170 ,\{ 190, 180, 190, 180, 100\}
+02171 ,\{ 190, 170, 190, 170, 100\}
+02172 \}
+02173 ,\{\{ 210, 170, 210, 170, 90\}
+02174 ,\{ 210, 140, 210, 140, 60\}
+02175 ,\{ 180, 170, 180, 170, 90\}
+02176 ,\{ 70, 20, 30, 20, 70\}
+02177 ,\{ 180, 170, 180, 170, 90\}
+02178 \}
+02179 ,\{\{ 190, 180, 190, 180, 100\}
+02180 ,\{ 190, 180, 190, 180, 100\}
+02181 ,\{ 190, 170, 190, 170, 100\}
+02182 ,\{ 190, 180, 190, 180, 100\}
+02183 ,\{ 100, 80, 100, 80, 10\}
+02184 \}
+02185 \}
+02186 \}
+02187 ,\{\{\{\{ 240, 200, 240, 190, 240\}
+02188 ,\{ 240, 200, 240, 190, 240\}
+02189 ,\{ 240, 200, 240, 190, 240\}
+02190 ,\{ 240, 200, 240, 190, 240\}
+02191 ,\{ 240, 200, 240, 190, 240\}
+02192 \}
+02193 ,\{\{ 240, 200, 240, 190, 240\}
+02194 ,\{ 240, 200, 240, 190, 240\}
+02195 ,\{ 190, 150, 190, 150, 190\}
+02196 ,\{ 180, 90, 180, 90, 160\}
+02197 ,\{ 190, 150, 190, 150, 190\}
+02198 \}
+02199 ,\{\{ 240, 200, 240, 190, 240\}
+02200 ,\{ 240, 200, 240, 190, 240\}
+02201 ,\{ 240, 200, 240, 190, 240\}
+02202 ,\{ 240, 200, 240, 190, 240\}
+02203 ,\{ 240, 200, 240, 190, 240\}
+02204 \}
+02205 ,\{\{ 190, 150, 190, 150, 190\}
+02206 ,\{ 190, 100, 190, 100, 170\}
+02207 ,\{ 190, 150, 190, 150, 190\}
+02208 ,\{ 150, 80, 80, 150, 90\}
+02209 ,\{ 190, 150, 190, 150, 190\}
+02210 \}
+02211 ,\{\{ 240, 200, 240, 190, 240\}
+02212 ,\{ 240, 200, 240, 190, 240\}
+02213 ,\{ 210, 170, 210, 160, 210\}
+02214 ,\{ 240, 200, 240, 190, 240\}
+02215 ,\{ 170, 170, 150, 110, 150\}
+02216 \}
+02217 \}
+02218 ,\{\{\{ 240, 200, 240, 160, 240\}
+02219 ,\{ 240, 200, 240, 100, 240\}
+02220 ,\{ 240, 200, 240, 160, 240\}
+02221 ,\{ 240, 200, 240, 100, 240\}
+02222 ,\{ 240, 200, 240, 160, 240\}
+02223 \}
+02224 ,\{\{ 240, 200, 240, 100, 240\}
+02225 ,\{ 240, 200, 240, 100, 240\}
+02226 ,\{ 190, 150, 190, 60, 190\}
+02227 ,\{ 130, 90, 130, 0, 130\}
+02228 ,\{ 190, 150, 190, 60, 190\}
+02229 \}
+02230 ,\{\{ 240, 200, 240, 160, 240\}
+02231 ,\{ 240, 200, 240, 100, 240\}
+02232 ,\{ 240, 200, 240, 160, 240\}
+02233 ,\{ 240, 200, 240, 100, 240\}
+02234 ,\{ 240, 200, 240, 160, 240\}
+02235 \}
+02236 ,\{\{ 190, 150, 190, 80, 190\}
+02237 ,\{ 140, 100, 140, 10, 140\}
+02238 ,\{ 190, 150, 190, 60, 190\}
+02239 ,\{ 80, 40, 80, 80, 80\}
+02240 ,\{ 190, 150, 190, 60, 190\}
+02241 \}
+02242 ,\{\{ 240, 200, 240, 130, 240\}
+02243 ,\{ 240, 200, 240, 100, 240\}
+02244 ,\{ 210, 170, 210, 130, 210\}
+02245 ,\{ 240, 200, 240, 100, 240\}
+02246 ,\{ 170, 170, 150, 20, 150\}
+02247 \}
+02248 \}
+02249 ,\{\{\{ 220, 190, 220, 190, 210\}
+02250 ,\{ 220, 190, 220, 190, 210\}
+02251 ,\{ 220, 190, 220, 190, 210\}
+02252 ,\{ 220, 190, 220, 190, 210\}
+02253 ,\{ 220, 190, 220, 190, 210\}
+02254 \}
+02255 ,\{\{ 220, 190, 220, 190, 210\}
+02256 ,\{ 220, 190, 220, 190, 210\}
+02257 ,\{ 180, 150, 180, 150, 160\}
+02258 ,\{ 180, 90, 180, 90, 160\}
+02259 ,\{ 180, 150, 180, 150, 160\}
+02260 \}
+02261 ,\{\{ 220, 190, 220, 190, 210\}
+02262 ,\{ 220, 190, 220, 190, 210\}
+02263 ,\{ 220, 190, 220, 190, 210\}
+02264 ,\{ 220, 190, 220, 190, 210\}
+02265 ,\{ 220, 190, 220, 190, 210\}
+02266 \}
+02267 ,\{\{ 190, 150, 190, 150, 170\}
+02268 ,\{ 190, 100, 190, 100, 170\}
+02269 ,\{ 180, 150, 180, 150, 160\}
+02270 ,\{ 70, 40, 70, 40, 50\}
+02271 ,\{ 180, 150, 180, 150, 160\}
+02272 \}
+02273 ,\{\{ 220, 190, 220, 190, 210\}
+02274 ,\{ 220, 190, 220, 190, 210\}
+02275 ,\{ 190, 160, 190, 160, 180\}
+02276 ,\{ 220, 190, 220, 190, 210\}
+02277 ,\{ 140, 110, 140, 110, 120\}
+02278 \}
+02279 \}
+02280 ,\{\{\{ 240, 160, 240, 150, 240\}
+02281 ,\{ 240, 100, 240, 80, 240\}
+02282 ,\{ 240, 160, 240, 50, 240\}
+02283 ,\{ 240, 100, 240, 150, 240\}
+02284 ,\{ 240, 160, 240, 90, 240\}
+02285 \}
+02286 ,\{\{ 240, 100, 240, 70, 240\}
+02287 ,\{ 240, 100, 240, 50, 240\}
+02288 ,\{ 190, 60, 190, 0, 190\}
+02289 ,\{ 130, 0, 130, 70, 130\}
+02290 ,\{ 190, 60, 190, 0, 190\}
+02291 \}
+02292 ,\{\{ 240, 160, 240, 50, 240\}
+02293 ,\{ 240, 100, 240, 50, 240\}
+02294 ,\{ 240, 160, 240, 50, 240\}
+02295 ,\{ 240, 100, 240, 50, 240\}
+02296 ,\{ 240, 160, 240, 50, 240\}
+02297 \}
+02298 ,\{\{ 190, 80, 190, 150, 190\}
+02299 ,\{ 140, 10, 140, 80, 140\}
+02300 ,\{ 190, 60, 190, 0, 190\}
+02301 ,\{ 150, 80, 80, 150, 80\}
+02302 ,\{ 190, 60, 190, 0, 190\}
+02303 \}
+02304 ,\{\{ 240, 130, 240, 90, 240\}
+02305 ,\{ 240, 100, 240, 50, 240\}
+02306 ,\{ 210, 130, 210, 20, 210\}
+02307 ,\{ 240, 100, 240, 50, 240\}
+02308 ,\{ 150, 20, 150, 90, 150\}
+02309 \}
+02310 \}
+02311 ,\{\{\{ 210, 190, 210, 190, 180\}
+02312 ,\{ 210, 190, 210, 190, 180\}
+02313 ,\{ 210, 190, 210, 190, 120\}
+02314 ,\{ 210, 190, 210, 190, 120\}
+02315 ,\{ 210, 190, 210, 190, 120\}
+02316 \}
+02317 ,\{\{ 210, 190, 210, 190, 180\}
+02318 ,\{ 210, 190, 210, 190, 180\}
+02319 ,\{ 160, 150, 160, 150, 70\}
+02320 ,\{ 160, 90, 160, 90, 10\}
+02321 ,\{ 160, 150, 160, 150, 70\}
+02322 \}
+02323 ,\{\{ 210, 190, 210, 190, 120\}
+02324 ,\{ 210, 190, 210, 190, 120\}
+02325 ,\{ 210, 190, 210, 190, 120\}
+02326 ,\{ 210, 190, 210, 190, 120\}
+02327 ,\{ 210, 190, 210, 190, 120\}
+02328 \}
+02329 ,\{\{ 170, 150, 170, 150, 90\}
+02330 ,\{ 170, 100, 170, 100, 20\}
+02331 ,\{ 160, 150, 160, 150, 70\}
+02332 ,\{ 90, 40, 50, 40, 90\}
+02333 ,\{ 160, 150, 160, 150, 70\}
+02334 \}
+02335 ,\{\{ 210, 190, 210, 190, 120\}
+02336 ,\{ 210, 190, 210, 190, 120\}
+02337 ,\{ 180, 160, 180, 160, 90\}
+02338 ,\{ 210, 190, 210, 190, 120\}
+02339 ,\{ 120, 110, 120, 110, 30\}
+02340 \}
+02341 \}
+02342 \}
+02343 ,\{\{\{\{ 310, 290, 310, 260, 300\}
+02344 ,\{ 310, 270, 310, 260, 300\}
+02345 ,\{ 270, 230, 270, 220, 270\}
+02346 ,\{ 270, 230, 270, 220, 270\}
+02347 ,\{ 290, 290, 270, 220, 270\}
+02348 \}
+02349 ,\{\{ 300, 270, 300, 260, 300\}
+02350 ,\{ 300, 270, 300, 260, 300\}
+02351 ,\{ 270, 230, 270, 220, 270\}
+02352 ,\{ 230, 150, 230, 140, 220\}
+02353 ,\{ 270, 230, 270, 220, 270\}
+02354 \}
+02355 ,\{\{ 270, 230, 270, 220, 270\}
+02356 ,\{ 270, 230, 270, 220, 270\}
+02357 ,\{ 270, 230, 270, 220, 270\}
+02358 ,\{ 270, 230, 270, 220, 270\}
+02359 ,\{ 270, 230, 270, 220, 270\}
+02360 \}
+02361 ,\{\{ 310, 230, 310, 220, 300\}
+02362 ,\{ 310, 230, 310, 220, 300\}
+02363 ,\{ 270, 230, 270, 220, 270\}
+02364 ,\{ 210, 130, 140, 210, 150\}
+02365 ,\{ 270, 230, 270, 220, 270\}
+02366 \}
+02367 ,\{\{ 290, 290, 270, 220, 270\}
+02368 ,\{ 270, 230, 270, 220, 270\}
+02369 ,\{ 270, 230, 270, 220, 270\}
+02370 ,\{ 270, 230, 270, 220, 270\}
+02371 ,\{ 290, 290, 270, 220, 270\}
+02372 \}
+02373 \}
+02374 ,\{\{\{ 300, 290, 300, 190, 300\}
+02375 ,\{ 300, 270, 300, 170, 300\}
+02376 ,\{ 270, 230, 270, 190, 270\}
+02377 ,\{ 270, 230, 270, 130, 270\}
+02378 ,\{ 290, 290, 270, 190, 270\}
+02379 \}
+02380 ,\{\{ 300, 270, 300, 170, 300\}
+02381 ,\{ 300, 270, 300, 170, 300\}
+02382 ,\{ 270, 230, 270, 130, 270\}
+02383 ,\{ 190, 150, 190, 50, 190\}
+02384 ,\{ 270, 230, 270, 130, 270\}
+02385 \}
+02386 ,\{\{ 270, 230, 270, 190, 270\}
+02387 ,\{ 270, 230, 270, 130, 270\}
+02388 ,\{ 270, 230, 270, 190, 270\}
+02389 ,\{ 270, 230, 270, 130, 270\}
+02390 ,\{ 270, 230, 270, 190, 270\}
+02391 \}
+02392 ,\{\{ 270, 230, 270, 130, 270\}
+02393 ,\{ 270, 230, 270, 130, 270\}
+02394 ,\{ 270, 230, 270, 130, 270\}
+02395 ,\{ 140, 100, 140, 130, 140\}
+02396 ,\{ 270, 230, 270, 130, 270\}
+02397 \}
+02398 ,\{\{ 290, 290, 270, 190, 270\}
+02399 ,\{ 270, 230, 270, 130, 270\}
+02400 ,\{ 270, 230, 270, 190, 270\}
+02401 ,\{ 270, 230, 270, 130, 270\}
+02402 ,\{ 290, 290, 270, 130, 270\}
+02403 \}
+02404 \}
+02405 ,\{\{\{ 310, 260, 310, 260, 300\}
+02406 ,\{ 310, 260, 310, 260, 300\}
+02407 ,\{ 250, 220, 250, 220, 240\}
+02408 ,\{ 250, 220, 250, 220, 240\}
+02409 ,\{ 250, 220, 250, 220, 240\}
+02410 \}
+02411 ,\{\{ 290, 260, 290, 260, 270\}
+02412 ,\{ 290, 260, 290, 260, 270\}
+02413 ,\{ 250, 220, 250, 220, 240\}
+02414 ,\{ 230, 140, 230, 140, 220\}
+02415 ,\{ 250, 220, 250, 220, 240\}
+02416 \}
+02417 ,\{\{ 250, 220, 250, 220, 240\}
+02418 ,\{ 250, 220, 250, 220, 240\}
+02419 ,\{ 250, 220, 250, 220, 240\}
+02420 ,\{ 250, 220, 250, 220, 240\}
+02421 ,\{ 250, 220, 250, 220, 240\}
+02422 \}
+02423 ,\{\{ 310, 220, 310, 220, 300\}
+02424 ,\{ 310, 220, 310, 220, 300\}
+02425 ,\{ 250, 220, 250, 220, 240\}
+02426 ,\{ 120, 90, 120, 90, 110\}
+02427 ,\{ 250, 220, 250, 220, 240\}
+02428 \}
+02429 ,\{\{ 250, 220, 250, 220, 240\}
+02430 ,\{ 250, 220, 250, 220, 240\}
+02431 ,\{ 250, 220, 250, 220, 240\}
+02432 ,\{ 250, 220, 250, 220, 240\}
+02433 ,\{ 250, 220, 250, 220, 240\}
+02434 \}
+02435 \}
+02436 ,\{\{\{ 300, 190, 300, 210, 300\}
+02437 ,\{ 300, 170, 300, 210, 300\}
+02438 ,\{ 270, 190, 270, 80, 270\}
+02439 ,\{ 270, 130, 270, 210, 270\}
+02440 ,\{ 270, 190, 270, 210, 270\}
+02441 \}
+02442 ,\{\{ 300, 170, 300, 130, 300\}
+02443 ,\{ 300, 170, 300, 110, 300\}
+02444 ,\{ 270, 130, 270, 80, 270\}
+02445 ,\{ 190, 50, 190, 130, 190\}
+02446 ,\{ 270, 130, 270, 80, 270\}
+02447 \}
+02448 ,\{\{ 270, 190, 270, 80, 270\}
+02449 ,\{ 270, 130, 270, 80, 270\}
+02450 ,\{ 270, 190, 270, 80, 270\}
+02451 ,\{ 270, 130, 270, 80, 270\}
+02452 ,\{ 270, 190, 270, 80, 270\}
+02453 \}
+02454 ,\{\{ 270, 130, 270, 210, 270\}
+02455 ,\{ 270, 130, 270, 210, 270\}
+02456 ,\{ 270, 130, 270, 80, 270\}
+02457 ,\{ 210, 130, 140, 210, 140\}
+02458 ,\{ 270, 130, 270, 80, 270\}
+02459 \}
+02460 ,\{\{ 270, 190, 270, 210, 270\}
+02461 ,\{ 270, 130, 270, 80, 270\}
+02462 ,\{ 270, 190, 270, 80, 270\}
+02463 ,\{ 270, 130, 270, 80, 270\}
+02464 ,\{ 270, 130, 270, 210, 270\}
+02465 \}
+02466 \}
+02467 ,\{\{\{ 300, 260, 300, 260, 240\}
+02468 ,\{ 300, 260, 300, 260, 240\}
+02469 ,\{ 240, 220, 240, 220, 150\}
+02470 ,\{ 240, 220, 240, 220, 150\}
+02471 ,\{ 240, 220, 240, 220, 150\}
+02472 \}
+02473 ,\{\{ 270, 260, 270, 260, 240\}
+02474 ,\{ 270, 260, 270, 260, 240\}
+02475 ,\{ 240, 220, 240, 220, 150\}
+02476 ,\{ 220, 140, 220, 140, 70\}
+02477 ,\{ 240, 220, 240, 220, 150\}
+02478 \}
+02479 ,\{\{ 240, 220, 240, 220, 150\}
+02480 ,\{ 240, 220, 240, 220, 150\}
+02481 ,\{ 240, 220, 240, 220, 150\}
+02482 ,\{ 240, 220, 240, 220, 150\}
+02483 ,\{ 240, 220, 240, 220, 150\}
+02484 \}
+02485 ,\{\{ 300, 220, 300, 220, 150\}
+02486 ,\{ 300, 220, 300, 220, 150\}
+02487 ,\{ 240, 220, 240, 220, 150\}
+02488 ,\{ 150, 90, 110, 90, 150\}
+02489 ,\{ 240, 220, 240, 220, 150\}
+02490 \}
+02491 ,\{\{ 240, 220, 240, 220, 150\}
+02492 ,\{ 240, 220, 240, 220, 150\}
+02493 ,\{ 240, 220, 240, 220, 150\}
+02494 ,\{ 240, 220, 240, 220, 150\}
+02495 ,\{ 240, 220, 240, 220, 150\}
+02496 \}
+02497 \}
+02498 \}
+02499 \}
+02500 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02501 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02502 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02505 \}
+02506 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02507 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02508 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02511 \}
+02512 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02513 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02514 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02517 \}
+02518 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02519 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02520 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02523 \}
+02524 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02525 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02526 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02527 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02529 \}
+02530 \}
+02531 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02532 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02533 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02534 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02535 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02536 \}
+02537 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02538 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02539 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02540 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02541 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02542 \}
+02543 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02544 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02545 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02546 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02547 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02548 \}
+02549 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02550 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02551 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02552 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02553 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02554 \}
+02555 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02556 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02557 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02558 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02559 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02560 \}
+02561 \}
+02562 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02563 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02564 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02565 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02566 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02567 \}
+02568 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02569 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02570 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02571 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02572 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02573 \}
+02574 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02575 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02576 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02577 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02578 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02579 \}
+02580 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02581 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02582 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02583 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02584 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02585 \}
+02586 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02587 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02588 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02589 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02590 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02591 \}
+02592 \}
+02593 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02594 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02595 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02596 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02597 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02598 \}
+02599 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02600 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02601 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02602 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02603 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02604 \}
+02605 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02606 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02607 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02608 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02609 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02610 \}
+02611 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02612 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02613 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02614 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02615 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02616 \}
+02617 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02618 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02619 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02620 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02621 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02622 \}
+02623 \}
+02624 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02625 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02626 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02627 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02628 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02629 \}
+02630 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02631 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02632 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02633 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02634 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02635 \}
+02636 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02637 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02638 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02639 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02640 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02641 \}
+02642 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02643 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02644 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02645 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02646 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02647 \}
+02648 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02649 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02650 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02651 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02652 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02653 \}
+02654 \}
+02655 \}
+02656 ,\{\{\{\{ 220, 220, 190, 150, 150\}
+02657 ,\{ 170, 170, 150, 150, 150\}
+02658 ,\{ 220, 220, 190, 130, 140\}
+02659 ,\{ 170, 170, 150, 150, 150\}
+02660 ,\{ 140, 140, 120, 140, 120\}
+02661 \}
+02662 ,\{\{ 150, 130, 110, 110, 150\}
+02663 ,\{ 150, 130, 110, 110, 150\}
+02664 ,\{ 130, 130, 110, 100, 110\}
+02665 ,\{ 90, 10, 70, 10, 90\}
+02666 ,\{ 130, 130, 100, 100, 110\}
+02667 \}
+02668 ,\{\{ 220, 220, 190, 150, 150\}
+02669 ,\{ 150, 150, 150, 150, 150\}
+02670 ,\{ 220, 220, 190, 130, 140\}
+02671 ,\{ 170, 170, 150, 150, 150\}
+02672 ,\{ 140, 140, 120, 120, 120\}
+02673 \}
+02674 ,\{\{ 140, 130, 100, 100, 140\}
+02675 ,\{ 90, 10, 70, 10, 90\}
+02676 ,\{ 130, 130, 100, 100, 110\}
+02677 ,\{ 140, -10, 20, 80, 140\}
+02678 ,\{ 130, 130, 100, 100, 110\}
+02679 \}
+02680 ,\{\{ 170, 170, 170, 150, 150\}
+02681 ,\{ 170, 170, 150, 150, 150\}
+02682 ,\{ 170, 140, 170, 120, 120\}
+02683 ,\{ 170, 170, 150, 150, 150\}
+02684 ,\{ 140, 140, 30, 140, 30\}
+02685 \}
+02686 \}
+02687 ,\{\{\{ 220, 220, 190, 140, 140\}
+02688 ,\{ 170, 170, 140, 40, 140\}
+02689 ,\{ 220, 220, 190, 70, 130\}
+02690 ,\{ 170, 170, 140, 30, 140\}
+02691 ,\{ 140, 140, 110, 140, 110\}
+02692 \}
+02693 ,\{\{ 130, 130, 110, 70, 100\}
+02694 ,\{ 130, 130, 100, 40, 100\}
+02695 ,\{ 130, 130, 110, 70, 100\}
+02696 ,\{ 70, -20, 70, -50, 10\}
+02697 ,\{ 130, 130, 100, -10, 100\}
+02698 \}
+02699 ,\{\{ 220, 220, 190, 70, 140\}
+02700 ,\{ 140, 60, 50, 30, 140\}
+02701 ,\{ 220, 220, 190, 70, 130\}
+02702 ,\{ 170, 170, 140, 30, 140\}
+02703 ,\{ 140, 140, 110, 50, 110\}
+02704 \}
+02705 ,\{\{ 130, 130, 100, -10, 100\}
+02706 ,\{ 10, 0, -100, -70, 10\}
+02707 ,\{ 130, 130, 100, -10, 100\}
+02708 ,\{ -10, -10, -50, -30, -50\}
+02709 ,\{ 130, 130, 100, -10, 100\}
+02710 \}
+02711 ,\{\{ 170, 170, 140, 140, 140\}
+02712 ,\{ 170, 170, 140, 30, 140\}
+02713 ,\{ 140, 140, 110, 60, 110\}
+02714 ,\{ 170, 170, 140, 30, 140\}
+02715 ,\{ 140, 140, 30, 140, 20\}
+02716 \}
+02717 \}
+02718 ,\{\{\{ 150, 150, 150, 150, 150\}
+02719 ,\{ 150, 150, 150, 150, 150\}
+02720 ,\{ 140, 130, 130, 130, 140\}
+02721 ,\{ 150, 150, 150, 150, 150\}
+02722 ,\{ 120, 120, 120, 120, 120\}
+02723 \}
+02724 ,\{\{ 110, 110, 110, 110, 110\}
+02725 ,\{ 110, 110, 110, 110, 110\}
+02726 ,\{ 110, 100, 100, 100, 110\}
+02727 ,\{ 80, -40, 70, 10, 80\}
+02728 ,\{ 110, 100, 100, 100, 110\}
+02729 \}
+02730 ,\{\{ 150, 150, 150, 150, 150\}
+02731 ,\{ 150, 150, 150, 150, 150\}
+02732 ,\{ 140, 130, 130, 130, 140\}
+02733 ,\{ 150, 150, 150, 150, 150\}
+02734 ,\{ 120, 120, 120, 120, 120\}
+02735 \}
+02736 ,\{\{ 110, 100, 100, 100, 110\}
+02737 ,\{ 80, -70, -60, 10, 80\}
+02738 ,\{ 110, 100, 100, 100, 110\}
+02739 ,\{ -40, -40, -40, -40, -50\}
+02740 ,\{ 110, 100, 100, 100, 110\}
+02741 \}
+02742 ,\{\{ 150, 150, 150, 150, 150\}
+02743 ,\{ 150, 150, 150, 150, 150\}
+02744 ,\{ 120, 120, 120, 120, 120\}
+02745 ,\{ 150, 150, 150, 150, 150\}
+02746 ,\{ 30, 30, 30, 30, 30\}
+02747 \}
+02748 \}
+02749 ,\{\{\{ 140, 70, 140, 80, 140\}
+02750 ,\{ 140, 10, 140, 10, 140\}
+02751 ,\{ 130, 70, 130, 20, 130\}
+02752 ,\{ 140, -30, 140, 80, 140\}
+02753 ,\{ 110, 50, 110, 70, 110\}
+02754 \}
+02755 ,\{\{ 100, -30, 100, -30, 100\}
+02756 ,\{ 100, -30, 100, -30, 100\}
+02757 ,\{ 100, -70, 100, -40, 100\}
+02758 ,\{ 10, -170, 10, -30, 10\}
+02759 ,\{ 100, -70, 100, -40, 100\}
+02760 \}
+02761 ,\{\{ 140, 70, 140, 10, 140\}
+02762 ,\{ 140, 10, 140, -30, 140\}
+02763 ,\{ 130, 70, 130, -10, 130\}
+02764 ,\{ 140, -30, 140, 10, 140\}
+02765 ,\{ 110, 0, 110, -60, 110\}
+02766 \}
+02767 ,\{\{ 100, -70, 100, 80, 100\}
+02768 ,\{ 10, -160, 10, 0, 10\}
+02769 ,\{ 100, -70, 100, -40, 100\}
+02770 ,\{ 80, -90, -50, 80, -50\}
+02771 ,\{ 100, -70, 100, -40, 100\}
+02772 \}
+02773 ,\{\{ 140, 50, 140, 70, 140\}
+02774 ,\{ 140, -30, 140, 10, 140\}
+02775 ,\{ 110, 0, 110, 20, 110\}
+02776 ,\{ 140, -30, 140, 10, 140\}
+02777 ,\{ 70, 50, 20, 70, 20\}
+02778 \}
+02779 \}
+02780 ,\{\{\{ 170, 150, 170, 150, 150\}
+02781 ,\{ 150, 150, 150, 150, 150\}
+02782 ,\{ 170, 130, 170, 130, 30\}
+02783 ,\{ 150, 150, 150, 150, 140\}
+02784 ,\{ 120, 120, 120, 120, 40\}
+02785 \}
+02786 ,\{\{ 150, 110, 110, 110, 150\}
+02787 ,\{ 150, 110, 110, 110, 150\}
+02788 ,\{ 100, 100, 100, 100, -20\}
+02789 ,\{ 90, 10, 70, 10, 90\}
+02790 ,\{ 100, 100, 100, 100, 30\}
+02791 \}
+02792 ,\{\{ 150, 150, 150, 150, 70\}
+02793 ,\{ 150, 150, 150, 150, 0\}
+02794 ,\{ 130, 130, 130, 130, -10\}
+02795 ,\{ 150, 150, 150, 150, 70\}
+02796 ,\{ 120, 120, 120, 120, 40\}
+02797 \}
+02798 ,\{\{ 140, 100, 100, 100, 140\}
+02799 ,\{ 90, 10, 70, 10, 90\}
+02800 ,\{ 100, 100, 100, 100, 30\}
+02801 ,\{ 140, -40, 20, -40, 140\}
+02802 ,\{ 100, 100, 100, 100, 30\}
+02803 \}
+02804 ,\{\{ 170, 150, 170, 150, 70\}
+02805 ,\{ 150, 150, 150, 150, 70\}
+02806 ,\{ 170, 120, 170, 120, 20\}
+02807 ,\{ 150, 150, 150, 150, 70\}
+02808 ,\{ 30, 30, 30, 30, -60\}
+02809 \}
+02810 \}
+02811 \}
+02812 ,\{\{\{\{ 150, 150, 120, 120, 130\}
+02813 ,\{ 150, 150, 120, 120, 130\}
+02814 ,\{ 130, 130, 100, 100, 110\}
+02815 ,\{ 120, 120, 90, 90, 100\}
+02816 ,\{ 120, 120, 100, 100, 100\}
+02817 \}
+02818 ,\{\{ 150, 150, 120, 120, 130\}
+02819 ,\{ 150, 150, 120, 120, 130\}
+02820 ,\{ 120, 120, 100, 100, 100\}
+02821 ,\{ -10, -50, -20, -80, -10\}
+02822 ,\{ 120, 120, 100, 100, 100\}
+02823 \}
+02824 ,\{\{ 120, 120, 100, 100, 100\}
+02825 ,\{ 120, 120, 90, 90, 100\}
+02826 ,\{ 120, 120, 100, 100, 100\}
+02827 ,\{ 120, 120, 90, 90, 100\}
+02828 ,\{ 120, 120, 100, 100, 100\}
+02829 \}
+02830 ,\{\{ 120, 120, 100, 100, 100\}
+02831 ,\{ 50, 10, 50, -10, 50\}
+02832 ,\{ 120, 120, 100, 100, 100\}
+02833 ,\{ 80, -20, -40, 80, 10\}
+02834 ,\{ 120, 120, 100, 100, 100\}
+02835 \}
+02836 ,\{\{ 130, 130, 100, 100, 110\}
+02837 ,\{ 120, 120, 90, 90, 100\}
+02838 ,\{ 130, 130, 100, 100, 110\}
+02839 ,\{ 120, 120, 90, 90, 100\}
+02840 ,\{ 110, 110, 20, 20, 30\}
+02841 \}
+02842 \}
+02843 ,\{\{\{ 150, 150, 120, 50, 120\}
+02844 ,\{ 150, 150, 120, 10, 120\}
+02845 ,\{ 130, 130, 100, 50, 100\}
+02846 ,\{ 120, 120, 90, -20, 90\}
+02847 ,\{ 120, 120, 90, 50, 90\}
+02848 \}
+02849 ,\{\{ 150, 150, 120, 10, 120\}
+02850 ,\{ 150, 150, 120, 10, 120\}
+02851 ,\{ 120, 120, 90, -10, 90\}
+02852 ,\{ -50, -50, -80, -190, -80\}
+02853 ,\{ 120, 120, 90, -10, 90\}
+02854 \}
+02855 ,\{\{ 120, 120, 90, 50, 90\}
+02856 ,\{ 120, 120, 90, -20, 90\}
+02857 ,\{ 120, 120, 90, 50, 90\}
+02858 ,\{ 120, 120, 90, -20, 90\}
+02859 ,\{ 120, 120, 90, 50, 90\}
+02860 \}
+02861 ,\{\{ 120, 120, 90, -10, 90\}
+02862 ,\{ 10, 10, -20, -130, -20\}
+02863 ,\{ 120, 120, 90, -10, 90\}
+02864 ,\{ -20, -20, -50, -20, -50\}
+02865 ,\{ 120, 120, 90, -10, 90\}
+02866 \}
+02867 ,\{\{ 130, 130, 100, 50, 100\}
+02868 ,\{ 120, 120, 90, -20, 90\}
+02869 ,\{ 130, 130, 100, 50, 100\}
+02870 ,\{ 120, 120, 90, -20, 90\}
+02871 ,\{ 110, 110, 20, -90, 20\}
+02872 \}
+02873 \}
+02874 ,\{\{\{ 130, 120, 120, 120, 130\}
+02875 ,\{ 130, 120, 120, 120, 130\}
+02876 ,\{ 110, 100, 100, 100, 110\}
+02877 ,\{ 100, 90, 90, 90, 100\}
+02878 ,\{ 100, 100, 100, 100, 100\}
+02879 \}
+02880 ,\{\{ 130, 120, 120, 120, 130\}
+02881 ,\{ 130, 120, 120, 120, 130\}
+02882 ,\{ 100, 100, 100, 100, 100\}
+02883 ,\{ -10, -80, -20, -80, -10\}
+02884 ,\{ 100, 100, 100, 100, 100\}
+02885 \}
+02886 ,\{\{ 100, 100, 100, 100, 100\}
+02887 ,\{ 100, 90, 90, 90, 100\}
+02888 ,\{ 100, 100, 100, 100, 100\}
+02889 ,\{ 100, 90, 90, 90, 100\}
+02890 ,\{ 100, 100, 100, 100, 100\}
+02891 \}
+02892 ,\{\{ 100, 100, 100, 100, 100\}
+02893 ,\{ 50, -10, 50, -10, 50\}
+02894 ,\{ 100, 100, 100, 100, 100\}
+02895 ,\{ -40, -40, -40, -40, -40\}
+02896 ,\{ 100, 100, 100, 100, 100\}
+02897 \}
+02898 ,\{\{ 110, 100, 100, 100, 110\}
+02899 ,\{ 100, 90, 90, 90, 100\}
+02900 ,\{ 110, 100, 100, 100, 110\}
+02901 ,\{ 100, 90, 90, 90, 100\}
+02902 ,\{ 30, 20, 20, 20, 30\}
+02903 \}
+02904 \}
+02905 ,\{\{\{ 120, -10, 120, 80, 120\}
+02906 ,\{ 120, -50, 120, -20, 120\}
+02907 ,\{ 100, -10, 100, -40, 100\}
+02908 ,\{ 90, -80, 90, 80, 90\}
+02909 ,\{ 90, -20, 90, 10, 90\}
+02910 \}
+02911 ,\{\{ 120, -50, 120, -20, 120\}
+02912 ,\{ 120, -50, 120, -20, 120\}
+02913 ,\{ 90, -80, 90, -40, 90\}
+02914 ,\{ -80, -260, -80, -90, -80\}
+02915 ,\{ 90, -80, 90, -40, 90\}
+02916 \}
+02917 ,\{\{ 90, -20, 90, -40, 90\}
+02918 ,\{ 90, -80, 90, -50, 90\}
+02919 ,\{ 90, -20, 90, -40, 90\}
+02920 ,\{ 90, -80, 90, -50, 90\}
+02921 ,\{ 90, -20, 90, -40, 90\}
+02922 \}
+02923 ,\{\{ 90, -80, 90, 80, 90\}
+02924 ,\{ -20, -190, -20, -20, -20\}
+02925 ,\{ 90, -80, 90, -40, 90\}
+02926 ,\{ 80, -90, -50, 80, -50\}
+02927 ,\{ 90, -80, 90, -40, 90\}
+02928 \}
+02929 ,\{\{ 100, -10, 100, 10, 100\}
+02930 ,\{ 90, -80, 90, -50, 90\}
+02931 ,\{ 100, -10, 100, -40, 100\}
+02932 ,\{ 90, -80, 90, -50, 90\}
+02933 ,\{ 20, -150, 20, 10, 20\}
+02934 \}
+02935 \}
+02936 ,\{\{\{ 120, 120, 120, 120, 110\}
+02937 ,\{ 120, 120, 120, 120, 110\}
+02938 ,\{ 100, 100, 100, 100, 30\}
+02939 ,\{ 90, 90, 90, 90, 20\}
+02940 ,\{ 100, 100, 100, 100, 20\}
+02941 \}
+02942 ,\{\{ 120, 120, 120, 120, 110\}
+02943 ,\{ 120, 120, 120, 120, 110\}
+02944 ,\{ 100, 100, 100, 100, 20\}
+02945 ,\{ -20, -80, -20, -80, -150\}
+02946 ,\{ 100, 100, 100, 100, 20\}
+02947 \}
+02948 ,\{\{ 100, 100, 100, 100, 20\}
+02949 ,\{ 90, 90, 90, 90, 20\}
+02950 ,\{ 100, 100, 100, 100, 20\}
+02951 ,\{ 90, 90, 90, 90, 20\}
+02952 ,\{ 100, 100, 100, 100, 20\}
+02953 \}
+02954 ,\{\{ 100, 100, 100, 100, 20\}
+02955 ,\{ 50, -10, 50, -10, -90\}
+02956 ,\{ 100, 100, 100, 100, 20\}
+02957 ,\{ 10, -40, -40, -40, 10\}
+02958 ,\{ 100, 100, 100, 100, 20\}
+02959 \}
+02960 ,\{\{ 100, 100, 100, 100, 30\}
+02961 ,\{ 90, 90, 90, 90, 20\}
+02962 ,\{ 100, 100, 100, 100, 30\}
+02963 ,\{ 90, 90, 90, 90, 20\}
+02964 ,\{ 20, 20, 20, 20, -50\}
+02965 \}
+02966 \}
+02967 \}
+02968 ,\{\{\{\{ 300, 300, 250, 250, 260\}
+02969 ,\{ 280, 280, 250, 250, 260\}
+02970 ,\{ 240, 240, 220, 220, 220\}
+02971 ,\{ 240, 240, 220, 220, 220\}
+02972 ,\{ 300, 300, 220, 220, 220\}
+02973 \}
+02974 ,\{\{ 280, 280, 250, 250, 260\}
+02975 ,\{ 280, 280, 250, 250, 260\}
+02976 ,\{ 240, 240, 220, 220, 220\}
+02977 ,\{ 200, 160, 200, 140, 200\}
+02978 ,\{ 240, 240, 220, 220, 220\}
+02979 \}
+02980 ,\{\{ 240, 240, 220, 220, 220\}
+02981 ,\{ 240, 240, 220, 220, 220\}
+02982 ,\{ 240, 240, 220, 220, 220\}
+02983 ,\{ 240, 240, 220, 220, 220\}
+02984 ,\{ 240, 240, 220, 220, 220\}
+02985 \}
+02986 ,\{\{ 240, 240, 240, 220, 240\}
+02987 ,\{ 240, 200, 240, 180, 240\}
+02988 ,\{ 240, 240, 220, 220, 220\}
+02989 ,\{ 210, 110, 90, 210, 140\}
+02990 ,\{ 240, 240, 220, 220, 220\}
+02991 \}
+02992 ,\{\{ 300, 300, 220, 220, 220\}
+02993 ,\{ 240, 240, 220, 220, 220\}
+02994 ,\{ 240, 240, 220, 220, 220\}
+02995 ,\{ 240, 240, 220, 220, 220\}
+02996 ,\{ 300, 300, 220, 220, 220\}
+02997 \}
+02998 \}
+02999 ,\{\{\{ 300, 300, 250, 160, 250\}
+03000 ,\{ 280, 280, 250, 140, 250\}
+03001 ,\{ 240, 240, 210, 160, 210\}
+03002 ,\{ 240, 240, 210, 100, 210\}
+03003 ,\{ 300, 300, 210, 160, 210\}
+03004 \}
+03005 ,\{\{ 280, 280, 250, 140, 250\}
+03006 ,\{ 280, 280, 250, 140, 250\}
+03007 ,\{ 240, 240, 210, 100, 210\}
+03008 ,\{ 160, 160, 130, 20, 130\}
+03009 ,\{ 240, 240, 210, 100, 210\}
+03010 \}
+03011 ,\{\{ 240, 240, 210, 160, 210\}
+03012 ,\{ 240, 240, 210, 100, 210\}
+03013 ,\{ 240, 240, 210, 160, 210\}
+03014 ,\{ 240, 240, 210, 100, 210\}
+03015 ,\{ 240, 240, 210, 160, 210\}
+03016 \}
+03017 ,\{\{ 240, 240, 210, 100, 210\}
+03018 ,\{ 200, 200, 170, 60, 170\}
+03019 ,\{ 240, 240, 210, 100, 210\}
+03020 ,\{ 110, 110, 80, 100, 80\}
+03021 ,\{ 240, 240, 210, 100, 210\}
+03022 \}
+03023 ,\{\{ 300, 300, 210, 160, 210\}
+03024 ,\{ 240, 240, 210, 100, 210\}
+03025 ,\{ 240, 240, 210, 160, 210\}
+03026 ,\{ 240, 240, 210, 100, 210\}
+03027 ,\{ 300, 300, 210, 100, 210\}
+03028 \}
+03029 \}
+03030 ,\{\{\{ 260, 250, 250, 250, 260\}
+03031 ,\{ 260, 250, 250, 250, 260\}
+03032 ,\{ 220, 220, 220, 220, 220\}
+03033 ,\{ 220, 220, 220, 220, 220\}
+03034 ,\{ 220, 220, 220, 220, 220\}
+03035 \}
+03036 ,\{\{ 260, 250, 250, 250, 260\}
+03037 ,\{ 260, 250, 250, 250, 260\}
+03038 ,\{ 220, 220, 220, 220, 220\}
+03039 ,\{ 200, 140, 200, 140, 200\}
+03040 ,\{ 220, 220, 220, 220, 220\}
+03041 \}
+03042 ,\{\{ 220, 220, 220, 220, 220\}
+03043 ,\{ 220, 220, 220, 220, 220\}
+03044 ,\{ 220, 220, 220, 220, 220\}
+03045 ,\{ 220, 220, 220, 220, 220\}
+03046 ,\{ 220, 220, 220, 220, 220\}
+03047 \}
+03048 ,\{\{ 240, 220, 240, 220, 240\}
+03049 ,\{ 240, 180, 240, 180, 240\}
+03050 ,\{ 220, 220, 220, 220, 220\}
+03051 ,\{ 90, 90, 90, 90, 90\}
+03052 ,\{ 220, 220, 220, 220, 220\}
+03053 \}
+03054 ,\{\{ 220, 220, 220, 220, 220\}
+03055 ,\{ 220, 220, 220, 220, 220\}
+03056 ,\{ 220, 220, 220, 220, 220\}
+03057 ,\{ 220, 220, 220, 220, 220\}
+03058 ,\{ 220, 220, 220, 220, 220\}
+03059 \}
+03060 \}
+03061 ,\{\{\{ 250, 100, 250, 210, 250\}
+03062 ,\{ 250, 70, 250, 170, 250\}
+03063 ,\{ 210, 100, 210, 80, 210\}
+03064 ,\{ 210, 40, 210, 210, 210\}
+03065 ,\{ 210, 100, 210, 210, 210\}
+03066 \}
+03067 ,\{\{ 250, 70, 250, 130, 250\}
+03068 ,\{ 250, 70, 250, 110, 250\}
+03069 ,\{ 210, 40, 210, 80, 210\}
+03070 ,\{ 130, -40, 130, 130, 130\}
+03071 ,\{ 210, 40, 210, 80, 210\}
+03072 \}
+03073 ,\{\{ 210, 100, 210, 80, 210\}
+03074 ,\{ 210, 40, 210, 80, 210\}
+03075 ,\{ 210, 100, 210, 80, 210\}
+03076 ,\{ 210, 40, 210, 80, 210\}
+03077 ,\{ 210, 100, 210, 80, 210\}
+03078 \}
+03079 ,\{\{ 210, 40, 210, 210, 210\}
+03080 ,\{ 170, 0, 170, 170, 170\}
+03081 ,\{ 210, 40, 210, 80, 210\}
+03082 ,\{ 210, 40, 80, 210, 80\}
+03083 ,\{ 210, 40, 210, 80, 210\}
+03084 \}
+03085 ,\{\{ 210, 100, 210, 210, 210\}
+03086 ,\{ 210, 40, 210, 80, 210\}
+03087 ,\{ 210, 100, 210, 80, 210\}
+03088 ,\{ 210, 40, 210, 80, 210\}
+03089 ,\{ 210, 40, 210, 210, 210\}
+03090 \}
+03091 \}
+03092 ,\{\{\{ 250, 250, 250, 250, 240\}
+03093 ,\{ 250, 250, 250, 250, 240\}
+03094 ,\{ 220, 220, 220, 220, 140\}
+03095 ,\{ 220, 220, 220, 220, 140\}
+03096 ,\{ 220, 220, 220, 220, 140\}
+03097 \}
+03098 ,\{\{ 250, 250, 250, 250, 240\}
+03099 ,\{ 250, 250, 250, 250, 240\}
+03100 ,\{ 220, 220, 220, 220, 140\}
+03101 ,\{ 200, 140, 200, 140, 60\}
+03102 ,\{ 220, 220, 220, 220, 140\}
+03103 \}
+03104 ,\{\{ 220, 220, 220, 220, 140\}
+03105 ,\{ 220, 220, 220, 220, 140\}
+03106 ,\{ 220, 220, 220, 220, 140\}
+03107 ,\{ 220, 220, 220, 220, 140\}
+03108 ,\{ 220, 220, 220, 220, 140\}
+03109 \}
+03110 ,\{\{ 240, 220, 240, 220, 140\}
+03111 ,\{ 240, 180, 240, 180, 100\}
+03112 ,\{ 220, 220, 220, 220, 140\}
+03113 ,\{ 140, 90, 90, 90, 140\}
+03114 ,\{ 220, 220, 220, 220, 140\}
+03115 \}
+03116 ,\{\{ 220, 220, 220, 220, 140\}
+03117 ,\{ 220, 220, 220, 220, 140\}
+03118 ,\{ 220, 220, 220, 220, 140\}
+03119 ,\{ 220, 220, 220, 220, 140\}
+03120 ,\{ 220, 220, 220, 220, 140\}
+03121 \}
+03122 \}
+03123 \}
+03124 ,\{\{\{\{ 280, 270, 280, 220, 280\}
+03125 ,\{ 280, 240, 280, 220, 280\}
+03126 ,\{ 210, 210, 190, 190, 190\}
+03127 ,\{ 210, 210, 190, 190, 190\}
+03128 ,\{ 270, 270, 190, 190, 190\}
+03129 \}
+03130 ,\{\{ 210, 210, 190, 190, 190\}
+03131 ,\{ 190, 190, 150, 150, 160\}
+03132 ,\{ 210, 210, 190, 190, 190\}
+03133 ,\{ 120, 80, 110, 50, 120\}
+03134 ,\{ 210, 210, 190, 190, 190\}
+03135 \}
+03136 ,\{\{ 210, 210, 190, 190, 190\}
+03137 ,\{ 210, 210, 190, 190, 190\}
+03138 ,\{ 210, 210, 190, 190, 190\}
+03139 ,\{ 210, 210, 190, 190, 190\}
+03140 ,\{ 210, 210, 190, 190, 190\}
+03141 \}
+03142 ,\{\{ 280, 240, 280, 220, 280\}
+03143 ,\{ 280, 240, 280, 220, 280\}
+03144 ,\{ 210, 210, 190, 190, 190\}
+03145 ,\{ 180, 80, 60, 180, 110\}
+03146 ,\{ 210, 210, 190, 190, 190\}
+03147 \}
+03148 ,\{\{ 270, 270, 190, 190, 190\}
+03149 ,\{ 210, 210, 190, 190, 190\}
+03150 ,\{ 210, 210, 190, 190, 190\}
+03151 ,\{ 210, 210, 190, 190, 190\}
+03152 ,\{ 270, 270, 190, 190, 190\}
+03153 \}
+03154 \}
+03155 ,\{\{\{ 270, 270, 210, 130, 210\}
+03156 ,\{ 240, 240, 210, 100, 210\}
+03157 ,\{ 210, 210, 180, 130, 180\}
+03158 ,\{ 210, 210, 180, 70, 180\}
+03159 ,\{ 270, 270, 180, 130, 180\}
+03160 \}
+03161 ,\{\{ 210, 210, 180, 70, 180\}
+03162 ,\{ 190, 190, 150, 40, 150\}
+03163 ,\{ 210, 210, 180, 70, 180\}
+03164 ,\{ 80, 80, 50, -60, 50\}
+03165 ,\{ 210, 210, 180, 70, 180\}
+03166 \}
+03167 ,\{\{ 210, 210, 180, 130, 180\}
+03168 ,\{ 210, 210, 180, 70, 180\}
+03169 ,\{ 210, 210, 180, 130, 180\}
+03170 ,\{ 210, 210, 180, 70, 180\}
+03171 ,\{ 210, 210, 180, 130, 180\}
+03172 \}
+03173 ,\{\{ 240, 240, 210, 100, 210\}
+03174 ,\{ 240, 240, 210, 100, 210\}
+03175 ,\{ 210, 210, 180, 70, 180\}
+03176 ,\{ 80, 80, 50, 70, 50\}
+03177 ,\{ 210, 210, 180, 70, 180\}
+03178 \}
+03179 ,\{\{ 270, 270, 180, 130, 180\}
+03180 ,\{ 210, 210, 180, 70, 180\}
+03181 ,\{ 210, 210, 180, 130, 180\}
+03182 ,\{ 210, 210, 180, 70, 180\}
+03183 ,\{ 270, 270, 180, 70, 180\}
+03184 \}
+03185 \}
+03186 ,\{\{\{ 280, 220, 280, 220, 280\}
+03187 ,\{ 280, 220, 280, 220, 280\}
+03188 ,\{ 190, 190, 190, 190, 190\}
+03189 ,\{ 190, 190, 190, 190, 190\}
+03190 ,\{ 190, 190, 190, 190, 190\}
+03191 \}
+03192 ,\{\{ 190, 190, 190, 190, 190\}
+03193 ,\{ 160, 150, 150, 150, 160\}
+03194 ,\{ 190, 190, 190, 190, 190\}
+03195 ,\{ 120, 50, 110, 50, 120\}
+03196 ,\{ 190, 190, 190, 190, 190\}
+03197 \}
+03198 ,\{\{ 190, 190, 190, 190, 190\}
+03199 ,\{ 190, 190, 190, 190, 190\}
+03200 ,\{ 190, 190, 190, 190, 190\}
+03201 ,\{ 190, 190, 190, 190, 190\}
+03202 ,\{ 190, 190, 190, 190, 190\}
+03203 \}
+03204 ,\{\{ 280, 220, 280, 220, 280\}
+03205 ,\{ 280, 220, 280, 220, 280\}
+03206 ,\{ 190, 190, 190, 190, 190\}
+03207 ,\{ 60, 60, 60, 60, 60\}
+03208 ,\{ 190, 190, 190, 190, 190\}
+03209 \}
+03210 ,\{\{ 190, 190, 190, 190, 190\}
+03211 ,\{ 190, 190, 190, 190, 190\}
+03212 ,\{ 190, 190, 190, 190, 190\}
+03213 ,\{ 190, 190, 190, 190, 190\}
+03214 ,\{ 190, 190, 190, 190, 190\}
+03215 \}
+03216 \}
+03217 ,\{\{\{ 210, 70, 210, 210, 210\}
+03218 ,\{ 210, 40, 210, 210, 210\}
+03219 ,\{ 180, 70, 180, 50, 180\}
+03220 ,\{ 180, 10, 180, 180, 180\}
+03221 ,\{ 180, 70, 180, 180, 180\}
+03222 \}
+03223 ,\{\{ 180, 10, 180, 50, 180\}
+03224 ,\{ 150, -20, 150, 10, 150\}
+03225 ,\{ 180, 10, 180, 50, 180\}
+03226 ,\{ 50, -120, 50, 40, 50\}
+03227 ,\{ 180, 10, 180, 50, 180\}
+03228 \}
+03229 ,\{\{ 180, 70, 180, 50, 180\}
+03230 ,\{ 180, 10, 180, 50, 180\}
+03231 ,\{ 180, 70, 180, 50, 180\}
+03232 ,\{ 180, 10, 180, 50, 180\}
+03233 ,\{ 180, 70, 180, 50, 180\}
+03234 \}
+03235 ,\{\{ 210, 40, 210, 210, 210\}
+03236 ,\{ 210, 40, 210, 210, 210\}
+03237 ,\{ 180, 10, 180, 50, 180\}
+03238 ,\{ 180, 10, 50, 180, 50\}
+03239 ,\{ 180, 10, 180, 50, 180\}
+03240 \}
+03241 ,\{\{ 180, 70, 180, 180, 180\}
+03242 ,\{ 180, 10, 180, 50, 180\}
+03243 ,\{ 180, 70, 180, 50, 180\}
+03244 ,\{ 180, 10, 180, 50, 180\}
+03245 ,\{ 180, 10, 180, 180, 180\}
+03246 \}
+03247 \}
+03248 ,\{\{\{ 280, 220, 280, 220, 140\}
+03249 ,\{ 280, 220, 280, 220, 140\}
+03250 ,\{ 190, 190, 190, 190, 110\}
+03251 ,\{ 190, 190, 190, 190, 110\}
+03252 ,\{ 190, 190, 190, 190, 110\}
+03253 \}
+03254 ,\{\{ 190, 190, 190, 190, 140\}
+03255 ,\{ 150, 150, 150, 150, 140\}
+03256 ,\{ 190, 190, 190, 190, 110\}
+03257 ,\{ 110, 50, 110, 50, -20\}
+03258 ,\{ 190, 190, 190, 190, 110\}
+03259 \}
+03260 ,\{\{ 190, 190, 190, 190, 110\}
+03261 ,\{ 190, 190, 190, 190, 110\}
+03262 ,\{ 190, 190, 190, 190, 110\}
+03263 ,\{ 190, 190, 190, 190, 110\}
+03264 ,\{ 190, 190, 190, 190, 110\}
+03265 \}
+03266 ,\{\{ 280, 220, 280, 220, 140\}
+03267 ,\{ 280, 220, 280, 220, 140\}
+03268 ,\{ 190, 190, 190, 190, 110\}
+03269 ,\{ 110, 60, 60, 60, 110\}
+03270 ,\{ 190, 190, 190, 190, 110\}
+03271 \}
+03272 ,\{\{ 190, 190, 190, 190, 110\}
+03273 ,\{ 190, 190, 190, 190, 110\}
+03274 ,\{ 190, 190, 190, 190, 110\}
+03275 ,\{ 190, 190, 190, 190, 110\}
+03276 ,\{ 190, 190, 190, 190, 110\}
+03277 \}
+03278 \}
+03279 \}
+03280 ,\{\{\{\{ 210, 210, 190, 190, 200\}
+03281 ,\{ 210, 210, 190, 190, 200\}
+03282 ,\{ 190, 190, 170, 170, 170\}
+03283 ,\{ 200, 200, 170, 170, 180\}
+03284 ,\{ 190, 190, 170, 170, 170\}
+03285 \}
+03286 ,\{\{ 210, 210, 190, 190, 190\}
+03287 ,\{ 210, 210, 190, 190, 190\}
+03288 ,\{ 190, 190, 160, 160, 170\}
+03289 ,\{ 130, 90, 120, 60, 130\}
+03290 ,\{ 190, 190, 160, 160, 170\}
+03291 \}
+03292 ,\{\{ 200, 200, 170, 170, 180\}
+03293 ,\{ 200, 200, 170, 170, 180\}
+03294 ,\{ 190, 190, 170, 170, 170\}
+03295 ,\{ 200, 200, 170, 170, 180\}
+03296 ,\{ 190, 190, 170, 170, 170\}
+03297 \}
+03298 ,\{\{ 200, 190, 190, 160, 200\}
+03299 ,\{ 200, 160, 190, 130, 200\}
+03300 ,\{ 190, 190, 160, 160, 170\}
+03301 ,\{ 130, 40, 10, 130, 70\}
+03302 ,\{ 190, 190, 160, 160, 170\}
+03303 \}
+03304 ,\{\{ 200, 200, 170, 170, 180\}
+03305 ,\{ 200, 200, 170, 170, 180\}
+03306 ,\{ 190, 190, 170, 170, 170\}
+03307 ,\{ 200, 200, 170, 170, 180\}
+03308 ,\{ 160, 160, 80, 80, 80\}
+03309 \}
+03310 \}
+03311 ,\{\{\{ 210, 210, 180, 110, 180\}
+03312 ,\{ 210, 210, 180, 70, 180\}
+03313 ,\{ 190, 190, 160, 110, 160\}
+03314 ,\{ 200, 200, 170, 60, 170\}
+03315 ,\{ 190, 190, 160, 110, 160\}
+03316 \}
+03317 ,\{\{ 210, 210, 180, 70, 180\}
+03318 ,\{ 210, 210, 180, 70, 180\}
+03319 ,\{ 190, 190, 160, 50, 160\}
+03320 ,\{ 90, 90, 60, -50, 60\}
+03321 ,\{ 190, 190, 160, 50, 160\}
+03322 \}
+03323 ,\{\{ 200, 200, 170, 110, 170\}
+03324 ,\{ 200, 200, 170, 60, 170\}
+03325 ,\{ 190, 190, 160, 110, 160\}
+03326 ,\{ 200, 200, 170, 60, 170\}
+03327 ,\{ 190, 190, 160, 110, 160\}
+03328 \}
+03329 ,\{\{ 190, 190, 160, 50, 160\}
+03330 ,\{ 160, 160, 130, 20, 130\}
+03331 ,\{ 190, 190, 160, 50, 160\}
+03332 ,\{ 40, 40, 10, 30, 10\}
+03333 ,\{ 190, 190, 160, 50, 160\}
+03334 \}
+03335 ,\{\{ 200, 200, 170, 110, 170\}
+03336 ,\{ 200, 200, 170, 60, 170\}
+03337 ,\{ 190, 190, 160, 110, 160\}
+03338 ,\{ 200, 200, 170, 60, 170\}
+03339 ,\{ 160, 160, 70, -30, 70\}
+03340 \}
+03341 \}
+03342 ,\{\{\{ 200, 190, 190, 190, 200\}
+03343 ,\{ 200, 190, 190, 190, 200\}
+03344 ,\{ 170, 170, 170, 170, 170\}
+03345 ,\{ 180, 170, 170, 170, 180\}
+03346 ,\{ 170, 170, 170, 170, 170\}
+03347 \}
+03348 ,\{\{ 190, 190, 190, 190, 190\}
+03349 ,\{ 190, 190, 190, 190, 190\}
+03350 ,\{ 170, 160, 160, 160, 170\}
+03351 ,\{ 130, 60, 120, 60, 130\}
+03352 ,\{ 170, 160, 160, 160, 170\}
+03353 \}
+03354 ,\{\{ 180, 170, 170, 170, 180\}
+03355 ,\{ 180, 170, 170, 170, 180\}
+03356 ,\{ 170, 170, 170, 170, 170\}
+03357 ,\{ 180, 170, 170, 170, 180\}
+03358 ,\{ 170, 170, 170, 170, 170\}
+03359 \}
+03360 ,\{\{ 200, 160, 190, 160, 200\}
+03361 ,\{ 200, 130, 190, 130, 200\}
+03362 ,\{ 170, 160, 160, 160, 170\}
+03363 ,\{ 20, 10, 10, 10, 20\}
+03364 ,\{ 170, 160, 160, 160, 170\}
+03365 \}
+03366 ,\{\{ 180, 170, 170, 170, 180\}
+03367 ,\{ 180, 170, 170, 170, 180\}
+03368 ,\{ 170, 170, 170, 170, 170\}
+03369 ,\{ 180, 170, 170, 170, 180\}
+03370 ,\{ 80, 80, 80, 80, 80\}
+03371 \}
+03372 \}
+03373 ,\{\{\{ 180, 50, 180, 130, 180\}
+03374 ,\{ 180, 10, 180, 120, 180\}
+03375 ,\{ 160, 50, 160, 30, 160\}
+03376 ,\{ 170, 0, 170, 130, 170\}
+03377 ,\{ 160, 50, 160, 70, 160\}
+03378 \}
+03379 ,\{\{ 180, 10, 180, 50, 180\}
+03380 ,\{ 180, 10, 180, 50, 180\}
+03381 ,\{ 160, -10, 160, 20, 160\}
+03382 ,\{ 60, -110, 60, 50, 60\}
+03383 ,\{ 160, -10, 160, 20, 160\}
+03384 \}
+03385 ,\{\{ 170, 50, 170, 30, 170\}
+03386 ,\{ 170, 0, 170, 30, 170\}
+03387 ,\{ 160, 50, 160, 30, 160\}
+03388 ,\{ 170, 0, 170, 30, 170\}
+03389 ,\{ 160, 50, 160, 30, 160\}
+03390 \}
+03391 ,\{\{ 160, -10, 160, 130, 160\}
+03392 ,\{ 130, -40, 130, 120, 130\}
+03393 ,\{ 160, -10, 160, 20, 160\}
+03394 ,\{ 130, -30, 10, 130, 10\}
+03395 ,\{ 160, -10, 160, 20, 160\}
+03396 \}
+03397 ,\{\{ 170, 50, 170, 70, 170\}
+03398 ,\{ 170, 0, 170, 30, 170\}
+03399 ,\{ 160, 50, 160, 30, 160\}
+03400 ,\{ 170, 0, 170, 30, 170\}
+03401 ,\{ 70, -100, 70, 70, 70\}
+03402 \}
+03403 \}
+03404 ,\{\{\{ 190, 190, 190, 190, 170\}
+03405 ,\{ 190, 190, 190, 190, 170\}
+03406 ,\{ 170, 170, 170, 170, 90\}
+03407 ,\{ 170, 170, 170, 170, 100\}
+03408 ,\{ 170, 170, 170, 170, 90\}
+03409 \}
+03410 ,\{\{ 190, 190, 190, 190, 170\}
+03411 ,\{ 190, 190, 190, 190, 170\}
+03412 ,\{ 160, 160, 160, 160, 90\}
+03413 ,\{ 120, 60, 120, 60, -10\}
+03414 ,\{ 160, 160, 160, 160, 90\}
+03415 \}
+03416 ,\{\{ 170, 170, 170, 170, 100\}
+03417 ,\{ 170, 170, 170, 170, 100\}
+03418 ,\{ 170, 170, 170, 170, 90\}
+03419 ,\{ 170, 170, 170, 170, 100\}
+03420 ,\{ 170, 170, 170, 170, 90\}
+03421 \}
+03422 ,\{\{ 190, 160, 190, 160, 90\}
+03423 ,\{ 190, 130, 190, 130, 60\}
+03424 ,\{ 160, 160, 160, 160, 90\}
+03425 ,\{ 70, 10, 10, 10, 70\}
+03426 ,\{ 160, 160, 160, 160, 90\}
+03427 \}
+03428 ,\{\{ 170, 170, 170, 170, 100\}
+03429 ,\{ 170, 170, 170, 170, 100\}
+03430 ,\{ 170, 170, 170, 170, 90\}
+03431 ,\{ 170, 170, 170, 170, 100\}
+03432 ,\{ 80, 80, 80, 80, 0\}
+03433 \}
+03434 \}
+03435 \}
+03436 ,\{\{\{\{ 210, 210, 190, 190, 190\}
+03437 ,\{ 210, 210, 190, 190, 190\}
+03438 ,\{ 210, 210, 190, 190, 190\}
+03439 ,\{ 210, 210, 190, 190, 190\}
+03440 ,\{ 210, 210, 190, 190, 190\}
+03441 \}
+03442 ,\{\{ 210, 210, 190, 190, 190\}
+03443 ,\{ 210, 210, 190, 190, 190\}
+03444 ,\{ 170, 170, 140, 140, 150\}
+03445 ,\{ 150, 110, 140, 80, 150\}
+03446 ,\{ 170, 170, 140, 140, 150\}
+03447 \}
+03448 ,\{\{ 210, 210, 190, 190, 190\}
+03449 ,\{ 210, 210, 190, 190, 190\}
+03450 ,\{ 210, 210, 190, 190, 190\}
+03451 ,\{ 210, 210, 190, 190, 190\}
+03452 ,\{ 210, 210, 190, 190, 190\}
+03453 \}
+03454 ,\{\{ 170, 170, 150, 150, 160\}
+03455 ,\{ 160, 120, 150, 90, 160\}
+03456 ,\{ 170, 170, 140, 140, 150\}
+03457 ,\{ 150, 60, 30, 150, 90\}
+03458 ,\{ 170, 170, 140, 140, 150\}
+03459 \}
+03460 ,\{\{ 210, 210, 190, 190, 190\}
+03461 ,\{ 210, 210, 190, 190, 190\}
+03462 ,\{ 180, 180, 160, 160, 160\}
+03463 ,\{ 210, 210, 190, 190, 190\}
+03464 ,\{ 190, 190, 100, 100, 110\}
+03465 \}
+03466 \}
+03467 ,\{\{\{ 210, 210, 180, 130, 180\}
+03468 ,\{ 210, 210, 180, 70, 180\}
+03469 ,\{ 210, 210, 180, 130, 180\}
+03470 ,\{ 210, 210, 180, 70, 180\}
+03471 ,\{ 210, 210, 180, 130, 180\}
+03472 \}
+03473 ,\{\{ 210, 210, 180, 70, 180\}
+03474 ,\{ 210, 210, 180, 70, 180\}
+03475 ,\{ 170, 170, 140, 30, 140\}
+03476 ,\{ 110, 110, 80, -30, 80\}
+03477 ,\{ 170, 170, 140, 30, 140\}
+03478 \}
+03479 ,\{\{ 210, 210, 180, 130, 180\}
+03480 ,\{ 210, 210, 180, 70, 180\}
+03481 ,\{ 210, 210, 180, 130, 180\}
+03482 ,\{ 210, 210, 180, 70, 180\}
+03483 ,\{ 210, 210, 180, 130, 180\}
+03484 \}
+03485 ,\{\{ 170, 170, 140, 50, 140\}
+03486 ,\{ 120, 120, 90, -20, 90\}
+03487 ,\{ 170, 170, 140, 30, 140\}
+03488 ,\{ 60, 60, 30, 50, 30\}
+03489 ,\{ 170, 170, 140, 30, 140\}
+03490 \}
+03491 ,\{\{ 210, 210, 180, 100, 180\}
+03492 ,\{ 210, 210, 180, 70, 180\}
+03493 ,\{ 180, 180, 150, 100, 150\}
+03494 ,\{ 210, 210, 180, 70, 180\}
+03495 ,\{ 190, 190, 100, -10, 100\}
+03496 \}
+03497 \}
+03498 ,\{\{\{ 190, 190, 190, 190, 190\}
+03499 ,\{ 190, 190, 190, 190, 190\}
+03500 ,\{ 190, 190, 190, 190, 190\}
+03501 ,\{ 190, 190, 190, 190, 190\}
+03502 ,\{ 190, 190, 190, 190, 190\}
+03503 \}
+03504 ,\{\{ 190, 190, 190, 190, 190\}
+03505 ,\{ 190, 190, 190, 190, 190\}
+03506 ,\{ 150, 140, 140, 140, 150\}
+03507 ,\{ 150, 80, 140, 80, 150\}
+03508 ,\{ 150, 140, 140, 140, 150\}
+03509 \}
+03510 ,\{\{ 190, 190, 190, 190, 190\}
+03511 ,\{ 190, 190, 190, 190, 190\}
+03512 ,\{ 190, 190, 190, 190, 190\}
+03513 ,\{ 190, 190, 190, 190, 190\}
+03514 ,\{ 190, 190, 190, 190, 190\}
+03515 \}
+03516 ,\{\{ 160, 140, 150, 140, 160\}
+03517 ,\{ 160, 90, 150, 90, 160\}
+03518 ,\{ 150, 140, 140, 140, 150\}
+03519 ,\{ 40, 30, 30, 30, 40\}
+03520 ,\{ 150, 140, 140, 140, 150\}
+03521 \}
+03522 ,\{\{ 190, 190, 190, 190, 190\}
+03523 ,\{ 190, 190, 190, 190, 190\}
+03524 ,\{ 160, 160, 160, 160, 160\}
+03525 ,\{ 190, 190, 190, 190, 190\}
+03526 ,\{ 110, 100, 100, 100, 110\}
+03527 \}
+03528 \}
+03529 ,\{\{\{ 180, 70, 180, 150, 180\}
+03530 ,\{ 180, 10, 180, 80, 180\}
+03531 ,\{ 180, 70, 180, 50, 180\}
+03532 ,\{ 180, 10, 180, 150, 180\}
+03533 ,\{ 180, 70, 180, 90, 180\}
+03534 \}
+03535 ,\{\{ 180, 10, 180, 70, 180\}
+03536 ,\{ 180, 10, 180, 50, 180\}
+03537 ,\{ 140, -30, 140, 0, 140\}
+03538 ,\{ 80, -90, 80, 70, 80\}
+03539 ,\{ 140, -30, 140, 0, 140\}
+03540 \}
+03541 ,\{\{ 180, 70, 180, 50, 180\}
+03542 ,\{ 180, 10, 180, 50, 180\}
+03543 ,\{ 180, 70, 180, 50, 180\}
+03544 ,\{ 180, 10, 180, 50, 180\}
+03545 ,\{ 180, 70, 180, 50, 180\}
+03546 \}
+03547 ,\{\{ 150, -10, 140, 150, 140\}
+03548 ,\{ 90, -80, 90, 80, 90\}
+03549 ,\{ 140, -30, 140, 0, 140\}
+03550 ,\{ 150, -10, 30, 150, 30\}
+03551 ,\{ 140, -30, 140, 0, 140\}
+03552 \}
+03553 ,\{\{ 180, 40, 180, 90, 180\}
+03554 ,\{ 180, 10, 180, 50, 180\}
+03555 ,\{ 150, 40, 150, 20, 150\}
+03556 ,\{ 180, 10, 180, 50, 180\}
+03557 ,\{ 100, -70, 100, 90, 100\}
+03558 \}
+03559 \}
+03560 ,\{\{\{ 190, 190, 190, 190, 170\}
+03561 ,\{ 190, 190, 190, 190, 170\}
+03562 ,\{ 190, 190, 190, 190, 110\}
+03563 ,\{ 190, 190, 190, 190, 110\}
+03564 ,\{ 190, 190, 190, 190, 110\}
+03565 \}
+03566 ,\{\{ 190, 190, 190, 190, 170\}
+03567 ,\{ 190, 190, 190, 190, 170\}
+03568 ,\{ 140, 140, 140, 140, 70\}
+03569 ,\{ 140, 80, 140, 80, 10\}
+03570 ,\{ 140, 140, 140, 140, 70\}
+03571 \}
+03572 ,\{\{ 190, 190, 190, 190, 110\}
+03573 ,\{ 190, 190, 190, 190, 110\}
+03574 ,\{ 190, 190, 190, 190, 110\}
+03575 ,\{ 190, 190, 190, 190, 110\}
+03576 ,\{ 190, 190, 190, 190, 110\}
+03577 \}
+03578 ,\{\{ 150, 140, 150, 140, 90\}
+03579 ,\{ 150, 90, 150, 90, 20\}
+03580 ,\{ 140, 140, 140, 140, 70\}
+03581 ,\{ 90, 30, 30, 30, 90\}
+03582 ,\{ 140, 140, 140, 140, 70\}
+03583 \}
+03584 ,\{\{ 190, 190, 190, 190, 110\}
+03585 ,\{ 190, 190, 190, 190, 110\}
+03586 ,\{ 160, 160, 160, 160, 80\}
+03587 ,\{ 190, 190, 190, 190, 110\}
+03588 ,\{ 100, 100, 100, 100, 30\}
+03589 \}
+03590 \}
+03591 \}
+03592 ,\{\{\{\{ 300, 300, 280, 250, 280\}
+03593 ,\{ 280, 280, 280, 250, 280\}
+03594 ,\{ 240, 240, 220, 220, 220\}
+03595 ,\{ 240, 240, 220, 220, 220\}
+03596 ,\{ 300, 300, 220, 220, 220\}
+03597 \}
+03598 ,\{\{ 280, 280, 250, 250, 260\}
+03599 ,\{ 280, 280, 250, 250, 260\}
+03600 ,\{ 240, 240, 220, 220, 220\}
+03601 ,\{ 200, 160, 200, 140, 200\}
+03602 ,\{ 240, 240, 220, 220, 220\}
+03603 \}
+03604 ,\{\{ 240, 240, 220, 220, 220\}
+03605 ,\{ 240, 240, 220, 220, 220\}
+03606 ,\{ 240, 240, 220, 220, 220\}
+03607 ,\{ 240, 240, 220, 220, 220\}
+03608 ,\{ 240, 240, 220, 220, 220\}
+03609 \}
+03610 ,\{\{ 280, 240, 280, 220, 280\}
+03611 ,\{ 280, 240, 280, 220, 280\}
+03612 ,\{ 240, 240, 220, 220, 220\}
+03613 ,\{ 210, 110, 90, 210, 140\}
+03614 ,\{ 240, 240, 220, 220, 220\}
+03615 \}
+03616 ,\{\{ 300, 300, 220, 220, 220\}
+03617 ,\{ 240, 240, 220, 220, 220\}
+03618 ,\{ 240, 240, 220, 220, 220\}
+03619 ,\{ 240, 240, 220, 220, 220\}
+03620 ,\{ 300, 300, 220, 220, 220\}
+03621 \}
+03622 \}
+03623 ,\{\{\{ 300, 300, 250, 160, 250\}
+03624 ,\{ 280, 280, 250, 140, 250\}
+03625 ,\{ 240, 240, 210, 160, 210\}
+03626 ,\{ 240, 240, 210, 100, 210\}
+03627 ,\{ 300, 300, 210, 160, 210\}
+03628 \}
+03629 ,\{\{ 280, 280, 250, 140, 250\}
+03630 ,\{ 280, 280, 250, 140, 250\}
+03631 ,\{ 240, 240, 210, 100, 210\}
+03632 ,\{ 160, 160, 130, 20, 130\}
+03633 ,\{ 240, 240, 210, 100, 210\}
+03634 \}
+03635 ,\{\{ 240, 240, 210, 160, 210\}
+03636 ,\{ 240, 240, 210, 100, 210\}
+03637 ,\{ 240, 240, 210, 160, 210\}
+03638 ,\{ 240, 240, 210, 100, 210\}
+03639 ,\{ 240, 240, 210, 160, 210\}
+03640 \}
+03641 ,\{\{ 240, 240, 210, 100, 210\}
+03642 ,\{ 240, 240, 210, 100, 210\}
+03643 ,\{ 240, 240, 210, 100, 210\}
+03644 ,\{ 110, 110, 80, 100, 80\}
+03645 ,\{ 240, 240, 210, 100, 210\}
+03646 \}
+03647 ,\{\{ 300, 300, 210, 160, 210\}
+03648 ,\{ 240, 240, 210, 100, 210\}
+03649 ,\{ 240, 240, 210, 160, 210\}
+03650 ,\{ 240, 240, 210, 100, 210\}
+03651 ,\{ 300, 300, 210, 140, 210\}
+03652 \}
+03653 \}
+03654 ,\{\{\{ 280, 250, 280, 250, 280\}
+03655 ,\{ 280, 250, 280, 250, 280\}
+03656 ,\{ 220, 220, 220, 220, 220\}
+03657 ,\{ 220, 220, 220, 220, 220\}
+03658 ,\{ 220, 220, 220, 220, 220\}
+03659 \}
+03660 ,\{\{ 260, 250, 250, 250, 260\}
+03661 ,\{ 260, 250, 250, 250, 260\}
+03662 ,\{ 220, 220, 220, 220, 220\}
+03663 ,\{ 200, 140, 200, 140, 200\}
+03664 ,\{ 220, 220, 220, 220, 220\}
+03665 \}
+03666 ,\{\{ 220, 220, 220, 220, 220\}
+03667 ,\{ 220, 220, 220, 220, 220\}
+03668 ,\{ 220, 220, 220, 220, 220\}
+03669 ,\{ 220, 220, 220, 220, 220\}
+03670 ,\{ 220, 220, 220, 220, 220\}
+03671 \}
+03672 ,\{\{ 280, 220, 280, 220, 280\}
+03673 ,\{ 280, 220, 280, 220, 280\}
+03674 ,\{ 220, 220, 220, 220, 220\}
+03675 ,\{ 90, 90, 90, 90, 90\}
+03676 ,\{ 220, 220, 220, 220, 220\}
+03677 \}
+03678 ,\{\{ 220, 220, 220, 220, 220\}
+03679 ,\{ 220, 220, 220, 220, 220\}
+03680 ,\{ 220, 220, 220, 220, 220\}
+03681 ,\{ 220, 220, 220, 220, 220\}
+03682 ,\{ 220, 220, 220, 220, 220\}
+03683 \}
+03684 \}
+03685 ,\{\{\{ 250, 100, 250, 210, 250\}
+03686 ,\{ 250, 70, 250, 210, 250\}
+03687 ,\{ 210, 100, 210, 80, 210\}
+03688 ,\{ 210, 40, 210, 210, 210\}
+03689 ,\{ 210, 100, 210, 210, 210\}
+03690 \}
+03691 ,\{\{ 250, 70, 250, 130, 250\}
+03692 ,\{ 250, 70, 250, 110, 250\}
+03693 ,\{ 210, 40, 210, 80, 210\}
+03694 ,\{ 130, -40, 130, 130, 130\}
+03695 ,\{ 210, 40, 210, 80, 210\}
+03696 \}
+03697 ,\{\{ 210, 100, 210, 80, 210\}
+03698 ,\{ 210, 40, 210, 80, 210\}
+03699 ,\{ 210, 100, 210, 80, 210\}
+03700 ,\{ 210, 40, 210, 80, 210\}
+03701 ,\{ 210, 100, 210, 80, 210\}
+03702 \}
+03703 ,\{\{ 210, 40, 210, 210, 210\}
+03704 ,\{ 210, 40, 210, 210, 210\}
+03705 ,\{ 210, 40, 210, 80, 210\}
+03706 ,\{ 210, 40, 80, 210, 80\}
+03707 ,\{ 210, 40, 210, 80, 210\}
+03708 \}
+03709 ,\{\{ 210, 100, 210, 210, 210\}
+03710 ,\{ 210, 40, 210, 80, 210\}
+03711 ,\{ 210, 100, 210, 80, 210\}
+03712 ,\{ 210, 40, 210, 80, 210\}
+03713 ,\{ 210, 50, 210, 210, 210\}
+03714 \}
+03715 \}
+03716 ,\{\{\{ 280, 250, 280, 250, 240\}
+03717 ,\{ 280, 250, 280, 250, 240\}
+03718 ,\{ 220, 220, 220, 220, 140\}
+03719 ,\{ 220, 220, 220, 220, 140\}
+03720 ,\{ 220, 220, 220, 220, 140\}
+03721 \}
+03722 ,\{\{ 250, 250, 250, 250, 240\}
+03723 ,\{ 250, 250, 250, 250, 240\}
+03724 ,\{ 220, 220, 220, 220, 140\}
+03725 ,\{ 200, 140, 200, 140, 90\}
+03726 ,\{ 220, 220, 220, 220, 140\}
+03727 \}
+03728 ,\{\{ 220, 220, 220, 220, 140\}
+03729 ,\{ 220, 220, 220, 220, 140\}
+03730 ,\{ 220, 220, 220, 220, 140\}
+03731 ,\{ 220, 220, 220, 220, 140\}
+03732 ,\{ 220, 220, 220, 220, 140\}
+03733 \}
+03734 ,\{\{ 280, 220, 280, 220, 140\}
+03735 ,\{ 280, 220, 280, 220, 140\}
+03736 ,\{ 220, 220, 220, 220, 140\}
+03737 ,\{ 140, 90, 90, 90, 140\}
+03738 ,\{ 220, 220, 220, 220, 140\}
+03739 \}
+03740 ,\{\{ 220, 220, 220, 220, 140\}
+03741 ,\{ 220, 220, 220, 220, 140\}
+03742 ,\{ 220, 220, 220, 220, 140\}
+03743 ,\{ 220, 220, 220, 220, 140\}
+03744 ,\{ 220, 220, 220, 220, 140\}
+03745 \}
+03746 \}
+03747 \}
+03748 \}
+03749 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03750 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03751 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03754 \}
+03755 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03756 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03757 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03760 \}
+03761 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03762 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03763 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03766 \}
+03767 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03768 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03769 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03772 \}
+03773 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03774 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03775 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03776 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03778 \}
+03779 \}
+03780 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03781 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03782 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03783 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03784 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03785 \}
+03786 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03787 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03788 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03789 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03790 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03791 \}
+03792 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03793 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03794 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03795 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03796 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03797 \}
+03798 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03799 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03800 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03801 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03802 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03803 \}
+03804 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03805 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03806 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03807 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03808 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03809 \}
+03810 \}
+03811 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03812 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03813 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03814 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03815 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03816 \}
+03817 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03818 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03819 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03820 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03821 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03822 \}
+03823 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03824 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03825 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03826 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03827 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03828 \}
+03829 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03830 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03831 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03832 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03833 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03834 \}
+03835 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03836 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03837 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03838 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03839 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03840 \}
+03841 \}
+03842 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03843 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03844 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03845 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03846 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03847 \}
+03848 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03849 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03850 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03851 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03852 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03853 \}
+03854 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03855 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03856 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03857 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03858 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03859 \}
+03860 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03861 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03862 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03863 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03864 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03865 \}
+03866 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03867 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03868 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03869 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03870 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03871 \}
+03872 \}
+03873 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03874 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03875 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03876 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03877 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03878 \}
+03879 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03880 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03881 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03882 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03883 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03884 \}
+03885 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03886 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03887 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03888 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03889 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03890 \}
+03891 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03892 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03893 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03894 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03895 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03896 \}
+03897 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03898 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03899 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03900 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03901 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03902 \}
+03903 \}
+03904 \}
+03905 ,\{\{\{\{ 300, 300, 270, 270, 290\}
+03906 ,\{ 300, 300, 270, 270, 290\}
+03907 ,\{ 290, 290, 250, 270, 250\}
+03908 ,\{ 300, 300, 270, 270, 270\}
+03909 ,\{ 270, 270, 240, 260, 240\}
+03910 \}
+03911 ,\{\{ 290, 270, 230, 230, 290\}
+03912 ,\{ 290, 270, 230, 230, 290\}
+03913 ,\{ 260, 260, 220, 220, 220\}
+03914 ,\{ 190, 170, 190, 130, 190\}
+03915 ,\{ 260, 260, 220, 220, 220\}
+03916 \}
+03917 ,\{\{ 300, 300, 270, 270, 270\}
+03918 ,\{ 300, 300, 270, 270, 270\}
+03919 ,\{ 290, 290, 250, 270, 250\}
+03920 ,\{ 300, 300, 270, 270, 270\}
+03921 ,\{ 270, 270, 240, 260, 240\}
+03922 \}
+03923 ,\{\{ 260, 260, 220, 220, 220\}
+03924 ,\{ 190, 170, 190, 130, 190\}
+03925 ,\{ 260, 260, 220, 220, 220\}
+03926 ,\{ 210, 130, 80, 210, 210\}
+03927 ,\{ 260, 260, 220, 220, 220\}
+03928 \}
+03929 ,\{\{ 300, 300, 270, 270, 270\}
+03930 ,\{ 300, 300, 270, 270, 270\}
+03931 ,\{ 270, 270, 240, 260, 240\}
+03932 ,\{ 300, 300, 270, 270, 270\}
+03933 ,\{ 240, 240, 150, 150, 150\}
+03934 \}
+03935 \}
+03936 ,\{\{\{ 300, 300, 270, 270, 270\}
+03937 ,\{ 300, 300, 270, 230, 270\}
+03938 ,\{ 290, 290, 250, 270, 250\}
+03939 ,\{ 300, 300, 270, 230, 270\}
+03940 ,\{ 270, 270, 240, 260, 240\}
+03941 \}
+03942 ,\{\{ 270, 270, 230, 190, 230\}
+03943 ,\{ 270, 270, 230, 190, 230\}
+03944 ,\{ 260, 260, 220, 180, 220\}
+03945 ,\{ 170, 170, 130, 90, 130\}
+03946 ,\{ 260, 260, 220, 180, 220\}
+03947 \}
+03948 ,\{\{ 300, 300, 270, 270, 270\}
+03949 ,\{ 300, 300, 270, 230, 270\}
+03950 ,\{ 290, 290, 250, 270, 250\}
+03951 ,\{ 300, 300, 270, 230, 270\}
+03952 ,\{ 270, 270, 240, 260, 240\}
+03953 \}
+03954 ,\{\{ 260, 260, 220, 180, 220\}
+03955 ,\{ 170, 170, 130, 90, 130\}
+03956 ,\{ 260, 260, 220, 180, 220\}
+03957 ,\{ 170, 110, 80, 170, 80\}
+03958 ,\{ 260, 260, 220, 180, 220\}
+03959 \}
+03960 ,\{\{ 300, 300, 270, 260, 270\}
+03961 ,\{ 300, 300, 270, 230, 270\}
+03962 ,\{ 270, 270, 240, 260, 240\}
+03963 ,\{ 300, 300, 270, 230, 270\}
+03964 ,\{ 240, 240, 150, 110, 150\}
+03965 \}
+03966 \}
+03967 ,\{\{\{ 270, 270, 270, 270, 270\}
+03968 ,\{ 270, 270, 270, 270, 270\}
+03969 ,\{ 250, 250, 250, 250, 250\}
+03970 ,\{ 270, 270, 270, 270, 270\}
+03971 ,\{ 240, 240, 240, 240, 240\}
+03972 \}
+03973 ,\{\{ 230, 230, 230, 230, 230\}
+03974 ,\{ 230, 230, 230, 230, 230\}
+03975 ,\{ 220, 220, 220, 220, 220\}
+03976 ,\{ 190, 130, 190, 130, 190\}
+03977 ,\{ 220, 220, 220, 220, 220\}
+03978 \}
+03979 ,\{\{ 270, 270, 270, 270, 270\}
+03980 ,\{ 270, 270, 270, 270, 270\}
+03981 ,\{ 250, 250, 250, 250, 250\}
+03982 ,\{ 270, 270, 270, 270, 270\}
+03983 ,\{ 240, 240, 240, 240, 240\}
+03984 \}
+03985 ,\{\{ 220, 220, 220, 220, 220\}
+03986 ,\{ 190, 130, 190, 130, 190\}
+03987 ,\{ 220, 220, 220, 220, 220\}
+03988 ,\{ 80, 80, 80, 80, 80\}
+03989 ,\{ 220, 220, 220, 220, 220\}
+03990 \}
+03991 ,\{\{ 270, 270, 270, 270, 270\}
+03992 ,\{ 270, 270, 270, 270, 270\}
+03993 ,\{ 240, 240, 240, 240, 240\}
+03994 ,\{ 270, 270, 270, 270, 270\}
+03995 ,\{ 150, 150, 150, 150, 150\}
+03996 \}
+03997 \}
+03998 ,\{\{\{ 270, 230, 270, 210, 270\}
+03999 ,\{ 270, 190, 270, 140, 270\}
+04000 ,\{ 250, 230, 250, 120, 250\}
+04001 ,\{ 270, 190, 270, 210, 270\}
+04002 ,\{ 240, 220, 240, 150, 240\}
+04003 \}
+04004 ,\{\{ 230, 150, 230, 130, 230\}
+04005 ,\{ 230, 150, 230, 100, 230\}
+04006 ,\{ 220, 140, 220, 90, 220\}
+04007 ,\{ 130, 50, 130, 130, 130\}
+04008 ,\{ 220, 140, 220, 90, 220\}
+04009 \}
+04010 ,\{\{ 270, 230, 270, 140, 270\}
+04011 ,\{ 270, 190, 270, 140, 270\}
+04012 ,\{ 250, 230, 250, 120, 250\}
+04013 ,\{ 270, 190, 270, 140, 270\}
+04014 ,\{ 240, 220, 240, 110, 240\}
+04015 \}
+04016 ,\{\{ 220, 140, 220, 210, 220\}
+04017 ,\{ 130, 50, 130, 130, 130\}
+04018 ,\{ 220, 140, 220, 90, 220\}
+04019 ,\{ 210, 130, 80, 210, 80\}
+04020 ,\{ 220, 140, 220, 90, 220\}
+04021 \}
+04022 ,\{\{ 270, 220, 270, 150, 270\}
+04023 ,\{ 270, 190, 270, 140, 270\}
+04024 ,\{ 240, 220, 240, 110, 240\}
+04025 ,\{ 270, 190, 270, 140, 270\}
+04026 ,\{ 150, 70, 150, 150, 150\}
+04027 \}
+04028 \}
+04029 ,\{\{\{ 290, 270, 270, 270, 290\}
+04030 ,\{ 290, 270, 270, 270, 290\}
+04031 ,\{ 250, 250, 250, 250, 250\}
+04032 ,\{ 270, 270, 270, 270, 270\}
+04033 ,\{ 240, 240, 240, 240, 240\}
+04034 \}
+04035 ,\{\{ 290, 230, 230, 230, 290\}
+04036 ,\{ 290, 230, 230, 230, 290\}
+04037 ,\{ 220, 220, 220, 220, 220\}
+04038 ,\{ 190, 130, 190, 130, 130\}
+04039 ,\{ 220, 220, 220, 220, 220\}
+04040 \}
+04041 ,\{\{ 270, 270, 270, 270, 270\}
+04042 ,\{ 270, 270, 270, 270, 270\}
+04043 ,\{ 250, 250, 250, 250, 250\}
+04044 ,\{ 270, 270, 270, 270, 270\}
+04045 ,\{ 240, 240, 240, 240, 240\}
+04046 \}
+04047 ,\{\{ 220, 220, 220, 220, 220\}
+04048 ,\{ 190, 130, 190, 130, 130\}
+04049 ,\{ 220, 220, 220, 220, 220\}
+04050 ,\{ 210, 80, 80, 80, 210\}
+04051 ,\{ 220, 220, 220, 220, 220\}
+04052 \}
+04053 ,\{\{ 270, 270, 270, 270, 270\}
+04054 ,\{ 270, 270, 270, 270, 270\}
+04055 ,\{ 240, 240, 240, 240, 240\}
+04056 ,\{ 270, 270, 270, 270, 270\}
+04057 ,\{ 150, 150, 150, 150, 150\}
+04058 \}
+04059 \}
+04060 \}
+04061 ,\{\{\{\{ 300, 280, 240, 240, 300\}
+04062 ,\{ 300, 280, 240, 240, 300\}
+04063 ,\{ 260, 260, 220, 240, 220\}
+04064 ,\{ 250, 250, 210, 210, 210\}
+04065 ,\{ 250, 250, 220, 240, 220\}
+04066 \}
+04067 ,\{\{ 300, 280, 240, 240, 300\}
+04068 ,\{ 300, 280, 240, 240, 300\}
+04069 ,\{ 250, 250, 220, 220, 220\}
+04070 ,\{ 100, 70, 100, 40, 100\}
+04071 ,\{ 250, 250, 220, 220, 220\}
+04072 \}
+04073 ,\{\{ 250, 250, 220, 240, 220\}
+04074 ,\{ 250, 250, 210, 210, 210\}
+04075 ,\{ 250, 250, 220, 240, 220\}
+04076 ,\{ 250, 250, 210, 210, 210\}
+04077 ,\{ 250, 250, 220, 240, 220\}
+04078 \}
+04079 ,\{\{ 250, 250, 220, 220, 220\}
+04080 ,\{ 160, 140, 160, 100, 160\}
+04081 ,\{ 250, 250, 220, 220, 220\}
+04082 ,\{ 210, 130, 80, 210, 210\}
+04083 ,\{ 250, 250, 220, 220, 220\}
+04084 \}
+04085 ,\{\{ 260, 260, 220, 240, 220\}
+04086 ,\{ 250, 250, 210, 210, 210\}
+04087 ,\{ 260, 260, 220, 240, 220\}
+04088 ,\{ 250, 250, 210, 210, 210\}
+04089 ,\{ 240, 240, 140, 140, 140\}
+04090 \}
+04091 \}
+04092 ,\{\{\{ 280, 280, 240, 240, 240\}
+04093 ,\{ 280, 280, 240, 200, 240\}
+04094 ,\{ 260, 260, 220, 240, 220\}
+04095 ,\{ 250, 250, 210, 170, 210\}
+04096 ,\{ 250, 250, 220, 240, 220\}
+04097 \}
+04098 ,\{\{ 280, 280, 240, 200, 240\}
+04099 ,\{ 280, 280, 240, 200, 240\}
+04100 ,\{ 250, 250, 220, 180, 220\}
+04101 ,\{ 70, 70, 40, 0, 40\}
+04102 ,\{ 250, 250, 220, 180, 220\}
+04103 \}
+04104 ,\{\{ 250, 250, 220, 240, 220\}
+04105 ,\{ 250, 250, 210, 170, 210\}
+04106 ,\{ 250, 250, 220, 240, 220\}
+04107 ,\{ 250, 250, 210, 170, 210\}
+04108 ,\{ 250, 250, 220, 240, 220\}
+04109 \}
+04110 ,\{\{ 250, 250, 220, 180, 220\}
+04111 ,\{ 140, 140, 100, 60, 100\}
+04112 ,\{ 250, 250, 220, 180, 220\}
+04113 ,\{ 170, 110, 80, 170, 80\}
+04114 ,\{ 250, 250, 220, 180, 220\}
+04115 \}
+04116 ,\{\{ 260, 260, 220, 240, 220\}
+04117 ,\{ 250, 250, 210, 170, 210\}
+04118 ,\{ 260, 260, 220, 240, 220\}
+04119 ,\{ 250, 250, 210, 170, 210\}
+04120 ,\{ 240, 240, 140, 100, 140\}
+04121 \}
+04122 \}
+04123 ,\{\{\{ 240, 240, 240, 240, 240\}
+04124 ,\{ 240, 240, 240, 240, 240\}
+04125 ,\{ 220, 220, 220, 220, 220\}
+04126 ,\{ 210, 210, 210, 210, 210\}
+04127 ,\{ 220, 220, 220, 220, 220\}
+04128 \}
+04129 ,\{\{ 240, 240, 240, 240, 240\}
+04130 ,\{ 240, 240, 240, 240, 240\}
+04131 ,\{ 220, 220, 220, 220, 220\}
+04132 ,\{ 100, 40, 100, 40, 100\}
+04133 ,\{ 220, 220, 220, 220, 220\}
+04134 \}
+04135 ,\{\{ 220, 220, 220, 220, 220\}
+04136 ,\{ 210, 210, 210, 210, 210\}
+04137 ,\{ 220, 220, 220, 220, 220\}
+04138 ,\{ 210, 210, 210, 210, 210\}
+04139 ,\{ 220, 220, 220, 220, 220\}
+04140 \}
+04141 ,\{\{ 220, 220, 220, 220, 220\}
+04142 ,\{ 160, 100, 160, 100, 160\}
+04143 ,\{ 220, 220, 220, 220, 220\}
+04144 ,\{ 80, 80, 80, 80, 80\}
+04145 ,\{ 220, 220, 220, 220, 220\}
+04146 \}
+04147 ,\{\{ 220, 220, 220, 220, 220\}
+04148 ,\{ 210, 210, 210, 210, 210\}
+04149 ,\{ 220, 220, 220, 220, 220\}
+04150 ,\{ 210, 210, 210, 210, 210\}
+04151 ,\{ 140, 140, 140, 140, 140\}
+04152 \}
+04153 \}
+04154 ,\{\{\{ 240, 200, 240, 210, 240\}
+04155 ,\{ 240, 160, 240, 110, 240\}
+04156 ,\{ 220, 200, 220, 90, 220\}
+04157 ,\{ 210, 130, 210, 210, 210\}
+04158 ,\{ 220, 200, 220, 140, 220\}
+04159 \}
+04160 ,\{\{ 240, 160, 240, 110, 240\}
+04161 ,\{ 240, 160, 240, 110, 240\}
+04162 ,\{ 220, 140, 220, 90, 220\}
+04163 ,\{ 40, -40, 40, 40, 40\}
+04164 ,\{ 220, 140, 220, 90, 220\}
+04165 \}
+04166 ,\{\{ 220, 200, 220, 90, 220\}
+04167 ,\{ 210, 130, 210, 80, 210\}
+04168 ,\{ 220, 200, 220, 90, 220\}
+04169 ,\{ 210, 130, 210, 80, 210\}
+04170 ,\{ 220, 200, 220, 90, 220\}
+04171 \}
+04172 ,\{\{ 220, 140, 220, 210, 220\}
+04173 ,\{ 100, 20, 100, 100, 100\}
+04174 ,\{ 220, 140, 220, 90, 220\}
+04175 ,\{ 210, 130, 80, 210, 80\}
+04176 ,\{ 220, 140, 220, 90, 220\}
+04177 \}
+04178 ,\{\{ 220, 200, 220, 140, 220\}
+04179 ,\{ 210, 130, 210, 80, 210\}
+04180 ,\{ 220, 200, 220, 90, 220\}
+04181 ,\{ 210, 130, 210, 80, 210\}
+04182 ,\{ 140, 60, 140, 140, 140\}
+04183 \}
+04184 \}
+04185 ,\{\{\{ 300, 240, 240, 240, 300\}
+04186 ,\{ 300, 240, 240, 240, 300\}
+04187 ,\{ 220, 220, 220, 220, 220\}
+04188 ,\{ 210, 210, 210, 210, 210\}
+04189 ,\{ 220, 220, 220, 220, 220\}
+04190 \}
+04191 ,\{\{ 300, 240, 240, 240, 300\}
+04192 ,\{ 300, 240, 240, 240, 300\}
+04193 ,\{ 220, 220, 220, 220, 220\}
+04194 ,\{ 100, 40, 100, 40, 40\}
+04195 ,\{ 220, 220, 220, 220, 220\}
+04196 \}
+04197 ,\{\{ 220, 220, 220, 220, 220\}
+04198 ,\{ 210, 210, 210, 210, 210\}
+04199 ,\{ 220, 220, 220, 220, 220\}
+04200 ,\{ 210, 210, 210, 210, 210\}
+04201 ,\{ 220, 220, 220, 220, 220\}
+04202 \}
+04203 ,\{\{ 220, 220, 220, 220, 220\}
+04204 ,\{ 160, 100, 160, 100, 100\}
+04205 ,\{ 220, 220, 220, 220, 220\}
+04206 ,\{ 210, 80, 80, 80, 210\}
+04207 ,\{ 220, 220, 220, 220, 220\}
+04208 \}
+04209 ,\{\{ 220, 220, 220, 220, 220\}
+04210 ,\{ 210, 210, 210, 210, 210\}
+04211 ,\{ 220, 220, 220, 220, 220\}
+04212 ,\{ 210, 210, 210, 210, 210\}
+04213 ,\{ 140, 140, 140, 140, 140\}
+04214 \}
+04215 \}
+04216 \}
+04217 ,\{\{\{\{ 430, 430, 370, 370, 430\}
+04218 ,\{ 430, 410, 370, 370, 430\}
+04219 ,\{ 370, 370, 340, 360, 340\}
+04220 ,\{ 370, 370, 340, 340, 340\}
+04221 ,\{ 430, 430, 340, 360, 340\}
+04222 \}
+04223 ,\{\{ 430, 410, 370, 370, 430\}
+04224 ,\{ 430, 410, 370, 370, 430\}
+04225 ,\{ 370, 370, 340, 340, 340\}
+04226 ,\{ 320, 290, 320, 260, 320\}
+04227 ,\{ 370, 370, 340, 340, 340\}
+04228 \}
+04229 ,\{\{ 370, 370, 340, 360, 340\}
+04230 ,\{ 370, 370, 340, 340, 340\}
+04231 ,\{ 370, 370, 340, 360, 340\}
+04232 ,\{ 370, 370, 340, 340, 340\}
+04233 ,\{ 370, 370, 340, 360, 340\}
+04234 \}
+04235 ,\{\{ 370, 370, 360, 340, 360\}
+04236 ,\{ 360, 330, 360, 300, 360\}
+04237 ,\{ 370, 370, 340, 340, 340\}
+04238 ,\{ 340, 260, 210, 340, 340\}
+04239 ,\{ 370, 370, 340, 340, 340\}
+04240 \}
+04241 ,\{\{ 430, 430, 340, 360, 340\}
+04242 ,\{ 370, 370, 340, 340, 340\}
+04243 ,\{ 370, 370, 340, 360, 340\}
+04244 ,\{ 370, 370, 340, 340, 340\}
+04245 ,\{ 430, 430, 340, 340, 340\}
+04246 \}
+04247 \}
+04248 ,\{\{\{ 430, 430, 370, 360, 370\}
+04249 ,\{ 410, 410, 370, 330, 370\}
+04250 ,\{ 370, 370, 340, 360, 340\}
+04251 ,\{ 370, 370, 340, 300, 340\}
+04252 ,\{ 430, 430, 340, 360, 340\}
+04253 \}
+04254 ,\{\{ 410, 410, 370, 330, 370\}
+04255 ,\{ 410, 410, 370, 330, 370\}
+04256 ,\{ 370, 370, 340, 300, 340\}
+04257 ,\{ 290, 290, 260, 220, 260\}
+04258 ,\{ 370, 370, 340, 300, 340\}
+04259 \}
+04260 ,\{\{ 370, 370, 340, 360, 340\}
+04261 ,\{ 370, 370, 340, 300, 340\}
+04262 ,\{ 370, 370, 340, 360, 340\}
+04263 ,\{ 370, 370, 340, 300, 340\}
+04264 ,\{ 370, 370, 340, 360, 340\}
+04265 \}
+04266 ,\{\{ 370, 370, 340, 300, 340\}
+04267 ,\{ 330, 330, 300, 260, 300\}
+04268 ,\{ 370, 370, 340, 300, 340\}
+04269 ,\{ 300, 240, 210, 300, 210\}
+04270 ,\{ 370, 370, 340, 300, 340\}
+04271 \}
+04272 ,\{\{ 430, 430, 340, 360, 340\}
+04273 ,\{ 370, 370, 340, 300, 340\}
+04274 ,\{ 370, 370, 340, 360, 340\}
+04275 ,\{ 370, 370, 340, 300, 340\}
+04276 ,\{ 430, 430, 340, 300, 340\}
+04277 \}
+04278 \}
+04279 ,\{\{\{ 370, 370, 370, 370, 370\}
+04280 ,\{ 370, 370, 370, 370, 370\}
+04281 ,\{ 340, 340, 340, 340, 340\}
+04282 ,\{ 340, 340, 340, 340, 340\}
+04283 ,\{ 340, 340, 340, 340, 340\}
+04284 \}
+04285 ,\{\{ 370, 370, 370, 370, 370\}
+04286 ,\{ 370, 370, 370, 370, 370\}
+04287 ,\{ 340, 340, 340, 340, 340\}
+04288 ,\{ 320, 260, 320, 260, 320\}
+04289 ,\{ 340, 340, 340, 340, 340\}
+04290 \}
+04291 ,\{\{ 340, 340, 340, 340, 340\}
+04292 ,\{ 340, 340, 340, 340, 340\}
+04293 ,\{ 340, 340, 340, 340, 340\}
+04294 ,\{ 340, 340, 340, 340, 340\}
+04295 ,\{ 340, 340, 340, 340, 340\}
+04296 \}
+04297 ,\{\{ 360, 340, 360, 340, 360\}
+04298 ,\{ 360, 300, 360, 300, 360\}
+04299 ,\{ 340, 340, 340, 340, 340\}
+04300 ,\{ 210, 210, 210, 210, 210\}
+04301 ,\{ 340, 340, 340, 340, 340\}
+04302 \}
+04303 ,\{\{ 340, 340, 340, 340, 340\}
+04304 ,\{ 340, 340, 340, 340, 340\}
+04305 ,\{ 340, 340, 340, 340, 340\}
+04306 ,\{ 340, 340, 340, 340, 340\}
+04307 ,\{ 340, 340, 340, 340, 340\}
+04308 \}
+04309 \}
+04310 ,\{\{\{ 370, 320, 370, 340, 370\}
+04311 ,\{ 370, 290, 370, 300, 370\}
+04312 ,\{ 340, 320, 340, 210, 340\}
+04313 ,\{ 340, 260, 340, 340, 340\}
+04314 ,\{ 340, 320, 340, 340, 340\}
+04315 \}
+04316 ,\{\{ 370, 290, 370, 260, 370\}
+04317 ,\{ 370, 290, 370, 240, 370\}
+04318 ,\{ 340, 260, 340, 210, 340\}
+04319 ,\{ 260, 180, 260, 260, 260\}
+04320 ,\{ 340, 260, 340, 210, 340\}
+04321 \}
+04322 ,\{\{ 340, 320, 340, 210, 340\}
+04323 ,\{ 340, 260, 340, 210, 340\}
+04324 ,\{ 340, 320, 340, 210, 340\}
+04325 ,\{ 340, 260, 340, 210, 340\}
+04326 ,\{ 340, 320, 340, 210, 340\}
+04327 \}
+04328 ,\{\{ 340, 260, 340, 340, 340\}
+04329 ,\{ 300, 220, 300, 300, 300\}
+04330 ,\{ 340, 260, 340, 210, 340\}
+04331 ,\{ 340, 260, 210, 340, 210\}
+04332 ,\{ 340, 260, 340, 210, 340\}
+04333 \}
+04334 ,\{\{ 340, 320, 340, 340, 340\}
+04335 ,\{ 340, 260, 340, 210, 340\}
+04336 ,\{ 340, 320, 340, 210, 340\}
+04337 ,\{ 340, 260, 340, 210, 340\}
+04338 ,\{ 340, 260, 340, 340, 340\}
+04339 \}
+04340 \}
+04341 ,\{\{\{ 430, 370, 370, 370, 430\}
+04342 ,\{ 430, 370, 370, 370, 430\}
+04343 ,\{ 340, 340, 340, 340, 340\}
+04344 ,\{ 340, 340, 340, 340, 340\}
+04345 ,\{ 340, 340, 340, 340, 340\}
+04346 \}
+04347 ,\{\{ 430, 370, 370, 370, 430\}
+04348 ,\{ 430, 370, 370, 370, 430\}
+04349 ,\{ 340, 340, 340, 340, 340\}
+04350 ,\{ 320, 260, 320, 260, 260\}
+04351 ,\{ 340, 340, 340, 340, 340\}
+04352 \}
+04353 ,\{\{ 340, 340, 340, 340, 340\}
+04354 ,\{ 340, 340, 340, 340, 340\}
+04355 ,\{ 340, 340, 340, 340, 340\}
+04356 ,\{ 340, 340, 340, 340, 340\}
+04357 ,\{ 340, 340, 340, 340, 340\}
+04358 \}
+04359 ,\{\{ 360, 340, 360, 340, 340\}
+04360 ,\{ 360, 300, 360, 300, 300\}
+04361 ,\{ 340, 340, 340, 340, 340\}
+04362 ,\{ 340, 210, 210, 210, 340\}
+04363 ,\{ 340, 340, 340, 340, 340\}
+04364 \}
+04365 ,\{\{ 340, 340, 340, 340, 340\}
+04366 ,\{ 340, 340, 340, 340, 340\}
+04367 ,\{ 340, 340, 340, 340, 340\}
+04368 ,\{ 340, 340, 340, 340, 340\}
+04369 ,\{ 340, 340, 340, 340, 340\}
+04370 \}
+04371 \}
+04372 \}
+04373 ,\{\{\{\{ 400, 400, 400, 360, 400\}
+04374 ,\{ 400, 370, 400, 360, 400\}
+04375 ,\{ 340, 340, 310, 330, 310\}
+04376 ,\{ 340, 340, 310, 310, 310\}
+04377 ,\{ 400, 400, 310, 330, 310\}
+04378 \}
+04379 ,\{\{ 360, 360, 310, 360, 330\}
+04380 ,\{ 360, 360, 270, 360, 330\}
+04381 ,\{ 340, 340, 310, 310, 310\}
+04382 ,\{ 230, 220, 230, 170, 230\}
+04383 ,\{ 340, 340, 310, 310, 310\}
+04384 \}
+04385 ,\{\{ 340, 340, 310, 330, 310\}
+04386 ,\{ 340, 340, 310, 310, 310\}
+04387 ,\{ 340, 340, 310, 330, 310\}
+04388 ,\{ 340, 340, 310, 310, 310\}
+04389 ,\{ 340, 340, 310, 330, 310\}
+04390 \}
+04391 ,\{\{ 400, 370, 400, 340, 400\}
+04392 ,\{ 400, 370, 400, 340, 400\}
+04393 ,\{ 340, 340, 310, 310, 310\}
+04394 ,\{ 310, 230, 180, 310, 310\}
+04395 ,\{ 340, 340, 310, 310, 310\}
+04396 \}
+04397 ,\{\{ 400, 400, 310, 330, 310\}
+04398 ,\{ 340, 340, 310, 310, 310\}
+04399 ,\{ 340, 340, 310, 330, 310\}
+04400 ,\{ 340, 340, 310, 310, 310\}
+04401 ,\{ 400, 400, 310, 310, 310\}
+04402 \}
+04403 \}
+04404 ,\{\{\{ 400, 400, 340, 360, 340\}
+04405 ,\{ 370, 370, 340, 360, 340\}
+04406 ,\{ 340, 340, 310, 330, 310\}
+04407 ,\{ 340, 340, 310, 270, 310\}
+04408 ,\{ 400, 400, 310, 330, 310\}
+04409 \}
+04410 ,\{\{ 360, 360, 310, 360, 310\}
+04411 ,\{ 360, 360, 270, 360, 270\}
+04412 ,\{ 340, 340, 310, 270, 310\}
+04413 ,\{ 220, 220, 170, 130, 170\}
+04414 ,\{ 340, 340, 310, 270, 310\}
+04415 \}
+04416 ,\{\{ 340, 340, 310, 330, 310\}
+04417 ,\{ 340, 340, 310, 270, 310\}
+04418 ,\{ 340, 340, 310, 330, 310\}
+04419 ,\{ 340, 340, 310, 270, 310\}
+04420 ,\{ 340, 340, 310, 330, 310\}
+04421 \}
+04422 ,\{\{ 370, 370, 340, 300, 340\}
+04423 ,\{ 370, 370, 340, 300, 340\}
+04424 ,\{ 340, 340, 310, 270, 310\}
+04425 ,\{ 270, 210, 180, 270, 180\}
+04426 ,\{ 340, 340, 310, 270, 310\}
+04427 \}
+04428 ,\{\{ 400, 400, 310, 330, 310\}
+04429 ,\{ 340, 340, 310, 270, 310\}
+04430 ,\{ 340, 340, 310, 330, 310\}
+04431 ,\{ 340, 340, 310, 270, 310\}
+04432 ,\{ 400, 400, 310, 270, 310\}
+04433 \}
+04434 \}
+04435 ,\{\{\{ 400, 340, 400, 340, 400\}
+04436 ,\{ 400, 340, 400, 340, 400\}
+04437 ,\{ 310, 310, 310, 310, 310\}
+04438 ,\{ 310, 310, 310, 310, 310\}
+04439 ,\{ 310, 310, 310, 310, 310\}
+04440 \}
+04441 ,\{\{ 310, 310, 310, 310, 310\}
+04442 ,\{ 270, 270, 270, 270, 270\}
+04443 ,\{ 310, 310, 310, 310, 310\}
+04444 ,\{ 230, 170, 230, 170, 230\}
+04445 ,\{ 310, 310, 310, 310, 310\}
+04446 \}
+04447 ,\{\{ 310, 310, 310, 310, 310\}
+04448 ,\{ 310, 310, 310, 310, 310\}
+04449 ,\{ 310, 310, 310, 310, 310\}
+04450 ,\{ 310, 310, 310, 310, 310\}
+04451 ,\{ 310, 310, 310, 310, 310\}
+04452 \}
+04453 ,\{\{ 400, 340, 400, 340, 400\}
+04454 ,\{ 400, 340, 400, 340, 400\}
+04455 ,\{ 310, 310, 310, 310, 310\}
+04456 ,\{ 180, 180, 180, 180, 180\}
+04457 ,\{ 310, 310, 310, 310, 310\}
+04458 \}
+04459 ,\{\{ 310, 310, 310, 310, 310\}
+04460 ,\{ 310, 310, 310, 310, 310\}
+04461 ,\{ 310, 310, 310, 310, 310\}
+04462 ,\{ 310, 310, 310, 310, 310\}
+04463 ,\{ 310, 310, 310, 310, 310\}
+04464 \}
+04465 \}
+04466 ,\{\{\{ 340, 290, 340, 340, 340\}
+04467 ,\{ 340, 260, 340, 340, 340\}
+04468 ,\{ 310, 290, 310, 180, 310\}
+04469 ,\{ 310, 230, 310, 310, 310\}
+04470 ,\{ 310, 290, 310, 310, 310\}
+04471 \}
+04472 ,\{\{ 310, 230, 310, 180, 310\}
+04473 ,\{ 270, 190, 270, 140, 270\}
+04474 ,\{ 310, 230, 310, 180, 310\}
+04475 ,\{ 170, 20, 170, 170, 170\}
+04476 ,\{ 310, 230, 310, 180, 310\}
+04477 \}
+04478 ,\{\{ 310, 290, 310, 180, 310\}
+04479 ,\{ 310, 230, 310, 180, 310\}
+04480 ,\{ 310, 290, 310, 180, 310\}
+04481 ,\{ 310, 230, 310, 180, 310\}
+04482 ,\{ 310, 290, 310, 180, 310\}
+04483 \}
+04484 ,\{\{ 340, 260, 340, 340, 340\}
+04485 ,\{ 340, 260, 340, 340, 340\}
+04486 ,\{ 310, 230, 310, 180, 310\}
+04487 ,\{ 310, 230, 180, 310, 180\}
+04488 ,\{ 310, 230, 310, 180, 310\}
+04489 \}
+04490 ,\{\{ 310, 290, 310, 310, 310\}
+04491 ,\{ 310, 230, 310, 180, 310\}
+04492 ,\{ 310, 290, 310, 180, 310\}
+04493 ,\{ 310, 230, 310, 180, 310\}
+04494 ,\{ 310, 230, 310, 310, 310\}
+04495 \}
+04496 \}
+04497 ,\{\{\{ 400, 340, 400, 340, 340\}
+04498 ,\{ 400, 340, 400, 340, 340\}
+04499 ,\{ 310, 310, 310, 310, 310\}
+04500 ,\{ 310, 310, 310, 310, 310\}
+04501 ,\{ 310, 310, 310, 310, 310\}
+04502 \}
+04503 ,\{\{ 330, 310, 310, 310, 330\}
+04504 ,\{ 330, 270, 270, 270, 330\}
+04505 ,\{ 310, 310, 310, 310, 310\}
+04506 ,\{ 230, 170, 230, 170, 170\}
+04507 ,\{ 310, 310, 310, 310, 310\}
+04508 \}
+04509 ,\{\{ 310, 310, 310, 310, 310\}
+04510 ,\{ 310, 310, 310, 310, 310\}
+04511 ,\{ 310, 310, 310, 310, 310\}
+04512 ,\{ 310, 310, 310, 310, 310\}
+04513 ,\{ 310, 310, 310, 310, 310\}
+04514 \}
+04515 ,\{\{ 400, 340, 400, 340, 340\}
+04516 ,\{ 400, 340, 400, 340, 340\}
+04517 ,\{ 310, 310, 310, 310, 310\}
+04518 ,\{ 310, 180, 180, 180, 310\}
+04519 ,\{ 310, 310, 310, 310, 310\}
+04520 \}
+04521 ,\{\{ 310, 310, 310, 310, 310\}
+04522 ,\{ 310, 310, 310, 310, 310\}
+04523 ,\{ 310, 310, 310, 310, 310\}
+04524 ,\{ 310, 310, 310, 310, 310\}
+04525 ,\{ 310, 310, 310, 310, 310\}
+04526 \}
+04527 \}
+04528 \}
+04529 ,\{\{\{\{ 370, 340, 310, 310, 370\}
+04530 ,\{ 370, 340, 310, 310, 370\}
+04531 ,\{ 320, 320, 290, 310, 290\}
+04532 ,\{ 330, 330, 290, 290, 290\}
+04533 ,\{ 320, 320, 290, 310, 290\}
+04534 \}
+04535 ,\{\{ 370, 340, 310, 310, 370\}
+04536 ,\{ 370, 340, 310, 310, 370\}
+04537 ,\{ 320, 320, 280, 280, 280\}
+04538 ,\{ 240, 220, 240, 180, 240\}
+04539 ,\{ 320, 320, 280, 280, 280\}
+04540 \}
+04541 ,\{\{ 330, 330, 290, 310, 290\}
+04542 ,\{ 330, 330, 290, 290, 290\}
+04543 ,\{ 320, 320, 290, 310, 290\}
+04544 ,\{ 330, 330, 290, 290, 290\}
+04545 ,\{ 320, 320, 290, 310, 290\}
+04546 \}
+04547 ,\{\{ 320, 320, 310, 280, 310\}
+04548 ,\{ 310, 290, 310, 250, 310\}
+04549 ,\{ 320, 320, 280, 280, 280\}
+04550 ,\{ 260, 180, 130, 260, 260\}
+04551 ,\{ 320, 320, 280, 280, 280\}
+04552 \}
+04553 ,\{\{ 330, 330, 290, 310, 290\}
+04554 ,\{ 330, 330, 290, 290, 290\}
+04555 ,\{ 320, 320, 290, 310, 290\}
+04556 ,\{ 330, 330, 290, 290, 290\}
+04557 ,\{ 290, 290, 200, 200, 200\}
+04558 \}
+04559 \}
+04560 ,\{\{\{ 340, 340, 310, 310, 310\}
+04561 ,\{ 340, 340, 310, 270, 310\}
+04562 ,\{ 320, 320, 290, 310, 290\}
+04563 ,\{ 330, 330, 290, 250, 290\}
+04564 ,\{ 320, 320, 290, 310, 290\}
+04565 \}
+04566 ,\{\{ 340, 340, 310, 270, 310\}
+04567 ,\{ 340, 340, 310, 270, 310\}
+04568 ,\{ 320, 320, 280, 240, 280\}
+04569 ,\{ 220, 220, 180, 140, 180\}
+04570 ,\{ 320, 320, 280, 240, 280\}
+04571 \}
+04572 ,\{\{ 330, 330, 290, 310, 290\}
+04573 ,\{ 330, 330, 290, 250, 290\}
+04574 ,\{ 320, 320, 290, 310, 290\}
+04575 ,\{ 330, 330, 290, 250, 290\}
+04576 ,\{ 320, 320, 290, 310, 290\}
+04577 \}
+04578 ,\{\{ 320, 320, 280, 240, 280\}
+04579 ,\{ 290, 290, 250, 210, 250\}
+04580 ,\{ 320, 320, 280, 240, 280\}
+04581 ,\{ 220, 170, 130, 220, 130\}
+04582 ,\{ 320, 320, 280, 240, 280\}
+04583 \}
+04584 ,\{\{ 330, 330, 290, 310, 290\}
+04585 ,\{ 330, 330, 290, 250, 290\}
+04586 ,\{ 320, 320, 290, 310, 290\}
+04587 ,\{ 330, 330, 290, 250, 290\}
+04588 ,\{ 290, 290, 200, 160, 200\}
+04589 \}
+04590 \}
+04591 ,\{\{\{ 310, 310, 310, 310, 310\}
+04592 ,\{ 310, 310, 310, 310, 310\}
+04593 ,\{ 290, 290, 290, 290, 290\}
+04594 ,\{ 290, 290, 290, 290, 290\}
+04595 ,\{ 290, 290, 290, 290, 290\}
+04596 \}
+04597 ,\{\{ 310, 310, 310, 310, 310\}
+04598 ,\{ 310, 310, 310, 310, 310\}
+04599 ,\{ 280, 280, 280, 280, 280\}
+04600 ,\{ 240, 180, 240, 180, 240\}
+04601 ,\{ 280, 280, 280, 280, 280\}
+04602 \}
+04603 ,\{\{ 290, 290, 290, 290, 290\}
+04604 ,\{ 290, 290, 290, 290, 290\}
+04605 ,\{ 290, 290, 290, 290, 290\}
+04606 ,\{ 290, 290, 290, 290, 290\}
+04607 ,\{ 290, 290, 290, 290, 290\}
+04608 \}
+04609 ,\{\{ 310, 280, 310, 280, 310\}
+04610 ,\{ 310, 250, 310, 250, 310\}
+04611 ,\{ 280, 280, 280, 280, 280\}
+04612 ,\{ 130, 130, 130, 130, 130\}
+04613 ,\{ 280, 280, 280, 280, 280\}
+04614 \}
+04615 ,\{\{ 290, 290, 290, 290, 290\}
+04616 ,\{ 290, 290, 290, 290, 290\}
+04617 ,\{ 290, 290, 290, 290, 290\}
+04618 ,\{ 290, 290, 290, 290, 290\}
+04619 ,\{ 200, 200, 200, 200, 200\}
+04620 \}
+04621 \}
+04622 ,\{\{\{ 310, 270, 310, 260, 310\}
+04623 ,\{ 310, 230, 310, 250, 310\}
+04624 ,\{ 290, 270, 290, 160, 290\}
+04625 ,\{ 290, 210, 290, 260, 290\}
+04626 ,\{ 290, 270, 290, 200, 290\}
+04627 \}
+04628 ,\{\{ 310, 230, 310, 180, 310\}
+04629 ,\{ 310, 230, 310, 180, 310\}
+04630 ,\{ 280, 200, 280, 150, 280\}
+04631 ,\{ 180, 100, 180, 180, 180\}
+04632 ,\{ 280, 200, 280, 150, 280\}
+04633 \}
+04634 ,\{\{ 290, 270, 290, 160, 290\}
+04635 ,\{ 290, 210, 290, 160, 290\}
+04636 ,\{ 290, 270, 290, 160, 290\}
+04637 ,\{ 290, 210, 290, 160, 290\}
+04638 ,\{ 290, 270, 290, 160, 290\}
+04639 \}
+04640 ,\{\{ 280, 200, 280, 260, 280\}
+04641 ,\{ 250, 170, 250, 250, 250\}
+04642 ,\{ 280, 200, 280, 150, 280\}
+04643 ,\{ 260, 180, 130, 260, 130\}
+04644 ,\{ 280, 200, 280, 150, 280\}
+04645 \}
+04646 ,\{\{ 290, 270, 290, 200, 290\}
+04647 ,\{ 290, 210, 290, 160, 290\}
+04648 ,\{ 290, 270, 290, 160, 290\}
+04649 ,\{ 290, 210, 290, 160, 290\}
+04650 ,\{ 200, 120, 200, 200, 200\}
+04651 \}
+04652 \}
+04653 ,\{\{\{ 370, 310, 310, 310, 370\}
+04654 ,\{ 370, 310, 310, 310, 370\}
+04655 ,\{ 290, 290, 290, 290, 290\}
+04656 ,\{ 290, 290, 290, 290, 290\}
+04657 ,\{ 290, 290, 290, 290, 290\}
+04658 \}
+04659 ,\{\{ 370, 310, 310, 310, 370\}
+04660 ,\{ 370, 310, 310, 310, 370\}
+04661 ,\{ 280, 280, 280, 280, 280\}
+04662 ,\{ 240, 180, 240, 180, 180\}
+04663 ,\{ 280, 280, 280, 280, 280\}
+04664 \}
+04665 ,\{\{ 290, 290, 290, 290, 290\}
+04666 ,\{ 290, 290, 290, 290, 290\}
+04667 ,\{ 290, 290, 290, 290, 290\}
+04668 ,\{ 290, 290, 290, 290, 290\}
+04669 ,\{ 290, 290, 290, 290, 290\}
+04670 \}
+04671 ,\{\{ 310, 280, 310, 280, 280\}
+04672 ,\{ 310, 250, 310, 250, 250\}
+04673 ,\{ 280, 280, 280, 280, 280\}
+04674 ,\{ 260, 130, 130, 130, 260\}
+04675 ,\{ 280, 280, 280, 280, 280\}
+04676 \}
+04677 ,\{\{ 290, 290, 290, 290, 290\}
+04678 ,\{ 290, 290, 290, 290, 290\}
+04679 ,\{ 290, 290, 290, 290, 290\}
+04680 ,\{ 290, 290, 290, 290, 290\}
+04681 ,\{ 200, 200, 200, 200, 200\}
+04682 \}
+04683 \}
+04684 \}
+04685 ,\{\{\{\{ 370, 340, 310, 330, 370\}
+04686 ,\{ 370, 340, 310, 310, 370\}
+04687 ,\{ 340, 340, 310, 330, 310\}
+04688 ,\{ 340, 340, 310, 310, 310\}
+04689 ,\{ 340, 340, 310, 330, 310\}
+04690 \}
+04691 ,\{\{ 370, 340, 310, 310, 370\}
+04692 ,\{ 370, 340, 310, 310, 370\}
+04693 ,\{ 300, 300, 260, 260, 260\}
+04694 ,\{ 260, 240, 260, 200, 260\}
+04695 ,\{ 300, 300, 260, 260, 260\}
+04696 \}
+04697 ,\{\{ 340, 340, 310, 330, 310\}
+04698 ,\{ 340, 340, 310, 310, 310\}
+04699 ,\{ 340, 340, 310, 330, 310\}
+04700 ,\{ 340, 340, 310, 310, 310\}
+04701 ,\{ 340, 340, 310, 330, 310\}
+04702 \}
+04703 ,\{\{ 300, 300, 270, 280, 280\}
+04704 ,\{ 270, 250, 270, 210, 270\}
+04705 ,\{ 300, 300, 260, 260, 260\}
+04706 ,\{ 280, 200, 150, 280, 280\}
+04707 ,\{ 300, 300, 260, 260, 260\}
+04708 \}
+04709 ,\{\{ 340, 340, 310, 310, 310\}
+04710 ,\{ 340, 340, 310, 310, 310\}
+04711 ,\{ 310, 310, 280, 300, 280\}
+04712 ,\{ 340, 340, 310, 310, 310\}
+04713 ,\{ 320, 320, 220, 220, 220\}
+04714 \}
+04715 \}
+04716 ,\{\{\{ 340, 340, 310, 330, 310\}
+04717 ,\{ 340, 340, 310, 270, 310\}
+04718 ,\{ 340, 340, 310, 330, 310\}
+04719 ,\{ 340, 340, 310, 270, 310\}
+04720 ,\{ 340, 340, 310, 330, 310\}
+04721 \}
+04722 ,\{\{ 340, 340, 310, 270, 310\}
+04723 ,\{ 340, 340, 310, 270, 310\}
+04724 ,\{ 300, 300, 260, 220, 260\}
+04725 ,\{ 240, 240, 200, 160, 200\}
+04726 ,\{ 300, 300, 260, 220, 260\}
+04727 \}
+04728 ,\{\{ 340, 340, 310, 330, 310\}
+04729 ,\{ 340, 340, 310, 270, 310\}
+04730 ,\{ 340, 340, 310, 330, 310\}
+04731 ,\{ 340, 340, 310, 270, 310\}
+04732 ,\{ 340, 340, 310, 330, 310\}
+04733 \}
+04734 ,\{\{ 300, 300, 260, 240, 260\}
+04735 ,\{ 250, 250, 210, 170, 210\}
+04736 ,\{ 300, 300, 260, 220, 260\}
+04737 ,\{ 240, 190, 150, 240, 150\}
+04738 ,\{ 300, 300, 260, 220, 260\}
+04739 \}
+04740 ,\{\{ 340, 340, 310, 300, 310\}
+04741 ,\{ 340, 340, 310, 270, 310\}
+04742 ,\{ 310, 310, 280, 300, 280\}
+04743 ,\{ 340, 340, 310, 270, 310\}
+04744 ,\{ 320, 320, 220, 180, 220\}
+04745 \}
+04746 \}
+04747 ,\{\{\{ 310, 310, 310, 310, 310\}
+04748 ,\{ 310, 310, 310, 310, 310\}
+04749 ,\{ 310, 310, 310, 310, 310\}
+04750 ,\{ 310, 310, 310, 310, 310\}
+04751 ,\{ 310, 310, 310, 310, 310\}
+04752 \}
+04753 ,\{\{ 310, 310, 310, 310, 310\}
+04754 ,\{ 310, 310, 310, 310, 310\}
+04755 ,\{ 260, 260, 260, 260, 260\}
+04756 ,\{ 260, 200, 260, 200, 260\}
+04757 ,\{ 260, 260, 260, 260, 260\}
+04758 \}
+04759 ,\{\{ 310, 310, 310, 310, 310\}
+04760 ,\{ 310, 310, 310, 310, 310\}
+04761 ,\{ 310, 310, 310, 310, 310\}
+04762 ,\{ 310, 310, 310, 310, 310\}
+04763 ,\{ 310, 310, 310, 310, 310\}
+04764 \}
+04765 ,\{\{ 270, 260, 270, 260, 270\}
+04766 ,\{ 270, 210, 270, 210, 270\}
+04767 ,\{ 260, 260, 260, 260, 260\}
+04768 ,\{ 150, 150, 150, 150, 150\}
+04769 ,\{ 260, 260, 260, 260, 260\}
+04770 \}
+04771 ,\{\{ 310, 310, 310, 310, 310\}
+04772 ,\{ 310, 310, 310, 310, 310\}
+04773 ,\{ 280, 280, 280, 280, 280\}
+04774 ,\{ 310, 310, 310, 310, 310\}
+04775 ,\{ 220, 220, 220, 220, 220\}
+04776 \}
+04777 \}
+04778 ,\{\{\{ 310, 290, 310, 280, 310\}
+04779 ,\{ 310, 230, 310, 210, 310\}
+04780 ,\{ 310, 290, 310, 180, 310\}
+04781 ,\{ 310, 230, 310, 280, 310\}
+04782 ,\{ 310, 290, 310, 220, 310\}
+04783 \}
+04784 ,\{\{ 310, 230, 310, 200, 310\}
+04785 ,\{ 310, 230, 310, 180, 310\}
+04786 ,\{ 260, 180, 260, 130, 260\}
+04787 ,\{ 200, 120, 200, 200, 200\}
+04788 ,\{ 260, 180, 260, 130, 260\}
+04789 \}
+04790 ,\{\{ 310, 290, 310, 180, 310\}
+04791 ,\{ 310, 230, 310, 180, 310\}
+04792 ,\{ 310, 290, 310, 180, 310\}
+04793 ,\{ 310, 230, 310, 180, 310\}
+04794 ,\{ 310, 290, 310, 180, 310\}
+04795 \}
+04796 ,\{\{ 280, 200, 260, 280, 260\}
+04797 ,\{ 210, 130, 210, 210, 210\}
+04798 ,\{ 260, 180, 260, 130, 260\}
+04799 ,\{ 280, 200, 150, 280, 150\}
+04800 ,\{ 260, 180, 260, 130, 260\}
+04801 \}
+04802 ,\{\{ 310, 260, 310, 220, 310\}
+04803 ,\{ 310, 230, 310, 180, 310\}
+04804 ,\{ 280, 260, 280, 150, 280\}
+04805 ,\{ 310, 230, 310, 180, 310\}
+04806 ,\{ 220, 140, 220, 220, 220\}
+04807 \}
+04808 \}
+04809 ,\{\{\{ 370, 310, 310, 310, 370\}
+04810 ,\{ 370, 310, 310, 310, 370\}
+04811 ,\{ 310, 310, 310, 310, 310\}
+04812 ,\{ 310, 310, 310, 310, 310\}
+04813 ,\{ 310, 310, 310, 310, 310\}
+04814 \}
+04815 ,\{\{ 370, 310, 310, 310, 370\}
+04816 ,\{ 370, 310, 310, 310, 370\}
+04817 ,\{ 260, 260, 260, 260, 260\}
+04818 ,\{ 260, 200, 260, 200, 200\}
+04819 ,\{ 260, 260, 260, 260, 260\}
+04820 \}
+04821 ,\{\{ 310, 310, 310, 310, 310\}
+04822 ,\{ 310, 310, 310, 310, 310\}
+04823 ,\{ 310, 310, 310, 310, 310\}
+04824 ,\{ 310, 310, 310, 310, 310\}
+04825 ,\{ 310, 310, 310, 310, 310\}
+04826 \}
+04827 ,\{\{ 280, 260, 270, 260, 280\}
+04828 ,\{ 270, 210, 270, 210, 210\}
+04829 ,\{ 260, 260, 260, 260, 260\}
+04830 ,\{ 280, 150, 150, 150, 280\}
+04831 ,\{ 260, 260, 260, 260, 260\}
+04832 \}
+04833 ,\{\{ 310, 310, 310, 310, 310\}
+04834 ,\{ 310, 310, 310, 310, 310\}
+04835 ,\{ 280, 280, 280, 280, 280\}
+04836 ,\{ 310, 310, 310, 310, 310\}
+04837 ,\{ 220, 220, 220, 220, 220\}
+04838 \}
+04839 \}
+04840 \}
+04841 ,\{\{\{\{ 430, 430, 400, 370, 430\}
+04842 ,\{ 430, 410, 400, 370, 430\}
+04843 ,\{ 370, 370, 340, 360, 340\}
+04844 ,\{ 370, 370, 340, 340, 340\}
+04845 ,\{ 430, 430, 340, 360, 340\}
+04846 \}
+04847 ,\{\{ 430, 410, 370, 370, 430\}
+04848 ,\{ 430, 410, 370, 370, 430\}
+04849 ,\{ 370, 370, 340, 340, 340\}
+04850 ,\{ 320, 290, 320, 260, 320\}
+04851 ,\{ 370, 370, 340, 340, 340\}
+04852 \}
+04853 ,\{\{ 370, 370, 340, 360, 340\}
+04854 ,\{ 370, 370, 340, 340, 340\}
+04855 ,\{ 370, 370, 340, 360, 340\}
+04856 ,\{ 370, 370, 340, 340, 340\}
+04857 ,\{ 370, 370, 340, 360, 340\}
+04858 \}
+04859 ,\{\{ 400, 370, 400, 340, 400\}
+04860 ,\{ 400, 370, 400, 340, 400\}
+04861 ,\{ 370, 370, 340, 340, 340\}
+04862 ,\{ 340, 260, 210, 340, 340\}
+04863 ,\{ 370, 370, 340, 340, 340\}
+04864 \}
+04865 ,\{\{ 430, 430, 340, 360, 340\}
+04866 ,\{ 370, 370, 340, 340, 340\}
+04867 ,\{ 370, 370, 340, 360, 340\}
+04868 ,\{ 370, 370, 340, 340, 340\}
+04869 ,\{ 430, 430, 340, 340, 340\}
+04870 \}
+04871 \}
+04872 ,\{\{\{ 430, 430, 370, 360, 370\}
+04873 ,\{ 410, 410, 370, 360, 370\}
+04874 ,\{ 370, 370, 340, 360, 340\}
+04875 ,\{ 370, 370, 340, 300, 340\}
+04876 ,\{ 430, 430, 340, 360, 340\}
+04877 \}
+04878 ,\{\{ 410, 410, 370, 360, 370\}
+04879 ,\{ 410, 410, 370, 360, 370\}
+04880 ,\{ 370, 370, 340, 300, 340\}
+04881 ,\{ 290, 290, 260, 220, 260\}
+04882 ,\{ 370, 370, 340, 300, 340\}
+04883 \}
+04884 ,\{\{ 370, 370, 340, 360, 340\}
+04885 ,\{ 370, 370, 340, 300, 340\}
+04886 ,\{ 370, 370, 340, 360, 340\}
+04887 ,\{ 370, 370, 340, 300, 340\}
+04888 ,\{ 370, 370, 340, 360, 340\}
+04889 \}
+04890 ,\{\{ 370, 370, 340, 300, 340\}
+04891 ,\{ 370, 370, 340, 300, 340\}
+04892 ,\{ 370, 370, 340, 300, 340\}
+04893 ,\{ 300, 240, 210, 300, 210\}
+04894 ,\{ 370, 370, 340, 300, 340\}
+04895 \}
+04896 ,\{\{ 430, 430, 340, 360, 340\}
+04897 ,\{ 370, 370, 340, 300, 340\}
+04898 ,\{ 370, 370, 340, 360, 340\}
+04899 ,\{ 370, 370, 340, 300, 340\}
+04900 ,\{ 430, 430, 340, 300, 340\}
+04901 \}
+04902 \}
+04903 ,\{\{\{ 400, 370, 400, 370, 400\}
+04904 ,\{ 400, 370, 400, 370, 400\}
+04905 ,\{ 340, 340, 340, 340, 340\}
+04906 ,\{ 340, 340, 340, 340, 340\}
+04907 ,\{ 340, 340, 340, 340, 340\}
+04908 \}
+04909 ,\{\{ 370, 370, 370, 370, 370\}
+04910 ,\{ 370, 370, 370, 370, 370\}
+04911 ,\{ 340, 340, 340, 340, 340\}
+04912 ,\{ 320, 260, 320, 260, 320\}
+04913 ,\{ 340, 340, 340, 340, 340\}
+04914 \}
+04915 ,\{\{ 340, 340, 340, 340, 340\}
+04916 ,\{ 340, 340, 340, 340, 340\}
+04917 ,\{ 340, 340, 340, 340, 340\}
+04918 ,\{ 340, 340, 340, 340, 340\}
+04919 ,\{ 340, 340, 340, 340, 340\}
+04920 \}
+04921 ,\{\{ 400, 340, 400, 340, 400\}
+04922 ,\{ 400, 340, 400, 340, 400\}
+04923 ,\{ 340, 340, 340, 340, 340\}
+04924 ,\{ 210, 210, 210, 210, 210\}
+04925 ,\{ 340, 340, 340, 340, 340\}
+04926 \}
+04927 ,\{\{ 340, 340, 340, 340, 340\}
+04928 ,\{ 340, 340, 340, 340, 340\}
+04929 ,\{ 340, 340, 340, 340, 340\}
+04930 ,\{ 340, 340, 340, 340, 340\}
+04931 ,\{ 340, 340, 340, 340, 340\}
+04932 \}
+04933 \}
+04934 ,\{\{\{ 370, 320, 370, 340, 370\}
+04935 ,\{ 370, 290, 370, 340, 370\}
+04936 ,\{ 340, 320, 340, 210, 340\}
+04937 ,\{ 340, 260, 340, 340, 340\}
+04938 ,\{ 340, 320, 340, 340, 340\}
+04939 \}
+04940 ,\{\{ 370, 290, 370, 260, 370\}
+04941 ,\{ 370, 290, 370, 240, 370\}
+04942 ,\{ 340, 260, 340, 210, 340\}
+04943 ,\{ 260, 180, 260, 260, 260\}
+04944 ,\{ 340, 260, 340, 210, 340\}
+04945 \}
+04946 ,\{\{ 340, 320, 340, 210, 340\}
+04947 ,\{ 340, 260, 340, 210, 340\}
+04948 ,\{ 340, 320, 340, 210, 340\}
+04949 ,\{ 340, 260, 340, 210, 340\}
+04950 ,\{ 340, 320, 340, 210, 340\}
+04951 \}
+04952 ,\{\{ 340, 260, 340, 340, 340\}
+04953 ,\{ 340, 260, 340, 340, 340\}
+04954 ,\{ 340, 260, 340, 210, 340\}
+04955 ,\{ 340, 260, 210, 340, 210\}
+04956 ,\{ 340, 260, 340, 210, 340\}
+04957 \}
+04958 ,\{\{ 340, 320, 340, 340, 340\}
+04959 ,\{ 340, 260, 340, 210, 340\}
+04960 ,\{ 340, 320, 340, 210, 340\}
+04961 ,\{ 340, 260, 340, 210, 340\}
+04962 ,\{ 340, 260, 340, 340, 340\}
+04963 \}
+04964 \}
+04965 ,\{\{\{ 430, 370, 400, 370, 430\}
+04966 ,\{ 430, 370, 400, 370, 430\}
+04967 ,\{ 340, 340, 340, 340, 340\}
+04968 ,\{ 340, 340, 340, 340, 340\}
+04969 ,\{ 340, 340, 340, 340, 340\}
+04970 \}
+04971 ,\{\{ 430, 370, 370, 370, 430\}
+04972 ,\{ 430, 370, 370, 370, 430\}
+04973 ,\{ 340, 340, 340, 340, 340\}
+04974 ,\{ 320, 260, 320, 260, 260\}
+04975 ,\{ 340, 340, 340, 340, 340\}
+04976 \}
+04977 ,\{\{ 340, 340, 340, 340, 340\}
+04978 ,\{ 340, 340, 340, 340, 340\}
+04979 ,\{ 340, 340, 340, 340, 340\}
+04980 ,\{ 340, 340, 340, 340, 340\}
+04981 ,\{ 340, 340, 340, 340, 340\}
+04982 \}
+04983 ,\{\{ 400, 340, 400, 340, 340\}
+04984 ,\{ 400, 340, 400, 340, 340\}
+04985 ,\{ 340, 340, 340, 340, 340\}
+04986 ,\{ 340, 210, 210, 210, 340\}
+04987 ,\{ 340, 340, 340, 340, 340\}
+04988 \}
+04989 ,\{\{ 340, 340, 340, 340, 340\}
+04990 ,\{ 340, 340, 340, 340, 340\}
+04991 ,\{ 340, 340, 340, 340, 340\}
+04992 ,\{ 340, 340, 340, 340, 340\}
+04993 ,\{ 340, 340, 340, 340, 340\}
+04994 \}
+04995 \}
+04996 \}
+04997 \}
+04998 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+04999 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05000 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05001 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05002 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05003 \}
+05004 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05007 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05008 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05009 \}
+05010 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05013 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05014 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05015 \}
+05016 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05019 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05020 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05021 \}
+05022 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05025 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05026 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05027 \}
+05028 \}
+05029 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05031 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05032 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05033 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05034 \}
+05035 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05037 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05038 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05039 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05040 \}
+05041 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05043 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05044 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05045 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05046 \}
+05047 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05049 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05050 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05051 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05052 \}
+05053 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05056 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05057 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05058 \}
+05059 \}
+05060 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05061 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05062 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05063 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05064 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05065 \}
+05066 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05067 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05068 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05069 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05070 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05071 \}
+05072 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05073 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05074 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05075 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05076 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05077 \}
+05078 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05079 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05080 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05081 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05082 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05083 \}
+05084 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05085 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05086 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05087 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05088 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05089 \}
+05090 \}
+05091 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05092 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05093 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05094 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05095 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05096 \}
+05097 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05099 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05100 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05101 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05102 \}
+05103 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05105 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05106 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05107 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05108 \}
+05109 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05111 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05112 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05113 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05114 \}
+05115 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05117 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05118 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05119 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05120 \}
+05121 \}
+05122 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05123 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05124 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05125 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05126 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05127 \}
+05128 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05130 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05131 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05132 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05133 \}
+05134 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05136 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05137 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05138 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05139 \}
+05140 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05142 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05143 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05144 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05145 \}
+05146 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05148 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05149 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05150 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05151 \}
+05152 \}
+05153 \}
+05154 ,\{\{\{\{ 310, 240, 240, 310, 260\}
+05155 ,\{ 270, 240, 240, 270, 260\}
+05156 ,\{ 310, 220, 220, 310, 220\}
+05157 ,\{ 270, 240, 240, 270, 240\}
+05158 ,\{ 300, 210, 210, 300, 210\}
+05159 \}
+05160 ,\{\{ 260, 200, 200, 230, 260\}
+05161 ,\{ 260, 200, 200, 230, 260\}
+05162 ,\{ 220, 190, 190, 220, 190\}
+05163 ,\{ 160, 100, 160, 130, 160\}
+05164 ,\{ 220, 190, 190, 220, 190\}
+05165 \}
+05166 ,\{\{ 310, 240, 240, 310, 240\}
+05167 ,\{ 270, 240, 240, 270, 240\}
+05168 ,\{ 310, 220, 220, 310, 220\}
+05169 ,\{ 270, 240, 240, 270, 240\}
+05170 ,\{ 300, 210, 210, 300, 210\}
+05171 \}
+05172 ,\{\{ 220, 190, 190, 220, 190\}
+05173 ,\{ 160, 100, 160, 130, 160\}
+05174 ,\{ 220, 190, 190, 220, 190\}
+05175 ,\{ 210, 50, 50, 210, 180\}
+05176 ,\{ 220, 190, 190, 220, 190\}
+05177 \}
+05178 ,\{\{ 300, 240, 240, 300, 240\}
+05179 ,\{ 270, 240, 240, 270, 240\}
+05180 ,\{ 300, 210, 210, 300, 210\}
+05181 ,\{ 270, 240, 240, 270, 240\}
+05182 ,\{ 150, 140, 120, 150, 120\}
+05183 \}
+05184 \}
+05185 ,\{\{\{ 310, 200, 240, 310, 240\}
+05186 ,\{ 270, 200, 240, 270, 240\}
+05187 ,\{ 310, 190, 220, 310, 220\}
+05188 ,\{ 270, 200, 240, 270, 240\}
+05189 ,\{ 300, 170, 210, 300, 210\}
+05190 \}
+05191 ,\{\{ 230, 160, 200, 230, 200\}
+05192 ,\{ 230, 160, 200, 230, 200\}
+05193 ,\{ 220, 160, 190, 220, 190\}
+05194 ,\{ 130, 70, 100, 130, 100\}
+05195 ,\{ 220, 160, 190, 220, 190\}
+05196 \}
+05197 ,\{\{ 310, 200, 240, 310, 240\}
+05198 ,\{ 270, 200, 240, 270, 240\}
+05199 ,\{ 310, 190, 220, 310, 220\}
+05200 ,\{ 270, 200, 240, 270, 240\}
+05201 ,\{ 300, 170, 210, 300, 210\}
+05202 \}
+05203 ,\{\{ 220, 160, 190, 220, 190\}
+05204 ,\{ 130, 70, 100, 130, 100\}
+05205 ,\{ 220, 160, 190, 220, 190\}
+05206 ,\{ 210, 10, 50, 210, 50\}
+05207 ,\{ 220, 160, 190, 220, 190\}
+05208 \}
+05209 ,\{\{ 300, 200, 240, 300, 240\}
+05210 ,\{ 270, 200, 240, 270, 240\}
+05211 ,\{ 300, 170, 210, 300, 210\}
+05212 ,\{ 270, 200, 240, 270, 240\}
+05213 ,\{ 150, 140, 120, 150, 120\}
+05214 \}
+05215 \}
+05216 ,\{\{\{ 240, 240, 240, 240, 240\}
+05217 ,\{ 240, 240, 240, 240, 240\}
+05218 ,\{ 220, 220, 220, 220, 220\}
+05219 ,\{ 240, 240, 240, 240, 240\}
+05220 ,\{ 210, 210, 210, 210, 210\}
+05221 \}
+05222 ,\{\{ 200, 200, 200, 200, 200\}
+05223 ,\{ 200, 200, 200, 200, 200\}
+05224 ,\{ 190, 190, 190, 190, 190\}
+05225 ,\{ 160, 100, 160, 100, 160\}
+05226 ,\{ 190, 190, 190, 190, 190\}
+05227 \}
+05228 ,\{\{ 240, 240, 240, 240, 240\}
+05229 ,\{ 240, 240, 240, 240, 240\}
+05230 ,\{ 220, 220, 220, 220, 220\}
+05231 ,\{ 240, 240, 240, 240, 240\}
+05232 ,\{ 210, 210, 210, 210, 210\}
+05233 \}
+05234 ,\{\{ 190, 190, 190, 190, 190\}
+05235 ,\{ 160, 100, 160, 100, 160\}
+05236 ,\{ 190, 190, 190, 190, 190\}
+05237 ,\{ 50, 50, 50, 50, 50\}
+05238 ,\{ 190, 190, 190, 190, 190\}
+05239 \}
+05240 ,\{\{ 240, 240, 240, 240, 240\}
+05241 ,\{ 240, 240, 240, 240, 240\}
+05242 ,\{ 210, 210, 210, 210, 210\}
+05243 ,\{ 240, 240, 240, 240, 240\}
+05244 ,\{ 120, 120, 120, 120, 120\}
+05245 \}
+05246 \}
+05247 ,\{\{\{ 240, 150, 240, 180, 240\}
+05248 ,\{ 240, 100, 240, 110, 240\}
+05249 ,\{ 220, 150, 220, 90, 220\}
+05250 ,\{ 240, 100, 240, 180, 240\}
+05251 ,\{ 210, 130, 210, 120, 210\}
+05252 \}
+05253 ,\{\{ 200, 60, 200, 100, 200\}
+05254 ,\{ 200, 60, 200, 70, 200\}
+05255 ,\{ 190, 60, 190, 60, 190\}
+05256 ,\{ 100, -30, 100, 100, 100\}
+05257 ,\{ 190, 60, 190, 60, 190\}
+05258 \}
+05259 ,\{\{ 240, 150, 240, 110, 240\}
+05260 ,\{ 240, 100, 240, 110, 240\}
+05261 ,\{ 220, 150, 220, 90, 220\}
+05262 ,\{ 240, 100, 240, 110, 240\}
+05263 ,\{ 210, 130, 210, 80, 210\}
+05264 \}
+05265 ,\{\{ 190, 60, 190, 180, 190\}
+05266 ,\{ 100, -30, 100, 100, 100\}
+05267 ,\{ 190, 60, 190, 60, 190\}
+05268 ,\{ 180, 40, 50, 180, 50\}
+05269 ,\{ 190, 60, 190, 60, 190\}
+05270 \}
+05271 ,\{\{ 240, 130, 240, 120, 240\}
+05272 ,\{ 240, 100, 240, 110, 240\}
+05273 ,\{ 210, 130, 210, 80, 210\}
+05274 ,\{ 240, 100, 240, 110, 240\}
+05275 ,\{ 120, -10, 120, 120, 120\}
+05276 \}
+05277 \}
+05278 ,\{\{\{ 260, 240, 240, 240, 260\}
+05279 ,\{ 260, 240, 240, 240, 260\}
+05280 ,\{ 220, 220, 220, 220, 220\}
+05281 ,\{ 240, 240, 240, 240, 240\}
+05282 ,\{ 210, 210, 210, 210, 210\}
+05283 \}
+05284 ,\{\{ 260, 200, 200, 200, 260\}
+05285 ,\{ 260, 200, 200, 200, 260\}
+05286 ,\{ 190, 190, 190, 190, 190\}
+05287 ,\{ 160, 100, 160, 100, 100\}
+05288 ,\{ 190, 190, 190, 190, 190\}
+05289 \}
+05290 ,\{\{ 240, 240, 240, 240, 240\}
+05291 ,\{ 240, 240, 240, 240, 240\}
+05292 ,\{ 220, 220, 220, 220, 220\}
+05293 ,\{ 240, 240, 240, 240, 240\}
+05294 ,\{ 210, 210, 210, 210, 210\}
+05295 \}
+05296 ,\{\{ 190, 190, 190, 190, 190\}
+05297 ,\{ 160, 100, 160, 100, 100\}
+05298 ,\{ 190, 190, 190, 190, 190\}
+05299 ,\{ 180, 50, 50, 50, 180\}
+05300 ,\{ 190, 190, 190, 190, 190\}
+05301 \}
+05302 ,\{\{ 240, 240, 240, 240, 240\}
+05303 ,\{ 240, 240, 240, 240, 240\}
+05304 ,\{ 210, 210, 210, 210, 210\}
+05305 ,\{ 240, 240, 240, 240, 240\}
+05306 ,\{ 120, 120, 120, 120, 120\}
+05307 \}
+05308 \}
+05309 \}
+05310 ,\{\{\{\{ 280, 210, 210, 280, 270\}
+05311 ,\{ 270, 210, 210, 240, 270\}
+05312 ,\{ 280, 190, 190, 280, 190\}
+05313 ,\{ 210, 180, 180, 210, 180\}
+05314 ,\{ 280, 190, 190, 280, 190\}
+05315 \}
+05316 ,\{\{ 270, 210, 210, 240, 270\}
+05317 ,\{ 270, 210, 210, 240, 270\}
+05318 ,\{ 220, 190, 190, 220, 190\}
+05319 ,\{ 70, 10, 70, 40, 70\}
+05320 ,\{ 220, 190, 190, 220, 190\}
+05321 \}
+05322 ,\{\{ 280, 190, 190, 280, 190\}
+05323 ,\{ 210, 180, 180, 210, 180\}
+05324 ,\{ 280, 190, 190, 280, 190\}
+05325 ,\{ 210, 180, 180, 210, 180\}
+05326 ,\{ 280, 190, 190, 280, 190\}
+05327 \}
+05328 ,\{\{ 220, 190, 190, 220, 190\}
+05329 ,\{ 130, 70, 130, 100, 130\}
+05330 ,\{ 220, 190, 190, 220, 190\}
+05331 ,\{ 210, 50, 50, 210, 180\}
+05332 ,\{ 220, 190, 190, 220, 190\}
+05333 \}
+05334 ,\{\{ 280, 190, 190, 280, 190\}
+05335 ,\{ 210, 180, 180, 210, 180\}
+05336 ,\{ 280, 190, 190, 280, 190\}
+05337 ,\{ 210, 180, 180, 210, 180\}
+05338 ,\{ 140, 140, 110, 140, 110\}
+05339 \}
+05340 \}
+05341 ,\{\{\{ 280, 190, 210, 280, 210\}
+05342 ,\{ 240, 190, 210, 240, 210\}
+05343 ,\{ 280, 160, 190, 280, 190\}
+05344 ,\{ 210, 150, 180, 210, 180\}
+05345 ,\{ 280, 150, 190, 280, 190\}
+05346 \}
+05347 ,\{\{ 240, 190, 210, 240, 210\}
+05348 ,\{ 240, 190, 210, 240, 210\}
+05349 ,\{ 220, 150, 190, 220, 190\}
+05350 ,\{ 40, -20, 10, 40, 10\}
+05351 ,\{ 220, 150, 190, 220, 190\}
+05352 \}
+05353 ,\{\{ 280, 150, 190, 280, 190\}
+05354 ,\{ 210, 150, 180, 210, 180\}
+05355 ,\{ 280, 150, 190, 280, 190\}
+05356 ,\{ 210, 150, 180, 210, 180\}
+05357 ,\{ 280, 150, 190, 280, 190\}
+05358 \}
+05359 ,\{\{ 220, 150, 190, 220, 190\}
+05360 ,\{ 100, 40, 70, 100, 70\}
+05361 ,\{ 220, 150, 190, 220, 190\}
+05362 ,\{ 210, 10, 50, 210, 50\}
+05363 ,\{ 220, 150, 190, 220, 190\}
+05364 \}
+05365 ,\{\{ 280, 160, 190, 280, 190\}
+05366 ,\{ 210, 150, 180, 210, 180\}
+05367 ,\{ 280, 160, 190, 280, 190\}
+05368 ,\{ 210, 150, 180, 210, 180\}
+05369 ,\{ 140, 140, 110, 140, 110\}
+05370 \}
+05371 \}
+05372 ,\{\{\{ 210, 210, 210, 210, 210\}
+05373 ,\{ 210, 210, 210, 210, 210\}
+05374 ,\{ 190, 190, 190, 190, 190\}
+05375 ,\{ 180, 180, 180, 180, 180\}
+05376 ,\{ 190, 190, 190, 190, 190\}
+05377 \}
+05378 ,\{\{ 210, 210, 210, 210, 210\}
+05379 ,\{ 210, 210, 210, 210, 210\}
+05380 ,\{ 190, 190, 190, 190, 190\}
+05381 ,\{ 70, 10, 70, 10, 70\}
+05382 ,\{ 190, 190, 190, 190, 190\}
+05383 \}
+05384 ,\{\{ 190, 190, 190, 190, 190\}
+05385 ,\{ 180, 180, 180, 180, 180\}
+05386 ,\{ 190, 190, 190, 190, 190\}
+05387 ,\{ 180, 180, 180, 180, 180\}
+05388 ,\{ 190, 190, 190, 190, 190\}
+05389 \}
+05390 ,\{\{ 190, 190, 190, 190, 190\}
+05391 ,\{ 130, 70, 130, 70, 130\}
+05392 ,\{ 190, 190, 190, 190, 190\}
+05393 ,\{ 50, 50, 50, 50, 50\}
+05394 ,\{ 190, 190, 190, 190, 190\}
+05395 \}
+05396 ,\{\{ 190, 190, 190, 190, 190\}
+05397 ,\{ 180, 180, 180, 180, 180\}
+05398 ,\{ 190, 190, 190, 190, 190\}
+05399 ,\{ 180, 180, 180, 180, 180\}
+05400 ,\{ 110, 110, 110, 110, 110\}
+05401 \}
+05402 \}
+05403 ,\{\{\{ 210, 120, 210, 180, 210\}
+05404 ,\{ 210, 80, 210, 80, 210\}
+05405 ,\{ 190, 120, 190, 60, 190\}
+05406 ,\{ 180, 50, 180, 180, 180\}
+05407 ,\{ 190, 110, 190, 110, 190\}
+05408 \}
+05409 ,\{\{ 210, 80, 210, 80, 210\}
+05410 ,\{ 210, 80, 210, 80, 210\}
+05411 ,\{ 190, 50, 190, 60, 190\}
+05412 ,\{ 10, -120, 10, 10, 10\}
+05413 ,\{ 190, 50, 190, 60, 190\}
+05414 \}
+05415 ,\{\{ 190, 110, 190, 60, 190\}
+05416 ,\{ 180, 50, 180, 50, 180\}
+05417 ,\{ 190, 110, 190, 60, 190\}
+05418 ,\{ 180, 50, 180, 50, 180\}
+05419 ,\{ 190, 110, 190, 60, 190\}
+05420 \}
+05421 ,\{\{ 190, 50, 190, 180, 190\}
+05422 ,\{ 70, -60, 70, 70, 70\}
+05423 ,\{ 190, 50, 190, 60, 190\}
+05424 ,\{ 180, 40, 50, 180, 50\}
+05425 ,\{ 190, 50, 190, 60, 190\}
+05426 \}
+05427 ,\{\{ 190, 120, 190, 110, 190\}
+05428 ,\{ 180, 50, 180, 50, 180\}
+05429 ,\{ 190, 120, 190, 60, 190\}
+05430 ,\{ 180, 50, 180, 50, 180\}
+05431 ,\{ 110, -20, 110, 110, 110\}
+05432 \}
+05433 \}
+05434 ,\{\{\{ 270, 210, 210, 210, 270\}
+05435 ,\{ 270, 210, 210, 210, 270\}
+05436 ,\{ 190, 190, 190, 190, 190\}
+05437 ,\{ 180, 180, 180, 180, 180\}
+05438 ,\{ 190, 190, 190, 190, 190\}
+05439 \}
+05440 ,\{\{ 270, 210, 210, 210, 270\}
+05441 ,\{ 270, 210, 210, 210, 270\}
+05442 ,\{ 190, 190, 190, 190, 190\}
+05443 ,\{ 70, 10, 70, 10, 10\}
+05444 ,\{ 190, 190, 190, 190, 190\}
+05445 \}
+05446 ,\{\{ 190, 190, 190, 190, 190\}
+05447 ,\{ 180, 180, 180, 180, 180\}
+05448 ,\{ 190, 190, 190, 190, 190\}
+05449 ,\{ 180, 180, 180, 180, 180\}
+05450 ,\{ 190, 190, 190, 190, 190\}
+05451 \}
+05452 ,\{\{ 190, 190, 190, 190, 190\}
+05453 ,\{ 130, 70, 130, 70, 70\}
+05454 ,\{ 190, 190, 190, 190, 190\}
+05455 ,\{ 180, 50, 50, 50, 180\}
+05456 ,\{ 190, 190, 190, 190, 190\}
+05457 \}
+05458 ,\{\{ 190, 190, 190, 190, 190\}
+05459 ,\{ 180, 180, 180, 180, 180\}
+05460 ,\{ 190, 190, 190, 190, 190\}
+05461 ,\{ 180, 180, 180, 180, 180\}
+05462 ,\{ 110, 110, 110, 110, 110\}
+05463 \}
+05464 \}
+05465 \}
+05466 ,\{\{\{\{ 400, 360, 340, 400, 400\}
+05467 ,\{ 400, 360, 340, 370, 400\}
+05468 ,\{ 400, 310, 310, 400, 310\}
+05469 ,\{ 340, 310, 310, 340, 310\}
+05470 ,\{ 400, 330, 310, 400, 310\}
+05471 \}
+05472 ,\{\{ 400, 360, 340, 370, 400\}
+05473 ,\{ 400, 360, 340, 370, 400\}
+05474 ,\{ 340, 310, 310, 340, 310\}
+05475 ,\{ 290, 230, 290, 260, 290\}
+05476 ,\{ 340, 310, 310, 340, 310\}
+05477 \}
+05478 ,\{\{ 400, 310, 310, 400, 310\}
+05479 ,\{ 340, 310, 310, 340, 310\}
+05480 ,\{ 400, 310, 310, 400, 310\}
+05481 ,\{ 340, 310, 310, 340, 310\}
+05482 ,\{ 400, 310, 310, 400, 310\}
+05483 \}
+05484 ,\{\{ 360, 360, 330, 340, 330\}
+05485 ,\{ 360, 360, 330, 300, 330\}
+05486 ,\{ 340, 310, 310, 340, 310\}
+05487 ,\{ 340, 180, 180, 340, 310\}
+05488 ,\{ 340, 310, 310, 340, 310\}
+05489 \}
+05490 ,\{\{ 400, 330, 310, 400, 310\}
+05491 ,\{ 340, 310, 310, 340, 310\}
+05492 ,\{ 400, 310, 310, 400, 310\}
+05493 ,\{ 340, 310, 310, 340, 310\}
+05494 ,\{ 340, 330, 310, 340, 310\}
+05495 \}
+05496 \}
+05497 ,\{\{\{ 400, 360, 340, 400, 340\}
+05498 ,\{ 370, 360, 340, 370, 340\}
+05499 ,\{ 400, 270, 310, 400, 310\}
+05500 ,\{ 340, 270, 310, 340, 310\}
+05501 ,\{ 400, 330, 310, 400, 310\}
+05502 \}
+05503 ,\{\{ 370, 360, 340, 370, 340\}
+05504 ,\{ 370, 360, 340, 370, 340\}
+05505 ,\{ 340, 270, 310, 340, 310\}
+05506 ,\{ 260, 190, 230, 260, 230\}
+05507 ,\{ 340, 270, 310, 340, 310\}
+05508 \}
+05509 ,\{\{ 400, 270, 310, 400, 310\}
+05510 ,\{ 340, 270, 310, 340, 310\}
+05511 ,\{ 400, 270, 310, 400, 310\}
+05512 ,\{ 340, 270, 310, 340, 310\}
+05513 ,\{ 400, 270, 310, 400, 310\}
+05514 \}
+05515 ,\{\{ 360, 360, 310, 340, 310\}
+05516 ,\{ 360, 360, 270, 300, 270\}
+05517 ,\{ 340, 270, 310, 340, 310\}
+05518 ,\{ 340, 140, 180, 340, 180\}
+05519 ,\{ 340, 270, 310, 340, 310\}
+05520 \}
+05521 ,\{\{ 400, 330, 310, 400, 310\}
+05522 ,\{ 340, 270, 310, 340, 310\}
+05523 ,\{ 400, 270, 310, 400, 310\}
+05524 ,\{ 340, 270, 310, 340, 310\}
+05525 ,\{ 340, 330, 310, 340, 310\}
+05526 \}
+05527 \}
+05528 ,\{\{\{ 340, 340, 340, 340, 340\}
+05529 ,\{ 340, 340, 340, 340, 340\}
+05530 ,\{ 310, 310, 310, 310, 310\}
+05531 ,\{ 310, 310, 310, 310, 310\}
+05532 ,\{ 310, 310, 310, 310, 310\}
+05533 \}
+05534 ,\{\{ 340, 340, 340, 340, 340\}
+05535 ,\{ 340, 340, 340, 340, 340\}
+05536 ,\{ 310, 310, 310, 310, 310\}
+05537 ,\{ 290, 230, 290, 230, 290\}
+05538 ,\{ 310, 310, 310, 310, 310\}
+05539 \}
+05540 ,\{\{ 310, 310, 310, 310, 310\}
+05541 ,\{ 310, 310, 310, 310, 310\}
+05542 ,\{ 310, 310, 310, 310, 310\}
+05543 ,\{ 310, 310, 310, 310, 310\}
+05544 ,\{ 310, 310, 310, 310, 310\}
+05545 \}
+05546 ,\{\{ 330, 310, 330, 310, 330\}
+05547 ,\{ 330, 270, 330, 270, 330\}
+05548 ,\{ 310, 310, 310, 310, 310\}
+05549 ,\{ 180, 180, 180, 180, 180\}
+05550 ,\{ 310, 310, 310, 310, 310\}
+05551 \}
+05552 ,\{\{ 310, 310, 310, 310, 310\}
+05553 ,\{ 310, 310, 310, 310, 310\}
+05554 ,\{ 310, 310, 310, 310, 310\}
+05555 ,\{ 310, 310, 310, 310, 310\}
+05556 ,\{ 310, 310, 310, 310, 310\}
+05557 \}
+05558 \}
+05559 ,\{\{\{ 340, 230, 340, 310, 340\}
+05560 ,\{ 340, 220, 340, 270, 340\}
+05561 ,\{ 310, 230, 310, 180, 310\}
+05562 ,\{ 310, 170, 310, 310, 310\}
+05563 ,\{ 310, 230, 310, 310, 310\}
+05564 \}
+05565 ,\{\{ 340, 220, 340, 230, 340\}
+05566 ,\{ 340, 220, 340, 210, 340\}
+05567 ,\{ 310, 170, 310, 180, 310\}
+05568 ,\{ 230, 20, 230, 230, 230\}
+05569 ,\{ 310, 170, 310, 180, 310\}
+05570 \}
+05571 ,\{\{ 310, 230, 310, 180, 310\}
+05572 ,\{ 310, 170, 310, 180, 310\}
+05573 ,\{ 310, 230, 310, 180, 310\}
+05574 ,\{ 310, 170, 310, 180, 310\}
+05575 ,\{ 310, 230, 310, 180, 310\}
+05576 \}
+05577 ,\{\{ 310, 170, 310, 310, 310\}
+05578 ,\{ 270, 130, 270, 270, 270\}
+05579 ,\{ 310, 170, 310, 180, 310\}
+05580 ,\{ 310, 170, 180, 310, 180\}
+05581 ,\{ 310, 170, 310, 180, 310\}
+05582 \}
+05583 ,\{\{ 310, 230, 310, 310, 310\}
+05584 ,\{ 310, 170, 310, 180, 310\}
+05585 ,\{ 310, 230, 310, 180, 310\}
+05586 ,\{ 310, 170, 310, 180, 310\}
+05587 ,\{ 310, 170, 310, 310, 310\}
+05588 \}
+05589 \}
+05590 ,\{\{\{ 400, 340, 340, 340, 400\}
+05591 ,\{ 400, 340, 340, 340, 400\}
+05592 ,\{ 310, 310, 310, 310, 310\}
+05593 ,\{ 310, 310, 310, 310, 310\}
+05594 ,\{ 310, 310, 310, 310, 310\}
+05595 \}
+05596 ,\{\{ 400, 340, 340, 340, 400\}
+05597 ,\{ 400, 340, 340, 340, 400\}
+05598 ,\{ 310, 310, 310, 310, 310\}
+05599 ,\{ 290, 230, 290, 230, 230\}
+05600 ,\{ 310, 310, 310, 310, 310\}
+05601 \}
+05602 ,\{\{ 310, 310, 310, 310, 310\}
+05603 ,\{ 310, 310, 310, 310, 310\}
+05604 ,\{ 310, 310, 310, 310, 310\}
+05605 ,\{ 310, 310, 310, 310, 310\}
+05606 ,\{ 310, 310, 310, 310, 310\}
+05607 \}
+05608 ,\{\{ 330, 310, 330, 310, 310\}
+05609 ,\{ 330, 270, 330, 270, 270\}
+05610 ,\{ 310, 310, 310, 310, 310\}
+05611 ,\{ 310, 180, 180, 180, 310\}
+05612 ,\{ 310, 310, 310, 310, 310\}
+05613 \}
+05614 ,\{\{ 310, 310, 310, 310, 310\}
+05615 ,\{ 310, 310, 310, 310, 310\}
+05616 ,\{ 310, 310, 310, 310, 310\}
+05617 ,\{ 310, 310, 310, 310, 310\}
+05618 ,\{ 310, 310, 310, 310, 310\}
+05619 \}
+05620 \}
+05621 \}
+05622 ,\{\{\{\{ 370, 310, 370, 370, 370\}
+05623 ,\{ 370, 310, 370, 340, 370\}
+05624 ,\{ 370, 280, 280, 370, 280\}
+05625 ,\{ 310, 280, 280, 310, 280\}
+05626 ,\{ 370, 300, 280, 370, 280\}
+05627 \}
+05628 ,\{\{ 310, 280, 280, 310, 300\}
+05629 ,\{ 300, 240, 240, 270, 300\}
+05630 ,\{ 310, 280, 280, 310, 280\}
+05631 ,\{ 200, 140, 200, 170, 200\}
+05632 ,\{ 310, 280, 280, 310, 280\}
+05633 \}
+05634 ,\{\{ 370, 280, 280, 370, 280\}
+05635 ,\{ 310, 280, 280, 310, 280\}
+05636 ,\{ 370, 280, 280, 370, 280\}
+05637 ,\{ 310, 280, 280, 310, 280\}
+05638 ,\{ 370, 280, 280, 370, 280\}
+05639 \}
+05640 ,\{\{ 370, 310, 370, 340, 370\}
+05641 ,\{ 370, 310, 370, 340, 370\}
+05642 ,\{ 310, 280, 280, 310, 280\}
+05643 ,\{ 310, 150, 150, 310, 280\}
+05644 ,\{ 310, 280, 280, 310, 280\}
+05645 \}
+05646 ,\{\{ 370, 300, 280, 370, 280\}
+05647 ,\{ 310, 280, 280, 310, 280\}
+05648 ,\{ 370, 280, 280, 370, 280\}
+05649 ,\{ 310, 280, 280, 310, 280\}
+05650 ,\{ 310, 300, 280, 310, 280\}
+05651 \}
+05652 \}
+05653 ,\{\{\{ 370, 300, 310, 370, 310\}
+05654 ,\{ 340, 270, 310, 340, 310\}
+05655 ,\{ 370, 240, 280, 370, 280\}
+05656 ,\{ 310, 240, 280, 310, 280\}
+05657 ,\{ 370, 300, 280, 370, 280\}
+05658 \}
+05659 ,\{\{ 310, 240, 280, 310, 280\}
+05660 ,\{ 270, 210, 240, 270, 240\}
+05661 ,\{ 310, 240, 280, 310, 280\}
+05662 ,\{ 170, 110, 140, 170, 140\}
+05663 ,\{ 310, 240, 280, 310, 280\}
+05664 \}
+05665 ,\{\{ 370, 240, 280, 370, 280\}
+05666 ,\{ 310, 240, 280, 310, 280\}
+05667 ,\{ 370, 240, 280, 370, 280\}
+05668 ,\{ 310, 240, 280, 310, 280\}
+05669 ,\{ 370, 240, 280, 370, 280\}
+05670 \}
+05671 ,\{\{ 340, 270, 310, 340, 310\}
+05672 ,\{ 340, 270, 310, 340, 310\}
+05673 ,\{ 310, 240, 280, 310, 280\}
+05674 ,\{ 310, 110, 150, 310, 150\}
+05675 ,\{ 310, 240, 280, 310, 280\}
+05676 \}
+05677 ,\{\{ 370, 300, 280, 370, 280\}
+05678 ,\{ 310, 240, 280, 310, 280\}
+05679 ,\{ 370, 240, 280, 370, 280\}
+05680 ,\{ 310, 240, 280, 310, 280\}
+05681 ,\{ 310, 300, 280, 310, 280\}
+05682 \}
+05683 \}
+05684 ,\{\{\{ 370, 310, 370, 310, 370\}
+05685 ,\{ 370, 310, 370, 310, 370\}
+05686 ,\{ 280, 280, 280, 280, 280\}
+05687 ,\{ 280, 280, 280, 280, 280\}
+05688 ,\{ 280, 280, 280, 280, 280\}
+05689 \}
+05690 ,\{\{ 280, 280, 280, 280, 280\}
+05691 ,\{ 240, 240, 240, 240, 240\}
+05692 ,\{ 280, 280, 280, 280, 280\}
+05693 ,\{ 200, 140, 200, 140, 200\}
+05694 ,\{ 280, 280, 280, 280, 280\}
+05695 \}
+05696 ,\{\{ 280, 280, 280, 280, 280\}
+05697 ,\{ 280, 280, 280, 280, 280\}
+05698 ,\{ 280, 280, 280, 280, 280\}
+05699 ,\{ 280, 280, 280, 280, 280\}
+05700 ,\{ 280, 280, 280, 280, 280\}
+05701 \}
+05702 ,\{\{ 370, 310, 370, 310, 370\}
+05703 ,\{ 370, 310, 370, 310, 370\}
+05704 ,\{ 280, 280, 280, 280, 280\}
+05705 ,\{ 150, 150, 150, 150, 150\}
+05706 ,\{ 280, 280, 280, 280, 280\}
+05707 \}
+05708 ,\{\{ 280, 280, 280, 280, 280\}
+05709 ,\{ 280, 280, 280, 280, 280\}
+05710 ,\{ 280, 280, 280, 280, 280\}
+05711 ,\{ 280, 280, 280, 280, 280\}
+05712 ,\{ 280, 280, 280, 280, 280\}
+05713 \}
+05714 \}
+05715 ,\{\{\{ 310, 200, 310, 310, 310\}
+05716 ,\{ 310, 170, 310, 310, 310\}
+05717 ,\{ 280, 200, 280, 150, 280\}
+05718 ,\{ 280, 140, 280, 280, 280\}
+05719 ,\{ 280, 200, 280, 280, 280\}
+05720 \}
+05721 ,\{\{ 280, 140, 280, 150, 280\}
+05722 ,\{ 240, 110, 240, 110, 240\}
+05723 ,\{ 280, 140, 280, 150, 280\}
+05724 ,\{ 140, 10, 140, 140, 140\}
+05725 ,\{ 280, 140, 280, 150, 280\}
+05726 \}
+05727 ,\{\{ 280, 200, 280, 150, 280\}
+05728 ,\{ 280, 140, 280, 150, 280\}
+05729 ,\{ 280, 200, 280, 150, 280\}
+05730 ,\{ 280, 140, 280, 150, 280\}
+05731 ,\{ 280, 200, 280, 150, 280\}
+05732 \}
+05733 ,\{\{ 310, 170, 310, 310, 310\}
+05734 ,\{ 310, 170, 310, 310, 310\}
+05735 ,\{ 280, 140, 280, 150, 280\}
+05736 ,\{ 280, 140, 150, 280, 150\}
+05737 ,\{ 280, 140, 280, 150, 280\}
+05738 \}
+05739 ,\{\{ 280, 200, 280, 280, 280\}
+05740 ,\{ 280, 140, 280, 150, 280\}
+05741 ,\{ 280, 200, 280, 150, 280\}
+05742 ,\{ 280, 140, 280, 150, 280\}
+05743 ,\{ 280, 140, 280, 280, 280\}
+05744 \}
+05745 \}
+05746 ,\{\{\{ 370, 310, 370, 310, 310\}
+05747 ,\{ 370, 310, 370, 310, 310\}
+05748 ,\{ 280, 280, 280, 280, 280\}
+05749 ,\{ 280, 280, 280, 280, 280\}
+05750 ,\{ 280, 280, 280, 280, 280\}
+05751 \}
+05752 ,\{\{ 300, 280, 280, 280, 300\}
+05753 ,\{ 300, 240, 240, 240, 300\}
+05754 ,\{ 280, 280, 280, 280, 280\}
+05755 ,\{ 200, 140, 200, 140, 140\}
+05756 ,\{ 280, 280, 280, 280, 280\}
+05757 \}
+05758 ,\{\{ 280, 280, 280, 280, 280\}
+05759 ,\{ 280, 280, 280, 280, 280\}
+05760 ,\{ 280, 280, 280, 280, 280\}
+05761 ,\{ 280, 280, 280, 280, 280\}
+05762 ,\{ 280, 280, 280, 280, 280\}
+05763 \}
+05764 ,\{\{ 370, 310, 370, 310, 310\}
+05765 ,\{ 370, 310, 370, 310, 310\}
+05766 ,\{ 280, 280, 280, 280, 280\}
+05767 ,\{ 280, 150, 150, 150, 280\}
+05768 ,\{ 280, 280, 280, 280, 280\}
+05769 \}
+05770 ,\{\{ 280, 280, 280, 280, 280\}
+05771 ,\{ 280, 280, 280, 280, 280\}
+05772 ,\{ 280, 280, 280, 280, 280\}
+05773 ,\{ 280, 280, 280, 280, 280\}
+05774 ,\{ 280, 280, 280, 280, 280\}
+05775 \}
+05776 \}
+05777 \}
+05778 ,\{\{\{\{ 350, 280, 280, 350, 340\}
+05779 ,\{ 340, 280, 280, 310, 340\}
+05780 ,\{ 350, 260, 260, 350, 260\}
+05781 ,\{ 290, 260, 260, 290, 260\}
+05782 ,\{ 350, 260, 260, 350, 260\}
+05783 \}
+05784 ,\{\{ 340, 280, 280, 310, 340\}
+05785 ,\{ 340, 280, 280, 310, 340\}
+05786 ,\{ 280, 250, 250, 280, 250\}
+05787 ,\{ 210, 150, 210, 180, 210\}
+05788 ,\{ 280, 250, 250, 280, 250\}
+05789 \}
+05790 ,\{\{ 350, 260, 260, 350, 260\}
+05791 ,\{ 290, 260, 260, 290, 260\}
+05792 ,\{ 350, 260, 260, 350, 260\}
+05793 ,\{ 290, 260, 260, 290, 260\}
+05794 ,\{ 350, 260, 260, 350, 260\}
+05795 \}
+05796 ,\{\{ 280, 250, 280, 280, 280\}
+05797 ,\{ 280, 220, 280, 250, 280\}
+05798 ,\{ 280, 250, 250, 280, 250\}
+05799 ,\{ 260, 100, 100, 260, 230\}
+05800 ,\{ 280, 250, 250, 280, 250\}
+05801 \}
+05802 ,\{\{ 350, 260, 260, 350, 260\}
+05803 ,\{ 290, 260, 260, 290, 260\}
+05804 ,\{ 350, 260, 260, 350, 260\}
+05805 ,\{ 290, 260, 260, 290, 260\}
+05806 ,\{ 200, 190, 170, 200, 170\}
+05807 \}
+05808 \}
+05809 ,\{\{\{ 350, 240, 280, 350, 280\}
+05810 ,\{ 310, 240, 280, 310, 280\}
+05811 ,\{ 350, 220, 260, 350, 260\}
+05812 ,\{ 290, 230, 260, 290, 260\}
+05813 ,\{ 350, 220, 260, 350, 260\}
+05814 \}
+05815 ,\{\{ 310, 240, 280, 310, 280\}
+05816 ,\{ 310, 240, 280, 310, 280\}
+05817 ,\{ 280, 220, 250, 280, 250\}
+05818 ,\{ 180, 120, 150, 180, 150\}
+05819 ,\{ 280, 220, 250, 280, 250\}
+05820 \}
+05821 ,\{\{ 350, 230, 260, 350, 260\}
+05822 ,\{ 290, 230, 260, 290, 260\}
+05823 ,\{ 350, 220, 260, 350, 260\}
+05824 ,\{ 290, 230, 260, 290, 260\}
+05825 ,\{ 350, 220, 260, 350, 260\}
+05826 \}
+05827 ,\{\{ 280, 220, 250, 280, 250\}
+05828 ,\{ 250, 190, 220, 250, 220\}
+05829 ,\{ 280, 220, 250, 280, 250\}
+05830 ,\{ 260, 70, 100, 260, 100\}
+05831 ,\{ 280, 220, 250, 280, 250\}
+05832 \}
+05833 ,\{\{ 350, 230, 260, 350, 260\}
+05834 ,\{ 290, 230, 260, 290, 260\}
+05835 ,\{ 350, 220, 260, 350, 260\}
+05836 ,\{ 290, 230, 260, 290, 260\}
+05837 ,\{ 200, 190, 170, 200, 170\}
+05838 \}
+05839 \}
+05840 ,\{\{\{ 280, 280, 280, 280, 280\}
+05841 ,\{ 280, 280, 280, 280, 280\}
+05842 ,\{ 260, 260, 260, 260, 260\}
+05843 ,\{ 260, 260, 260, 260, 260\}
+05844 ,\{ 260, 260, 260, 260, 260\}
+05845 \}
+05846 ,\{\{ 280, 280, 280, 280, 280\}
+05847 ,\{ 280, 280, 280, 280, 280\}
+05848 ,\{ 250, 250, 250, 250, 250\}
+05849 ,\{ 210, 150, 210, 150, 210\}
+05850 ,\{ 250, 250, 250, 250, 250\}
+05851 \}
+05852 ,\{\{ 260, 260, 260, 260, 260\}
+05853 ,\{ 260, 260, 260, 260, 260\}
+05854 ,\{ 260, 260, 260, 260, 260\}
+05855 ,\{ 260, 260, 260, 260, 260\}
+05856 ,\{ 260, 260, 260, 260, 260\}
+05857 \}
+05858 ,\{\{ 280, 250, 280, 250, 280\}
+05859 ,\{ 280, 220, 280, 220, 280\}
+05860 ,\{ 250, 250, 250, 250, 250\}
+05861 ,\{ 100, 100, 100, 100, 100\}
+05862 ,\{ 250, 250, 250, 250, 250\}
+05863 \}
+05864 ,\{\{ 260, 260, 260, 260, 260\}
+05865 ,\{ 260, 260, 260, 260, 260\}
+05866 ,\{ 260, 260, 260, 260, 260\}
+05867 ,\{ 260, 260, 260, 260, 260\}
+05868 ,\{ 170, 170, 170, 170, 170\}
+05869 \}
+05870 \}
+05871 ,\{\{\{ 280, 180, 280, 230, 280\}
+05872 ,\{ 280, 140, 280, 220, 280\}
+05873 ,\{ 260, 180, 260, 130, 260\}
+05874 ,\{ 260, 130, 260, 230, 260\}
+05875 ,\{ 260, 180, 260, 170, 260\}
+05876 \}
+05877 ,\{\{ 280, 140, 280, 150, 280\}
+05878 ,\{ 280, 140, 280, 150, 280\}
+05879 ,\{ 250, 120, 250, 120, 250\}
+05880 ,\{ 150, 20, 150, 150, 150\}
+05881 ,\{ 250, 120, 250, 120, 250\}
+05882 \}
+05883 ,\{\{ 260, 180, 260, 130, 260\}
+05884 ,\{ 260, 130, 260, 130, 260\}
+05885 ,\{ 260, 180, 260, 130, 260\}
+05886 ,\{ 260, 130, 260, 130, 260\}
+05887 ,\{ 260, 180, 260, 130, 260\}
+05888 \}
+05889 ,\{\{ 250, 120, 250, 230, 250\}
+05890 ,\{ 220, 90, 220, 220, 220\}
+05891 ,\{ 250, 120, 250, 120, 250\}
+05892 ,\{ 230, 100, 100, 230, 100\}
+05893 ,\{ 250, 120, 250, 120, 250\}
+05894 \}
+05895 ,\{\{ 260, 180, 260, 170, 260\}
+05896 ,\{ 260, 130, 260, 130, 260\}
+05897 ,\{ 260, 180, 260, 130, 260\}
+05898 ,\{ 260, 130, 260, 130, 260\}
+05899 ,\{ 170, 30, 170, 170, 170\}
+05900 \}
+05901 \}
+05902 ,\{\{\{ 340, 280, 280, 280, 340\}
+05903 ,\{ 340, 280, 280, 280, 340\}
+05904 ,\{ 260, 260, 260, 260, 260\}
+05905 ,\{ 260, 260, 260, 260, 260\}
+05906 ,\{ 260, 260, 260, 260, 260\}
+05907 \}
+05908 ,\{\{ 340, 280, 280, 280, 340\}
+05909 ,\{ 340, 280, 280, 280, 340\}
+05910 ,\{ 250, 250, 250, 250, 250\}
+05911 ,\{ 210, 150, 210, 150, 150\}
+05912 ,\{ 250, 250, 250, 250, 250\}
+05913 \}
+05914 ,\{\{ 260, 260, 260, 260, 260\}
+05915 ,\{ 260, 260, 260, 260, 260\}
+05916 ,\{ 260, 260, 260, 260, 260\}
+05917 ,\{ 260, 260, 260, 260, 260\}
+05918 ,\{ 260, 260, 260, 260, 260\}
+05919 \}
+05920 ,\{\{ 280, 250, 280, 250, 250\}
+05921 ,\{ 280, 220, 280, 220, 220\}
+05922 ,\{ 250, 250, 250, 250, 250\}
+05923 ,\{ 230, 100, 100, 100, 230\}
+05924 ,\{ 250, 250, 250, 250, 250\}
+05925 \}
+05926 ,\{\{ 260, 260, 260, 260, 260\}
+05927 ,\{ 260, 260, 260, 260, 260\}
+05928 ,\{ 260, 260, 260, 260, 260\}
+05929 ,\{ 260, 260, 260, 260, 260\}
+05930 ,\{ 170, 170, 170, 170, 170\}
+05931 \}
+05932 \}
+05933 \}
+05934 ,\{\{\{\{ 370, 280, 280, 370, 340\}
+05935 ,\{ 340, 280, 280, 310, 340\}
+05936 ,\{ 370, 280, 280, 370, 280\}
+05937 ,\{ 310, 280, 280, 310, 280\}
+05938 ,\{ 370, 280, 280, 370, 280\}
+05939 \}
+05940 ,\{\{ 340, 280, 280, 310, 340\}
+05941 ,\{ 340, 280, 280, 310, 340\}
+05942 ,\{ 260, 230, 230, 260, 230\}
+05943 ,\{ 230, 170, 230, 200, 230\}
+05944 ,\{ 260, 230, 230, 260, 230\}
+05945 \}
+05946 ,\{\{ 370, 280, 280, 370, 280\}
+05947 ,\{ 310, 280, 280, 310, 280\}
+05948 ,\{ 370, 280, 280, 370, 280\}
+05949 ,\{ 310, 280, 280, 310, 280\}
+05950 ,\{ 370, 280, 280, 370, 280\}
+05951 \}
+05952 ,\{\{ 280, 230, 240, 280, 250\}
+05953 ,\{ 240, 180, 240, 210, 240\}
+05954 ,\{ 260, 230, 230, 260, 230\}
+05955 ,\{ 280, 120, 120, 280, 250\}
+05956 ,\{ 260, 230, 230, 260, 230\}
+05957 \}
+05958 ,\{\{ 340, 280, 280, 340, 280\}
+05959 ,\{ 310, 280, 280, 310, 280\}
+05960 ,\{ 340, 250, 250, 340, 250\}
+05961 ,\{ 310, 280, 280, 310, 280\}
+05962 ,\{ 220, 220, 190, 220, 190\}
+05963 \}
+05964 \}
+05965 ,\{\{\{ 370, 240, 280, 370, 280\}
+05966 ,\{ 310, 240, 280, 310, 280\}
+05967 ,\{ 370, 240, 280, 370, 280\}
+05968 ,\{ 310, 240, 280, 310, 280\}
+05969 ,\{ 370, 240, 280, 370, 280\}
+05970 \}
+05971 ,\{\{ 310, 240, 280, 310, 280\}
+05972 ,\{ 310, 240, 280, 310, 280\}
+05973 ,\{ 260, 200, 230, 260, 230\}
+05974 ,\{ 200, 140, 170, 200, 170\}
+05975 ,\{ 260, 200, 230, 260, 230\}
+05976 \}
+05977 ,\{\{ 370, 240, 280, 370, 280\}
+05978 ,\{ 310, 240, 280, 310, 280\}
+05979 ,\{ 370, 240, 280, 370, 280\}
+05980 ,\{ 310, 240, 280, 310, 280\}
+05981 ,\{ 370, 240, 280, 370, 280\}
+05982 \}
+05983 ,\{\{ 280, 200, 230, 280, 230\}
+05984 ,\{ 210, 150, 180, 210, 180\}
+05985 ,\{ 260, 200, 230, 260, 230\}
+05986 ,\{ 280, 90, 120, 280, 120\}
+05987 ,\{ 260, 200, 230, 260, 230\}
+05988 \}
+05989 ,\{\{ 340, 240, 280, 340, 280\}
+05990 ,\{ 310, 240, 280, 310, 280\}
+05991 ,\{ 340, 210, 250, 340, 250\}
+05992 ,\{ 310, 240, 280, 310, 280\}
+05993 ,\{ 220, 220, 190, 220, 190\}
+05994 \}
+05995 \}
+05996 ,\{\{\{ 280, 280, 280, 280, 280\}
+05997 ,\{ 280, 280, 280, 280, 280\}
+05998 ,\{ 280, 280, 280, 280, 280\}
+05999 ,\{ 280, 280, 280, 280, 280\}
+06000 ,\{ 280, 280, 280, 280, 280\}
+06001 \}
+06002 ,\{\{ 280, 280, 280, 280, 280\}
+06003 ,\{ 280, 280, 280, 280, 280\}
+06004 ,\{ 230, 230, 230, 230, 230\}
+06005 ,\{ 230, 170, 230, 170, 230\}
+06006 ,\{ 230, 230, 230, 230, 230\}
+06007 \}
+06008 ,\{\{ 280, 280, 280, 280, 280\}
+06009 ,\{ 280, 280, 280, 280, 280\}
+06010 ,\{ 280, 280, 280, 280, 280\}
+06011 ,\{ 280, 280, 280, 280, 280\}
+06012 ,\{ 280, 280, 280, 280, 280\}
+06013 \}
+06014 ,\{\{ 240, 230, 240, 230, 240\}
+06015 ,\{ 240, 180, 240, 180, 240\}
+06016 ,\{ 230, 230, 230, 230, 230\}
+06017 ,\{ 120, 120, 120, 120, 120\}
+06018 ,\{ 230, 230, 230, 230, 230\}
+06019 \}
+06020 ,\{\{ 280, 280, 280, 280, 280\}
+06021 ,\{ 280, 280, 280, 280, 280\}
+06022 ,\{ 250, 250, 250, 250, 250\}
+06023 ,\{ 280, 280, 280, 280, 280\}
+06024 ,\{ 190, 190, 190, 190, 190\}
+06025 \}
+06026 \}
+06027 ,\{\{\{ 280, 200, 280, 250, 280\}
+06028 ,\{ 280, 140, 280, 180, 280\}
+06029 ,\{ 280, 200, 280, 150, 280\}
+06030 ,\{ 280, 140, 280, 250, 280\}
+06031 ,\{ 280, 200, 280, 190, 280\}
+06032 \}
+06033 ,\{\{ 280, 140, 280, 170, 280\}
+06034 ,\{ 280, 140, 280, 150, 280\}
+06035 ,\{ 230, 100, 230, 100, 230\}
+06036 ,\{ 170, 40, 170, 170, 170\}
+06037 ,\{ 230, 100, 230, 100, 230\}
+06038 \}
+06039 ,\{\{ 280, 200, 280, 150, 280\}
+06040 ,\{ 280, 140, 280, 150, 280\}
+06041 ,\{ 280, 200, 280, 150, 280\}
+06042 ,\{ 280, 140, 280, 150, 280\}
+06043 ,\{ 280, 200, 280, 150, 280\}
+06044 \}
+06045 ,\{\{ 250, 120, 230, 250, 230\}
+06046 ,\{ 180, 50, 180, 180, 180\}
+06047 ,\{ 230, 100, 230, 100, 230\}
+06048 ,\{ 250, 120, 120, 250, 120\}
+06049 ,\{ 230, 100, 230, 100, 230\}
+06050 \}
+06051 ,\{\{ 280, 170, 280, 190, 280\}
+06052 ,\{ 280, 140, 280, 150, 280\}
+06053 ,\{ 250, 170, 250, 120, 250\}
+06054 ,\{ 280, 140, 280, 150, 280\}
+06055 ,\{ 190, 60, 190, 190, 190\}
+06056 \}
+06057 \}
+06058 ,\{\{\{ 340, 280, 280, 280, 340\}
+06059 ,\{ 340, 280, 280, 280, 340\}
+06060 ,\{ 280, 280, 280, 280, 280\}
+06061 ,\{ 280, 280, 280, 280, 280\}
+06062 ,\{ 280, 280, 280, 280, 280\}
+06063 \}
+06064 ,\{\{ 340, 280, 280, 280, 340\}
+06065 ,\{ 340, 280, 280, 280, 340\}
+06066 ,\{ 230, 230, 230, 230, 230\}
+06067 ,\{ 230, 170, 230, 170, 170\}
+06068 ,\{ 230, 230, 230, 230, 230\}
+06069 \}
+06070 ,\{\{ 280, 280, 280, 280, 280\}
+06071 ,\{ 280, 280, 280, 280, 280\}
+06072 ,\{ 280, 280, 280, 280, 280\}
+06073 ,\{ 280, 280, 280, 280, 280\}
+06074 ,\{ 280, 280, 280, 280, 280\}
+06075 \}
+06076 ,\{\{ 250, 230, 240, 230, 250\}
+06077 ,\{ 240, 180, 240, 180, 180\}
+06078 ,\{ 230, 230, 230, 230, 230\}
+06079 ,\{ 250, 120, 120, 120, 250\}
+06080 ,\{ 230, 230, 230, 230, 230\}
+06081 \}
+06082 ,\{\{ 280, 280, 280, 280, 280\}
+06083 ,\{ 280, 280, 280, 280, 280\}
+06084 ,\{ 250, 250, 250, 250, 250\}
+06085 ,\{ 280, 280, 280, 280, 280\}
+06086 ,\{ 190, 190, 190, 190, 190\}
+06087 \}
+06088 \}
+06089 \}
+06090 ,\{\{\{\{ 400, 360, 370, 400, 400\}
+06091 ,\{ 400, 360, 370, 370, 400\}
+06092 ,\{ 400, 310, 310, 400, 310\}
+06093 ,\{ 340, 310, 310, 340, 310\}
+06094 ,\{ 400, 330, 310, 400, 310\}
+06095 \}
+06096 ,\{\{ 400, 360, 340, 370, 400\}
+06097 ,\{ 400, 360, 340, 370, 400\}
+06098 ,\{ 340, 310, 310, 340, 310\}
+06099 ,\{ 290, 230, 290, 260, 290\}
+06100 ,\{ 340, 310, 310, 340, 310\}
+06101 \}
+06102 ,\{\{ 400, 310, 310, 400, 310\}
+06103 ,\{ 340, 310, 310, 340, 310\}
+06104 ,\{ 400, 310, 310, 400, 310\}
+06105 ,\{ 340, 310, 310, 340, 310\}
+06106 ,\{ 400, 310, 310, 400, 310\}
+06107 \}
+06108 ,\{\{ 370, 360, 370, 340, 370\}
+06109 ,\{ 370, 360, 370, 340, 370\}
+06110 ,\{ 340, 310, 310, 340, 310\}
+06111 ,\{ 340, 180, 180, 340, 310\}
+06112 ,\{ 340, 310, 310, 340, 310\}
+06113 \}
+06114 ,\{\{ 400, 330, 310, 400, 310\}
+06115 ,\{ 340, 310, 310, 340, 310\}
+06116 ,\{ 400, 310, 310, 400, 310\}
+06117 ,\{ 340, 310, 310, 340, 310\}
+06118 ,\{ 340, 330, 310, 340, 310\}
+06119 \}
+06120 \}
+06121 ,\{\{\{ 400, 360, 340, 400, 340\}
+06122 ,\{ 370, 360, 340, 370, 340\}
+06123 ,\{ 400, 270, 310, 400, 310\}
+06124 ,\{ 340, 270, 310, 340, 310\}
+06125 ,\{ 400, 330, 310, 400, 310\}
+06126 \}
+06127 ,\{\{ 370, 360, 340, 370, 340\}
+06128 ,\{ 370, 360, 340, 370, 340\}
+06129 ,\{ 340, 270, 310, 340, 310\}
+06130 ,\{ 260, 190, 230, 260, 230\}
+06131 ,\{ 340, 270, 310, 340, 310\}
+06132 \}
+06133 ,\{\{ 400, 270, 310, 400, 310\}
+06134 ,\{ 340, 270, 310, 340, 310\}
+06135 ,\{ 400, 270, 310, 400, 310\}
+06136 ,\{ 340, 270, 310, 340, 310\}
+06137 ,\{ 400, 270, 310, 400, 310\}
+06138 \}
+06139 ,\{\{ 360, 360, 310, 340, 310\}
+06140 ,\{ 360, 360, 310, 340, 310\}
+06141 ,\{ 340, 270, 310, 340, 310\}
+06142 ,\{ 340, 140, 180, 340, 180\}
+06143 ,\{ 340, 270, 310, 340, 310\}
+06144 \}
+06145 ,\{\{ 400, 330, 310, 400, 310\}
+06146 ,\{ 340, 270, 310, 340, 310\}
+06147 ,\{ 400, 270, 310, 400, 310\}
+06148 ,\{ 340, 270, 310, 340, 310\}
+06149 ,\{ 340, 330, 310, 340, 310\}
+06150 \}
+06151 \}
+06152 ,\{\{\{ 370, 340, 370, 340, 370\}
+06153 ,\{ 370, 340, 370, 340, 370\}
+06154 ,\{ 310, 310, 310, 310, 310\}
+06155 ,\{ 310, 310, 310, 310, 310\}
+06156 ,\{ 310, 310, 310, 310, 310\}
+06157 \}
+06158 ,\{\{ 340, 340, 340, 340, 340\}
+06159 ,\{ 340, 340, 340, 340, 340\}
+06160 ,\{ 310, 310, 310, 310, 310\}
+06161 ,\{ 290, 230, 290, 230, 290\}
+06162 ,\{ 310, 310, 310, 310, 310\}
+06163 \}
+06164 ,\{\{ 310, 310, 310, 310, 310\}
+06165 ,\{ 310, 310, 310, 310, 310\}
+06166 ,\{ 310, 310, 310, 310, 310\}
+06167 ,\{ 310, 310, 310, 310, 310\}
+06168 ,\{ 310, 310, 310, 310, 310\}
+06169 \}
+06170 ,\{\{ 370, 310, 370, 310, 370\}
+06171 ,\{ 370, 310, 370, 310, 370\}
+06172 ,\{ 310, 310, 310, 310, 310\}
+06173 ,\{ 180, 180, 180, 180, 180\}
+06174 ,\{ 310, 310, 310, 310, 310\}
+06175 \}
+06176 ,\{\{ 310, 310, 310, 310, 310\}
+06177 ,\{ 310, 310, 310, 310, 310\}
+06178 ,\{ 310, 310, 310, 310, 310\}
+06179 ,\{ 310, 310, 310, 310, 310\}
+06180 ,\{ 310, 310, 310, 310, 310\}
+06181 \}
+06182 \}
+06183 ,\{\{\{ 340, 230, 340, 310, 340\}
+06184 ,\{ 340, 220, 340, 310, 340\}
+06185 ,\{ 310, 230, 310, 180, 310\}
+06186 ,\{ 310, 170, 310, 310, 310\}
+06187 ,\{ 310, 230, 310, 310, 310\}
+06188 \}
+06189 ,\{\{ 340, 220, 340, 230, 340\}
+06190 ,\{ 340, 220, 340, 210, 340\}
+06191 ,\{ 310, 170, 310, 180, 310\}
+06192 ,\{ 230, 40, 230, 230, 230\}
+06193 ,\{ 310, 170, 310, 180, 310\}
+06194 \}
+06195 ,\{\{ 310, 230, 310, 180, 310\}
+06196 ,\{ 310, 170, 310, 180, 310\}
+06197 ,\{ 310, 230, 310, 180, 310\}
+06198 ,\{ 310, 170, 310, 180, 310\}
+06199 ,\{ 310, 230, 310, 180, 310\}
+06200 \}
+06201 ,\{\{ 310, 170, 310, 310, 310\}
+06202 ,\{ 310, 170, 310, 310, 310\}
+06203 ,\{ 310, 170, 310, 180, 310\}
+06204 ,\{ 310, 170, 180, 310, 180\}
+06205 ,\{ 310, 170, 310, 180, 310\}
+06206 \}
+06207 ,\{\{ 310, 230, 310, 310, 310\}
+06208 ,\{ 310, 170, 310, 180, 310\}
+06209 ,\{ 310, 230, 310, 180, 310\}
+06210 ,\{ 310, 170, 310, 180, 310\}
+06211 ,\{ 310, 170, 310, 310, 310\}
+06212 \}
+06213 \}
+06214 ,\{\{\{ 400, 340, 370, 340, 400\}
+06215 ,\{ 400, 340, 370, 340, 400\}
+06216 ,\{ 310, 310, 310, 310, 310\}
+06217 ,\{ 310, 310, 310, 310, 310\}
+06218 ,\{ 310, 310, 310, 310, 310\}
+06219 \}
+06220 ,\{\{ 400, 340, 340, 340, 400\}
+06221 ,\{ 400, 340, 340, 340, 400\}
+06222 ,\{ 310, 310, 310, 310, 310\}
+06223 ,\{ 290, 230, 290, 230, 230\}
+06224 ,\{ 310, 310, 310, 310, 310\}
+06225 \}
+06226 ,\{\{ 310, 310, 310, 310, 310\}
+06227 ,\{ 310, 310, 310, 310, 310\}
+06228 ,\{ 310, 310, 310, 310, 310\}
+06229 ,\{ 310, 310, 310, 310, 310\}
+06230 ,\{ 310, 310, 310, 310, 310\}
+06231 \}
+06232 ,\{\{ 370, 310, 370, 310, 310\}
+06233 ,\{ 370, 310, 370, 310, 310\}
+06234 ,\{ 310, 310, 310, 310, 310\}
+06235 ,\{ 310, 180, 180, 180, 310\}
+06236 ,\{ 310, 310, 310, 310, 310\}
+06237 \}
+06238 ,\{\{ 310, 310, 310, 310, 310\}
+06239 ,\{ 310, 310, 310, 310, 310\}
+06240 ,\{ 310, 310, 310, 310, 310\}
+06241 ,\{ 310, 310, 310, 310, 310\}
+06242 ,\{ 310, 310, 310, 310, 310\}
+06243 \}
+06244 \}
+06245 \}
+06246 \}
+06247 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06249 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06250 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06251 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06252 \}
+06253 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06256 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06257 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06258 \}
+06259 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06262 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06263 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06264 \}
+06265 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06268 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06269 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06270 \}
+06271 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06274 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06275 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06276 \}
+06277 \}
+06278 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06280 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06281 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06282 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06283 \}
+06284 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06285 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06286 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06287 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06288 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06289 \}
+06290 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06291 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06292 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06293 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06294 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06295 \}
+06296 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06299 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06300 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06301 \}
+06302 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06303 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06304 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06305 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06306 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06307 \}
+06308 \}
+06309 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06310 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06311 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06312 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06313 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06314 \}
+06315 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06316 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06317 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06318 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06319 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06320 \}
+06321 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06322 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06323 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06324 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06325 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06326 \}
+06327 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06328 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06329 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06330 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06331 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06332 \}
+06333 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06334 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06335 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06336 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06337 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06338 \}
+06339 \}
+06340 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06341 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06342 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06343 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06344 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06345 \}
+06346 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06349 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06350 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06351 \}
+06352 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06353 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06354 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06355 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06356 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06357 \}
+06358 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06359 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06360 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06361 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06362 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06363 \}
+06364 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06365 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06366 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06367 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06368 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06369 \}
+06370 \}
+06371 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06372 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06373 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06374 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06375 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06376 \}
+06377 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06378 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06379 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06380 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06381 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06382 \}
+06383 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06384 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06385 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06386 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06387 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06388 \}
+06389 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06390 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06391 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06392 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06393 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06394 \}
+06395 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06396 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06397 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06398 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06399 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06400 \}
+06401 \}
+06402 \}
+06403 ,\{\{\{\{ 240, 240, 220, 230, 220\}
+06404 ,\{ 240, 240, 220, 210, 220\}
+06405 ,\{ 230, 220, 210, 230, 210\}
+06406 ,\{ 240, 240, 220, 210, 220\}
+06407 ,\{ 210, 210, 190, 210, 190\}
+06408 \}
+06409 ,\{\{ 200, 200, 180, 170, 180\}
+06410 ,\{ 200, 200, 180, 170, 180\}
+06411 ,\{ 190, 190, 180, 170, 180\}
+06412 ,\{ 140, 100, 140, 80, 140\}
+06413 ,\{ 190, 190, 180, 170, 180\}
+06414 \}
+06415 ,\{\{ 240, 240, 220, 230, 220\}
+06416 ,\{ 240, 240, 220, 210, 220\}
+06417 ,\{ 230, 220, 210, 230, 210\}
+06418 ,\{ 240, 240, 220, 210, 220\}
+06419 ,\{ 210, 210, 190, 210, 190\}
+06420 \}
+06421 ,\{\{ 190, 190, 180, 170, 180\}
+06422 ,\{ 140, 100, 140, 80, 140\}
+06423 ,\{ 190, 190, 180, 170, 180\}
+06424 ,\{ 130, 50, 30, 130, 70\}
+06425 ,\{ 190, 190, 180, 170, 180\}
+06426 \}
+06427 ,\{\{ 240, 240, 220, 210, 220\}
+06428 ,\{ 240, 240, 220, 210, 220\}
+06429 ,\{ 210, 210, 190, 210, 190\}
+06430 ,\{ 240, 240, 220, 210, 220\}
+06431 ,\{ 180, 180, 100, 90, 100\}
+06432 \}
+06433 \}
+06434 ,\{\{\{ 240, 240, 220, 230, 220\}
+06435 ,\{ 240, 240, 220, 180, 220\}
+06436 ,\{ 230, 220, 210, 230, 210\}
+06437 ,\{ 240, 240, 220, 180, 220\}
+06438 ,\{ 210, 210, 190, 210, 190\}
+06439 \}
+06440 ,\{\{ 200, 200, 180, 140, 180\}
+06441 ,\{ 200, 200, 180, 140, 180\}
+06442 ,\{ 190, 190, 180, 140, 180\}
+06443 ,\{ 100, 100, 90, 50, 90\}
+06444 ,\{ 190, 190, 180, 140, 180\}
+06445 \}
+06446 ,\{\{ 240, 240, 220, 230, 220\}
+06447 ,\{ 240, 240, 220, 180, 220\}
+06448 ,\{ 230, 220, 210, 230, 210\}
+06449 ,\{ 240, 240, 220, 180, 220\}
+06450 ,\{ 210, 210, 190, 210, 190\}
+06451 \}
+06452 ,\{\{ 190, 190, 180, 140, 180\}
+06453 ,\{ 100, 100, 90, 50, 90\}
+06454 ,\{ 190, 190, 180, 140, 180\}
+06455 ,\{ 120, 50, 30, 120, 30\}
+06456 ,\{ 190, 190, 180, 140, 180\}
+06457 \}
+06458 ,\{\{ 240, 240, 220, 210, 220\}
+06459 ,\{ 240, 240, 220, 180, 220\}
+06460 ,\{ 210, 210, 190, 210, 190\}
+06461 ,\{ 240, 240, 220, 180, 220\}
+06462 ,\{ 180, 180, 100, 60, 100\}
+06463 \}
+06464 \}
+06465 ,\{\{\{ 220, 210, 220, 210, 220\}
+06466 ,\{ 220, 210, 220, 210, 220\}
+06467 ,\{ 200, 200, 200, 200, 200\}
+06468 ,\{ 220, 210, 220, 210, 220\}
+06469 ,\{ 190, 180, 190, 180, 190\}
+06470 \}
+06471 ,\{\{ 180, 170, 180, 170, 180\}
+06472 ,\{ 180, 170, 180, 170, 180\}
+06473 ,\{ 170, 170, 170, 170, 170\}
+06474 ,\{ 140, 80, 140, 80, 140\}
+06475 ,\{ 170, 170, 170, 170, 170\}
+06476 \}
+06477 ,\{\{ 220, 210, 220, 210, 220\}
+06478 ,\{ 220, 210, 220, 210, 220\}
+06479 ,\{ 200, 200, 200, 200, 200\}
+06480 ,\{ 220, 210, 220, 210, 220\}
+06481 ,\{ 190, 180, 190, 180, 190\}
+06482 \}
+06483 ,\{\{ 170, 170, 170, 170, 170\}
+06484 ,\{ 140, 80, 140, 80, 140\}
+06485 ,\{ 170, 170, 170, 170, 170\}
+06486 ,\{ 30, 20, 30, 20, 30\}
+06487 ,\{ 170, 170, 170, 170, 170\}
+06488 \}
+06489 ,\{\{ 220, 210, 220, 210, 220\}
+06490 ,\{ 220, 210, 220, 210, 220\}
+06491 ,\{ 190, 180, 190, 180, 190\}
+06492 ,\{ 220, 210, 220, 210, 220\}
+06493 ,\{ 100, 90, 100, 90, 100\}
+06494 \}
+06495 \}
+06496 ,\{\{\{ 220, 160, 220, 130, 220\}
+06497 ,\{ 220, 110, 220, 60, 220\}
+06498 ,\{ 210, 160, 210, 50, 210\}
+06499 ,\{ 220, 110, 220, 130, 220\}
+06500 ,\{ 190, 140, 190, 70, 190\}
+06501 \}
+06502 ,\{\{ 180, 70, 180, 60, 180\}
+06503 ,\{ 180, 70, 180, 20, 180\}
+06504 ,\{ 180, 70, 180, 20, 180\}
+06505 ,\{ 90, -20, 90, 60, 90\}
+06506 ,\{ 180, 70, 180, 20, 180\}
+06507 \}
+06508 ,\{\{ 220, 160, 220, 60, 220\}
+06509 ,\{ 220, 110, 220, 60, 220\}
+06510 ,\{ 210, 160, 210, 50, 210\}
+06511 ,\{ 220, 110, 220, 60, 220\}
+06512 ,\{ 190, 140, 190, 30, 190\}
+06513 \}
+06514 ,\{\{ 180, 70, 180, 130, 180\}
+06515 ,\{ 90, -20, 90, 60, 90\}
+06516 ,\{ 180, 70, 180, 20, 180\}
+06517 ,\{ 130, 50, 30, 130, 30\}
+06518 ,\{ 180, 70, 180, 20, 180\}
+06519 \}
+06520 ,\{\{ 220, 140, 220, 70, 220\}
+06521 ,\{ 220, 110, 220, 60, 220\}
+06522 ,\{ 190, 140, 190, 30, 190\}
+06523 ,\{ 220, 110, 220, 60, 220\}
+06524 ,\{ 100, 0, 100, 70, 100\}
+06525 \}
+06526 \}
+06527 ,\{\{\{ 220, 210, 220, 210, 150\}
+06528 ,\{ 220, 210, 220, 210, 150\}
+06529 ,\{ 200, 200, 200, 200, 110\}
+06530 ,\{ 220, 210, 220, 210, 130\}
+06531 ,\{ 190, 180, 190, 180, 100\}
+06532 \}
+06533 ,\{\{ 180, 170, 180, 170, 150\}
+06534 ,\{ 180, 170, 180, 170, 150\}
+06535 ,\{ 170, 170, 170, 170, 80\}
+06536 ,\{ 140, 80, 140, 80, 0\}
+06537 ,\{ 170, 170, 170, 170, 80\}
+06538 \}
+06539 ,\{\{ 220, 210, 220, 210, 130\}
+06540 ,\{ 220, 210, 220, 210, 130\}
+06541 ,\{ 200, 200, 200, 200, 110\}
+06542 ,\{ 220, 210, 220, 210, 130\}
+06543 ,\{ 190, 180, 190, 180, 100\}
+06544 \}
+06545 ,\{\{ 170, 170, 170, 170, 80\}
+06546 ,\{ 140, 80, 140, 80, 0\}
+06547 ,\{ 170, 170, 170, 170, 80\}
+06548 ,\{ 70, 20, 30, 20, 70\}
+06549 ,\{ 170, 170, 170, 170, 80\}
+06550 \}
+06551 ,\{\{ 220, 210, 220, 210, 130\}
+06552 ,\{ 220, 210, 220, 210, 130\}
+06553 ,\{ 190, 180, 190, 180, 100\}
+06554 ,\{ 220, 210, 220, 210, 130\}
+06555 ,\{ 100, 90, 100, 90, 10\}
+06556 \}
+06557 \}
+06558 \}
+06559 ,\{\{\{\{ 210, 210, 200, 200, 200\}
+06560 ,\{ 210, 210, 200, 190, 200\}
+06561 ,\{ 200, 190, 180, 200, 180\}
+06562 ,\{ 180, 180, 170, 160, 170\}
+06563 ,\{ 190, 190, 170, 190, 170\}
+06564 \}
+06565 ,\{\{ 210, 210, 200, 190, 200\}
+06566 ,\{ 210, 210, 200, 190, 200\}
+06567 ,\{ 190, 190, 170, 160, 170\}
+06568 ,\{ 50, 10, 50, -10, 50\}
+06569 ,\{ 190, 190, 170, 160, 170\}
+06570 \}
+06571 ,\{\{ 190, 190, 170, 190, 170\}
+06572 ,\{ 180, 180, 170, 160, 170\}
+06573 ,\{ 190, 190, 170, 190, 170\}
+06574 ,\{ 180, 180, 170, 160, 170\}
+06575 ,\{ 190, 190, 170, 190, 170\}
+06576 \}
+06577 ,\{\{ 190, 190, 170, 160, 170\}
+06578 ,\{ 110, 70, 110, 50, 110\}
+06579 ,\{ 190, 190, 170, 160, 170\}
+06580 ,\{ 130, 50, 30, 130, 70\}
+06581 ,\{ 190, 190, 170, 160, 170\}
+06582 \}
+06583 ,\{\{ 200, 190, 180, 200, 180\}
+06584 ,\{ 180, 180, 170, 160, 170\}
+06585 ,\{ 200, 190, 180, 200, 180\}
+06586 ,\{ 180, 180, 170, 160, 170\}
+06587 ,\{ 170, 170, 100, 90, 100\}
+06588 \}
+06589 \}
+06590 ,\{\{\{ 210, 210, 200, 200, 200\}
+06591 ,\{ 210, 210, 200, 160, 200\}
+06592 ,\{ 200, 190, 180, 200, 180\}
+06593 ,\{ 180, 180, 170, 130, 170\}
+06594 ,\{ 190, 190, 170, 190, 170\}
+06595 \}
+06596 ,\{\{ 210, 210, 200, 160, 200\}
+06597 ,\{ 210, 210, 200, 160, 200\}
+06598 ,\{ 190, 190, 170, 130, 170\}
+06599 ,\{ 10, 10, 0, -40, 0\}
+06600 ,\{ 190, 190, 170, 130, 170\}
+06601 \}
+06602 ,\{\{ 190, 190, 170, 190, 170\}
+06603 ,\{ 180, 180, 170, 130, 170\}
+06604 ,\{ 190, 190, 170, 190, 170\}
+06605 ,\{ 180, 180, 170, 130, 170\}
+06606 ,\{ 190, 190, 170, 190, 170\}
+06607 \}
+06608 ,\{\{ 190, 190, 170, 130, 170\}
+06609 ,\{ 70, 70, 60, 20, 60\}
+06610 ,\{ 190, 190, 170, 130, 170\}
+06611 ,\{ 120, 50, 30, 120, 30\}
+06612 ,\{ 190, 190, 170, 130, 170\}
+06613 \}
+06614 ,\{\{ 200, 190, 180, 200, 180\}
+06615 ,\{ 180, 180, 170, 130, 170\}
+06616 ,\{ 200, 190, 180, 200, 180\}
+06617 ,\{ 180, 180, 170, 130, 170\}
+06618 ,\{ 170, 170, 100, 60, 100\}
+06619 \}
+06620 \}
+06621 ,\{\{\{ 190, 190, 190, 190, 190\}
+06622 ,\{ 190, 190, 190, 190, 190\}
+06623 ,\{ 170, 170, 170, 170, 170\}
+06624 ,\{ 160, 160, 160, 160, 160\}
+06625 ,\{ 170, 160, 170, 160, 170\}
+06626 \}
+06627 ,\{\{ 190, 190, 190, 190, 190\}
+06628 ,\{ 190, 190, 190, 190, 190\}
+06629 ,\{ 170, 160, 170, 160, 170\}
+06630 ,\{ 50, -10, 50, -10, 50\}
+06631 ,\{ 170, 160, 170, 160, 170\}
+06632 \}
+06633 ,\{\{ 170, 160, 170, 160, 170\}
+06634 ,\{ 160, 160, 160, 160, 160\}
+06635 ,\{ 170, 160, 170, 160, 170\}
+06636 ,\{ 160, 160, 160, 160, 160\}
+06637 ,\{ 170, 160, 170, 160, 170\}
+06638 \}
+06639 ,\{\{ 170, 160, 170, 160, 170\}
+06640 ,\{ 110, 50, 110, 50, 110\}
+06641 ,\{ 170, 160, 170, 160, 170\}
+06642 ,\{ 30, 20, 30, 20, 30\}
+06643 ,\{ 170, 160, 170, 160, 170\}
+06644 \}
+06645 ,\{\{ 170, 170, 170, 170, 170\}
+06646 ,\{ 160, 160, 160, 160, 160\}
+06647 ,\{ 170, 170, 170, 170, 170\}
+06648 ,\{ 160, 160, 160, 160, 160\}
+06649 ,\{ 90, 90, 90, 90, 90\}
+06650 \}
+06651 \}
+06652 ,\{\{\{ 200, 130, 200, 130, 200\}
+06653 ,\{ 200, 90, 200, 40, 200\}
+06654 ,\{ 180, 130, 180, 20, 180\}
+06655 ,\{ 170, 60, 170, 130, 170\}
+06656 ,\{ 170, 120, 170, 70, 170\}
+06657 \}
+06658 ,\{\{ 200, 90, 200, 40, 200\}
+06659 ,\{ 200, 90, 200, 40, 200\}
+06660 ,\{ 170, 60, 170, 10, 170\}
+06661 ,\{ 0, -110, 0, -30, 0\}
+06662 ,\{ 170, 60, 170, 10, 170\}
+06663 \}
+06664 ,\{\{ 170, 120, 170, 10, 170\}
+06665 ,\{ 170, 60, 170, 10, 170\}
+06666 ,\{ 170, 120, 170, 10, 170\}
+06667 ,\{ 170, 60, 170, 10, 170\}
+06668 ,\{ 170, 120, 170, 10, 170\}
+06669 \}
+06670 ,\{\{ 170, 60, 170, 130, 170\}
+06671 ,\{ 60, -50, 60, 30, 60\}
+06672 ,\{ 170, 60, 170, 10, 170\}
+06673 ,\{ 130, 50, 30, 130, 30\}
+06674 ,\{ 170, 60, 170, 10, 170\}
+06675 \}
+06676 ,\{\{ 180, 130, 180, 70, 180\}
+06677 ,\{ 170, 60, 170, 10, 170\}
+06678 ,\{ 180, 130, 180, 20, 180\}
+06679 ,\{ 170, 60, 170, 10, 170\}
+06680 ,\{ 100, -10, 100, 70, 100\}
+06681 \}
+06682 \}
+06683 ,\{\{\{ 190, 190, 190, 190, 160\}
+06684 ,\{ 190, 190, 190, 190, 160\}
+06685 ,\{ 170, 170, 170, 170, 80\}
+06686 ,\{ 160, 160, 160, 160, 70\}
+06687 ,\{ 170, 160, 170, 160, 80\}
+06688 \}
+06689 ,\{\{ 190, 190, 190, 190, 160\}
+06690 ,\{ 190, 190, 190, 190, 160\}
+06691 ,\{ 170, 160, 170, 160, 80\}
+06692 ,\{ 50, -10, 50, -10, -100\}
+06693 ,\{ 170, 160, 170, 160, 80\}
+06694 \}
+06695 ,\{\{ 170, 160, 170, 160, 80\}
+06696 ,\{ 160, 160, 160, 160, 70\}
+06697 ,\{ 170, 160, 170, 160, 80\}
+06698 ,\{ 160, 160, 160, 160, 70\}
+06699 ,\{ 170, 160, 170, 160, 80\}
+06700 \}
+06701 ,\{\{ 170, 160, 170, 160, 80\}
+06702 ,\{ 110, 50, 110, 50, -30\}
+06703 ,\{ 170, 160, 170, 160, 80\}
+06704 ,\{ 70, 20, 30, 20, 70\}
+06705 ,\{ 170, 160, 170, 160, 80\}
+06706 \}
+06707 ,\{\{ 170, 170, 170, 170, 80\}
+06708 ,\{ 160, 160, 160, 160, 70\}
+06709 ,\{ 170, 170, 170, 170, 80\}
+06710 ,\{ 160, 160, 160, 160, 70\}
+06711 ,\{ 90, 90, 90, 90, 0\}
+06712 \}
+06713 \}
+06714 \}
+06715 ,\{\{\{\{ 370, 370, 330, 320, 330\}
+06716 ,\{ 340, 340, 330, 320, 330\}
+06717 ,\{ 310, 310, 290, 310, 290\}
+06718 ,\{ 310, 310, 290, 280, 290\}
+06719 ,\{ 370, 370, 290, 310, 290\}
+06720 \}
+06721 ,\{\{ 340, 340, 330, 320, 330\}
+06722 ,\{ 340, 340, 330, 320, 330\}
+06723 ,\{ 310, 310, 290, 280, 290\}
+06724 ,\{ 270, 230, 270, 200, 270\}
+06725 ,\{ 310, 310, 290, 280, 290\}
+06726 \}
+06727 ,\{\{ 310, 310, 290, 310, 290\}
+06728 ,\{ 310, 310, 290, 280, 290\}
+06729 ,\{ 310, 310, 290, 310, 290\}
+06730 ,\{ 310, 310, 290, 280, 290\}
+06731 ,\{ 310, 310, 290, 310, 290\}
+06732 \}
+06733 ,\{\{ 310, 310, 310, 280, 310\}
+06734 ,\{ 310, 270, 310, 240, 310\}
+06735 ,\{ 310, 310, 290, 280, 290\}
+06736 ,\{ 260, 180, 160, 260, 200\}
+06737 ,\{ 310, 310, 290, 280, 290\}
+06738 \}
+06739 ,\{\{ 370, 370, 290, 310, 290\}
+06740 ,\{ 310, 310, 290, 280, 290\}
+06741 ,\{ 310, 310, 290, 310, 290\}
+06742 ,\{ 310, 310, 290, 280, 290\}
+06743 ,\{ 370, 370, 290, 280, 290\}
+06744 \}
+06745 \}
+06746 ,\{\{\{ 370, 370, 330, 310, 330\}
+06747 ,\{ 340, 340, 330, 290, 330\}
+06748 ,\{ 310, 310, 290, 310, 290\}
+06749 ,\{ 310, 310, 290, 250, 290\}
+06750 ,\{ 370, 370, 290, 310, 290\}
+06751 \}
+06752 ,\{\{ 340, 340, 330, 290, 330\}
+06753 ,\{ 340, 340, 330, 290, 330\}
+06754 ,\{ 310, 310, 290, 250, 290\}
+06755 ,\{ 230, 230, 210, 170, 210\}
+06756 ,\{ 310, 310, 290, 250, 290\}
+06757 \}
+06758 ,\{\{ 310, 310, 290, 310, 290\}
+06759 ,\{ 310, 310, 290, 250, 290\}
+06760 ,\{ 310, 310, 290, 310, 290\}
+06761 ,\{ 310, 310, 290, 250, 290\}
+06762 ,\{ 310, 310, 290, 310, 290\}
+06763 \}
+06764 ,\{\{ 310, 310, 290, 250, 290\}
+06765 ,\{ 270, 270, 250, 210, 250\}
+06766 ,\{ 310, 310, 290, 250, 290\}
+06767 ,\{ 250, 180, 160, 250, 160\}
+06768 ,\{ 310, 310, 290, 250, 290\}
+06769 \}
+06770 ,\{\{ 370, 370, 290, 310, 290\}
+06771 ,\{ 310, 310, 290, 250, 290\}
+06772 ,\{ 310, 310, 290, 310, 290\}
+06773 ,\{ 310, 310, 290, 250, 290\}
+06774 ,\{ 370, 370, 290, 250, 290\}
+06775 \}
+06776 \}
+06777 ,\{\{\{ 320, 320, 320, 320, 320\}
+06778 ,\{ 320, 320, 320, 320, 320\}
+06779 ,\{ 290, 280, 290, 280, 290\}
+06780 ,\{ 290, 280, 290, 280, 290\}
+06781 ,\{ 290, 280, 290, 280, 290\}
+06782 \}
+06783 ,\{\{ 320, 320, 320, 320, 320\}
+06784 ,\{ 320, 320, 320, 320, 320\}
+06785 ,\{ 290, 280, 290, 280, 290\}
+06786 ,\{ 270, 200, 270, 200, 270\}
+06787 ,\{ 290, 280, 290, 280, 290\}
+06788 \}
+06789 ,\{\{ 290, 280, 290, 280, 290\}
+06790 ,\{ 290, 280, 290, 280, 290\}
+06791 ,\{ 290, 280, 290, 280, 290\}
+06792 ,\{ 290, 280, 290, 280, 290\}
+06793 ,\{ 290, 280, 290, 280, 290\}
+06794 \}
+06795 ,\{\{ 310, 280, 310, 280, 310\}
+06796 ,\{ 310, 240, 310, 240, 310\}
+06797 ,\{ 290, 280, 290, 280, 290\}
+06798 ,\{ 160, 150, 160, 150, 160\}
+06799 ,\{ 290, 280, 290, 280, 290\}
+06800 \}
+06801 ,\{\{ 290, 280, 290, 280, 290\}
+06802 ,\{ 290, 280, 290, 280, 290\}
+06803 ,\{ 290, 280, 290, 280, 290\}
+06804 ,\{ 290, 280, 290, 280, 290\}
+06805 ,\{ 290, 280, 290, 280, 290\}
+06806 \}
+06807 \}
+06808 ,\{\{\{ 330, 240, 330, 260, 330\}
+06809 ,\{ 330, 220, 330, 220, 330\}
+06810 ,\{ 290, 240, 290, 130, 290\}
+06811 ,\{ 290, 180, 290, 260, 290\}
+06812 ,\{ 290, 240, 290, 260, 290\}
+06813 \}
+06814 ,\{\{ 330, 220, 330, 180, 330\}
+06815 ,\{ 330, 220, 330, 170, 330\}
+06816 ,\{ 290, 180, 290, 130, 290\}
+06817 ,\{ 210, 100, 210, 180, 210\}
+06818 ,\{ 290, 180, 290, 130, 290\}
+06819 \}
+06820 ,\{\{ 290, 240, 290, 130, 290\}
+06821 ,\{ 290, 180, 290, 130, 290\}
+06822 ,\{ 290, 240, 290, 130, 290\}
+06823 ,\{ 290, 180, 290, 130, 290\}
+06824 ,\{ 290, 240, 290, 130, 290\}
+06825 \}
+06826 ,\{\{ 290, 180, 290, 260, 290\}
+06827 ,\{ 250, 140, 250, 220, 250\}
+06828 ,\{ 290, 180, 290, 130, 290\}
+06829 ,\{ 260, 180, 160, 260, 160\}
+06830 ,\{ 290, 180, 290, 130, 290\}
+06831 \}
+06832 ,\{\{ 290, 240, 290, 260, 290\}
+06833 ,\{ 290, 180, 290, 130, 290\}
+06834 ,\{ 290, 240, 290, 130, 290\}
+06835 ,\{ 290, 180, 290, 130, 290\}
+06836 ,\{ 290, 180, 290, 260, 290\}
+06837 \}
+06838 \}
+06839 ,\{\{\{ 320, 320, 320, 320, 290\}
+06840 ,\{ 320, 320, 320, 320, 290\}
+06841 ,\{ 290, 280, 290, 280, 200\}
+06842 ,\{ 290, 280, 290, 280, 200\}
+06843 ,\{ 290, 280, 290, 280, 200\}
+06844 \}
+06845 ,\{\{ 320, 320, 320, 320, 290\}
+06846 ,\{ 320, 320, 320, 320, 290\}
+06847 ,\{ 290, 280, 290, 280, 200\}
+06848 ,\{ 270, 200, 270, 200, 120\}
+06849 ,\{ 290, 280, 290, 280, 200\}
+06850 \}
+06851 ,\{\{ 290, 280, 290, 280, 200\}
+06852 ,\{ 290, 280, 290, 280, 200\}
+06853 ,\{ 290, 280, 290, 280, 200\}
+06854 ,\{ 290, 280, 290, 280, 200\}
+06855 ,\{ 290, 280, 290, 280, 200\}
+06856 \}
+06857 ,\{\{ 310, 280, 310, 280, 200\}
+06858 ,\{ 310, 240, 310, 240, 160\}
+06859 ,\{ 290, 280, 290, 280, 200\}
+06860 ,\{ 200, 150, 160, 150, 200\}
+06861 ,\{ 290, 280, 290, 280, 200\}
+06862 \}
+06863 ,\{\{ 290, 280, 290, 280, 200\}
+06864 ,\{ 290, 280, 290, 280, 200\}
+06865 ,\{ 290, 280, 290, 280, 200\}
+06866 ,\{ 290, 280, 290, 280, 200\}
+06867 ,\{ 290, 280, 290, 280, 200\}
+06868 \}
+06869 \}
+06870 \}
+06871 ,\{\{\{\{ 350, 340, 350, 280, 350\}
+06872 ,\{ 350, 310, 350, 280, 350\}
+06873 ,\{ 280, 280, 260, 280, 260\}
+06874 ,\{ 280, 280, 260, 250, 260\}
+06875 ,\{ 340, 340, 260, 280, 260\}
+06876 \}
+06877 ,\{\{ 280, 280, 260, 250, 260\}
+06878 ,\{ 240, 240, 230, 220, 230\}
+06879 ,\{ 280, 280, 260, 250, 260\}
+06880 ,\{ 180, 140, 180, 120, 180\}
+06881 ,\{ 280, 280, 260, 250, 260\}
+06882 \}
+06883 ,\{\{ 280, 280, 260, 280, 260\}
+06884 ,\{ 280, 280, 260, 250, 260\}
+06885 ,\{ 280, 280, 260, 280, 260\}
+06886 ,\{ 280, 280, 260, 250, 260\}
+06887 ,\{ 280, 280, 260, 280, 260\}
+06888 \}
+06889 ,\{\{ 350, 310, 350, 280, 350\}
+06890 ,\{ 350, 310, 350, 280, 350\}
+06891 ,\{ 280, 280, 260, 250, 260\}
+06892 ,\{ 230, 150, 130, 230, 170\}
+06893 ,\{ 280, 280, 260, 250, 260\}
+06894 \}
+06895 ,\{\{ 340, 340, 260, 280, 260\}
+06896 ,\{ 280, 280, 260, 250, 260\}
+06897 ,\{ 280, 280, 260, 280, 260\}
+06898 ,\{ 280, 280, 260, 250, 260\}
+06899 ,\{ 340, 340, 260, 250, 260\}
+06900 \}
+06901 \}
+06902 ,\{\{\{ 340, 340, 290, 280, 290\}
+06903 ,\{ 310, 310, 290, 250, 290\}
+06904 ,\{ 280, 280, 260, 280, 260\}
+06905 ,\{ 280, 280, 260, 220, 260\}
+06906 ,\{ 340, 340, 260, 280, 260\}
+06907 \}
+06908 ,\{\{ 280, 280, 260, 220, 260\}
+06909 ,\{ 240, 240, 230, 190, 230\}
+06910 ,\{ 280, 280, 260, 220, 260\}
+06911 ,\{ 140, 140, 130, 90, 130\}
+06912 ,\{ 280, 280, 260, 220, 260\}
+06913 \}
+06914 ,\{\{ 280, 280, 260, 280, 260\}
+06915 ,\{ 280, 280, 260, 220, 260\}
+06916 ,\{ 280, 280, 260, 280, 260\}
+06917 ,\{ 280, 280, 260, 220, 260\}
+06918 ,\{ 280, 280, 260, 280, 260\}
+06919 \}
+06920 ,\{\{ 310, 310, 290, 250, 290\}
+06921 ,\{ 310, 310, 290, 250, 290\}
+06922 ,\{ 280, 280, 260, 220, 260\}
+06923 ,\{ 220, 150, 130, 220, 130\}
+06924 ,\{ 280, 280, 260, 220, 260\}
+06925 \}
+06926 ,\{\{ 340, 340, 260, 280, 260\}
+06927 ,\{ 280, 280, 260, 220, 260\}
+06928 ,\{ 280, 280, 260, 280, 260\}
+06929 ,\{ 280, 280, 260, 220, 260\}
+06930 ,\{ 340, 340, 260, 220, 260\}
+06931 \}
+06932 \}
+06933 ,\{\{\{ 350, 280, 350, 280, 350\}
+06934 ,\{ 350, 280, 350, 280, 350\}
+06935 ,\{ 260, 250, 260, 250, 260\}
+06936 ,\{ 260, 250, 260, 250, 260\}
+06937 ,\{ 260, 250, 260, 250, 260\}
+06938 \}
+06939 ,\{\{ 260, 250, 260, 250, 260\}
+06940 ,\{ 220, 220, 220, 220, 220\}
+06941 ,\{ 260, 250, 260, 250, 260\}
+06942 ,\{ 180, 120, 180, 120, 180\}
+06943 ,\{ 260, 250, 260, 250, 260\}
+06944 \}
+06945 ,\{\{ 260, 250, 260, 250, 260\}
+06946 ,\{ 260, 250, 260, 250, 260\}
+06947 ,\{ 260, 250, 260, 250, 260\}
+06948 ,\{ 260, 250, 260, 250, 260\}
+06949 ,\{ 260, 250, 260, 250, 260\}
+06950 \}
+06951 ,\{\{ 350, 280, 350, 280, 350\}
+06952 ,\{ 350, 280, 350, 280, 350\}
+06953 ,\{ 260, 250, 260, 250, 260\}
+06954 ,\{ 130, 120, 130, 120, 130\}
+06955 ,\{ 260, 250, 260, 250, 260\}
+06956 \}
+06957 ,\{\{ 260, 250, 260, 250, 260\}
+06958 ,\{ 260, 250, 260, 250, 260\}
+06959 ,\{ 260, 250, 260, 250, 260\}
+06960 ,\{ 260, 250, 260, 250, 260\}
+06961 ,\{ 260, 250, 260, 250, 260\}
+06962 \}
+06963 \}
+06964 ,\{\{\{ 290, 210, 290, 260, 290\}
+06965 ,\{ 290, 180, 290, 260, 290\}
+06966 ,\{ 260, 210, 260, 100, 260\}
+06967 ,\{ 260, 150, 260, 230, 260\}
+06968 ,\{ 260, 210, 260, 230, 260\}
+06969 \}
+06970 ,\{\{ 260, 150, 260, 100, 260\}
+06971 ,\{ 230, 120, 230, 70, 230\}
+06972 ,\{ 260, 150, 260, 100, 260\}
+06973 ,\{ 130, 20, 130, 100, 130\}
+06974 ,\{ 260, 150, 260, 100, 260\}
+06975 \}
+06976 ,\{\{ 260, 210, 260, 100, 260\}
+06977 ,\{ 260, 150, 260, 100, 260\}
+06978 ,\{ 260, 210, 260, 100, 260\}
+06979 ,\{ 260, 150, 260, 100, 260\}
+06980 ,\{ 260, 210, 260, 100, 260\}
+06981 \}
+06982 ,\{\{ 290, 180, 290, 260, 290\}
+06983 ,\{ 290, 180, 290, 260, 290\}
+06984 ,\{ 260, 150, 260, 100, 260\}
+06985 ,\{ 230, 150, 130, 230, 130\}
+06986 ,\{ 260, 150, 260, 100, 260\}
+06987 \}
+06988 ,\{\{ 260, 210, 260, 230, 260\}
+06989 ,\{ 260, 150, 260, 100, 260\}
+06990 ,\{ 260, 210, 260, 100, 260\}
+06991 ,\{ 260, 150, 260, 100, 260\}
+06992 ,\{ 260, 150, 260, 230, 260\}
+06993 \}
+06994 \}
+06995 ,\{\{\{ 350, 280, 350, 280, 200\}
+06996 ,\{ 350, 280, 350, 280, 200\}
+06997 ,\{ 260, 250, 260, 250, 170\}
+06998 ,\{ 260, 250, 260, 250, 170\}
+06999 ,\{ 260, 250, 260, 250, 170\}
+07000 \}
+07001 ,\{\{ 260, 250, 260, 250, 190\}
+07002 ,\{ 220, 220, 220, 220, 190\}
+07003 ,\{ 260, 250, 260, 250, 170\}
+07004 ,\{ 180, 120, 180, 120, 30\}
+07005 ,\{ 260, 250, 260, 250, 170\}
+07006 \}
+07007 ,\{\{ 260, 250, 260, 250, 170\}
+07008 ,\{ 260, 250, 260, 250, 170\}
+07009 ,\{ 260, 250, 260, 250, 170\}
+07010 ,\{ 260, 250, 260, 250, 170\}
+07011 ,\{ 260, 250, 260, 250, 170\}
+07012 \}
+07013 ,\{\{ 350, 280, 350, 280, 200\}
+07014 ,\{ 350, 280, 350, 280, 200\}
+07015 ,\{ 260, 250, 260, 250, 170\}
+07016 ,\{ 170, 120, 130, 120, 170\}
+07017 ,\{ 260, 250, 260, 250, 170\}
+07018 \}
+07019 ,\{\{ 260, 250, 260, 250, 170\}
+07020 ,\{ 260, 250, 260, 250, 170\}
+07021 ,\{ 260, 250, 260, 250, 170\}
+07022 ,\{ 260, 250, 260, 250, 170\}
+07023 ,\{ 260, 250, 260, 250, 170\}
+07024 \}
+07025 \}
+07026 \}
+07027 ,\{\{\{\{ 280, 280, 260, 260, 260\}
+07028 ,\{ 280, 280, 260, 250, 260\}
+07029 ,\{ 260, 260, 240, 260, 240\}
+07030 ,\{ 260, 260, 250, 240, 250\}
+07031 ,\{ 260, 260, 240, 260, 240\}
+07032 \}
+07033 ,\{\{ 280, 280, 260, 250, 260\}
+07034 ,\{ 280, 280, 260, 250, 260\}
+07035 ,\{ 250, 250, 240, 230, 240\}
+07036 ,\{ 190, 150, 190, 130, 190\}
+07037 ,\{ 250, 250, 240, 230, 240\}
+07038 \}
+07039 ,\{\{ 260, 260, 250, 260, 250\}
+07040 ,\{ 260, 260, 250, 240, 250\}
+07041 ,\{ 260, 260, 240, 260, 240\}
+07042 ,\{ 260, 260, 250, 240, 250\}
+07043 ,\{ 260, 260, 240, 260, 240\}
+07044 \}
+07045 ,\{\{ 260, 250, 260, 230, 260\}
+07046 ,\{ 260, 220, 260, 200, 260\}
+07047 ,\{ 250, 250, 240, 230, 240\}
+07048 ,\{ 190, 110, 90, 190, 120\}
+07049 ,\{ 250, 250, 240, 230, 240\}
+07050 \}
+07051 ,\{\{ 260, 260, 250, 260, 250\}
+07052 ,\{ 260, 260, 250, 240, 250\}
+07053 ,\{ 260, 260, 240, 260, 240\}
+07054 ,\{ 260, 260, 250, 240, 250\}
+07055 ,\{ 230, 230, 150, 140, 150\}
+07056 \}
+07057 \}
+07058 ,\{\{\{ 280, 280, 260, 260, 260\}
+07059 ,\{ 280, 280, 260, 220, 260\}
+07060 ,\{ 260, 260, 240, 260, 240\}
+07061 ,\{ 260, 260, 250, 210, 250\}
+07062 ,\{ 260, 260, 240, 260, 240\}
+07063 \}
+07064 ,\{\{ 280, 280, 260, 220, 260\}
+07065 ,\{ 280, 280, 260, 220, 260\}
+07066 ,\{ 250, 250, 240, 200, 240\}
+07067 ,\{ 150, 150, 140, 100, 140\}
+07068 ,\{ 250, 250, 240, 200, 240\}
+07069 \}
+07070 ,\{\{ 260, 260, 250, 260, 250\}
+07071 ,\{ 260, 260, 250, 210, 250\}
+07072 ,\{ 260, 260, 240, 260, 240\}
+07073 ,\{ 260, 260, 250, 210, 250\}
+07074 ,\{ 260, 260, 240, 260, 240\}
+07075 \}
+07076 ,\{\{ 250, 250, 240, 200, 240\}
+07077 ,\{ 220, 220, 210, 170, 210\}
+07078 ,\{ 250, 250, 240, 200, 240\}
+07079 ,\{ 180, 100, 90, 180, 90\}
+07080 ,\{ 250, 250, 240, 200, 240\}
+07081 \}
+07082 ,\{\{ 260, 260, 250, 260, 250\}
+07083 ,\{ 260, 260, 250, 210, 250\}
+07084 ,\{ 260, 260, 240, 260, 240\}
+07085 ,\{ 260, 260, 250, 210, 250\}
+07086 ,\{ 230, 230, 150, 110, 150\}
+07087 \}
+07088 \}
+07089 ,\{\{\{ 260, 250, 260, 250, 260\}
+07090 ,\{ 260, 250, 260, 250, 260\}
+07091 ,\{ 240, 230, 240, 230, 240\}
+07092 ,\{ 240, 240, 240, 240, 240\}
+07093 ,\{ 240, 230, 240, 230, 240\}
+07094 \}
+07095 ,\{\{ 260, 250, 260, 250, 260\}
+07096 ,\{ 260, 250, 260, 250, 260\}
+07097 ,\{ 230, 230, 230, 230, 230\}
+07098 ,\{ 190, 130, 190, 130, 190\}
+07099 ,\{ 230, 230, 230, 230, 230\}
+07100 \}
+07101 ,\{\{ 240, 240, 240, 240, 240\}
+07102 ,\{ 240, 240, 240, 240, 240\}
+07103 ,\{ 240, 230, 240, 230, 240\}
+07104 ,\{ 240, 240, 240, 240, 240\}
+07105 ,\{ 240, 230, 240, 230, 240\}
+07106 \}
+07107 ,\{\{ 260, 230, 260, 230, 260\}
+07108 ,\{ 260, 200, 260, 200, 260\}
+07109 ,\{ 230, 230, 230, 230, 230\}
+07110 ,\{ 80, 80, 80, 80, 80\}
+07111 ,\{ 230, 230, 230, 230, 230\}
+07112 \}
+07113 ,\{\{ 240, 240, 240, 240, 240\}
+07114 ,\{ 240, 240, 240, 240, 240\}
+07115 ,\{ 240, 230, 240, 230, 240\}
+07116 ,\{ 240, 240, 240, 240, 240\}
+07117 ,\{ 150, 140, 150, 140, 150\}
+07118 \}
+07119 \}
+07120 ,\{\{\{ 260, 190, 260, 190, 260\}
+07121 ,\{ 260, 150, 260, 180, 260\}
+07122 ,\{ 240, 190, 240, 80, 240\}
+07123 ,\{ 250, 140, 250, 190, 250\}
+07124 ,\{ 240, 190, 240, 120, 240\}
+07125 \}
+07126 ,\{\{ 260, 150, 260, 110, 260\}
+07127 ,\{ 260, 150, 260, 100, 260\}
+07128 ,\{ 240, 130, 240, 80, 240\}
+07129 ,\{ 140, 30, 140, 110, 140\}
+07130 ,\{ 240, 130, 240, 80, 240\}
+07131 \}
+07132 ,\{\{ 250, 190, 250, 90, 250\}
+07133 ,\{ 250, 140, 250, 90, 250\}
+07134 ,\{ 240, 190, 240, 80, 240\}
+07135 ,\{ 250, 140, 250, 90, 250\}
+07136 ,\{ 240, 190, 240, 80, 240\}
+07137 \}
+07138 ,\{\{ 240, 130, 240, 190, 240\}
+07139 ,\{ 210, 100, 210, 180, 210\}
+07140 ,\{ 240, 130, 240, 80, 240\}
+07141 ,\{ 190, 110, 90, 190, 90\}
+07142 ,\{ 240, 130, 240, 80, 240\}
+07143 \}
+07144 ,\{\{ 250, 190, 250, 120, 250\}
+07145 ,\{ 250, 140, 250, 90, 250\}
+07146 ,\{ 240, 190, 240, 80, 240\}
+07147 ,\{ 250, 140, 250, 90, 250\}
+07148 ,\{ 150, 40, 150, 120, 150\}
+07149 \}
+07150 \}
+07151 ,\{\{\{ 260, 250, 260, 250, 230\}
+07152 ,\{ 260, 250, 260, 250, 230\}
+07153 ,\{ 240, 230, 240, 230, 150\}
+07154 ,\{ 240, 240, 240, 240, 150\}
+07155 ,\{ 240, 230, 240, 230, 150\}
+07156 \}
+07157 ,\{\{ 260, 250, 260, 250, 230\}
+07158 ,\{ 260, 250, 260, 250, 230\}
+07159 ,\{ 230, 230, 230, 230, 140\}
+07160 ,\{ 190, 130, 190, 130, 40\}
+07161 ,\{ 230, 230, 230, 230, 140\}
+07162 \}
+07163 ,\{\{ 240, 240, 240, 240, 150\}
+07164 ,\{ 240, 240, 240, 240, 150\}
+07165 ,\{ 240, 230, 240, 230, 150\}
+07166 ,\{ 240, 240, 240, 240, 150\}
+07167 ,\{ 240, 230, 240, 230, 150\}
+07168 \}
+07169 ,\{\{ 260, 230, 260, 230, 140\}
+07170 ,\{ 260, 200, 260, 200, 110\}
+07171 ,\{ 230, 230, 230, 230, 140\}
+07172 ,\{ 120, 80, 80, 80, 120\}
+07173 ,\{ 230, 230, 230, 230, 140\}
+07174 \}
+07175 ,\{\{ 240, 240, 240, 240, 150\}
+07176 ,\{ 240, 240, 240, 240, 150\}
+07177 ,\{ 240, 230, 240, 230, 150\}
+07178 ,\{ 240, 240, 240, 240, 150\}
+07179 ,\{ 150, 140, 150, 140, 60\}
+07180 \}
+07181 \}
+07182 \}
+07183 ,\{\{\{\{ 280, 280, 260, 280, 260\}
+07184 ,\{ 280, 280, 260, 250, 260\}
+07185 ,\{ 280, 280, 260, 280, 260\}
+07186 ,\{ 280, 280, 260, 250, 260\}
+07187 ,\{ 280, 280, 260, 280, 260\}
+07188 \}
+07189 ,\{\{ 280, 280, 260, 250, 260\}
+07190 ,\{ 280, 280, 260, 250, 260\}
+07191 ,\{ 230, 230, 220, 210, 220\}
+07192 ,\{ 210, 170, 210, 150, 210\}
+07193 ,\{ 230, 230, 220, 210, 220\}
+07194 \}
+07195 ,\{\{ 280, 280, 260, 280, 260\}
+07196 ,\{ 280, 280, 260, 250, 260\}
+07197 ,\{ 280, 280, 260, 280, 260\}
+07198 ,\{ 280, 280, 260, 250, 260\}
+07199 ,\{ 280, 280, 260, 280, 260\}
+07200 \}
+07201 ,\{\{ 230, 230, 220, 210, 220\}
+07202 ,\{ 220, 180, 220, 160, 220\}
+07203 ,\{ 230, 230, 220, 210, 220\}
+07204 ,\{ 210, 130, 110, 210, 140\}
+07205 ,\{ 230, 230, 220, 210, 220\}
+07206 \}
+07207 ,\{\{ 280, 280, 260, 250, 260\}
+07208 ,\{ 280, 280, 260, 250, 260\}
+07209 ,\{ 250, 250, 230, 250, 230\}
+07210 ,\{ 280, 280, 260, 250, 260\}
+07211 ,\{ 250, 250, 180, 170, 180\}
+07212 \}
+07213 \}
+07214 ,\{\{\{ 280, 280, 260, 280, 260\}
+07215 ,\{ 280, 280, 260, 220, 260\}
+07216 ,\{ 280, 280, 260, 280, 260\}
+07217 ,\{ 280, 280, 260, 220, 260\}
+07218 ,\{ 280, 280, 260, 280, 260\}
+07219 \}
+07220 ,\{\{ 280, 280, 260, 220, 260\}
+07221 ,\{ 280, 280, 260, 220, 260\}
+07222 ,\{ 230, 230, 220, 180, 220\}
+07223 ,\{ 170, 170, 160, 120, 160\}
+07224 ,\{ 230, 230, 220, 180, 220\}
+07225 \}
+07226 ,\{\{ 280, 280, 260, 280, 260\}
+07227 ,\{ 280, 280, 260, 220, 260\}
+07228 ,\{ 280, 280, 260, 280, 260\}
+07229 ,\{ 280, 280, 260, 220, 260\}
+07230 ,\{ 280, 280, 260, 280, 260\}
+07231 \}
+07232 ,\{\{ 230, 230, 220, 200, 220\}
+07233 ,\{ 180, 180, 170, 130, 170\}
+07234 ,\{ 230, 230, 220, 180, 220\}
+07235 ,\{ 200, 120, 110, 200, 110\}
+07236 ,\{ 230, 230, 220, 180, 220\}
+07237 \}
+07238 ,\{\{ 280, 280, 260, 250, 260\}
+07239 ,\{ 280, 280, 260, 220, 260\}
+07240 ,\{ 250, 250, 230, 250, 230\}
+07241 ,\{ 280, 280, 260, 220, 260\}
+07242 ,\{ 250, 250, 180, 140, 180\}
+07243 \}
+07244 \}
+07245 ,\{\{\{ 260, 250, 260, 250, 260\}
+07246 ,\{ 260, 250, 260, 250, 260\}
+07247 ,\{ 260, 250, 260, 250, 260\}
+07248 ,\{ 260, 250, 260, 250, 260\}
+07249 ,\{ 260, 250, 260, 250, 260\}
+07250 \}
+07251 ,\{\{ 260, 250, 260, 250, 260\}
+07252 ,\{ 260, 250, 260, 250, 260\}
+07253 ,\{ 210, 210, 210, 210, 210\}
+07254 ,\{ 210, 150, 210, 150, 210\}
+07255 ,\{ 210, 210, 210, 210, 210\}
+07256 \}
+07257 ,\{\{ 260, 250, 260, 250, 260\}
+07258 ,\{ 260, 250, 260, 250, 260\}
+07259 ,\{ 260, 250, 260, 250, 260\}
+07260 ,\{ 260, 250, 260, 250, 260\}
+07261 ,\{ 260, 250, 260, 250, 260\}
+07262 \}
+07263 ,\{\{ 220, 210, 220, 210, 220\}
+07264 ,\{ 220, 160, 220, 160, 220\}
+07265 ,\{ 210, 210, 210, 210, 210\}
+07266 ,\{ 100, 100, 100, 100, 100\}
+07267 ,\{ 210, 210, 210, 210, 210\}
+07268 \}
+07269 ,\{\{ 260, 250, 260, 250, 260\}
+07270 ,\{ 260, 250, 260, 250, 260\}
+07271 ,\{ 230, 220, 230, 220, 230\}
+07272 ,\{ 260, 250, 260, 250, 260\}
+07273 ,\{ 170, 170, 170, 170, 170\}
+07274 \}
+07275 \}
+07276 ,\{\{\{ 260, 210, 260, 210, 260\}
+07277 ,\{ 260, 150, 260, 140, 260\}
+07278 ,\{ 260, 210, 260, 100, 260\}
+07279 ,\{ 260, 150, 260, 210, 260\}
+07280 ,\{ 260, 210, 260, 150, 260\}
+07281 \}
+07282 ,\{\{ 260, 150, 260, 130, 260\}
+07283 ,\{ 260, 150, 260, 100, 260\}
+07284 ,\{ 220, 110, 220, 60, 220\}
+07285 ,\{ 160, 50, 160, 130, 160\}
+07286 ,\{ 220, 110, 220, 60, 220\}
+07287 \}
+07288 ,\{\{ 260, 210, 260, 100, 260\}
+07289 ,\{ 260, 150, 260, 100, 260\}
+07290 ,\{ 260, 210, 260, 100, 260\}
+07291 ,\{ 260, 150, 260, 100, 260\}
+07292 ,\{ 260, 210, 260, 100, 260\}
+07293 \}
+07294 ,\{\{ 220, 130, 220, 210, 220\}
+07295 ,\{ 170, 60, 170, 140, 170\}
+07296 ,\{ 220, 110, 220, 60, 220\}
+07297 ,\{ 210, 130, 110, 210, 110\}
+07298 ,\{ 220, 110, 220, 60, 220\}
+07299 \}
+07300 ,\{\{ 260, 180, 260, 150, 260\}
+07301 ,\{ 260, 150, 260, 100, 260\}
+07302 ,\{ 230, 180, 230, 70, 230\}
+07303 ,\{ 260, 150, 260, 100, 260\}
+07304 ,\{ 180, 70, 180, 150, 180\}
+07305 \}
+07306 \}
+07307 ,\{\{\{ 260, 250, 260, 250, 230\}
+07308 ,\{ 260, 250, 260, 250, 230\}
+07309 ,\{ 260, 250, 260, 250, 170\}
+07310 ,\{ 260, 250, 260, 250, 170\}
+07311 ,\{ 260, 250, 260, 250, 170\}
+07312 \}
+07313 ,\{\{ 260, 250, 260, 250, 230\}
+07314 ,\{ 260, 250, 260, 250, 230\}
+07315 ,\{ 210, 210, 210, 210, 120\}
+07316 ,\{ 210, 150, 210, 150, 60\}
+07317 ,\{ 210, 210, 210, 210, 120\}
+07318 \}
+07319 ,\{\{ 260, 250, 260, 250, 170\}
+07320 ,\{ 260, 250, 260, 250, 170\}
+07321 ,\{ 260, 250, 260, 250, 170\}
+07322 ,\{ 260, 250, 260, 250, 170\}
+07323 ,\{ 260, 250, 260, 250, 170\}
+07324 \}
+07325 ,\{\{ 220, 210, 220, 210, 140\}
+07326 ,\{ 220, 160, 220, 160, 70\}
+07327 ,\{ 210, 210, 210, 210, 120\}
+07328 ,\{ 140, 100, 100, 100, 140\}
+07329 ,\{ 210, 210, 210, 210, 120\}
+07330 \}
+07331 ,\{\{ 260, 250, 260, 250, 170\}
+07332 ,\{ 260, 250, 260, 250, 170\}
+07333 ,\{ 230, 220, 230, 220, 140\}
+07334 ,\{ 260, 250, 260, 250, 170\}
+07335 ,\{ 170, 170, 170, 170, 80\}
+07336 \}
+07337 \}
+07338 \}
+07339 ,\{\{\{\{ 370, 370, 350, 320, 350\}
+07340 ,\{ 350, 340, 350, 320, 350\}
+07341 ,\{ 310, 310, 290, 310, 290\}
+07342 ,\{ 310, 310, 290, 280, 290\}
+07343 ,\{ 370, 370, 290, 310, 290\}
+07344 \}
+07345 ,\{\{ 340, 340, 330, 320, 330\}
+07346 ,\{ 340, 340, 330, 320, 330\}
+07347 ,\{ 310, 310, 290, 280, 290\}
+07348 ,\{ 270, 230, 270, 200, 270\}
+07349 ,\{ 310, 310, 290, 280, 290\}
+07350 \}
+07351 ,\{\{ 310, 310, 290, 310, 290\}
+07352 ,\{ 310, 310, 290, 280, 290\}
+07353 ,\{ 310, 310, 290, 310, 290\}
+07354 ,\{ 310, 310, 290, 280, 290\}
+07355 ,\{ 310, 310, 290, 310, 290\}
+07356 \}
+07357 ,\{\{ 350, 310, 350, 280, 350\}
+07358 ,\{ 350, 310, 350, 280, 350\}
+07359 ,\{ 310, 310, 290, 280, 290\}
+07360 ,\{ 260, 180, 160, 260, 200\}
+07361 ,\{ 310, 310, 290, 280, 290\}
+07362 \}
+07363 ,\{\{ 370, 370, 290, 310, 290\}
+07364 ,\{ 310, 310, 290, 280, 290\}
+07365 ,\{ 310, 310, 290, 310, 290\}
+07366 ,\{ 310, 310, 290, 280, 290\}
+07367 ,\{ 370, 370, 290, 280, 290\}
+07368 \}
+07369 \}
+07370 ,\{\{\{ 370, 370, 330, 310, 330\}
+07371 ,\{ 340, 340, 330, 290, 330\}
+07372 ,\{ 310, 310, 290, 310, 290\}
+07373 ,\{ 310, 310, 290, 250, 290\}
+07374 ,\{ 370, 370, 290, 310, 290\}
+07375 \}
+07376 ,\{\{ 340, 340, 330, 290, 330\}
+07377 ,\{ 340, 340, 330, 290, 330\}
+07378 ,\{ 310, 310, 290, 250, 290\}
+07379 ,\{ 230, 230, 210, 170, 210\}
+07380 ,\{ 310, 310, 290, 250, 290\}
+07381 \}
+07382 ,\{\{ 310, 310, 290, 310, 290\}
+07383 ,\{ 310, 310, 290, 250, 290\}
+07384 ,\{ 310, 310, 290, 310, 290\}
+07385 ,\{ 310, 310, 290, 250, 290\}
+07386 ,\{ 310, 310, 290, 310, 290\}
+07387 \}
+07388 ,\{\{ 310, 310, 290, 250, 290\}
+07389 ,\{ 310, 310, 290, 250, 290\}
+07390 ,\{ 310, 310, 290, 250, 290\}
+07391 ,\{ 250, 180, 160, 250, 160\}
+07392 ,\{ 310, 310, 290, 250, 290\}
+07393 \}
+07394 ,\{\{ 370, 370, 290, 310, 290\}
+07395 ,\{ 310, 310, 290, 250, 290\}
+07396 ,\{ 310, 310, 290, 310, 290\}
+07397 ,\{ 310, 310, 290, 250, 290\}
+07398 ,\{ 370, 370, 290, 250, 290\}
+07399 \}
+07400 \}
+07401 ,\{\{\{ 350, 320, 350, 320, 350\}
+07402 ,\{ 350, 320, 350, 320, 350\}
+07403 ,\{ 290, 280, 290, 280, 290\}
+07404 ,\{ 290, 280, 290, 280, 290\}
+07405 ,\{ 290, 280, 290, 280, 290\}
+07406 \}
+07407 ,\{\{ 320, 320, 320, 320, 320\}
+07408 ,\{ 320, 320, 320, 320, 320\}
+07409 ,\{ 290, 280, 290, 280, 290\}
+07410 ,\{ 270, 200, 270, 200, 270\}
+07411 ,\{ 290, 280, 290, 280, 290\}
+07412 \}
+07413 ,\{\{ 290, 280, 290, 280, 290\}
+07414 ,\{ 290, 280, 290, 280, 290\}
+07415 ,\{ 290, 280, 290, 280, 290\}
+07416 ,\{ 290, 280, 290, 280, 290\}
+07417 ,\{ 290, 280, 290, 280, 290\}
+07418 \}
+07419 ,\{\{ 350, 280, 350, 280, 350\}
+07420 ,\{ 350, 280, 350, 280, 350\}
+07421 ,\{ 290, 280, 290, 280, 290\}
+07422 ,\{ 160, 150, 160, 150, 160\}
+07423 ,\{ 290, 280, 290, 280, 290\}
+07424 \}
+07425 ,\{\{ 290, 280, 290, 280, 290\}
+07426 ,\{ 290, 280, 290, 280, 290\}
+07427 ,\{ 290, 280, 290, 280, 290\}
+07428 ,\{ 290, 280, 290, 280, 290\}
+07429 ,\{ 290, 280, 290, 280, 290\}
+07430 \}
+07431 \}
+07432 ,\{\{\{ 330, 240, 330, 260, 330\}
+07433 ,\{ 330, 220, 330, 260, 330\}
+07434 ,\{ 290, 240, 290, 130, 290\}
+07435 ,\{ 290, 180, 290, 260, 290\}
+07436 ,\{ 290, 240, 290, 260, 290\}
+07437 \}
+07438 ,\{\{ 330, 220, 330, 180, 330\}
+07439 ,\{ 330, 220, 330, 170, 330\}
+07440 ,\{ 290, 180, 290, 130, 290\}
+07441 ,\{ 210, 100, 210, 180, 210\}
+07442 ,\{ 290, 180, 290, 130, 290\}
+07443 \}
+07444 ,\{\{ 290, 240, 290, 130, 290\}
+07445 ,\{ 290, 180, 290, 130, 290\}
+07446 ,\{ 290, 240, 290, 130, 290\}
+07447 ,\{ 290, 180, 290, 130, 290\}
+07448 ,\{ 290, 240, 290, 130, 290\}
+07449 \}
+07450 ,\{\{ 290, 180, 290, 260, 290\}
+07451 ,\{ 290, 180, 290, 260, 290\}
+07452 ,\{ 290, 180, 290, 130, 290\}
+07453 ,\{ 260, 180, 160, 260, 160\}
+07454 ,\{ 290, 180, 290, 130, 290\}
+07455 \}
+07456 ,\{\{ 290, 240, 290, 260, 290\}
+07457 ,\{ 290, 180, 290, 130, 290\}
+07458 ,\{ 290, 240, 290, 130, 290\}
+07459 ,\{ 290, 180, 290, 130, 290\}
+07460 ,\{ 290, 180, 290, 260, 290\}
+07461 \}
+07462 \}
+07463 ,\{\{\{ 350, 320, 350, 320, 290\}
+07464 ,\{ 350, 320, 350, 320, 290\}
+07465 ,\{ 290, 280, 290, 280, 200\}
+07466 ,\{ 290, 280, 290, 280, 200\}
+07467 ,\{ 290, 280, 290, 280, 200\}
+07468 \}
+07469 ,\{\{ 320, 320, 320, 320, 290\}
+07470 ,\{ 320, 320, 320, 320, 290\}
+07471 ,\{ 290, 280, 290, 280, 200\}
+07472 ,\{ 270, 200, 270, 200, 120\}
+07473 ,\{ 290, 280, 290, 280, 200\}
+07474 \}
+07475 ,\{\{ 290, 280, 290, 280, 200\}
+07476 ,\{ 290, 280, 290, 280, 200\}
+07477 ,\{ 290, 280, 290, 280, 200\}
+07478 ,\{ 290, 280, 290, 280, 200\}
+07479 ,\{ 290, 280, 290, 280, 200\}
+07480 \}
+07481 ,\{\{ 350, 280, 350, 280, 200\}
+07482 ,\{ 350, 280, 350, 280, 200\}
+07483 ,\{ 290, 280, 290, 280, 200\}
+07484 ,\{ 200, 150, 160, 150, 200\}
+07485 ,\{ 290, 280, 290, 280, 200\}
+07486 \}
+07487 ,\{\{ 290, 280, 290, 280, 200\}
+07488 ,\{ 290, 280, 290, 280, 200\}
+07489 ,\{ 290, 280, 290, 280, 200\}
+07490 ,\{ 290, 280, 290, 280, 200\}
+07491 ,\{ 290, 280, 290, 280, 200\}
+07492 \}
+07493 \}
+07494 \}
+07495 \}
+07496 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07497 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07498 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07499 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07500 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07501 \}
+07502 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07505 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07506 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07507 \}
+07508 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07511 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07512 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07513 \}
+07514 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07517 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07518 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07519 \}
+07520 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07523 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07524 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07525 \}
+07526 \}
+07527 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07529 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07530 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07531 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07532 \}
+07533 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07534 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07535 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07536 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07537 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07538 \}
+07539 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07540 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07541 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07542 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07543 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07544 \}
+07545 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07546 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07547 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07548 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07549 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07550 \}
+07551 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07552 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07553 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07554 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07555 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07556 \}
+07557 \}
+07558 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07559 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07560 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07561 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07562 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07563 \}
+07564 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07565 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07566 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07567 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07568 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07569 \}
+07570 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07571 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07572 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07573 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07574 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07575 \}
+07576 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07577 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07578 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07579 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07580 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07581 \}
+07582 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07583 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07584 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07585 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07586 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07587 \}
+07588 \}
+07589 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07590 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07591 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07592 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07593 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07594 \}
+07595 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07596 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07597 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07598 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07599 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07600 \}
+07601 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07602 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07603 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07604 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07605 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07606 \}
+07607 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07608 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07609 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07610 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07611 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07612 \}
+07613 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07614 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07615 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07616 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07617 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07618 \}
+07619 \}
+07620 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07621 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07622 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07623 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07624 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07625 \}
+07626 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07627 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07628 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07629 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07630 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07631 \}
+07632 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07633 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07634 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07635 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07636 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07637 \}
+07638 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07639 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07640 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07641 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07642 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07643 \}
+07644 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07645 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07646 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07647 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07648 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07649 \}
+07650 \}
+07651 \}
+07652 ,\{\{\{\{ 240, 240, 240, 190, 240\}
+07653 ,\{ 240, 240, 240, 190, 240\}
+07654 ,\{ 220, 220, 220, 190, 220\}
+07655 ,\{ 240, 240, 240, 190, 240\}
+07656 ,\{ 210, 210, 210, 170, 210\}
+07657 \}
+07658 ,\{\{ 200, 200, 200, 150, 200\}
+07659 ,\{ 200, 200, 200, 150, 200\}
+07660 ,\{ 190, 190, 190, 150, 190\}
+07661 ,\{ 160, 100, 160, 80, 130\}
+07662 ,\{ 190, 190, 190, 150, 190\}
+07663 \}
+07664 ,\{\{ 240, 240, 240, 190, 240\}
+07665 ,\{ 240, 240, 240, 190, 240\}
+07666 ,\{ 220, 220, 220, 190, 220\}
+07667 ,\{ 240, 240, 240, 190, 240\}
+07668 ,\{ 210, 210, 210, 170, 210\}
+07669 \}
+07670 ,\{\{ 190, 190, 190, 150, 190\}
+07671 ,\{ 160, 100, 160, 80, 130\}
+07672 ,\{ 190, 190, 190, 150, 190\}
+07673 ,\{ 150, 70, 50, 150, 90\}
+07674 ,\{ 190, 190, 190, 150, 190\}
+07675 \}
+07676 ,\{\{ 240, 240, 240, 190, 240\}
+07677 ,\{ 240, 240, 240, 190, 240\}
+07678 ,\{ 210, 210, 210, 170, 210\}
+07679 ,\{ 240, 240, 240, 190, 240\}
+07680 ,\{ 180, 180, 120, 90, 120\}
+07681 \}
+07682 \}
+07683 ,\{\{\{ 240, 240, 240, 190, 240\}
+07684 ,\{ 240, 240, 240, 140, 240\}
+07685 ,\{ 220, 220, 220, 190, 220\}
+07686 ,\{ 240, 240, 240, 140, 240\}
+07687 ,\{ 210, 210, 210, 170, 210\}
+07688 \}
+07689 ,\{\{ 200, 200, 200, 100, 200\}
+07690 ,\{ 200, 200, 200, 100, 200\}
+07691 ,\{ 190, 190, 190, 100, 190\}
+07692 ,\{ 100, 100, 100, 10, 100\}
+07693 ,\{ 190, 190, 190, 100, 190\}
+07694 \}
+07695 ,\{\{ 240, 240, 240, 190, 240\}
+07696 ,\{ 240, 240, 240, 140, 240\}
+07697 ,\{ 220, 220, 220, 190, 220\}
+07698 ,\{ 240, 240, 240, 140, 240\}
+07699 ,\{ 210, 210, 210, 170, 210\}
+07700 \}
+07701 ,\{\{ 190, 190, 190, 100, 190\}
+07702 ,\{ 100, 100, 100, 10, 100\}
+07703 ,\{ 190, 190, 190, 100, 190\}
+07704 ,\{ 80, 50, 50, 80, 50\}
+07705 ,\{ 190, 190, 190, 100, 190\}
+07706 \}
+07707 ,\{\{ 240, 240, 240, 170, 240\}
+07708 ,\{ 240, 240, 240, 140, 240\}
+07709 ,\{ 210, 210, 210, 170, 210\}
+07710 ,\{ 240, 240, 240, 140, 240\}
+07711 ,\{ 180, 180, 120, 20, 120\}
+07712 \}
+07713 \}
+07714 ,\{\{\{ 240, 190, 240, 190, 210\}
+07715 ,\{ 240, 190, 240, 190, 210\}
+07716 ,\{ 220, 180, 220, 180, 190\}
+07717 ,\{ 240, 190, 240, 190, 210\}
+07718 ,\{ 210, 160, 210, 160, 180\}
+07719 \}
+07720 ,\{\{ 200, 150, 200, 150, 170\}
+07721 ,\{ 200, 150, 200, 150, 170\}
+07722 ,\{ 190, 150, 190, 150, 160\}
+07723 ,\{ 160, 60, 160, 60, 130\}
+07724 ,\{ 190, 150, 190, 150, 160\}
+07725 \}
+07726 ,\{\{ 240, 190, 240, 190, 210\}
+07727 ,\{ 240, 190, 240, 190, 210\}
+07728 ,\{ 220, 180, 220, 180, 190\}
+07729 ,\{ 240, 190, 240, 190, 210\}
+07730 ,\{ 210, 160, 210, 160, 180\}
+07731 \}
+07732 ,\{\{ 190, 150, 190, 150, 160\}
+07733 ,\{ 160, 60, 160, 60, 130\}
+07734 ,\{ 190, 150, 190, 150, 160\}
+07735 ,\{ 50, 0, 50, 0, 20\}
+07736 ,\{ 190, 150, 190, 150, 160\}
+07737 \}
+07738 ,\{\{ 240, 190, 240, 190, 210\}
+07739 ,\{ 240, 190, 240, 190, 210\}
+07740 ,\{ 210, 160, 210, 160, 180\}
+07741 ,\{ 240, 190, 240, 190, 210\}
+07742 ,\{ 120, 70, 120, 70, 90\}
+07743 \}
+07744 \}
+07745 ,\{\{\{ 240, 180, 240, 150, 240\}
+07746 ,\{ 240, 130, 240, 80, 240\}
+07747 ,\{ 220, 180, 220, 70, 220\}
+07748 ,\{ 240, 130, 240, 150, 240\}
+07749 ,\{ 210, 160, 210, 90, 210\}
+07750 \}
+07751 ,\{\{ 200, 90, 200, 80, 200\}
+07752 ,\{ 200, 90, 200, 40, 200\}
+07753 ,\{ 190, 90, 190, 40, 190\}
+07754 ,\{ 100, 0, 100, 80, 100\}
+07755 ,\{ 190, 90, 190, 40, 190\}
+07756 \}
+07757 ,\{\{ 240, 180, 240, 80, 240\}
+07758 ,\{ 240, 130, 240, 80, 240\}
+07759 ,\{ 220, 180, 220, 70, 220\}
+07760 ,\{ 240, 130, 240, 80, 240\}
+07761 ,\{ 210, 160, 210, 50, 210\}
+07762 \}
+07763 ,\{\{ 190, 90, 190, 150, 190\}
+07764 ,\{ 100, 0, 100, 80, 100\}
+07765 ,\{ 190, 90, 190, 40, 190\}
+07766 ,\{ 150, 70, 50, 150, 50\}
+07767 ,\{ 190, 90, 190, 40, 190\}
+07768 \}
+07769 ,\{\{ 240, 160, 240, 90, 240\}
+07770 ,\{ 240, 130, 240, 80, 240\}
+07771 ,\{ 210, 160, 210, 50, 210\}
+07772 ,\{ 240, 130, 240, 80, 240\}
+07773 ,\{ 120, 10, 120, 90, 120\}
+07774 \}
+07775 \}
+07776 ,\{\{\{ 240, 190, 240, 190, 170\}
+07777 ,\{ 240, 190, 240, 190, 170\}
+07778 ,\{ 220, 180, 220, 180, 140\}
+07779 ,\{ 240, 190, 240, 190, 150\}
+07780 ,\{ 210, 160, 210, 160, 120\}
+07781 \}
+07782 ,\{\{ 200, 150, 200, 150, 170\}
+07783 ,\{ 200, 150, 200, 150, 170\}
+07784 ,\{ 190, 150, 190, 150, 110\}
+07785 ,\{ 160, 60, 160, 60, 20\}
+07786 ,\{ 190, 150, 190, 150, 110\}
+07787 \}
+07788 ,\{\{ 240, 190, 240, 190, 150\}
+07789 ,\{ 240, 190, 240, 190, 150\}
+07790 ,\{ 220, 180, 220, 180, 140\}
+07791 ,\{ 240, 190, 240, 190, 150\}
+07792 ,\{ 210, 160, 210, 160, 120\}
+07793 \}
+07794 ,\{\{ 190, 150, 190, 150, 110\}
+07795 ,\{ 160, 60, 160, 60, 20\}
+07796 ,\{ 190, 150, 190, 150, 110\}
+07797 ,\{ 90, 0, 50, 0, 90\}
+07798 ,\{ 190, 150, 190, 150, 110\}
+07799 \}
+07800 ,\{\{ 240, 190, 240, 190, 150\}
+07801 ,\{ 240, 190, 240, 190, 150\}
+07802 ,\{ 210, 160, 210, 160, 120\}
+07803 ,\{ 240, 190, 240, 190, 150\}
+07804 ,\{ 120, 70, 120, 70, 30\}
+07805 \}
+07806 \}
+07807 \}
+07808 ,\{\{\{\{ 210, 210, 210, 170, 210\}
+07809 ,\{ 210, 210, 210, 170, 210\}
+07810 ,\{ 190, 190, 190, 160, 190\}
+07811 ,\{ 180, 180, 180, 150, 180\}
+07812 ,\{ 190, 190, 190, 150, 190\}
+07813 \}
+07814 ,\{\{ 210, 210, 210, 170, 210\}
+07815 ,\{ 210, 210, 210, 170, 210\}
+07816 ,\{ 190, 190, 190, 140, 190\}
+07817 ,\{ 70, 10, 70, -10, 40\}
+07818 ,\{ 190, 190, 190, 140, 190\}
+07819 \}
+07820 ,\{\{ 190, 190, 190, 150, 190\}
+07821 ,\{ 180, 180, 180, 140, 180\}
+07822 ,\{ 190, 190, 190, 150, 190\}
+07823 ,\{ 180, 180, 180, 140, 180\}
+07824 ,\{ 190, 190, 190, 150, 190\}
+07825 \}
+07826 ,\{\{ 190, 190, 190, 150, 190\}
+07827 ,\{ 130, 70, 130, 50, 100\}
+07828 ,\{ 190, 190, 190, 140, 190\}
+07829 ,\{ 150, 70, 50, 150, 90\}
+07830 ,\{ 190, 190, 190, 140, 190\}
+07831 \}
+07832 ,\{\{ 190, 190, 190, 160, 190\}
+07833 ,\{ 180, 180, 180, 140, 180\}
+07834 ,\{ 190, 190, 190, 160, 190\}
+07835 ,\{ 180, 180, 180, 140, 180\}
+07836 ,\{ 170, 170, 110, 90, 110\}
+07837 \}
+07838 \}
+07839 ,\{\{\{ 210, 210, 210, 160, 210\}
+07840 ,\{ 210, 210, 210, 120, 210\}
+07841 ,\{ 190, 190, 190, 160, 190\}
+07842 ,\{ 180, 180, 180, 90, 180\}
+07843 ,\{ 190, 190, 190, 150, 190\}
+07844 \}
+07845 ,\{\{ 210, 210, 210, 120, 210\}
+07846 ,\{ 210, 210, 210, 120, 210\}
+07847 ,\{ 190, 190, 190, 90, 190\}
+07848 ,\{ 10, 10, 10, -80, 10\}
+07849 ,\{ 190, 190, 190, 90, 190\}
+07850 \}
+07851 ,\{\{ 190, 190, 190, 150, 190\}
+07852 ,\{ 180, 180, 180, 90, 180\}
+07853 ,\{ 190, 190, 190, 150, 190\}
+07854 ,\{ 180, 180, 180, 90, 180\}
+07855 ,\{ 190, 190, 190, 150, 190\}
+07856 \}
+07857 ,\{\{ 190, 190, 190, 90, 190\}
+07858 ,\{ 70, 70, 70, -20, 70\}
+07859 ,\{ 190, 190, 190, 90, 190\}
+07860 ,\{ 80, 50, 50, 80, 50\}
+07861 ,\{ 190, 190, 190, 90, 190\}
+07862 \}
+07863 ,\{\{ 190, 190, 190, 160, 190\}
+07864 ,\{ 180, 180, 180, 90, 180\}
+07865 ,\{ 190, 190, 190, 160, 190\}
+07866 ,\{ 180, 180, 180, 90, 180\}
+07867 ,\{ 170, 170, 110, 20, 110\}
+07868 \}
+07869 \}
+07870 ,\{\{\{ 210, 170, 210, 170, 180\}
+07871 ,\{ 210, 170, 210, 170, 180\}
+07872 ,\{ 190, 150, 190, 150, 160\}
+07873 ,\{ 180, 140, 180, 140, 150\}
+07874 ,\{ 190, 140, 190, 140, 160\}
+07875 \}
+07876 ,\{\{ 210, 170, 210, 170, 180\}
+07877 ,\{ 210, 170, 210, 170, 180\}
+07878 ,\{ 190, 140, 190, 140, 160\}
+07879 ,\{ 70, -30, 70, -30, 40\}
+07880 ,\{ 190, 140, 190, 140, 160\}
+07881 \}
+07882 ,\{\{ 190, 140, 190, 140, 160\}
+07883 ,\{ 180, 140, 180, 140, 150\}
+07884 ,\{ 190, 140, 190, 140, 160\}
+07885 ,\{ 180, 140, 180, 140, 150\}
+07886 ,\{ 190, 140, 190, 140, 160\}
+07887 \}
+07888 ,\{\{ 190, 140, 190, 140, 160\}
+07889 ,\{ 130, 30, 130, 30, 100\}
+07890 ,\{ 190, 140, 190, 140, 160\}
+07891 ,\{ 50, 0, 50, 0, 20\}
+07892 ,\{ 190, 140, 190, 140, 160\}
+07893 \}
+07894 ,\{\{ 190, 150, 190, 150, 160\}
+07895 ,\{ 180, 140, 180, 140, 150\}
+07896 ,\{ 190, 150, 190, 150, 160\}
+07897 ,\{ 180, 140, 180, 140, 150\}
+07898 ,\{ 110, 70, 110, 70, 80\}
+07899 \}
+07900 \}
+07901 ,\{\{\{ 210, 150, 210, 150, 210\}
+07902 ,\{ 210, 110, 210, 60, 210\}
+07903 ,\{ 190, 150, 190, 40, 190\}
+07904 ,\{ 180, 80, 180, 150, 180\}
+07905 ,\{ 190, 140, 190, 90, 190\}
+07906 \}
+07907 ,\{\{ 210, 110, 210, 60, 210\}
+07908 ,\{ 210, 110, 210, 60, 210\}
+07909 ,\{ 190, 80, 190, 30, 190\}
+07910 ,\{ 10, -90, 10, -10, 10\}
+07911 ,\{ 190, 80, 190, 30, 190\}
+07912 \}
+07913 ,\{\{ 190, 140, 190, 30, 190\}
+07914 ,\{ 180, 80, 180, 30, 180\}
+07915 ,\{ 190, 140, 190, 30, 190\}
+07916 ,\{ 180, 80, 180, 30, 180\}
+07917 ,\{ 190, 140, 190, 30, 190\}
+07918 \}
+07919 ,\{\{ 190, 80, 190, 150, 190\}
+07920 ,\{ 70, -30, 70, 50, 70\}
+07921 ,\{ 190, 80, 190, 30, 190\}
+07922 ,\{ 150, 70, 50, 150, 50\}
+07923 ,\{ 190, 80, 190, 30, 190\}
+07924 \}
+07925 ,\{\{ 190, 150, 190, 90, 190\}
+07926 ,\{ 180, 80, 180, 30, 180\}
+07927 ,\{ 190, 150, 190, 40, 190\}
+07928 ,\{ 180, 80, 180, 30, 180\}
+07929 ,\{ 110, 10, 110, 90, 110\}
+07930 \}
+07931 \}
+07932 ,\{\{\{ 210, 170, 210, 170, 190\}
+07933 ,\{ 210, 170, 210, 170, 190\}
+07934 ,\{ 190, 150, 190, 150, 110\}
+07935 ,\{ 180, 140, 180, 140, 100\}
+07936 ,\{ 190, 140, 190, 140, 100\}
+07937 \}
+07938 ,\{\{ 210, 170, 210, 170, 190\}
+07939 ,\{ 210, 170, 210, 170, 190\}
+07940 ,\{ 190, 140, 190, 140, 100\}
+07941 ,\{ 70, -30, 70, -30, -70\}
+07942 ,\{ 190, 140, 190, 140, 100\}
+07943 \}
+07944 ,\{\{ 190, 140, 190, 140, 100\}
+07945 ,\{ 180, 140, 180, 140, 100\}
+07946 ,\{ 190, 140, 190, 140, 100\}
+07947 ,\{ 180, 140, 180, 140, 100\}
+07948 ,\{ 190, 140, 190, 140, 100\}
+07949 \}
+07950 ,\{\{ 190, 140, 190, 140, 100\}
+07951 ,\{ 130, 30, 130, 30, -10\}
+07952 ,\{ 190, 140, 190, 140, 100\}
+07953 ,\{ 90, 0, 50, 0, 90\}
+07954 ,\{ 190, 140, 190, 140, 100\}
+07955 \}
+07956 ,\{\{ 190, 150, 190, 150, 110\}
+07957 ,\{ 180, 140, 180, 140, 100\}
+07958 ,\{ 190, 150, 190, 150, 110\}
+07959 ,\{ 180, 140, 180, 140, 100\}
+07960 ,\{ 110, 70, 110, 70, 30\}
+07961 \}
+07962 \}
+07963 \}
+07964 ,\{\{\{\{ 370, 370, 340, 300, 340\}
+07965 ,\{ 340, 340, 340, 300, 340\}
+07966 ,\{ 310, 310, 310, 270, 310\}
+07967 ,\{ 310, 310, 310, 280, 310\}
+07968 ,\{ 370, 370, 310, 280, 310\}
+07969 \}
+07970 ,\{\{ 340, 340, 340, 300, 340\}
+07971 ,\{ 340, 340, 340, 300, 340\}
+07972 ,\{ 310, 310, 310, 260, 310\}
+07973 ,\{ 290, 230, 290, 200, 260\}
+07974 ,\{ 310, 310, 310, 260, 310\}
+07975 \}
+07976 ,\{\{ 310, 310, 310, 270, 310\}
+07977 ,\{ 310, 310, 310, 260, 310\}
+07978 ,\{ 310, 310, 310, 270, 310\}
+07979 ,\{ 310, 310, 310, 260, 310\}
+07980 ,\{ 310, 310, 310, 270, 310\}
+07981 \}
+07982 ,\{\{ 330, 310, 330, 280, 310\}
+07983 ,\{ 330, 270, 330, 240, 300\}
+07984 ,\{ 310, 310, 310, 260, 310\}
+07985 ,\{ 280, 200, 180, 280, 220\}
+07986 ,\{ 310, 310, 310, 260, 310\}
+07987 \}
+07988 ,\{\{ 370, 370, 310, 280, 310\}
+07989 ,\{ 310, 310, 310, 260, 310\}
+07990 ,\{ 310, 310, 310, 270, 310\}
+07991 ,\{ 310, 310, 310, 260, 310\}
+07992 ,\{ 370, 370, 310, 280, 310\}
+07993 \}
+07994 \}
+07995 ,\{\{\{ 370, 370, 340, 270, 340\}
+07996 ,\{ 340, 340, 340, 250, 340\}
+07997 ,\{ 310, 310, 310, 270, 310\}
+07998 ,\{ 310, 310, 310, 210, 310\}
+07999 ,\{ 370, 370, 310, 270, 310\}
+08000 \}
+08001 ,\{\{ 340, 340, 340, 250, 340\}
+08002 ,\{ 340, 340, 340, 250, 340\}
+08003 ,\{ 310, 310, 310, 210, 310\}
+08004 ,\{ 230, 230, 230, 130, 230\}
+08005 ,\{ 310, 310, 310, 210, 310\}
+08006 \}
+08007 ,\{\{ 310, 310, 310, 270, 310\}
+08008 ,\{ 310, 310, 310, 210, 310\}
+08009 ,\{ 310, 310, 310, 270, 310\}
+08010 ,\{ 310, 310, 310, 210, 310\}
+08011 ,\{ 310, 310, 310, 270, 310\}
+08012 \}
+08013 ,\{\{ 310, 310, 310, 210, 310\}
+08014 ,\{ 270, 270, 270, 170, 270\}
+08015 ,\{ 310, 310, 310, 210, 310\}
+08016 ,\{ 210, 180, 180, 210, 180\}
+08017 ,\{ 310, 310, 310, 210, 310\}
+08018 \}
+08019 ,\{\{ 370, 370, 310, 270, 310\}
+08020 ,\{ 310, 310, 310, 210, 310\}
+08021 ,\{ 310, 310, 310, 270, 310\}
+08022 ,\{ 310, 310, 310, 210, 310\}
+08023 ,\{ 370, 370, 310, 210, 310\}
+08024 \}
+08025 \}
+08026 ,\{\{\{ 340, 300, 340, 300, 310\}
+08027 ,\{ 340, 300, 340, 300, 310\}
+08028 ,\{ 310, 260, 310, 260, 280\}
+08029 ,\{ 310, 260, 310, 260, 280\}
+08030 ,\{ 310, 260, 310, 260, 280\}
+08031 \}
+08032 ,\{\{ 340, 300, 340, 300, 310\}
+08033 ,\{ 340, 300, 340, 300, 310\}
+08034 ,\{ 310, 260, 310, 260, 280\}
+08035 ,\{ 290, 180, 290, 180, 260\}
+08036 ,\{ 310, 260, 310, 260, 280\}
+08037 \}
+08038 ,\{\{ 310, 260, 310, 260, 280\}
+08039 ,\{ 310, 260, 310, 260, 280\}
+08040 ,\{ 310, 260, 310, 260, 280\}
+08041 ,\{ 310, 260, 310, 260, 280\}
+08042 ,\{ 310, 260, 310, 260, 280\}
+08043 \}
+08044 ,\{\{ 330, 260, 330, 260, 300\}
+08045 ,\{ 330, 220, 330, 220, 300\}
+08046 ,\{ 310, 260, 310, 260, 280\}
+08047 ,\{ 180, 130, 180, 130, 150\}
+08048 ,\{ 310, 260, 310, 260, 280\}
+08049 \}
+08050 ,\{\{ 310, 260, 310, 260, 280\}
+08051 ,\{ 310, 260, 310, 260, 280\}
+08052 ,\{ 310, 260, 310, 260, 280\}
+08053 ,\{ 310, 260, 310, 260, 280\}
+08054 ,\{ 310, 260, 310, 260, 280\}
+08055 \}
+08056 \}
+08057 ,\{\{\{ 340, 260, 340, 280, 340\}
+08058 ,\{ 340, 240, 340, 240, 340\}
+08059 ,\{ 310, 260, 310, 150, 310\}
+08060 ,\{ 310, 200, 310, 280, 310\}
+08061 ,\{ 310, 260, 310, 280, 310\}
+08062 \}
+08063 ,\{\{ 340, 240, 340, 200, 340\}
+08064 ,\{ 340, 240, 340, 190, 340\}
+08065 ,\{ 310, 200, 310, 150, 310\}
+08066 ,\{ 230, 120, 230, 200, 230\}
+08067 ,\{ 310, 200, 310, 150, 310\}
+08068 \}
+08069 ,\{\{ 310, 260, 310, 150, 310\}
+08070 ,\{ 310, 200, 310, 150, 310\}
+08071 ,\{ 310, 260, 310, 150, 310\}
+08072 ,\{ 310, 200, 310, 150, 310\}
+08073 ,\{ 310, 260, 310, 150, 310\}
+08074 \}
+08075 ,\{\{ 310, 200, 310, 280, 310\}
+08076 ,\{ 270, 160, 270, 240, 270\}
+08077 ,\{ 310, 200, 310, 150, 310\}
+08078 ,\{ 280, 200, 180, 280, 180\}
+08079 ,\{ 310, 200, 310, 150, 310\}
+08080 \}
+08081 ,\{\{ 310, 260, 310, 280, 310\}
+08082 ,\{ 310, 200, 310, 150, 310\}
+08083 ,\{ 310, 260, 310, 150, 310\}
+08084 ,\{ 310, 200, 310, 150, 310\}
+08085 ,\{ 310, 200, 310, 280, 310\}
+08086 \}
+08087 \}
+08088 ,\{\{\{ 340, 300, 340, 300, 320\}
+08089 ,\{ 340, 300, 340, 300, 320\}
+08090 ,\{ 310, 260, 310, 260, 220\}
+08091 ,\{ 310, 260, 310, 260, 220\}
+08092 ,\{ 310, 260, 310, 260, 220\}
+08093 \}
+08094 ,\{\{ 340, 300, 340, 300, 320\}
+08095 ,\{ 340, 300, 340, 300, 320\}
+08096 ,\{ 310, 260, 310, 260, 220\}
+08097 ,\{ 290, 180, 290, 180, 140\}
+08098 ,\{ 310, 260, 310, 260, 220\}
+08099 \}
+08100 ,\{\{ 310, 260, 310, 260, 220\}
+08101 ,\{ 310, 260, 310, 260, 220\}
+08102 ,\{ 310, 260, 310, 260, 220\}
+08103 ,\{ 310, 260, 310, 260, 220\}
+08104 ,\{ 310, 260, 310, 260, 220\}
+08105 \}
+08106 ,\{\{ 330, 260, 330, 260, 220\}
+08107 ,\{ 330, 220, 330, 220, 180\}
+08108 ,\{ 310, 260, 310, 260, 220\}
+08109 ,\{ 220, 130, 180, 130, 220\}
+08110 ,\{ 310, 260, 310, 260, 220\}
+08111 \}
+08112 ,\{\{ 310, 260, 310, 260, 220\}
+08113 ,\{ 310, 260, 310, 260, 220\}
+08114 ,\{ 310, 260, 310, 260, 220\}
+08115 ,\{ 310, 260, 310, 260, 220\}
+08116 ,\{ 310, 260, 310, 260, 220\}
+08117 \}
+08118 \}
+08119 \}
+08120 ,\{\{\{\{ 370, 340, 370, 280, 340\}
+08121 ,\{ 370, 310, 370, 280, 340\}
+08122 ,\{ 280, 280, 280, 240, 280\}
+08123 ,\{ 280, 280, 280, 250, 280\}
+08124 ,\{ 340, 340, 280, 250, 280\}
+08125 \}
+08126 ,\{\{ 280, 280, 280, 230, 280\}
+08127 ,\{ 240, 240, 240, 200, 240\}
+08128 ,\{ 280, 280, 280, 230, 280\}
+08129 ,\{ 200, 140, 200, 120, 170\}
+08130 ,\{ 280, 280, 280, 230, 280\}
+08131 \}
+08132 ,\{\{ 280, 280, 280, 240, 280\}
+08133 ,\{ 280, 280, 280, 230, 280\}
+08134 ,\{ 280, 280, 280, 240, 280\}
+08135 ,\{ 280, 280, 280, 230, 280\}
+08136 ,\{ 280, 280, 280, 240, 280\}
+08137 \}
+08138 ,\{\{ 370, 310, 370, 280, 340\}
+08139 ,\{ 370, 310, 370, 280, 340\}
+08140 ,\{ 280, 280, 280, 230, 280\}
+08141 ,\{ 250, 170, 150, 250, 190\}
+08142 ,\{ 280, 280, 280, 230, 280\}
+08143 \}
+08144 ,\{\{ 340, 340, 280, 250, 280\}
+08145 ,\{ 280, 280, 280, 230, 280\}
+08146 ,\{ 280, 280, 280, 240, 280\}
+08147 ,\{ 280, 280, 280, 230, 280\}
+08148 ,\{ 340, 340, 280, 250, 280\}
+08149 \}
+08150 \}
+08151 ,\{\{\{ 340, 340, 310, 240, 310\}
+08152 ,\{ 310, 310, 310, 210, 310\}
+08153 ,\{ 280, 280, 280, 240, 280\}
+08154 ,\{ 280, 280, 280, 180, 280\}
+08155 ,\{ 340, 340, 280, 240, 280\}
+08156 \}
+08157 ,\{\{ 280, 280, 280, 180, 280\}
+08158 ,\{ 240, 240, 240, 150, 240\}
+08159 ,\{ 280, 280, 280, 180, 280\}
+08160 ,\{ 140, 140, 140, 50, 140\}
+08161 ,\{ 280, 280, 280, 180, 280\}
+08162 \}
+08163 ,\{\{ 280, 280, 280, 240, 280\}
+08164 ,\{ 280, 280, 280, 180, 280\}
+08165 ,\{ 280, 280, 280, 240, 280\}
+08166 ,\{ 280, 280, 280, 180, 280\}
+08167 ,\{ 280, 280, 280, 240, 280\}
+08168 \}
+08169 ,\{\{ 310, 310, 310, 210, 310\}
+08170 ,\{ 310, 310, 310, 210, 310\}
+08171 ,\{ 280, 280, 280, 180, 280\}
+08172 ,\{ 180, 150, 150, 180, 150\}
+08173 ,\{ 280, 280, 280, 180, 280\}
+08174 \}
+08175 ,\{\{ 340, 340, 280, 240, 280\}
+08176 ,\{ 280, 280, 280, 180, 280\}
+08177 ,\{ 280, 280, 280, 240, 280\}
+08178 ,\{ 280, 280, 280, 180, 280\}
+08179 ,\{ 340, 340, 280, 180, 280\}
+08180 \}
+08181 \}
+08182 ,\{\{\{ 370, 260, 370, 260, 340\}
+08183 ,\{ 370, 260, 370, 260, 340\}
+08184 ,\{ 280, 230, 280, 230, 250\}
+08185 ,\{ 280, 230, 280, 230, 250\}
+08186 ,\{ 280, 230, 280, 230, 250\}
+08187 \}
+08188 ,\{\{ 280, 230, 280, 230, 250\}
+08189 ,\{ 240, 200, 240, 200, 210\}
+08190 ,\{ 280, 230, 280, 230, 250\}
+08191 ,\{ 200, 100, 200, 100, 170\}
+08192 ,\{ 280, 230, 280, 230, 250\}
+08193 \}
+08194 ,\{\{ 280, 230, 280, 230, 250\}
+08195 ,\{ 280, 230, 280, 230, 250\}
+08196 ,\{ 280, 230, 280, 230, 250\}
+08197 ,\{ 280, 230, 280, 230, 250\}
+08198 ,\{ 280, 230, 280, 230, 250\}
+08199 \}
+08200 ,\{\{ 370, 260, 370, 260, 340\}
+08201 ,\{ 370, 260, 370, 260, 340\}
+08202 ,\{ 280, 230, 280, 230, 250\}
+08203 ,\{ 150, 100, 150, 100, 120\}
+08204 ,\{ 280, 230, 280, 230, 250\}
+08205 \}
+08206 ,\{\{ 280, 230, 280, 230, 250\}
+08207 ,\{ 280, 230, 280, 230, 250\}
+08208 ,\{ 280, 230, 280, 230, 250\}
+08209 ,\{ 280, 230, 280, 230, 250\}
+08210 ,\{ 280, 230, 280, 230, 250\}
+08211 \}
+08212 \}
+08213 ,\{\{\{ 310, 230, 310, 280, 310\}
+08214 ,\{ 310, 200, 310, 280, 310\}
+08215 ,\{ 280, 230, 280, 120, 280\}
+08216 ,\{ 280, 170, 280, 250, 280\}
+08217 ,\{ 280, 230, 280, 250, 280\}
+08218 \}
+08219 ,\{\{ 280, 170, 280, 120, 280\}
+08220 ,\{ 240, 140, 240, 90, 240\}
+08221 ,\{ 280, 170, 280, 120, 280\}
+08222 ,\{ 140, 40, 140, 120, 140\}
+08223 ,\{ 280, 170, 280, 120, 280\}
+08224 \}
+08225 ,\{\{ 280, 230, 280, 120, 280\}
+08226 ,\{ 280, 170, 280, 120, 280\}
+08227 ,\{ 280, 230, 280, 120, 280\}
+08228 ,\{ 280, 170, 280, 120, 280\}
+08229 ,\{ 280, 230, 280, 120, 280\}
+08230 \}
+08231 ,\{\{ 310, 200, 310, 280, 310\}
+08232 ,\{ 310, 200, 310, 280, 310\}
+08233 ,\{ 280, 170, 280, 120, 280\}
+08234 ,\{ 250, 170, 150, 250, 150\}
+08235 ,\{ 280, 170, 280, 120, 280\}
+08236 \}
+08237 ,\{\{ 280, 230, 280, 250, 280\}
+08238 ,\{ 280, 170, 280, 120, 280\}
+08239 ,\{ 280, 230, 280, 120, 280\}
+08240 ,\{ 280, 170, 280, 120, 280\}
+08241 ,\{ 280, 170, 280, 250, 280\}
+08242 \}
+08243 \}
+08244 ,\{\{\{ 370, 260, 370, 260, 220\}
+08245 ,\{ 370, 260, 370, 260, 220\}
+08246 ,\{ 280, 230, 280, 230, 190\}
+08247 ,\{ 280, 230, 280, 230, 190\}
+08248 ,\{ 280, 230, 280, 230, 190\}
+08249 \}
+08250 ,\{\{ 280, 230, 280, 230, 220\}
+08251 ,\{ 240, 200, 240, 200, 220\}
+08252 ,\{ 280, 230, 280, 230, 190\}
+08253 ,\{ 200, 100, 200, 100, 60\}
+08254 ,\{ 280, 230, 280, 230, 190\}
+08255 \}
+08256 ,\{\{ 280, 230, 280, 230, 190\}
+08257 ,\{ 280, 230, 280, 230, 190\}
+08258 ,\{ 280, 230, 280, 230, 190\}
+08259 ,\{ 280, 230, 280, 230, 190\}
+08260 ,\{ 280, 230, 280, 230, 190\}
+08261 \}
+08262 ,\{\{ 370, 260, 370, 260, 220\}
+08263 ,\{ 370, 260, 370, 260, 220\}
+08264 ,\{ 280, 230, 280, 230, 190\}
+08265 ,\{ 190, 100, 150, 100, 190\}
+08266 ,\{ 280, 230, 280, 230, 190\}
+08267 \}
+08268 ,\{\{ 280, 230, 280, 230, 190\}
+08269 ,\{ 280, 230, 280, 230, 190\}
+08270 ,\{ 280, 230, 280, 230, 190\}
+08271 ,\{ 280, 230, 280, 230, 190\}
+08272 ,\{ 280, 230, 280, 230, 190\}
+08273 \}
+08274 \}
+08275 \}
+08276 ,\{\{\{\{ 280, 280, 280, 230, 280\}
+08277 ,\{ 280, 280, 280, 230, 280\}
+08278 ,\{ 260, 260, 260, 220, 260\}
+08279 ,\{ 260, 260, 260, 220, 260\}
+08280 ,\{ 260, 260, 260, 220, 260\}
+08281 \}
+08282 ,\{\{ 280, 280, 280, 230, 280\}
+08283 ,\{ 280, 280, 280, 230, 280\}
+08284 ,\{ 250, 250, 250, 210, 250\}
+08285 ,\{ 210, 150, 210, 130, 180\}
+08286 ,\{ 250, 250, 250, 210, 250\}
+08287 \}
+08288 ,\{\{ 260, 260, 260, 220, 260\}
+08289 ,\{ 260, 260, 260, 220, 260\}
+08290 ,\{ 260, 260, 260, 220, 260\}
+08291 ,\{ 260, 260, 260, 220, 260\}
+08292 ,\{ 260, 260, 260, 220, 260\}
+08293 \}
+08294 ,\{\{ 280, 250, 280, 210, 250\}
+08295 ,\{ 280, 220, 280, 200, 250\}
+08296 ,\{ 250, 250, 250, 210, 250\}
+08297 ,\{ 210, 130, 100, 210, 150\}
+08298 ,\{ 250, 250, 250, 210, 250\}
+08299 \}
+08300 ,\{\{ 260, 260, 260, 220, 260\}
+08301 ,\{ 260, 260, 260, 220, 260\}
+08302 ,\{ 260, 260, 260, 220, 260\}
+08303 ,\{ 260, 260, 260, 220, 260\}
+08304 ,\{ 230, 230, 170, 140, 170\}
+08305 \}
+08306 \}
+08307 ,\{\{\{ 280, 280, 280, 220, 280\}
+08308 ,\{ 280, 280, 280, 180, 280\}
+08309 ,\{ 260, 260, 260, 220, 260\}
+08310 ,\{ 260, 260, 260, 170, 260\}
+08311 ,\{ 260, 260, 260, 220, 260\}
+08312 \}
+08313 ,\{\{ 280, 280, 280, 180, 280\}
+08314 ,\{ 280, 280, 280, 180, 280\}
+08315 ,\{ 250, 250, 250, 160, 250\}
+08316 ,\{ 150, 150, 150, 60, 150\}
+08317 ,\{ 250, 250, 250, 160, 250\}
+08318 \}
+08319 ,\{\{ 260, 260, 260, 220, 260\}
+08320 ,\{ 260, 260, 260, 170, 260\}
+08321 ,\{ 260, 260, 260, 220, 260\}
+08322 ,\{ 260, 260, 260, 170, 260\}
+08323 ,\{ 260, 260, 260, 220, 260\}
+08324 \}
+08325 ,\{\{ 250, 250, 250, 160, 250\}
+08326 ,\{ 220, 220, 220, 130, 220\}
+08327 ,\{ 250, 250, 250, 160, 250\}
+08328 ,\{ 140, 100, 100, 140, 100\}
+08329 ,\{ 250, 250, 250, 160, 250\}
+08330 \}
+08331 ,\{\{ 260, 260, 260, 220, 260\}
+08332 ,\{ 260, 260, 260, 170, 260\}
+08333 ,\{ 260, 260, 260, 220, 260\}
+08334 ,\{ 260, 260, 260, 170, 260\}
+08335 ,\{ 230, 230, 170, 70, 170\}
+08336 \}
+08337 \}
+08338 ,\{\{\{ 280, 230, 280, 230, 250\}
+08339 ,\{ 280, 230, 280, 230, 250\}
+08340 ,\{ 260, 210, 260, 210, 230\}
+08341 ,\{ 260, 220, 260, 220, 230\}
+08342 ,\{ 260, 210, 260, 210, 230\}
+08343 \}
+08344 ,\{\{ 280, 230, 280, 230, 250\}
+08345 ,\{ 280, 230, 280, 230, 250\}
+08346 ,\{ 250, 210, 250, 210, 220\}
+08347 ,\{ 210, 110, 210, 110, 180\}
+08348 ,\{ 250, 210, 250, 210, 220\}
+08349 \}
+08350 ,\{\{ 260, 220, 260, 220, 230\}
+08351 ,\{ 260, 220, 260, 220, 230\}
+08352 ,\{ 260, 210, 260, 210, 230\}
+08353 ,\{ 260, 220, 260, 220, 230\}
+08354 ,\{ 260, 210, 260, 210, 230\}
+08355 \}
+08356 ,\{\{ 280, 210, 280, 210, 250\}
+08357 ,\{ 280, 180, 280, 180, 250\}
+08358 ,\{ 250, 210, 250, 210, 220\}
+08359 ,\{ 100, 60, 100, 60, 70\}
+08360 ,\{ 250, 210, 250, 210, 220\}
+08361 \}
+08362 ,\{\{ 260, 220, 260, 220, 230\}
+08363 ,\{ 260, 220, 260, 220, 230\}
+08364 ,\{ 260, 210, 260, 210, 230\}
+08365 ,\{ 260, 220, 260, 220, 230\}
+08366 ,\{ 170, 120, 170, 120, 140\}
+08367 \}
+08368 \}
+08369 ,\{\{\{ 280, 210, 280, 210, 280\}
+08370 ,\{ 280, 170, 280, 200, 280\}
+08371 ,\{ 260, 210, 260, 100, 260\}
+08372 ,\{ 260, 160, 260, 210, 260\}
+08373 ,\{ 260, 210, 260, 140, 260\}
+08374 \}
+08375 ,\{\{ 280, 170, 280, 130, 280\}
+08376 ,\{ 280, 170, 280, 120, 280\}
+08377 ,\{ 250, 150, 250, 100, 250\}
+08378 ,\{ 150, 50, 150, 130, 150\}
+08379 ,\{ 250, 150, 250, 100, 250\}
+08380 \}
+08381 ,\{\{ 260, 210, 260, 110, 260\}
+08382 ,\{ 260, 160, 260, 110, 260\}
+08383 ,\{ 260, 210, 260, 100, 260\}
+08384 ,\{ 260, 160, 260, 110, 260\}
+08385 ,\{ 260, 210, 260, 100, 260\}
+08386 \}
+08387 ,\{\{ 250, 150, 250, 210, 250\}
+08388 ,\{ 220, 120, 220, 200, 220\}
+08389 ,\{ 250, 150, 250, 100, 250\}
+08390 ,\{ 210, 130, 100, 210, 100\}
+08391 ,\{ 250, 150, 250, 100, 250\}
+08392 \}
+08393 ,\{\{ 260, 210, 260, 140, 260\}
+08394 ,\{ 260, 160, 260, 110, 260\}
+08395 ,\{ 260, 210, 260, 100, 260\}
+08396 ,\{ 260, 160, 260, 110, 260\}
+08397 ,\{ 170, 60, 170, 140, 170\}
+08398 \}
+08399 \}
+08400 ,\{\{\{ 280, 230, 280, 230, 250\}
+08401 ,\{ 280, 230, 280, 230, 250\}
+08402 ,\{ 260, 210, 260, 210, 170\}
+08403 ,\{ 260, 220, 260, 220, 180\}
+08404 ,\{ 260, 210, 260, 210, 170\}
+08405 \}
+08406 ,\{\{ 280, 230, 280, 230, 250\}
+08407 ,\{ 280, 230, 280, 230, 250\}
+08408 ,\{ 250, 210, 250, 210, 170\}
+08409 ,\{ 210, 110, 210, 110, 70\}
+08410 ,\{ 250, 210, 250, 210, 170\}
+08411 \}
+08412 ,\{\{ 260, 220, 260, 220, 180\}
+08413 ,\{ 260, 220, 260, 220, 180\}
+08414 ,\{ 260, 210, 260, 210, 170\}
+08415 ,\{ 260, 220, 260, 220, 180\}
+08416 ,\{ 260, 210, 260, 210, 170\}
+08417 \}
+08418 ,\{\{ 280, 210, 280, 210, 170\}
+08419 ,\{ 280, 180, 280, 180, 140\}
+08420 ,\{ 250, 210, 250, 210, 170\}
+08421 ,\{ 150, 60, 100, 60, 150\}
+08422 ,\{ 250, 210, 250, 210, 170\}
+08423 \}
+08424 ,\{\{ 260, 220, 260, 220, 180\}
+08425 ,\{ 260, 220, 260, 220, 180\}
+08426 ,\{ 260, 210, 260, 210, 170\}
+08427 ,\{ 260, 220, 260, 220, 180\}
+08428 ,\{ 170, 120, 170, 120, 80\}
+08429 \}
+08430 \}
+08431 \}
+08432 ,\{\{\{\{ 280, 280, 280, 240, 280\}
+08433 ,\{ 280, 280, 280, 230, 280\}
+08434 ,\{ 280, 280, 280, 240, 280\}
+08435 ,\{ 280, 280, 280, 230, 280\}
+08436 ,\{ 280, 280, 280, 240, 280\}
+08437 \}
+08438 ,\{\{ 280, 280, 280, 230, 280\}
+08439 ,\{ 280, 280, 280, 230, 280\}
+08440 ,\{ 230, 230, 230, 190, 230\}
+08441 ,\{ 230, 170, 230, 150, 200\}
+08442 ,\{ 230, 230, 230, 190, 230\}
+08443 \}
+08444 ,\{\{ 280, 280, 280, 240, 280\}
+08445 ,\{ 280, 280, 280, 230, 280\}
+08446 ,\{ 280, 280, 280, 240, 280\}
+08447 ,\{ 280, 280, 280, 230, 280\}
+08448 ,\{ 280, 280, 280, 240, 280\}
+08449 \}
+08450 ,\{\{ 240, 230, 240, 230, 230\}
+08451 ,\{ 240, 180, 240, 160, 210\}
+08452 ,\{ 230, 230, 230, 190, 230\}
+08453 ,\{ 230, 150, 120, 230, 170\}
+08454 ,\{ 230, 230, 230, 190, 230\}
+08455 \}
+08456 ,\{\{ 280, 280, 280, 230, 280\}
+08457 ,\{ 280, 280, 280, 230, 280\}
+08458 ,\{ 250, 250, 250, 210, 250\}
+08459 ,\{ 280, 280, 280, 230, 280\}
+08460 ,\{ 250, 250, 190, 170, 190\}
+08461 \}
+08462 \}
+08463 ,\{\{\{ 280, 280, 280, 240, 280\}
+08464 ,\{ 280, 280, 280, 180, 280\}
+08465 ,\{ 280, 280, 280, 240, 280\}
+08466 ,\{ 280, 280, 280, 180, 280\}
+08467 ,\{ 280, 280, 280, 240, 280\}
+08468 \}
+08469 ,\{\{ 280, 280, 280, 180, 280\}
+08470 ,\{ 280, 280, 280, 180, 280\}
+08471 ,\{ 230, 230, 230, 140, 230\}
+08472 ,\{ 170, 170, 170, 80, 170\}
+08473 ,\{ 230, 230, 230, 140, 230\}
+08474 \}
+08475 ,\{\{ 280, 280, 280, 240, 280\}
+08476 ,\{ 280, 280, 280, 180, 280\}
+08477 ,\{ 280, 280, 280, 240, 280\}
+08478 ,\{ 280, 280, 280, 180, 280\}
+08479 ,\{ 280, 280, 280, 240, 280\}
+08480 \}
+08481 ,\{\{ 230, 230, 230, 160, 230\}
+08482 ,\{ 180, 180, 180, 90, 180\}
+08483 ,\{ 230, 230, 230, 140, 230\}
+08484 ,\{ 160, 120, 120, 160, 120\}
+08485 ,\{ 230, 230, 230, 140, 230\}
+08486 \}
+08487 ,\{\{ 280, 280, 280, 210, 280\}
+08488 ,\{ 280, 280, 280, 180, 280\}
+08489 ,\{ 250, 250, 250, 210, 250\}
+08490 ,\{ 280, 280, 280, 180, 280\}
+08491 ,\{ 250, 250, 190, 100, 190\}
+08492 \}
+08493 \}
+08494 ,\{\{\{ 280, 230, 280, 230, 250\}
+08495 ,\{ 280, 230, 280, 230, 250\}
+08496 ,\{ 280, 230, 280, 230, 250\}
+08497 ,\{ 280, 230, 280, 230, 250\}
+08498 ,\{ 280, 230, 280, 230, 250\}
+08499 \}
+08500 ,\{\{ 280, 230, 280, 230, 250\}
+08501 ,\{ 280, 230, 280, 230, 250\}
+08502 ,\{ 230, 190, 230, 190, 200\}
+08503 ,\{ 230, 130, 230, 130, 200\}
+08504 ,\{ 230, 190, 230, 190, 200\}
+08505 \}
+08506 ,\{\{ 280, 230, 280, 230, 250\}
+08507 ,\{ 280, 230, 280, 230, 250\}
+08508 ,\{ 280, 230, 280, 230, 250\}
+08509 ,\{ 280, 230, 280, 230, 250\}
+08510 ,\{ 280, 230, 280, 230, 250\}
+08511 \}
+08512 ,\{\{ 240, 190, 240, 190, 210\}
+08513 ,\{ 240, 140, 240, 140, 210\}
+08514 ,\{ 230, 190, 230, 190, 200\}
+08515 ,\{ 120, 80, 120, 80, 90\}
+08516 ,\{ 230, 190, 230, 190, 200\}
+08517 \}
+08518 ,\{\{ 280, 230, 280, 230, 250\}
+08519 ,\{ 280, 230, 280, 230, 250\}
+08520 ,\{ 250, 200, 250, 200, 220\}
+08521 ,\{ 280, 230, 280, 230, 250\}
+08522 ,\{ 190, 150, 190, 150, 160\}
+08523 \}
+08524 \}
+08525 ,\{\{\{ 280, 230, 280, 230, 280\}
+08526 ,\{ 280, 170, 280, 160, 280\}
+08527 ,\{ 280, 230, 280, 120, 280\}
+08528 ,\{ 280, 170, 280, 230, 280\}
+08529 ,\{ 280, 230, 280, 170, 280\}
+08530 \}
+08531 ,\{\{ 280, 170, 280, 150, 280\}
+08532 ,\{ 280, 170, 280, 120, 280\}
+08533 ,\{ 230, 130, 230, 80, 230\}
+08534 ,\{ 170, 70, 170, 150, 170\}
+08535 ,\{ 230, 130, 230, 80, 230\}
+08536 \}
+08537 ,\{\{ 280, 230, 280, 120, 280\}
+08538 ,\{ 280, 170, 280, 120, 280\}
+08539 ,\{ 280, 230, 280, 120, 280\}
+08540 ,\{ 280, 170, 280, 120, 280\}
+08541 ,\{ 280, 230, 280, 120, 280\}
+08542 \}
+08543 ,\{\{ 230, 150, 230, 230, 230\}
+08544 ,\{ 180, 80, 180, 160, 180\}
+08545 ,\{ 230, 130, 230, 80, 230\}
+08546 ,\{ 230, 150, 120, 230, 120\}
+08547 ,\{ 230, 130, 230, 80, 230\}
+08548 \}
+08549 ,\{\{ 280, 200, 280, 170, 280\}
+08550 ,\{ 280, 170, 280, 120, 280\}
+08551 ,\{ 250, 200, 250, 90, 250\}
+08552 ,\{ 280, 170, 280, 120, 280\}
+08553 ,\{ 190, 90, 190, 170, 190\}
+08554 \}
+08555 \}
+08556 ,\{\{\{ 280, 230, 280, 230, 250\}
+08557 ,\{ 280, 230, 280, 230, 250\}
+08558 ,\{ 280, 230, 280, 230, 190\}
+08559 ,\{ 280, 230, 280, 230, 190\}
+08560 ,\{ 280, 230, 280, 230, 190\}
+08561 \}
+08562 ,\{\{ 280, 230, 280, 230, 250\}
+08563 ,\{ 280, 230, 280, 230, 250\}
+08564 ,\{ 230, 190, 230, 190, 150\}
+08565 ,\{ 230, 130, 230, 130, 90\}
+08566 ,\{ 230, 190, 230, 190, 150\}
+08567 \}
+08568 ,\{\{ 280, 230, 280, 230, 190\}
+08569 ,\{ 280, 230, 280, 230, 190\}
+08570 ,\{ 280, 230, 280, 230, 190\}
+08571 ,\{ 280, 230, 280, 230, 190\}
+08572 ,\{ 280, 230, 280, 230, 190\}
+08573 \}
+08574 ,\{\{ 240, 190, 240, 190, 170\}
+08575 ,\{ 240, 140, 240, 140, 100\}
+08576 ,\{ 230, 190, 230, 190, 150\}
+08577 ,\{ 170, 80, 120, 80, 170\}
+08578 ,\{ 230, 190, 230, 190, 150\}
+08579 \}
+08580 ,\{\{ 280, 230, 280, 230, 190\}
+08581 ,\{ 280, 230, 280, 230, 190\}
+08582 ,\{ 250, 200, 250, 200, 160\}
+08583 ,\{ 280, 230, 280, 230, 190\}
+08584 ,\{ 190, 150, 190, 150, 110\}
+08585 \}
+08586 \}
+08587 \}
+08588 ,\{\{\{\{ 370, 370, 370, 300, 340\}
+08589 ,\{ 370, 340, 370, 300, 340\}
+08590 ,\{ 310, 310, 310, 270, 310\}
+08591 ,\{ 310, 310, 310, 280, 310\}
+08592 ,\{ 370, 370, 310, 280, 310\}
+08593 \}
+08594 ,\{\{ 340, 340, 340, 300, 340\}
+08595 ,\{ 340, 340, 340, 300, 340\}
+08596 ,\{ 310, 310, 310, 260, 310\}
+08597 ,\{ 290, 230, 290, 200, 260\}
+08598 ,\{ 310, 310, 310, 260, 310\}
+08599 \}
+08600 ,\{\{ 310, 310, 310, 270, 310\}
+08601 ,\{ 310, 310, 310, 260, 310\}
+08602 ,\{ 310, 310, 310, 270, 310\}
+08603 ,\{ 310, 310, 310, 260, 310\}
+08604 ,\{ 310, 310, 310, 270, 310\}
+08605 \}
+08606 ,\{\{ 370, 310, 370, 280, 340\}
+08607 ,\{ 370, 310, 370, 280, 340\}
+08608 ,\{ 310, 310, 310, 260, 310\}
+08609 ,\{ 280, 200, 180, 280, 220\}
+08610 ,\{ 310, 310, 310, 260, 310\}
+08611 \}
+08612 ,\{\{ 370, 370, 310, 280, 310\}
+08613 ,\{ 310, 310, 310, 260, 310\}
+08614 ,\{ 310, 310, 310, 270, 310\}
+08615 ,\{ 310, 310, 310, 260, 310\}
+08616 ,\{ 370, 370, 310, 280, 310\}
+08617 \}
+08618 \}
+08619 ,\{\{\{ 370, 370, 340, 270, 340\}
+08620 ,\{ 340, 340, 340, 250, 340\}
+08621 ,\{ 310, 310, 310, 270, 310\}
+08622 ,\{ 310, 310, 310, 210, 310\}
+08623 ,\{ 370, 370, 310, 270, 310\}
+08624 \}
+08625 ,\{\{ 340, 340, 340, 250, 340\}
+08626 ,\{ 340, 340, 340, 250, 340\}
+08627 ,\{ 310, 310, 310, 210, 310\}
+08628 ,\{ 230, 230, 230, 130, 230\}
+08629 ,\{ 310, 310, 310, 210, 310\}
+08630 \}
+08631 ,\{\{ 310, 310, 310, 270, 310\}
+08632 ,\{ 310, 310, 310, 210, 310\}
+08633 ,\{ 310, 310, 310, 270, 310\}
+08634 ,\{ 310, 310, 310, 210, 310\}
+08635 ,\{ 310, 310, 310, 270, 310\}
+08636 \}
+08637 ,\{\{ 310, 310, 310, 210, 310\}
+08638 ,\{ 310, 310, 310, 210, 310\}
+08639 ,\{ 310, 310, 310, 210, 310\}
+08640 ,\{ 210, 180, 180, 210, 180\}
+08641 ,\{ 310, 310, 310, 210, 310\}
+08642 \}
+08643 ,\{\{ 370, 370, 310, 270, 310\}
+08644 ,\{ 310, 310, 310, 210, 310\}
+08645 ,\{ 310, 310, 310, 270, 310\}
+08646 ,\{ 310, 310, 310, 210, 310\}
+08647 ,\{ 370, 370, 310, 210, 310\}
+08648 \}
+08649 \}
+08650 ,\{\{\{ 370, 300, 370, 300, 340\}
+08651 ,\{ 370, 300, 370, 300, 340\}
+08652 ,\{ 310, 260, 310, 260, 280\}
+08653 ,\{ 310, 260, 310, 260, 280\}
+08654 ,\{ 310, 260, 310, 260, 280\}
+08655 \}
+08656 ,\{\{ 340, 300, 340, 300, 310\}
+08657 ,\{ 340, 300, 340, 300, 310\}
+08658 ,\{ 310, 260, 310, 260, 280\}
+08659 ,\{ 290, 180, 290, 180, 260\}
+08660 ,\{ 310, 260, 310, 260, 280\}
+08661 \}
+08662 ,\{\{ 310, 260, 310, 260, 280\}
+08663 ,\{ 310, 260, 310, 260, 280\}
+08664 ,\{ 310, 260, 310, 260, 280\}
+08665 ,\{ 310, 260, 310, 260, 280\}
+08666 ,\{ 310, 260, 310, 260, 280\}
+08667 \}
+08668 ,\{\{ 370, 260, 370, 260, 340\}
+08669 ,\{ 370, 260, 370, 260, 340\}
+08670 ,\{ 310, 260, 310, 260, 280\}
+08671 ,\{ 180, 130, 180, 130, 150\}
+08672 ,\{ 310, 260, 310, 260, 280\}
+08673 \}
+08674 ,\{\{ 310, 260, 310, 260, 280\}
+08675 ,\{ 310, 260, 310, 260, 280\}
+08676 ,\{ 310, 260, 310, 260, 280\}
+08677 ,\{ 310, 260, 310, 260, 280\}
+08678 ,\{ 310, 260, 310, 260, 280\}
+08679 \}
+08680 \}
+08681 ,\{\{\{ 340, 260, 340, 280, 340\}
+08682 ,\{ 340, 240, 340, 280, 340\}
+08683 ,\{ 310, 260, 310, 150, 310\}
+08684 ,\{ 310, 200, 310, 280, 310\}
+08685 ,\{ 310, 260, 310, 280, 310\}
+08686 \}
+08687 ,\{\{ 340, 240, 340, 200, 340\}
+08688 ,\{ 340, 240, 340, 190, 340\}
+08689 ,\{ 310, 200, 310, 150, 310\}
+08690 ,\{ 230, 120, 230, 200, 230\}
+08691 ,\{ 310, 200, 310, 150, 310\}
+08692 \}
+08693 ,\{\{ 310, 260, 310, 150, 310\}
+08694 ,\{ 310, 200, 310, 150, 310\}
+08695 ,\{ 310, 260, 310, 150, 310\}
+08696 ,\{ 310, 200, 310, 150, 310\}
+08697 ,\{ 310, 260, 310, 150, 310\}
+08698 \}
+08699 ,\{\{ 310, 200, 310, 280, 310\}
+08700 ,\{ 310, 200, 310, 280, 310\}
+08701 ,\{ 310, 200, 310, 150, 310\}
+08702 ,\{ 280, 200, 180, 280, 180\}
+08703 ,\{ 310, 200, 310, 150, 310\}
+08704 \}
+08705 ,\{\{ 310, 260, 310, 280, 310\}
+08706 ,\{ 310, 200, 310, 150, 310\}
+08707 ,\{ 310, 260, 310, 150, 310\}
+08708 ,\{ 310, 200, 310, 150, 310\}
+08709 ,\{ 310, 200, 310, 280, 310\}
+08710 \}
+08711 \}
+08712 ,\{\{\{ 370, 300, 370, 300, 320\}
+08713 ,\{ 370, 300, 370, 300, 320\}
+08714 ,\{ 310, 260, 310, 260, 220\}
+08715 ,\{ 310, 260, 310, 260, 220\}
+08716 ,\{ 310, 260, 310, 260, 220\}
+08717 \}
+08718 ,\{\{ 340, 300, 340, 300, 320\}
+08719 ,\{ 340, 300, 340, 300, 320\}
+08720 ,\{ 310, 260, 310, 260, 220\}
+08721 ,\{ 290, 180, 290, 180, 140\}
+08722 ,\{ 310, 260, 310, 260, 220\}
+08723 \}
+08724 ,\{\{ 310, 260, 310, 260, 220\}
+08725 ,\{ 310, 260, 310, 260, 220\}
+08726 ,\{ 310, 260, 310, 260, 220\}
+08727 ,\{ 310, 260, 310, 260, 220\}
+08728 ,\{ 310, 260, 310, 260, 220\}
+08729 \}
+08730 ,\{\{ 370, 260, 370, 260, 220\}
+08731 ,\{ 370, 260, 370, 260, 220\}
+08732 ,\{ 310, 260, 310, 260, 220\}
+08733 ,\{ 220, 130, 180, 130, 220\}
+08734 ,\{ 310, 260, 310, 260, 220\}
+08735 \}
+08736 ,\{\{ 310, 260, 310, 260, 220\}
+08737 ,\{ 310, 260, 310, 260, 220\}
+08738 ,\{ 310, 260, 310, 260, 220\}
+08739 ,\{ 310, 260, 310, 260, 220\}
+08740 ,\{ 310, 260, 310, 260, 220\}
+08741 \}
+08742 \}
+08743 \}
+08744 \}
+08745 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08746 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08747 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08748 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08749 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08750 \}
+08751 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08754 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08755 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08756 \}
+08757 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08760 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08761 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08762 \}
+08763 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08766 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08767 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08768 \}
+08769 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08772 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08773 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08774 \}
+08775 \}
+08776 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08778 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08779 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08780 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08781 \}
+08782 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08783 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08784 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08785 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08786 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08787 \}
+08788 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08789 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08790 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08791 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08792 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08793 \}
+08794 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08795 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08796 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08797 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08798 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08799 \}
+08800 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08801 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08802 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08803 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08804 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08805 \}
+08806 \}
+08807 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08808 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08809 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08810 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08811 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08812 \}
+08813 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08814 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08815 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08816 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08817 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08818 \}
+08819 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08820 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08821 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08822 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08823 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08824 \}
+08825 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08826 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08827 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08828 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08829 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08830 \}
+08831 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08832 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08833 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08834 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08835 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08836 \}
+08837 \}
+08838 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08839 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08840 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08841 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08842 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08843 \}
+08844 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08845 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08846 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08847 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08848 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08849 \}
+08850 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08851 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08852 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08853 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08854 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08855 \}
+08856 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08857 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08858 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08859 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08860 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08861 \}
+08862 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08863 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08864 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08865 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08866 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08867 \}
+08868 \}
+08869 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08870 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08871 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08872 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08873 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08874 \}
+08875 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08876 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08877 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08878 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08879 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08880 \}
+08881 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08882 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08883 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08884 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08885 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08886 \}
+08887 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08888 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08889 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08890 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08891 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08892 \}
+08893 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08894 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08895 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08896 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08897 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08898 \}
+08899 \}
+08900 \}
+08901 ,\{\{\{\{ 310, 300, 270, 310, 290\}
+08902 ,\{ 300, 300, 270, 270, 290\}
+08903 ,\{ 310, 290, 250, 310, 250\}
+08904 ,\{ 300, 300, 270, 270, 270\}
+08905 ,\{ 300, 270, 240, 300, 240\}
+08906 \}
+08907 ,\{\{ 290, 270, 230, 230, 290\}
+08908 ,\{ 290, 270, 230, 230, 290\}
+08909 ,\{ 260, 260, 220, 220, 220\}
+08910 ,\{ 190, 170, 190, 130, 190\}
+08911 ,\{ 260, 260, 220, 220, 220\}
+08912 \}
+08913 ,\{\{ 310, 300, 270, 310, 270\}
+08914 ,\{ 300, 300, 270, 270, 270\}
+08915 ,\{ 310, 290, 250, 310, 250\}
+08916 ,\{ 300, 300, 270, 270, 270\}
+08917 ,\{ 300, 270, 240, 300, 240\}
+08918 \}
+08919 ,\{\{ 260, 260, 220, 220, 220\}
+08920 ,\{ 190, 170, 190, 130, 190\}
+08921 ,\{ 260, 260, 220, 220, 220\}
+08922 ,\{ 210, 130, 80, 210, 210\}
+08923 ,\{ 260, 260, 220, 220, 220\}
+08924 \}
+08925 ,\{\{ 300, 300, 270, 300, 270\}
+08926 ,\{ 300, 300, 270, 270, 270\}
+08927 ,\{ 300, 270, 240, 300, 240\}
+08928 ,\{ 300, 300, 270, 270, 270\}
+08929 ,\{ 240, 240, 150, 150, 150\}
+08930 \}
+08931 \}
+08932 ,\{\{\{ 310, 300, 270, 310, 270\}
+08933 ,\{ 300, 300, 270, 270, 270\}
+08934 ,\{ 310, 290, 250, 310, 250\}
+08935 ,\{ 300, 300, 270, 270, 270\}
+08936 ,\{ 300, 270, 240, 300, 240\}
+08937 \}
+08938 ,\{\{ 270, 270, 230, 230, 230\}
+08939 ,\{ 270, 270, 230, 230, 230\}
+08940 ,\{ 260, 260, 220, 220, 220\}
+08941 ,\{ 170, 170, 130, 130, 130\}
+08942 ,\{ 260, 260, 220, 220, 220\}
+08943 \}
+08944 ,\{\{ 310, 300, 270, 310, 270\}
+08945 ,\{ 300, 300, 270, 270, 270\}
+08946 ,\{ 310, 290, 250, 310, 250\}
+08947 ,\{ 300, 300, 270, 270, 270\}
+08948 ,\{ 300, 270, 240, 300, 240\}
+08949 \}
+08950 ,\{\{ 260, 260, 220, 220, 220\}
+08951 ,\{ 170, 170, 130, 130, 130\}
+08952 ,\{ 260, 260, 220, 220, 220\}
+08953 ,\{ 210, 110, 80, 210, 80\}
+08954 ,\{ 260, 260, 220, 220, 220\}
+08955 \}
+08956 ,\{\{ 300, 300, 270, 300, 270\}
+08957 ,\{ 300, 300, 270, 270, 270\}
+08958 ,\{ 300, 270, 240, 300, 240\}
+08959 ,\{ 300, 300, 270, 270, 270\}
+08960 ,\{ 240, 240, 150, 150, 150\}
+08961 \}
+08962 \}
+08963 ,\{\{\{ 270, 270, 270, 270, 270\}
+08964 ,\{ 270, 270, 270, 270, 270\}
+08965 ,\{ 250, 250, 250, 250, 250\}
+08966 ,\{ 270, 270, 270, 270, 270\}
+08967 ,\{ 240, 240, 240, 240, 240\}
+08968 \}
+08969 ,\{\{ 230, 230, 230, 230, 230\}
+08970 ,\{ 230, 230, 230, 230, 230\}
+08971 ,\{ 220, 220, 220, 220, 220\}
+08972 ,\{ 190, 130, 190, 130, 190\}
+08973 ,\{ 220, 220, 220, 220, 220\}
+08974 \}
+08975 ,\{\{ 270, 270, 270, 270, 270\}
+08976 ,\{ 270, 270, 270, 270, 270\}
+08977 ,\{ 250, 250, 250, 250, 250\}
+08978 ,\{ 270, 270, 270, 270, 270\}
+08979 ,\{ 240, 240, 240, 240, 240\}
+08980 \}
+08981 ,\{\{ 220, 220, 220, 220, 220\}
+08982 ,\{ 190, 130, 190, 130, 190\}
+08983 ,\{ 220, 220, 220, 220, 220\}
+08984 ,\{ 80, 80, 80, 80, 80\}
+08985 ,\{ 220, 220, 220, 220, 220\}
+08986 \}
+08987 ,\{\{ 270, 270, 270, 270, 270\}
+08988 ,\{ 270, 270, 270, 270, 270\}
+08989 ,\{ 240, 240, 240, 240, 240\}
+08990 ,\{ 270, 270, 270, 270, 270\}
+08991 ,\{ 150, 150, 150, 150, 150\}
+08992 \}
+08993 \}
+08994 ,\{\{\{ 270, 230, 270, 210, 270\}
+08995 ,\{ 270, 190, 270, 140, 270\}
+08996 ,\{ 250, 230, 250, 120, 250\}
+08997 ,\{ 270, 190, 270, 210, 270\}
+08998 ,\{ 240, 220, 240, 150, 240\}
+08999 \}
+09000 ,\{\{ 230, 150, 230, 130, 230\}
+09001 ,\{ 230, 150, 230, 100, 230\}
+09002 ,\{ 220, 140, 220, 90, 220\}
+09003 ,\{ 130, 50, 130, 130, 130\}
+09004 ,\{ 220, 140, 220, 90, 220\}
+09005 \}
+09006 ,\{\{ 270, 230, 270, 140, 270\}
+09007 ,\{ 270, 190, 270, 140, 270\}
+09008 ,\{ 250, 230, 250, 120, 250\}
+09009 ,\{ 270, 190, 270, 140, 270\}
+09010 ,\{ 240, 220, 240, 110, 240\}
+09011 \}
+09012 ,\{\{ 220, 140, 220, 210, 220\}
+09013 ,\{ 130, 50, 130, 130, 130\}
+09014 ,\{ 220, 140, 220, 90, 220\}
+09015 ,\{ 210, 130, 80, 210, 80\}
+09016 ,\{ 220, 140, 220, 90, 220\}
+09017 \}
+09018 ,\{\{ 270, 220, 270, 150, 270\}
+09019 ,\{ 270, 190, 270, 140, 270\}
+09020 ,\{ 240, 220, 240, 110, 240\}
+09021 ,\{ 270, 190, 270, 140, 270\}
+09022 ,\{ 150, 70, 150, 150, 150\}
+09023 \}
+09024 \}
+09025 ,\{\{\{ 290, 270, 270, 270, 290\}
+09026 ,\{ 290, 270, 270, 270, 290\}
+09027 ,\{ 250, 250, 250, 250, 250\}
+09028 ,\{ 270, 270, 270, 270, 270\}
+09029 ,\{ 240, 240, 240, 240, 240\}
+09030 \}
+09031 ,\{\{ 290, 230, 230, 230, 290\}
+09032 ,\{ 290, 230, 230, 230, 290\}
+09033 ,\{ 220, 220, 220, 220, 220\}
+09034 ,\{ 190, 130, 190, 130, 130\}
+09035 ,\{ 220, 220, 220, 220, 220\}
+09036 \}
+09037 ,\{\{ 270, 270, 270, 270, 270\}
+09038 ,\{ 270, 270, 270, 270, 270\}
+09039 ,\{ 250, 250, 250, 250, 250\}
+09040 ,\{ 270, 270, 270, 270, 270\}
+09041 ,\{ 240, 240, 240, 240, 240\}
+09042 \}
+09043 ,\{\{ 220, 220, 220, 220, 220\}
+09044 ,\{ 190, 130, 190, 130, 130\}
+09045 ,\{ 220, 220, 220, 220, 220\}
+09046 ,\{ 210, 80, 80, 80, 210\}
+09047 ,\{ 220, 220, 220, 220, 220\}
+09048 \}
+09049 ,\{\{ 270, 270, 270, 270, 270\}
+09050 ,\{ 270, 270, 270, 270, 270\}
+09051 ,\{ 240, 240, 240, 240, 240\}
+09052 ,\{ 270, 270, 270, 270, 270\}
+09053 ,\{ 150, 150, 150, 150, 150\}
+09054 \}
+09055 \}
+09056 \}
+09057 ,\{\{\{\{ 300, 280, 240, 280, 300\}
+09058 ,\{ 300, 280, 240, 240, 300\}
+09059 ,\{ 280, 260, 220, 280, 220\}
+09060 ,\{ 250, 250, 210, 210, 210\}
+09061 ,\{ 280, 250, 220, 280, 220\}
+09062 \}
+09063 ,\{\{ 300, 280, 240, 240, 300\}
+09064 ,\{ 300, 280, 240, 240, 300\}
+09065 ,\{ 250, 250, 220, 220, 220\}
+09066 ,\{ 100, 70, 100, 40, 100\}
+09067 ,\{ 250, 250, 220, 220, 220\}
+09068 \}
+09069 ,\{\{ 280, 250, 220, 280, 220\}
+09070 ,\{ 250, 250, 210, 210, 210\}
+09071 ,\{ 280, 250, 220, 280, 220\}
+09072 ,\{ 250, 250, 210, 210, 210\}
+09073 ,\{ 280, 250, 220, 280, 220\}
+09074 \}
+09075 ,\{\{ 250, 250, 220, 220, 220\}
+09076 ,\{ 160, 140, 160, 100, 160\}
+09077 ,\{ 250, 250, 220, 220, 220\}
+09078 ,\{ 210, 130, 80, 210, 210\}
+09079 ,\{ 250, 250, 220, 220, 220\}
+09080 \}
+09081 ,\{\{ 280, 260, 220, 280, 220\}
+09082 ,\{ 250, 250, 210, 210, 210\}
+09083 ,\{ 280, 260, 220, 280, 220\}
+09084 ,\{ 250, 250, 210, 210, 210\}
+09085 ,\{ 240, 240, 140, 140, 140\}
+09086 \}
+09087 \}
+09088 ,\{\{\{ 280, 280, 240, 280, 240\}
+09089 ,\{ 280, 280, 240, 240, 240\}
+09090 ,\{ 280, 260, 220, 280, 220\}
+09091 ,\{ 250, 250, 210, 210, 210\}
+09092 ,\{ 280, 250, 220, 280, 220\}
+09093 \}
+09094 ,\{\{ 280, 280, 240, 240, 240\}
+09095 ,\{ 280, 280, 240, 240, 240\}
+09096 ,\{ 250, 250, 220, 220, 220\}
+09097 ,\{ 70, 70, 40, 40, 40\}
+09098 ,\{ 250, 250, 220, 220, 220\}
+09099 \}
+09100 ,\{\{ 280, 250, 220, 280, 220\}
+09101 ,\{ 250, 250, 210, 210, 210\}
+09102 ,\{ 280, 250, 220, 280, 220\}
+09103 ,\{ 250, 250, 210, 210, 210\}
+09104 ,\{ 280, 250, 220, 280, 220\}
+09105 \}
+09106 ,\{\{ 250, 250, 220, 220, 220\}
+09107 ,\{ 140, 140, 100, 100, 100\}
+09108 ,\{ 250, 250, 220, 220, 220\}
+09109 ,\{ 210, 110, 80, 210, 80\}
+09110 ,\{ 250, 250, 220, 220, 220\}
+09111 \}
+09112 ,\{\{ 280, 260, 220, 280, 220\}
+09113 ,\{ 250, 250, 210, 210, 210\}
+09114 ,\{ 280, 260, 220, 280, 220\}
+09115 ,\{ 250, 250, 210, 210, 210\}
+09116 ,\{ 240, 240, 140, 140, 140\}
+09117 \}
+09118 \}
+09119 ,\{\{\{ 240, 240, 240, 240, 240\}
+09120 ,\{ 240, 240, 240, 240, 240\}
+09121 ,\{ 220, 220, 220, 220, 220\}
+09122 ,\{ 210, 210, 210, 210, 210\}
+09123 ,\{ 220, 220, 220, 220, 220\}
+09124 \}
+09125 ,\{\{ 240, 240, 240, 240, 240\}
+09126 ,\{ 240, 240, 240, 240, 240\}
+09127 ,\{ 220, 220, 220, 220, 220\}
+09128 ,\{ 100, 40, 100, 40, 100\}
+09129 ,\{ 220, 220, 220, 220, 220\}
+09130 \}
+09131 ,\{\{ 220, 220, 220, 220, 220\}
+09132 ,\{ 210, 210, 210, 210, 210\}
+09133 ,\{ 220, 220, 220, 220, 220\}
+09134 ,\{ 210, 210, 210, 210, 210\}
+09135 ,\{ 220, 220, 220, 220, 220\}
+09136 \}
+09137 ,\{\{ 220, 220, 220, 220, 220\}
+09138 ,\{ 160, 100, 160, 100, 160\}
+09139 ,\{ 220, 220, 220, 220, 220\}
+09140 ,\{ 80, 80, 80, 80, 80\}
+09141 ,\{ 220, 220, 220, 220, 220\}
+09142 \}
+09143 ,\{\{ 220, 220, 220, 220, 220\}
+09144 ,\{ 210, 210, 210, 210, 210\}
+09145 ,\{ 220, 220, 220, 220, 220\}
+09146 ,\{ 210, 210, 210, 210, 210\}
+09147 ,\{ 140, 140, 140, 140, 140\}
+09148 \}
+09149 \}
+09150 ,\{\{\{ 240, 200, 240, 210, 240\}
+09151 ,\{ 240, 160, 240, 110, 240\}
+09152 ,\{ 220, 200, 220, 90, 220\}
+09153 ,\{ 210, 130, 210, 210, 210\}
+09154 ,\{ 220, 200, 220, 140, 220\}
+09155 \}
+09156 ,\{\{ 240, 160, 240, 110, 240\}
+09157 ,\{ 240, 160, 240, 110, 240\}
+09158 ,\{ 220, 140, 220, 90, 220\}
+09159 ,\{ 40, -40, 40, 40, 40\}
+09160 ,\{ 220, 140, 220, 90, 220\}
+09161 \}
+09162 ,\{\{ 220, 200, 220, 90, 220\}
+09163 ,\{ 210, 130, 210, 80, 210\}
+09164 ,\{ 220, 200, 220, 90, 220\}
+09165 ,\{ 210, 130, 210, 80, 210\}
+09166 ,\{ 220, 200, 220, 90, 220\}
+09167 \}
+09168 ,\{\{ 220, 140, 220, 210, 220\}
+09169 ,\{ 100, 20, 100, 100, 100\}
+09170 ,\{ 220, 140, 220, 90, 220\}
+09171 ,\{ 210, 130, 80, 210, 80\}
+09172 ,\{ 220, 140, 220, 90, 220\}
+09173 \}
+09174 ,\{\{ 220, 200, 220, 140, 220\}
+09175 ,\{ 210, 130, 210, 80, 210\}
+09176 ,\{ 220, 200, 220, 90, 220\}
+09177 ,\{ 210, 130, 210, 80, 210\}
+09178 ,\{ 140, 90, 140, 140, 140\}
+09179 \}
+09180 \}
+09181 ,\{\{\{ 300, 240, 240, 240, 300\}
+09182 ,\{ 300, 240, 240, 240, 300\}
+09183 ,\{ 220, 220, 220, 220, 220\}
+09184 ,\{ 210, 210, 210, 210, 210\}
+09185 ,\{ 220, 220, 220, 220, 220\}
+09186 \}
+09187 ,\{\{ 300, 240, 240, 240, 300\}
+09188 ,\{ 300, 240, 240, 240, 300\}
+09189 ,\{ 220, 220, 220, 220, 220\}
+09190 ,\{ 100, 40, 100, 40, 50\}
+09191 ,\{ 220, 220, 220, 220, 220\}
+09192 \}
+09193 ,\{\{ 220, 220, 220, 220, 220\}
+09194 ,\{ 210, 210, 210, 210, 210\}
+09195 ,\{ 220, 220, 220, 220, 220\}
+09196 ,\{ 210, 210, 210, 210, 210\}
+09197 ,\{ 220, 220, 220, 220, 220\}
+09198 \}
+09199 ,\{\{ 220, 220, 220, 220, 220\}
+09200 ,\{ 160, 100, 160, 100, 140\}
+09201 ,\{ 220, 220, 220, 220, 220\}
+09202 ,\{ 210, 80, 80, 80, 210\}
+09203 ,\{ 220, 220, 220, 220, 220\}
+09204 \}
+09205 ,\{\{ 220, 220, 220, 220, 220\}
+09206 ,\{ 210, 210, 210, 210, 210\}
+09207 ,\{ 220, 220, 220, 220, 220\}
+09208 ,\{ 210, 210, 210, 210, 210\}
+09209 ,\{ 140, 140, 140, 140, 140\}
+09210 \}
+09211 \}
+09212 \}
+09213 ,\{\{\{\{ 430, 430, 370, 400, 430\}
+09214 ,\{ 430, 410, 370, 370, 430\}
+09215 ,\{ 400, 370, 340, 400, 340\}
+09216 ,\{ 370, 370, 340, 340, 340\}
+09217 ,\{ 430, 430, 340, 400, 340\}
+09218 \}
+09219 ,\{\{ 430, 410, 370, 370, 430\}
+09220 ,\{ 430, 410, 370, 370, 430\}
+09221 ,\{ 370, 370, 340, 340, 340\}
+09222 ,\{ 320, 290, 320, 260, 320\}
+09223 ,\{ 370, 370, 340, 340, 340\}
+09224 \}
+09225 ,\{\{ 400, 370, 340, 400, 340\}
+09226 ,\{ 370, 370, 340, 340, 340\}
+09227 ,\{ 400, 370, 340, 400, 340\}
+09228 ,\{ 370, 370, 340, 340, 340\}
+09229 ,\{ 400, 370, 340, 400, 340\}
+09230 \}
+09231 ,\{\{ 370, 370, 360, 340, 360\}
+09232 ,\{ 360, 360, 360, 300, 360\}
+09233 ,\{ 370, 370, 340, 340, 340\}
+09234 ,\{ 340, 260, 210, 340, 340\}
+09235 ,\{ 370, 370, 340, 340, 340\}
+09236 \}
+09237 ,\{\{ 430, 430, 340, 400, 340\}
+09238 ,\{ 370, 370, 340, 340, 340\}
+09239 ,\{ 400, 370, 340, 400, 340\}
+09240 ,\{ 370, 370, 340, 340, 340\}
+09241 ,\{ 430, 430, 340, 340, 340\}
+09242 \}
+09243 \}
+09244 ,\{\{\{ 430, 430, 370, 400, 370\}
+09245 ,\{ 410, 410, 370, 370, 370\}
+09246 ,\{ 400, 370, 340, 400, 340\}
+09247 ,\{ 370, 370, 340, 340, 340\}
+09248 ,\{ 430, 430, 340, 400, 340\}
+09249 \}
+09250 ,\{\{ 410, 410, 370, 370, 370\}
+09251 ,\{ 410, 410, 370, 370, 370\}
+09252 ,\{ 370, 370, 340, 340, 340\}
+09253 ,\{ 290, 290, 260, 260, 260\}
+09254 ,\{ 370, 370, 340, 340, 340\}
+09255 \}
+09256 ,\{\{ 400, 370, 340, 400, 340\}
+09257 ,\{ 370, 370, 340, 340, 340\}
+09258 ,\{ 400, 370, 340, 400, 340\}
+09259 ,\{ 370, 370, 340, 340, 340\}
+09260 ,\{ 400, 370, 340, 400, 340\}
+09261 \}
+09262 ,\{\{ 370, 370, 340, 340, 340\}
+09263 ,\{ 360, 360, 300, 300, 300\}
+09264 ,\{ 370, 370, 340, 340, 340\}
+09265 ,\{ 340, 240, 210, 340, 210\}
+09266 ,\{ 370, 370, 340, 340, 340\}
+09267 \}
+09268 ,\{\{ 430, 430, 340, 400, 340\}
+09269 ,\{ 370, 370, 340, 340, 340\}
+09270 ,\{ 400, 370, 340, 400, 340\}
+09271 ,\{ 370, 370, 340, 340, 340\}
+09272 ,\{ 430, 430, 340, 340, 340\}
+09273 \}
+09274 \}
+09275 ,\{\{\{ 370, 370, 370, 370, 370\}
+09276 ,\{ 370, 370, 370, 370, 370\}
+09277 ,\{ 340, 340, 340, 340, 340\}
+09278 ,\{ 340, 340, 340, 340, 340\}
+09279 ,\{ 340, 340, 340, 340, 340\}
+09280 \}
+09281 ,\{\{ 370, 370, 370, 370, 370\}
+09282 ,\{ 370, 370, 370, 370, 370\}
+09283 ,\{ 340, 340, 340, 340, 340\}
+09284 ,\{ 320, 260, 320, 260, 320\}
+09285 ,\{ 340, 340, 340, 340, 340\}
+09286 \}
+09287 ,\{\{ 340, 340, 340, 340, 340\}
+09288 ,\{ 340, 340, 340, 340, 340\}
+09289 ,\{ 340, 340, 340, 340, 340\}
+09290 ,\{ 340, 340, 340, 340, 340\}
+09291 ,\{ 340, 340, 340, 340, 340\}
+09292 \}
+09293 ,\{\{ 360, 340, 360, 340, 360\}
+09294 ,\{ 360, 300, 360, 300, 360\}
+09295 ,\{ 340, 340, 340, 340, 340\}
+09296 ,\{ 210, 210, 210, 210, 210\}
+09297 ,\{ 340, 340, 340, 340, 340\}
+09298 \}
+09299 ,\{\{ 340, 340, 340, 340, 340\}
+09300 ,\{ 340, 340, 340, 340, 340\}
+09301 ,\{ 340, 340, 340, 340, 340\}
+09302 ,\{ 340, 340, 340, 340, 340\}
+09303 ,\{ 340, 340, 340, 340, 340\}
+09304 \}
+09305 \}
+09306 ,\{\{\{ 370, 320, 370, 340, 370\}
+09307 ,\{ 370, 290, 370, 300, 370\}
+09308 ,\{ 340, 320, 340, 210, 340\}
+09309 ,\{ 340, 260, 340, 340, 340\}
+09310 ,\{ 340, 320, 340, 340, 340\}
+09311 \}
+09312 ,\{\{ 370, 290, 370, 260, 370\}
+09313 ,\{ 370, 290, 370, 240, 370\}
+09314 ,\{ 340, 260, 340, 210, 340\}
+09315 ,\{ 260, 180, 260, 260, 260\}
+09316 ,\{ 340, 260, 340, 210, 340\}
+09317 \}
+09318 ,\{\{ 340, 320, 340, 210, 340\}
+09319 ,\{ 340, 260, 340, 210, 340\}
+09320 ,\{ 340, 320, 340, 210, 340\}
+09321 ,\{ 340, 260, 340, 210, 340\}
+09322 ,\{ 340, 320, 340, 210, 340\}
+09323 \}
+09324 ,\{\{ 340, 260, 340, 340, 340\}
+09325 ,\{ 300, 220, 300, 300, 300\}
+09326 ,\{ 340, 260, 340, 210, 340\}
+09327 ,\{ 340, 260, 210, 340, 210\}
+09328 ,\{ 340, 260, 340, 210, 340\}
+09329 \}
+09330 ,\{\{ 340, 320, 340, 340, 340\}
+09331 ,\{ 340, 260, 340, 210, 340\}
+09332 ,\{ 340, 320, 340, 210, 340\}
+09333 ,\{ 340, 260, 340, 210, 340\}
+09334 ,\{ 340, 260, 340, 340, 340\}
+09335 \}
+09336 \}
+09337 ,\{\{\{ 430, 370, 370, 370, 430\}
+09338 ,\{ 430, 370, 370, 370, 430\}
+09339 ,\{ 340, 340, 340, 340, 340\}
+09340 ,\{ 340, 340, 340, 340, 340\}
+09341 ,\{ 340, 340, 340, 340, 340\}
+09342 \}
+09343 ,\{\{ 430, 370, 370, 370, 430\}
+09344 ,\{ 430, 370, 370, 370, 430\}
+09345 ,\{ 340, 340, 340, 340, 340\}
+09346 ,\{ 320, 260, 320, 260, 260\}
+09347 ,\{ 340, 340, 340, 340, 340\}
+09348 \}
+09349 ,\{\{ 340, 340, 340, 340, 340\}
+09350 ,\{ 340, 340, 340, 340, 340\}
+09351 ,\{ 340, 340, 340, 340, 340\}
+09352 ,\{ 340, 340, 340, 340, 340\}
+09353 ,\{ 340, 340, 340, 340, 340\}
+09354 \}
+09355 ,\{\{ 360, 340, 360, 340, 340\}
+09356 ,\{ 360, 300, 360, 300, 300\}
+09357 ,\{ 340, 340, 340, 340, 340\}
+09358 ,\{ 340, 210, 210, 210, 340\}
+09359 ,\{ 340, 340, 340, 340, 340\}
+09360 \}
+09361 ,\{\{ 340, 340, 340, 340, 340\}
+09362 ,\{ 340, 340, 340, 340, 340\}
+09363 ,\{ 340, 340, 340, 340, 340\}
+09364 ,\{ 340, 340, 340, 340, 340\}
+09365 ,\{ 340, 340, 340, 340, 340\}
+09366 \}
+09367 \}
+09368 \}
+09369 ,\{\{\{\{ 400, 400, 400, 370, 400\}
+09370 ,\{ 400, 370, 400, 360, 400\}
+09371 ,\{ 370, 340, 310, 370, 310\}
+09372 ,\{ 340, 340, 310, 310, 310\}
+09373 ,\{ 400, 400, 310, 370, 310\}
+09374 \}
+09375 ,\{\{ 360, 360, 310, 360, 330\}
+09376 ,\{ 360, 360, 270, 360, 330\}
+09377 ,\{ 340, 340, 310, 310, 310\}
+09378 ,\{ 230, 220, 230, 170, 230\}
+09379 ,\{ 340, 340, 310, 310, 310\}
+09380 \}
+09381 ,\{\{ 370, 340, 310, 370, 310\}
+09382 ,\{ 340, 340, 310, 310, 310\}
+09383 ,\{ 370, 340, 310, 370, 310\}
+09384 ,\{ 340, 340, 310, 310, 310\}
+09385 ,\{ 370, 340, 310, 370, 310\}
+09386 \}
+09387 ,\{\{ 400, 370, 400, 340, 400\}
+09388 ,\{ 400, 370, 400, 340, 400\}
+09389 ,\{ 340, 340, 310, 310, 310\}
+09390 ,\{ 310, 230, 180, 310, 310\}
+09391 ,\{ 340, 340, 310, 310, 310\}
+09392 \}
+09393 ,\{\{ 400, 400, 310, 370, 310\}
+09394 ,\{ 340, 340, 310, 310, 310\}
+09395 ,\{ 370, 340, 310, 370, 310\}
+09396 ,\{ 340, 340, 310, 310, 310\}
+09397 ,\{ 400, 400, 310, 310, 310\}
+09398 \}
+09399 \}
+09400 ,\{\{\{ 400, 400, 340, 370, 340\}
+09401 ,\{ 370, 370, 340, 360, 340\}
+09402 ,\{ 370, 340, 310, 370, 310\}
+09403 ,\{ 340, 340, 310, 310, 310\}
+09404 ,\{ 400, 400, 310, 370, 310\}
+09405 \}
+09406 ,\{\{ 360, 360, 310, 360, 310\}
+09407 ,\{ 360, 360, 270, 360, 270\}
+09408 ,\{ 340, 340, 310, 310, 310\}
+09409 ,\{ 220, 220, 170, 170, 170\}
+09410 ,\{ 340, 340, 310, 310, 310\}
+09411 \}
+09412 ,\{\{ 370, 340, 310, 370, 310\}
+09413 ,\{ 340, 340, 310, 310, 310\}
+09414 ,\{ 370, 340, 310, 370, 310\}
+09415 ,\{ 340, 340, 310, 310, 310\}
+09416 ,\{ 370, 340, 310, 370, 310\}
+09417 \}
+09418 ,\{\{ 370, 370, 340, 340, 340\}
+09419 ,\{ 370, 370, 340, 340, 340\}
+09420 ,\{ 340, 340, 310, 310, 310\}
+09421 ,\{ 310, 210, 180, 310, 180\}
+09422 ,\{ 340, 340, 310, 310, 310\}
+09423 \}
+09424 ,\{\{ 400, 400, 310, 370, 310\}
+09425 ,\{ 340, 340, 310, 310, 310\}
+09426 ,\{ 370, 340, 310, 370, 310\}
+09427 ,\{ 340, 340, 310, 310, 310\}
+09428 ,\{ 400, 400, 310, 310, 310\}
+09429 \}
+09430 \}
+09431 ,\{\{\{ 400, 340, 400, 340, 400\}
+09432 ,\{ 400, 340, 400, 340, 400\}
+09433 ,\{ 310, 310, 310, 310, 310\}
+09434 ,\{ 310, 310, 310, 310, 310\}
+09435 ,\{ 310, 310, 310, 310, 310\}
+09436 \}
+09437 ,\{\{ 310, 310, 310, 310, 310\}
+09438 ,\{ 270, 270, 270, 270, 270\}
+09439 ,\{ 310, 310, 310, 310, 310\}
+09440 ,\{ 230, 170, 230, 170, 230\}
+09441 ,\{ 310, 310, 310, 310, 310\}
+09442 \}
+09443 ,\{\{ 310, 310, 310, 310, 310\}
+09444 ,\{ 310, 310, 310, 310, 310\}
+09445 ,\{ 310, 310, 310, 310, 310\}
+09446 ,\{ 310, 310, 310, 310, 310\}
+09447 ,\{ 310, 310, 310, 310, 310\}
+09448 \}
+09449 ,\{\{ 400, 340, 400, 340, 400\}
+09450 ,\{ 400, 340, 400, 340, 400\}
+09451 ,\{ 310, 310, 310, 310, 310\}
+09452 ,\{ 180, 180, 180, 180, 180\}
+09453 ,\{ 310, 310, 310, 310, 310\}
+09454 \}
+09455 ,\{\{ 310, 310, 310, 310, 310\}
+09456 ,\{ 310, 310, 310, 310, 310\}
+09457 ,\{ 310, 310, 310, 310, 310\}
+09458 ,\{ 310, 310, 310, 310, 310\}
+09459 ,\{ 310, 310, 310, 310, 310\}
+09460 \}
+09461 \}
+09462 ,\{\{\{ 340, 290, 340, 340, 340\}
+09463 ,\{ 340, 260, 340, 340, 340\}
+09464 ,\{ 310, 290, 310, 180, 310\}
+09465 ,\{ 310, 230, 310, 310, 310\}
+09466 ,\{ 310, 290, 310, 310, 310\}
+09467 \}
+09468 ,\{\{ 310, 230, 310, 180, 310\}
+09469 ,\{ 270, 190, 270, 140, 270\}
+09470 ,\{ 310, 230, 310, 180, 310\}
+09471 ,\{ 170, 40, 170, 170, 170\}
+09472 ,\{ 310, 230, 310, 180, 310\}
+09473 \}
+09474 ,\{\{ 310, 290, 310, 180, 310\}
+09475 ,\{ 310, 230, 310, 180, 310\}
+09476 ,\{ 310, 290, 310, 180, 310\}
+09477 ,\{ 310, 230, 310, 180, 310\}
+09478 ,\{ 310, 290, 310, 180, 310\}
+09479 \}
+09480 ,\{\{ 340, 260, 340, 340, 340\}
+09481 ,\{ 340, 260, 340, 340, 340\}
+09482 ,\{ 310, 230, 310, 180, 310\}
+09483 ,\{ 310, 230, 180, 310, 180\}
+09484 ,\{ 310, 230, 310, 180, 310\}
+09485 \}
+09486 ,\{\{ 310, 290, 310, 310, 310\}
+09487 ,\{ 310, 230, 310, 180, 310\}
+09488 ,\{ 310, 290, 310, 180, 310\}
+09489 ,\{ 310, 230, 310, 180, 310\}
+09490 ,\{ 310, 230, 310, 310, 310\}
+09491 \}
+09492 \}
+09493 ,\{\{\{ 400, 340, 400, 340, 340\}
+09494 ,\{ 400, 340, 400, 340, 340\}
+09495 ,\{ 310, 310, 310, 310, 310\}
+09496 ,\{ 310, 310, 310, 310, 310\}
+09497 ,\{ 310, 310, 310, 310, 310\}
+09498 \}
+09499 ,\{\{ 330, 310, 310, 310, 330\}
+09500 ,\{ 330, 270, 270, 270, 330\}
+09501 ,\{ 310, 310, 310, 310, 310\}
+09502 ,\{ 230, 170, 230, 170, 170\}
+09503 ,\{ 310, 310, 310, 310, 310\}
+09504 \}
+09505 ,\{\{ 310, 310, 310, 310, 310\}
+09506 ,\{ 310, 310, 310, 310, 310\}
+09507 ,\{ 310, 310, 310, 310, 310\}
+09508 ,\{ 310, 310, 310, 310, 310\}
+09509 ,\{ 310, 310, 310, 310, 310\}
+09510 \}
+09511 ,\{\{ 400, 340, 400, 340, 340\}
+09512 ,\{ 400, 340, 400, 340, 340\}
+09513 ,\{ 310, 310, 310, 310, 310\}
+09514 ,\{ 310, 180, 180, 180, 310\}
+09515 ,\{ 310, 310, 310, 310, 310\}
+09516 \}
+09517 ,\{\{ 310, 310, 310, 310, 310\}
+09518 ,\{ 310, 310, 310, 310, 310\}
+09519 ,\{ 310, 310, 310, 310, 310\}
+09520 ,\{ 310, 310, 310, 310, 310\}
+09521 ,\{ 310, 310, 310, 310, 310\}
+09522 \}
+09523 \}
+09524 \}
+09525 ,\{\{\{\{ 370, 340, 310, 350, 370\}
+09526 ,\{ 370, 340, 310, 310, 370\}
+09527 ,\{ 350, 320, 290, 350, 290\}
+09528 ,\{ 330, 330, 290, 290, 290\}
+09529 ,\{ 350, 320, 290, 350, 290\}
+09530 \}
+09531 ,\{\{ 370, 340, 310, 310, 370\}
+09532 ,\{ 370, 340, 310, 310, 370\}
+09533 ,\{ 320, 320, 280, 280, 280\}
+09534 ,\{ 240, 220, 240, 180, 240\}
+09535 ,\{ 320, 320, 280, 280, 280\}
+09536 \}
+09537 ,\{\{ 350, 330, 290, 350, 290\}
+09538 ,\{ 330, 330, 290, 290, 290\}
+09539 ,\{ 350, 320, 290, 350, 290\}
+09540 ,\{ 330, 330, 290, 290, 290\}
+09541 ,\{ 350, 320, 290, 350, 290\}
+09542 \}
+09543 ,\{\{ 320, 320, 310, 280, 310\}
+09544 ,\{ 310, 290, 310, 250, 310\}
+09545 ,\{ 320, 320, 280, 280, 280\}
+09546 ,\{ 260, 180, 130, 260, 260\}
+09547 ,\{ 320, 320, 280, 280, 280\}
+09548 \}
+09549 ,\{\{ 350, 330, 290, 350, 290\}
+09550 ,\{ 330, 330, 290, 290, 290\}
+09551 ,\{ 350, 320, 290, 350, 290\}
+09552 ,\{ 330, 330, 290, 290, 290\}
+09553 ,\{ 290, 290, 200, 200, 200\}
+09554 \}
+09555 \}
+09556 ,\{\{\{ 350, 340, 310, 350, 310\}
+09557 ,\{ 340, 340, 310, 310, 310\}
+09558 ,\{ 350, 320, 290, 350, 290\}
+09559 ,\{ 330, 330, 290, 290, 290\}
+09560 ,\{ 350, 320, 290, 350, 290\}
+09561 \}
+09562 ,\{\{ 340, 340, 310, 310, 310\}
+09563 ,\{ 340, 340, 310, 310, 310\}
+09564 ,\{ 320, 320, 280, 280, 280\}
+09565 ,\{ 220, 220, 180, 180, 180\}
+09566 ,\{ 320, 320, 280, 280, 280\}
+09567 \}
+09568 ,\{\{ 350, 330, 290, 350, 290\}
+09569 ,\{ 330, 330, 290, 290, 290\}
+09570 ,\{ 350, 320, 290, 350, 290\}
+09571 ,\{ 330, 330, 290, 290, 290\}
+09572 ,\{ 350, 320, 290, 350, 290\}
+09573 \}
+09574 ,\{\{ 320, 320, 280, 280, 280\}
+09575 ,\{ 290, 290, 250, 250, 250\}
+09576 ,\{ 320, 320, 280, 280, 280\}
+09577 ,\{ 260, 170, 130, 260, 130\}
+09578 ,\{ 320, 320, 280, 280, 280\}
+09579 \}
+09580 ,\{\{ 350, 330, 290, 350, 290\}
+09581 ,\{ 330, 330, 290, 290, 290\}
+09582 ,\{ 350, 320, 290, 350, 290\}
+09583 ,\{ 330, 330, 290, 290, 290\}
+09584 ,\{ 290, 290, 200, 200, 200\}
+09585 \}
+09586 \}
+09587 ,\{\{\{ 310, 310, 310, 310, 310\}
+09588 ,\{ 310, 310, 310, 310, 310\}
+09589 ,\{ 290, 290, 290, 290, 290\}
+09590 ,\{ 290, 290, 290, 290, 290\}
+09591 ,\{ 290, 290, 290, 290, 290\}
+09592 \}
+09593 ,\{\{ 310, 310, 310, 310, 310\}
+09594 ,\{ 310, 310, 310, 310, 310\}
+09595 ,\{ 280, 280, 280, 280, 280\}
+09596 ,\{ 240, 180, 240, 180, 240\}
+09597 ,\{ 280, 280, 280, 280, 280\}
+09598 \}
+09599 ,\{\{ 290, 290, 290, 290, 290\}
+09600 ,\{ 290, 290, 290, 290, 290\}
+09601 ,\{ 290, 290, 290, 290, 290\}
+09602 ,\{ 290, 290, 290, 290, 290\}
+09603 ,\{ 290, 290, 290, 290, 290\}
+09604 \}
+09605 ,\{\{ 310, 280, 310, 280, 310\}
+09606 ,\{ 310, 250, 310, 250, 310\}
+09607 ,\{ 280, 280, 280, 280, 280\}
+09608 ,\{ 130, 130, 130, 130, 130\}
+09609 ,\{ 280, 280, 280, 280, 280\}
+09610 \}
+09611 ,\{\{ 290, 290, 290, 290, 290\}
+09612 ,\{ 290, 290, 290, 290, 290\}
+09613 ,\{ 290, 290, 290, 290, 290\}
+09614 ,\{ 290, 290, 290, 290, 290\}
+09615 ,\{ 200, 200, 200, 200, 200\}
+09616 \}
+09617 \}
+09618 ,\{\{\{ 310, 270, 310, 260, 310\}
+09619 ,\{ 310, 230, 310, 250, 310\}
+09620 ,\{ 290, 270, 290, 160, 290\}
+09621 ,\{ 290, 210, 290, 260, 290\}
+09622 ,\{ 290, 270, 290, 200, 290\}
+09623 \}
+09624 ,\{\{ 310, 230, 310, 180, 310\}
+09625 ,\{ 310, 230, 310, 180, 310\}
+09626 ,\{ 280, 200, 280, 150, 280\}
+09627 ,\{ 180, 100, 180, 180, 180\}
+09628 ,\{ 280, 200, 280, 150, 280\}
+09629 \}
+09630 ,\{\{ 290, 270, 290, 160, 290\}
+09631 ,\{ 290, 210, 290, 160, 290\}
+09632 ,\{ 290, 270, 290, 160, 290\}
+09633 ,\{ 290, 210, 290, 160, 290\}
+09634 ,\{ 290, 270, 290, 160, 290\}
+09635 \}
+09636 ,\{\{ 280, 200, 280, 260, 280\}
+09637 ,\{ 250, 170, 250, 250, 250\}
+09638 ,\{ 280, 200, 280, 150, 280\}
+09639 ,\{ 260, 180, 130, 260, 130\}
+09640 ,\{ 280, 200, 280, 150, 280\}
+09641 \}
+09642 ,\{\{ 290, 270, 290, 200, 290\}
+09643 ,\{ 290, 210, 290, 160, 290\}
+09644 ,\{ 290, 270, 290, 160, 290\}
+09645 ,\{ 290, 210, 290, 160, 290\}
+09646 ,\{ 200, 120, 200, 200, 200\}
+09647 \}
+09648 \}
+09649 ,\{\{\{ 370, 310, 310, 310, 370\}
+09650 ,\{ 370, 310, 310, 310, 370\}
+09651 ,\{ 290, 290, 290, 290, 290\}
+09652 ,\{ 290, 290, 290, 290, 290\}
+09653 ,\{ 290, 290, 290, 290, 290\}
+09654 \}
+09655 ,\{\{ 370, 310, 310, 310, 370\}
+09656 ,\{ 370, 310, 310, 310, 370\}
+09657 ,\{ 280, 280, 280, 280, 280\}
+09658 ,\{ 240, 180, 240, 180, 180\}
+09659 ,\{ 280, 280, 280, 280, 280\}
+09660 \}
+09661 ,\{\{ 290, 290, 290, 290, 290\}
+09662 ,\{ 290, 290, 290, 290, 290\}
+09663 ,\{ 290, 290, 290, 290, 290\}
+09664 ,\{ 290, 290, 290, 290, 290\}
+09665 ,\{ 290, 290, 290, 290, 290\}
+09666 \}
+09667 ,\{\{ 310, 280, 310, 280, 280\}
+09668 ,\{ 310, 250, 310, 250, 250\}
+09669 ,\{ 280, 280, 280, 280, 280\}
+09670 ,\{ 260, 130, 130, 130, 260\}
+09671 ,\{ 280, 280, 280, 280, 280\}
+09672 \}
+09673 ,\{\{ 290, 290, 290, 290, 290\}
+09674 ,\{ 290, 290, 290, 290, 290\}
+09675 ,\{ 290, 290, 290, 290, 290\}
+09676 ,\{ 290, 290, 290, 290, 290\}
+09677 ,\{ 200, 200, 200, 200, 200\}
+09678 \}
+09679 \}
+09680 \}
+09681 ,\{\{\{\{ 370, 340, 310, 370, 370\}
+09682 ,\{ 370, 340, 310, 310, 370\}
+09683 ,\{ 370, 340, 310, 370, 310\}
+09684 ,\{ 340, 340, 310, 310, 310\}
+09685 ,\{ 370, 340, 310, 370, 310\}
+09686 \}
+09687 ,\{\{ 370, 340, 310, 310, 370\}
+09688 ,\{ 370, 340, 310, 310, 370\}
+09689 ,\{ 300, 300, 260, 260, 260\}
+09690 ,\{ 260, 240, 260, 200, 260\}
+09691 ,\{ 300, 300, 260, 260, 260\}
+09692 \}
+09693 ,\{\{ 370, 340, 310, 370, 310\}
+09694 ,\{ 340, 340, 310, 310, 310\}
+09695 ,\{ 370, 340, 310, 370, 310\}
+09696 ,\{ 340, 340, 310, 310, 310\}
+09697 ,\{ 370, 340, 310, 370, 310\}
+09698 \}
+09699 ,\{\{ 300, 300, 270, 280, 280\}
+09700 ,\{ 270, 250, 270, 210, 270\}
+09701 ,\{ 300, 300, 260, 260, 260\}
+09702 ,\{ 280, 200, 150, 280, 280\}
+09703 ,\{ 300, 300, 260, 260, 260\}
+09704 \}
+09705 ,\{\{ 340, 340, 310, 340, 310\}
+09706 ,\{ 340, 340, 310, 310, 310\}
+09707 ,\{ 340, 310, 280, 340, 280\}
+09708 ,\{ 340, 340, 310, 310, 310\}
+09709 ,\{ 320, 320, 220, 220, 220\}
+09710 \}
+09711 \}
+09712 ,\{\{\{ 370, 340, 310, 370, 310\}
+09713 ,\{ 340, 340, 310, 310, 310\}
+09714 ,\{ 370, 340, 310, 370, 310\}
+09715 ,\{ 340, 340, 310, 310, 310\}
+09716 ,\{ 370, 340, 310, 370, 310\}
+09717 \}
+09718 ,\{\{ 340, 340, 310, 310, 310\}
+09719 ,\{ 340, 340, 310, 310, 310\}
+09720 ,\{ 300, 300, 260, 260, 260\}
+09721 ,\{ 240, 240, 200, 200, 200\}
+09722 ,\{ 300, 300, 260, 260, 260\}
+09723 \}
+09724 ,\{\{ 370, 340, 310, 370, 310\}
+09725 ,\{ 340, 340, 310, 310, 310\}
+09726 ,\{ 370, 340, 310, 370, 310\}
+09727 ,\{ 340, 340, 310, 310, 310\}
+09728 ,\{ 370, 340, 310, 370, 310\}
+09729 \}
+09730 ,\{\{ 300, 300, 260, 280, 260\}
+09731 ,\{ 250, 250, 210, 210, 210\}
+09732 ,\{ 300, 300, 260, 260, 260\}
+09733 ,\{ 280, 190, 150, 280, 150\}
+09734 ,\{ 300, 300, 260, 260, 260\}
+09735 \}
+09736 ,\{\{ 340, 340, 310, 340, 310\}
+09737 ,\{ 340, 340, 310, 310, 310\}
+09738 ,\{ 340, 310, 280, 340, 280\}
+09739 ,\{ 340, 340, 310, 310, 310\}
+09740 ,\{ 320, 320, 220, 220, 220\}
+09741 \}
+09742 \}
+09743 ,\{\{\{ 310, 310, 310, 310, 310\}
+09744 ,\{ 310, 310, 310, 310, 310\}
+09745 ,\{ 310, 310, 310, 310, 310\}
+09746 ,\{ 310, 310, 310, 310, 310\}
+09747 ,\{ 310, 310, 310, 310, 310\}
+09748 \}
+09749 ,\{\{ 310, 310, 310, 310, 310\}
+09750 ,\{ 310, 310, 310, 310, 310\}
+09751 ,\{ 260, 260, 260, 260, 260\}
+09752 ,\{ 260, 200, 260, 200, 260\}
+09753 ,\{ 260, 260, 260, 260, 260\}
+09754 \}
+09755 ,\{\{ 310, 310, 310, 310, 310\}
+09756 ,\{ 310, 310, 310, 310, 310\}
+09757 ,\{ 310, 310, 310, 310, 310\}
+09758 ,\{ 310, 310, 310, 310, 310\}
+09759 ,\{ 310, 310, 310, 310, 310\}
+09760 \}
+09761 ,\{\{ 270, 260, 270, 260, 270\}
+09762 ,\{ 270, 210, 270, 210, 270\}
+09763 ,\{ 260, 260, 260, 260, 260\}
+09764 ,\{ 150, 150, 150, 150, 150\}
+09765 ,\{ 260, 260, 260, 260, 260\}
+09766 \}
+09767 ,\{\{ 310, 310, 310, 310, 310\}
+09768 ,\{ 310, 310, 310, 310, 310\}
+09769 ,\{ 280, 280, 280, 280, 280\}
+09770 ,\{ 310, 310, 310, 310, 310\}
+09771 ,\{ 220, 220, 220, 220, 220\}
+09772 \}
+09773 \}
+09774 ,\{\{\{ 310, 290, 310, 280, 310\}
+09775 ,\{ 310, 230, 310, 210, 310\}
+09776 ,\{ 310, 290, 310, 180, 310\}
+09777 ,\{ 310, 230, 310, 280, 310\}
+09778 ,\{ 310, 290, 310, 220, 310\}
+09779 \}
+09780 ,\{\{ 310, 230, 310, 200, 310\}
+09781 ,\{ 310, 230, 310, 180, 310\}
+09782 ,\{ 260, 180, 260, 130, 260\}
+09783 ,\{ 200, 120, 200, 200, 200\}
+09784 ,\{ 260, 180, 260, 130, 260\}
+09785 \}
+09786 ,\{\{ 310, 290, 310, 180, 310\}
+09787 ,\{ 310, 230, 310, 180, 310\}
+09788 ,\{ 310, 290, 310, 180, 310\}
+09789 ,\{ 310, 230, 310, 180, 310\}
+09790 ,\{ 310, 290, 310, 180, 310\}
+09791 \}
+09792 ,\{\{ 280, 200, 260, 280, 260\}
+09793 ,\{ 210, 130, 210, 210, 210\}
+09794 ,\{ 260, 180, 260, 130, 260\}
+09795 ,\{ 280, 200, 150, 280, 150\}
+09796 ,\{ 260, 180, 260, 130, 260\}
+09797 \}
+09798 ,\{\{ 310, 260, 310, 220, 310\}
+09799 ,\{ 310, 230, 310, 180, 310\}
+09800 ,\{ 280, 260, 280, 150, 280\}
+09801 ,\{ 310, 230, 310, 180, 310\}
+09802 ,\{ 220, 140, 220, 220, 220\}
+09803 \}
+09804 \}
+09805 ,\{\{\{ 370, 310, 310, 310, 370\}
+09806 ,\{ 370, 310, 310, 310, 370\}
+09807 ,\{ 310, 310, 310, 310, 310\}
+09808 ,\{ 310, 310, 310, 310, 310\}
+09809 ,\{ 310, 310, 310, 310, 310\}
+09810 \}
+09811 ,\{\{ 370, 310, 310, 310, 370\}
+09812 ,\{ 370, 310, 310, 310, 370\}
+09813 ,\{ 260, 260, 260, 260, 260\}
+09814 ,\{ 260, 200, 260, 200, 200\}
+09815 ,\{ 260, 260, 260, 260, 260\}
+09816 \}
+09817 ,\{\{ 310, 310, 310, 310, 310\}
+09818 ,\{ 310, 310, 310, 310, 310\}
+09819 ,\{ 310, 310, 310, 310, 310\}
+09820 ,\{ 310, 310, 310, 310, 310\}
+09821 ,\{ 310, 310, 310, 310, 310\}
+09822 \}
+09823 ,\{\{ 280, 260, 270, 260, 280\}
+09824 ,\{ 270, 210, 270, 210, 210\}
+09825 ,\{ 260, 260, 260, 260, 260\}
+09826 ,\{ 280, 150, 150, 150, 280\}
+09827 ,\{ 260, 260, 260, 260, 260\}
+09828 \}
+09829 ,\{\{ 310, 310, 310, 310, 310\}
+09830 ,\{ 310, 310, 310, 310, 310\}
+09831 ,\{ 280, 280, 280, 280, 280\}
+09832 ,\{ 310, 310, 310, 310, 310\}
+09833 ,\{ 220, 220, 220, 220, 220\}
+09834 \}
+09835 \}
+09836 \}
+09837 ,\{\{\{\{ 430, 430, 400, 400, 430\}
+09838 ,\{ 430, 410, 400, 370, 430\}
+09839 ,\{ 400, 370, 340, 400, 340\}
+09840 ,\{ 370, 370, 340, 340, 340\}
+09841 ,\{ 430, 430, 340, 400, 340\}
+09842 \}
+09843 ,\{\{ 430, 410, 370, 370, 430\}
+09844 ,\{ 430, 410, 370, 370, 430\}
+09845 ,\{ 370, 370, 340, 340, 340\}
+09846 ,\{ 320, 290, 320, 260, 320\}
+09847 ,\{ 370, 370, 340, 340, 340\}
+09848 \}
+09849 ,\{\{ 400, 370, 340, 400, 340\}
+09850 ,\{ 370, 370, 340, 340, 340\}
+09851 ,\{ 400, 370, 340, 400, 340\}
+09852 ,\{ 370, 370, 340, 340, 340\}
+09853 ,\{ 400, 370, 340, 400, 340\}
+09854 \}
+09855 ,\{\{ 400, 370, 400, 340, 400\}
+09856 ,\{ 400, 370, 400, 340, 400\}
+09857 ,\{ 370, 370, 340, 340, 340\}
+09858 ,\{ 340, 260, 210, 340, 340\}
+09859 ,\{ 370, 370, 340, 340, 340\}
+09860 \}
+09861 ,\{\{ 430, 430, 340, 400, 340\}
+09862 ,\{ 370, 370, 340, 340, 340\}
+09863 ,\{ 400, 370, 340, 400, 340\}
+09864 ,\{ 370, 370, 340, 340, 340\}
+09865 ,\{ 430, 430, 340, 340, 340\}
+09866 \}
+09867 \}
+09868 ,\{\{\{ 430, 430, 370, 400, 370\}
+09869 ,\{ 410, 410, 370, 370, 370\}
+09870 ,\{ 400, 370, 340, 400, 340\}
+09871 ,\{ 370, 370, 340, 340, 340\}
+09872 ,\{ 430, 430, 340, 400, 340\}
+09873 \}
+09874 ,\{\{ 410, 410, 370, 370, 370\}
+09875 ,\{ 410, 410, 370, 370, 370\}
+09876 ,\{ 370, 370, 340, 340, 340\}
+09877 ,\{ 290, 290, 260, 260, 260\}
+09878 ,\{ 370, 370, 340, 340, 340\}
+09879 \}
+09880 ,\{\{ 400, 370, 340, 400, 340\}
+09881 ,\{ 370, 370, 340, 340, 340\}
+09882 ,\{ 400, 370, 340, 400, 340\}
+09883 ,\{ 370, 370, 340, 340, 340\}
+09884 ,\{ 400, 370, 340, 400, 340\}
+09885 \}
+09886 ,\{\{ 370, 370, 340, 340, 340\}
+09887 ,\{ 370, 370, 340, 340, 340\}
+09888 ,\{ 370, 370, 340, 340, 340\}
+09889 ,\{ 340, 240, 210, 340, 210\}
+09890 ,\{ 370, 370, 340, 340, 340\}
+09891 \}
+09892 ,\{\{ 430, 430, 340, 400, 340\}
+09893 ,\{ 370, 370, 340, 340, 340\}
+09894 ,\{ 400, 370, 340, 400, 340\}
+09895 ,\{ 370, 370, 340, 340, 340\}
+09896 ,\{ 430, 430, 340, 340, 340\}
+09897 \}
+09898 \}
+09899 ,\{\{\{ 400, 370, 400, 370, 400\}
+09900 ,\{ 400, 370, 400, 370, 400\}
+09901 ,\{ 340, 340, 340, 340, 340\}
+09902 ,\{ 340, 340, 340, 340, 340\}
+09903 ,\{ 340, 340, 340, 340, 340\}
+09904 \}
+09905 ,\{\{ 370, 370, 370, 370, 370\}
+09906 ,\{ 370, 370, 370, 370, 370\}
+09907 ,\{ 340, 340, 340, 340, 340\}
+09908 ,\{ 320, 260, 320, 260, 320\}
+09909 ,\{ 340, 340, 340, 340, 340\}
+09910 \}
+09911 ,\{\{ 340, 340, 340, 340, 340\}
+09912 ,\{ 340, 340, 340, 340, 340\}
+09913 ,\{ 340, 340, 340, 340, 340\}
+09914 ,\{ 340, 340, 340, 340, 340\}
+09915 ,\{ 340, 340, 340, 340, 340\}
+09916 \}
+09917 ,\{\{ 400, 340, 400, 340, 400\}
+09918 ,\{ 400, 340, 400, 340, 400\}
+09919 ,\{ 340, 340, 340, 340, 340\}
+09920 ,\{ 210, 210, 210, 210, 210\}
+09921 ,\{ 340, 340, 340, 340, 340\}
+09922 \}
+09923 ,\{\{ 340, 340, 340, 340, 340\}
+09924 ,\{ 340, 340, 340, 340, 340\}
+09925 ,\{ 340, 340, 340, 340, 340\}
+09926 ,\{ 340, 340, 340, 340, 340\}
+09927 ,\{ 340, 340, 340, 340, 340\}
+09928 \}
+09929 \}
+09930 ,\{\{\{ 370, 320, 370, 340, 370\}
+09931 ,\{ 370, 290, 370, 340, 370\}
+09932 ,\{ 340, 320, 340, 210, 340\}
+09933 ,\{ 340, 260, 340, 340, 340\}
+09934 ,\{ 340, 320, 340, 340, 340\}
+09935 \}
+09936 ,\{\{ 370, 290, 370, 260, 370\}
+09937 ,\{ 370, 290, 370, 240, 370\}
+09938 ,\{ 340, 260, 340, 210, 340\}
+09939 ,\{ 260, 180, 260, 260, 260\}
+09940 ,\{ 340, 260, 340, 210, 340\}
+09941 \}
+09942 ,\{\{ 340, 320, 340, 210, 340\}
+09943 ,\{ 340, 260, 340, 210, 340\}
+09944 ,\{ 340, 320, 340, 210, 340\}
+09945 ,\{ 340, 260, 340, 210, 340\}
+09946 ,\{ 340, 320, 340, 210, 340\}
+09947 \}
+09948 ,\{\{ 340, 260, 340, 340, 340\}
+09949 ,\{ 340, 260, 340, 340, 340\}
+09950 ,\{ 340, 260, 340, 210, 340\}
+09951 ,\{ 340, 260, 210, 340, 210\}
+09952 ,\{ 340, 260, 340, 210, 340\}
+09953 \}
+09954 ,\{\{ 340, 320, 340, 340, 340\}
+09955 ,\{ 340, 260, 340, 210, 340\}
+09956 ,\{ 340, 320, 340, 210, 340\}
+09957 ,\{ 340, 260, 340, 210, 340\}
+09958 ,\{ 340, 260, 340, 340, 340\}
+09959 \}
+09960 \}
+09961 ,\{\{\{ 430, 370, 400, 370, 430\}
+09962 ,\{ 430, 370, 400, 370, 430\}
+09963 ,\{ 340, 340, 340, 340, 340\}
+09964 ,\{ 340, 340, 340, 340, 340\}
+09965 ,\{ 340, 340, 340, 340, 340\}
+09966 \}
+09967 ,\{\{ 430, 370, 370, 370, 430\}
+09968 ,\{ 430, 370, 370, 370, 430\}
+09969 ,\{ 340, 340, 340, 340, 340\}
+09970 ,\{ 320, 260, 320, 260, 260\}
+09971 ,\{ 340, 340, 340, 340, 340\}
+09972 \}
+09973 ,\{\{ 340, 340, 340, 340, 340\}
+09974 ,\{ 340, 340, 340, 340, 340\}
+09975 ,\{ 340, 340, 340, 340, 340\}
+09976 ,\{ 340, 340, 340, 340, 340\}
+09977 ,\{ 340, 340, 340, 340, 340\}
+09978 \}
+09979 ,\{\{ 400, 340, 400, 340, 340\}
+09980 ,\{ 400, 340, 400, 340, 340\}
+09981 ,\{ 340, 340, 340, 340, 340\}
+09982 ,\{ 340, 210, 210, 210, 340\}
+09983 ,\{ 340, 340, 340, 340, 340\}
+09984 \}
+09985 ,\{\{ 340, 340, 340, 340, 340\}
+09986 ,\{ 340, 340, 340, 340, 340\}
+09987 ,\{ 340, 340, 340, 340, 340\}
+09988 ,\{ 340, 340, 340, 340, 340\}
+09989 ,\{ 340, 340, 340, 340, 340\}
+09990 \}
+09991 \}
+09992 \}
+09993 \}\};
+\end{DoxyCode}
--- /dev/null
+\hypertarget{intl22dH_8h}{\section{intl22d\-H.\-h}
+\label{intl22dH_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl22d\-H.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/intl22d\-H.\-h}}
+}
+
+\begin{DoxyCode}
+00001 PUBLIC \textcolor{keywordtype}{int} int22\_dH[\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][\hyperlink{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{NBPAIRS}+1][5][5][5][5] =
+00002 \{\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00007 \}
+00008 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00013 \}
+00014 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00019 \}
+00020 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00025 \}
+00026 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00029 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00031 \}
+00032 \}
+00033 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00037 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00038 \}
+00039 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00043 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00044 \}
+00045 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00049 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00050 \}
+00051 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00056 \}
+00057 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00058 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00059 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00060 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00061 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00062 \}
+00063 \}
+00064 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00065 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00066 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00067 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00068 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00069 \}
+00070 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00071 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00072 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00073 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00074 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00075 \}
+00076 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00077 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00078 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00079 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00080 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00081 \}
+00082 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00083 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00084 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00085 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00086 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00087 \}
+00088 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00089 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00090 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00091 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00092 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00093 \}
+00094 \}
+00095 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00096 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00097 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00099 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00100 \}
+00101 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00105 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00106 \}
+00107 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00108 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00109 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00111 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00112 \}
+00113 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00114 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00115 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00117 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00118 \}
+00119 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00120 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00121 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00122 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00123 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00124 \}
+00125 \}
+00126 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00127 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00128 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00130 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00131 \}
+00132 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00133 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00134 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00136 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00137 \}
+00138 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00139 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00140 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00142 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00143 \}
+00144 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00145 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00146 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00148 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00149 \}
+00150 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00154 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00155 \}
+00156 \}
+00157 \}
+00158 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00159 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00160 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00161 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00162 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00163 \}
+00164 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00165 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00166 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00167 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00168 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00169 \}
+00170 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00171 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00172 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00173 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00174 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00175 \}
+00176 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00177 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00178 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00179 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00180 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00181 \}
+00182 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00183 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00184 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00185 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00186 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00187 \}
+00188 \}
+00189 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00190 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00191 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00192 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00193 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00194 \}
+00195 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00196 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00197 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00198 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00199 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00200 \}
+00201 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00203 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00204 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00205 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00206 \}
+00207 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00208 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00209 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00210 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00211 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00212 \}
+00213 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00214 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00215 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00216 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00217 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00218 \}
+00219 \}
+00220 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00221 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00222 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00223 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00224 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00225 \}
+00226 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00227 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00228 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00229 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00230 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00231 \}
+00232 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00233 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00234 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00235 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00236 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00237 \}
+00238 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00239 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00240 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00241 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00242 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00243 \}
+00244 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00245 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00246 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00247 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00249 \}
+00250 \}
+00251 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00252 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00253 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00256 \}
+00257 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00258 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00259 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00262 \}
+00263 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00264 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00265 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00268 \}
+00269 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00270 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00271 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00274 \}
+00275 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00276 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00277 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00278 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00280 \}
+00281 \}
+00282 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00283 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00284 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00285 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00286 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00287 \}
+00288 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00289 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00290 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00291 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00292 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00293 \}
+00294 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00295 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00296 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00299 \}
+00300 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00301 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00302 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00303 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00304 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00305 \}
+00306 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00307 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00308 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00309 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00310 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00311 \}
+00312 \}
+00313 \}
+00314 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00315 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00316 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00317 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00318 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00319 \}
+00320 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00321 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00322 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00323 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00324 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00325 \}
+00326 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00327 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00328 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00329 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00330 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00331 \}
+00332 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00333 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00334 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00335 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00336 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00337 \}
+00338 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00339 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00340 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00341 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00342 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00343 \}
+00344 \}
+00345 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00346 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00349 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00350 \}
+00351 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00352 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00353 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00354 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00355 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00356 \}
+00357 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00358 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00359 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00360 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00361 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00362 \}
+00363 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00364 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00365 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00366 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00367 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00368 \}
+00369 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00370 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00371 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00372 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00373 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00374 \}
+00375 \}
+00376 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00377 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00378 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00379 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00380 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00381 \}
+00382 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00383 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00384 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00385 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00386 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00387 \}
+00388 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00389 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00390 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00391 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00392 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00393 \}
+00394 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00395 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00396 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00397 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00398 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00399 \}
+00400 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00401 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00402 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00403 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00404 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00405 \}
+00406 \}
+00407 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00408 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00409 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00410 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00411 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00412 \}
+00413 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00414 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00415 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00416 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00417 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00418 \}
+00419 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00420 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00421 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00422 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00423 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00424 \}
+00425 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00426 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00427 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00428 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00429 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00430 \}
+00431 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00432 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00433 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00434 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00435 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00436 \}
+00437 \}
+00438 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00439 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00440 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00441 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00442 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00443 \}
+00444 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00445 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00446 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00447 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00448 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00449 \}
+00450 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00451 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00452 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00453 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00454 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00455 \}
+00456 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00457 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00458 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00459 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00460 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00461 \}
+00462 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00463 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00464 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00465 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00466 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00467 \}
+00468 \}
+00469 \}
+00470 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00471 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00472 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00473 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00474 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00475 \}
+00476 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00477 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00478 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00479 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00480 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00481 \}
+00482 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00483 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00484 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00485 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00486 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00487 \}
+00488 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00489 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00490 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00491 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00492 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00493 \}
+00494 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00495 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00496 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00497 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00498 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00499 \}
+00500 \}
+00501 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00502 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00505 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00506 \}
+00507 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00508 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00511 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00512 \}
+00513 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00514 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00517 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00518 \}
+00519 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00520 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00523 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00524 \}
+00525 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00526 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00527 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00529 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00530 \}
+00531 \}
+00532 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00533 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00534 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00535 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00536 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00537 \}
+00538 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00539 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00540 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00541 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00542 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00543 \}
+00544 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00545 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00546 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00547 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00548 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00549 \}
+00550 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00551 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00552 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00553 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00554 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00555 \}
+00556 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00557 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00558 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00559 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00560 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00561 \}
+00562 \}
+00563 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00564 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00565 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00566 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00567 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00568 \}
+00569 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00570 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00571 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00572 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00573 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00574 \}
+00575 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00576 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00577 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00578 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00579 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00580 \}
+00581 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00582 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00583 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00584 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00585 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00586 \}
+00587 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00588 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00589 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00590 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00591 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00592 \}
+00593 \}
+00594 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00595 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00596 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00597 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00598 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00599 \}
+00600 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00601 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00602 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00603 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00604 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00605 \}
+00606 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00607 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00608 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00609 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00610 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00611 \}
+00612 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00613 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00614 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00615 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00616 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00617 \}
+00618 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00619 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00620 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00621 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00622 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00623 \}
+00624 \}
+00625 \}
+00626 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00627 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00628 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00629 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00630 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00631 \}
+00632 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00633 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00634 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00635 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00636 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00637 \}
+00638 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00639 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00640 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00641 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00642 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00643 \}
+00644 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00645 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00646 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00647 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00648 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00649 \}
+00650 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00651 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00652 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00653 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00654 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00655 \}
+00656 \}
+00657 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00658 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00659 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00660 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00661 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00662 \}
+00663 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00664 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00665 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00666 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00667 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00668 \}
+00669 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00670 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00671 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00672 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00673 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00674 \}
+00675 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00676 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00677 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00678 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00679 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00680 \}
+00681 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00682 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00683 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00684 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00685 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00686 \}
+00687 \}
+00688 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00689 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00690 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00691 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00692 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00693 \}
+00694 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00695 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00696 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00697 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00698 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00699 \}
+00700 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00701 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00702 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00703 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00704 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00705 \}
+00706 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00707 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00708 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00709 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00710 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00711 \}
+00712 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00713 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00714 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00715 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00716 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00717 \}
+00718 \}
+00719 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00720 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00721 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00722 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00723 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00724 \}
+00725 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00726 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00727 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00728 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00729 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00730 \}
+00731 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00732 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00733 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00734 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00735 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00736 \}
+00737 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00738 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00739 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00740 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00741 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00742 \}
+00743 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00744 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00745 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00746 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00747 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00748 \}
+00749 \}
+00750 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00751 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00754 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00755 \}
+00756 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00757 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00760 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00761 \}
+00762 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00763 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00766 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00767 \}
+00768 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00769 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00772 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00773 \}
+00774 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00775 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00776 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00778 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00779 \}
+00780 \}
+00781 \}
+00782 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00783 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00784 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00785 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00786 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00787 \}
+00788 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00789 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00790 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00791 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00792 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00793 \}
+00794 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00795 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00796 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00797 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00798 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00799 \}
+00800 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00801 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00802 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00803 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00804 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00805 \}
+00806 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00807 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00808 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00809 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00810 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00811 \}
+00812 \}
+00813 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00814 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00815 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00816 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00817 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00818 \}
+00819 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00820 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00821 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00822 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00823 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00824 \}
+00825 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00826 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00827 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00828 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00829 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00830 \}
+00831 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00832 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00833 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00834 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00835 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00836 \}
+00837 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00838 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00839 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00840 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00841 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00842 \}
+00843 \}
+00844 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00845 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00846 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00847 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00848 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00849 \}
+00850 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00851 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00852 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00853 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00854 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00855 \}
+00856 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00857 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00858 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00859 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00860 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00861 \}
+00862 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00863 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00864 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00865 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00866 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00867 \}
+00868 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00869 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00870 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00871 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00872 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00873 \}
+00874 \}
+00875 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00876 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00877 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00878 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00879 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00880 \}
+00881 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00882 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00883 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00884 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00885 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00886 \}
+00887 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00888 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00889 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00890 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00891 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00892 \}
+00893 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00894 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00895 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00896 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00897 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00898 \}
+00899 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00900 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00901 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00902 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00903 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00904 \}
+00905 \}
+00906 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00907 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00908 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00909 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00910 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00911 \}
+00912 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00913 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00914 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00915 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00916 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00917 \}
+00918 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00919 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00920 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00921 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00922 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00923 \}
+00924 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00925 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00926 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00927 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00928 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00929 \}
+00930 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00931 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00932 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00933 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00934 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00935 \}
+00936 \}
+00937 \}
+00938 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00939 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00940 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00941 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00942 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00943 \}
+00944 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00945 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00946 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00947 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00948 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00949 \}
+00950 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00951 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00952 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00953 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00954 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00955 \}
+00956 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00957 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00958 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00959 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00960 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00961 \}
+00962 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00963 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00964 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00965 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00966 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00967 \}
+00968 \}
+00969 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00970 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00971 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00972 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00973 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00974 \}
+00975 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00976 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00977 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00978 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00979 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00980 \}
+00981 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00982 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00983 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00984 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00985 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00986 \}
+00987 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00988 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00989 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00990 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00991 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00992 \}
+00993 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00994 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00995 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00996 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00997 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+00998 \}
+00999 \}
+01000 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01001 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01002 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01003 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01004 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01005 \}
+01006 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01007 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01008 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01009 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01010 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01011 \}
+01012 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01013 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01014 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01015 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01016 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01017 \}
+01018 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01019 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01020 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01021 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01022 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01023 \}
+01024 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01025 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01026 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01027 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01028 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01029 \}
+01030 \}
+01031 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01032 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01033 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01034 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01035 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01036 \}
+01037 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01038 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01039 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01040 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01041 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01042 \}
+01043 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01044 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01045 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01046 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01047 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01048 \}
+01049 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01050 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01051 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01052 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01053 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01054 \}
+01055 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01056 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01057 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01058 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01059 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01060 \}
+01061 \}
+01062 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01063 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01064 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01065 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01066 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01067 \}
+01068 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01069 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01070 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01071 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01072 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01073 \}
+01074 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01075 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01076 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01077 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01078 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01079 \}
+01080 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01081 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01082 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01083 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01084 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01085 \}
+01086 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01087 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01088 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01089 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01090 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01091 \}
+01092 \}
+01093 \}
+01094 ,\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01095 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01096 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01097 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01099 \}
+01100 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01101 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01102 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01103 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01105 \}
+01106 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01107 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01108 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01109 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01111 \}
+01112 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01113 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01114 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01115 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01117 \}
+01118 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01119 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01120 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01121 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01122 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01123 \}
+01124 \}
+01125 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01126 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01127 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01128 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01130 \}
+01131 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01132 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01133 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01134 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01136 \}
+01137 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01138 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01139 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01140 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01142 \}
+01143 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01144 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01145 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01146 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01148 \}
+01149 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01150 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01151 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01152 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01153 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01154 \}
+01155 \}
+01156 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01157 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01158 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01159 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01160 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01161 \}
+01162 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01163 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01164 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01165 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01166 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01167 \}
+01168 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01169 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01170 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01171 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01172 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01173 \}
+01174 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01175 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01176 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01177 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01178 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01179 \}
+01180 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01181 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01182 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01183 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01184 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01185 \}
+01186 \}
+01187 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01188 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01189 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01190 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01191 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01192 \}
+01193 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01194 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01195 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01196 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01197 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01198 \}
+01199 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01200 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01201 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01202 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01203 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01204 \}
+01205 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01206 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01207 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01208 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01209 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01210 \}
+01211 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01212 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01213 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01214 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01215 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01216 \}
+01217 \}
+01218 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01219 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01220 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01221 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01222 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01223 \}
+01224 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01225 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01226 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01227 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01228 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01229 \}
+01230 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01231 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01232 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01233 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01234 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01235 \}
+01236 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01237 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01238 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01239 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01240 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01241 \}
+01242 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01243 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01244 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01245 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01246 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01247 \}
+01248 \}
+01249 \}
+01250 \}
+01251 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01252 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01253 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01256 \}
+01257 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01258 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01259 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01262 \}
+01263 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01264 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01265 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01268 \}
+01269 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01270 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01271 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01274 \}
+01275 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01276 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01277 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01278 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01280 \}
+01281 \}
+01282 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01283 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01284 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01285 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01286 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01287 \}
+01288 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01289 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01290 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01291 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01292 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01293 \}
+01294 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01295 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01296 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01299 \}
+01300 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01301 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01302 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01303 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01304 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01305 \}
+01306 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01307 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01308 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01309 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01310 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01311 \}
+01312 \}
+01313 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01314 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01315 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01316 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01317 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01318 \}
+01319 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01320 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01321 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01322 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01323 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01324 \}
+01325 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01326 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01327 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01328 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01329 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01330 \}
+01331 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01332 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01333 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01334 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01335 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01336 \}
+01337 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01338 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01339 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01340 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01341 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01342 \}
+01343 \}
+01344 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01345 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01346 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01349 \}
+01350 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01351 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01352 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01353 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01354 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01355 \}
+01356 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01357 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01358 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01359 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01360 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01361 \}
+01362 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01363 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01364 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01365 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01366 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01367 \}
+01368 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01369 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01370 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01371 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01372 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01373 \}
+01374 \}
+01375 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01376 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01377 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01378 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01379 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01380 \}
+01381 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01382 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01383 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01384 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01385 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01386 \}
+01387 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01388 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01389 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01390 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01391 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01392 \}
+01393 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01394 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01395 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01396 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01397 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01398 \}
+01399 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01400 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01401 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01402 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01403 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+01404 \}
+01405 \}
+01406 \}
+01407 ,\{\{\{\{ 80, -120, 30, 80, 80\}
+01408 ,\{ 30, -310, -170, 30, -110\}
+01409 ,\{ 80, -230, -110, 80, -60\}
+01410 ,\{ 80, -120, 30, 30, 80\}
+01411 ,\{ -30, -340, -220, -30, -170\}
+01412 \}
+01413 ,\{\{ -120, -460, -290, -120, -230\}
+01414 ,\{ -120, -460, -310, -120, -260\}
+01415 ,\{ -430, -770, -620, -430, -570\}
+01416 ,\{ -230, -670, -290, -980, -230\}
+01417 ,\{ -430, -770, -620, -430, -570\}
+01418 \}
+01419 ,\{\{ 30, -290, -170, 30, -110\}
+01420 ,\{ 30, -310, -170, 30, -110\}
+01421 ,\{ 20, -290, -170, 20, -120\}
+01422 ,\{ 30, -310, -170, 30, -110\}
+01423 ,\{ -30, -340, -220, -30, -170\}
+01424 \}
+01425 ,\{\{ 80, -120, 30, -430, 80\}
+01426 ,\{ -520, -960, -580, -1270, -520\}
+01427 ,\{ -430, -770, -620, -430, -570\}
+01428 ,\{ 80, -120, 30, -430, 80\}
+01429 ,\{ -430, -770, -620, -430, -570\}
+01430 \}
+01431 ,\{\{ 80, -230, -110, 80, -60\}
+01432 ,\{ 30, -310, -170, 30, -110\}
+01433 ,\{ 80, -230, -110, 80, -60\}
+01434 ,\{ 30, -310, -170, 30, -110\}
+01435 ,\{ -860, -860, -960, -1410, -900\}
+01436 \}
+01437 \}
+01438 ,\{\{\{ 30, -120, 30, -520, 30\}
+01439 ,\{ -170, -310, -170, -810, -170\}
+01440 ,\{ -110, -260, -110, -520, -110\}
+01441 ,\{ 30, -120, 30, -810, 30\}
+01442 ,\{ -220, -370, -220, -630, -220\}
+01443 \}
+01444 ,\{\{ -310, -460, -310, -960, -310\}
+01445 ,\{ -310, -460, -310, -960, -310\}
+01446 ,\{ -620, -770, -620, -1270, -620\}
+01447 ,\{ -530, -670, -530, -1170, -530\}
+01448 ,\{ -620, -770, -620, -1270, -620\}
+01449 \}
+01450 ,\{\{ -170, -310, -170, -580, -170\}
+01451 ,\{ -170, -310, -170, -810, -170\}
+01452 ,\{ -170, -320, -170, -580, -170\}
+01453 ,\{ -170, -310, -170, -810, -170\}
+01454 ,\{ -220, -370, -220, -630, -220\}
+01455 \}
+01456 ,\{\{ 30, -120, 30, -1270, 30\}
+01457 ,\{ -810, -960, -810, -1460, -810\}
+01458 ,\{ -620, -770, -620, -1270, -620\}
+01459 ,\{ 30, -120, 30, -1870, 30\}
+01460 ,\{ -620, -770, -620, -1270, -620\}
+01461 \}
+01462 ,\{\{ -110, -260, -110, -520, -110\}
+01463 ,\{ -170, -310, -170, -810, -170\}
+01464 ,\{ -110, -260, -110, -520, -110\}
+01465 ,\{ -170, -310, -170, -810, -170\}
+01466 ,\{ -860, -860, -960, -1600, -960\}
+01467 \}
+01468 \}
+01469 ,\{\{\{ 80, -430, 20, -430, 80\}
+01470 ,\{ -110, -620, -170, -620, -110\}
+01471 ,\{ -60, -570, -120, -570, -60\}
+01472 ,\{ 80, -430, 20, -430, 80\}
+01473 ,\{ -170, -680, -230, -680, -170\}
+01474 \}
+01475 ,\{\{ -230, -770, -290, -770, -230\}
+01476 ,\{ -260, -770, -320, -770, -260\}
+01477 ,\{ -570, -1080, -630, -1080, -570\}
+01478 ,\{ -230, -980, -290, -980, -230\}
+01479 ,\{ -570, -1080, -630, -1080, -570\}
+01480 \}
+01481 ,\{\{ -110, -620, -170, -620, -110\}
+01482 ,\{ -110, -620, -170, -620, -110\}
+01483 ,\{ -120, -630, -180, -630, -120\}
+01484 ,\{ -110, -620, -170, -620, -110\}
+01485 ,\{ -170, -680, -230, -680, -170\}
+01486 \}
+01487 ,\{\{ 80, -430, 20, -430, 80\}
+01488 ,\{ -520, -1270, -580, -1270, -520\}
+01489 ,\{ -570, -1080, -630, -1080, -570\}
+01490 ,\{ 80, -430, 20, -430, 80\}
+01491 ,\{ -570, -1080, -630, -1080, -570\}
+01492 \}
+01493 ,\{\{ -60, -570, -120, -570, -60\}
+01494 ,\{ -110, -620, -170, -620, -110\}
+01495 ,\{ -60, -570, -120, -570, -60\}
+01496 ,\{ -110, -620, -170, -620, -110\}
+01497 ,\{ -900, -1410, -960, -1410, -900\}
+01498 \}
+01499 \}
+01500 ,\{\{\{ 80, -230, 30, 80, 30\}
+01501 ,\{ 30, -530, -170, 30, -170\}
+01502 ,\{ 80, -230, -110, 80, -110\}
+01503 ,\{ 30, -530, 30, 30, 30\}
+01504 ,\{ -30, -340, -220, -30, -220\}
+01505 \}
+01506 ,\{\{ -120, -670, -310, -120, -310\}
+01507 ,\{ -120, -670, -310, -120, -310\}
+01508 ,\{ -430, -980, -620, -430, -620\}
+01509 ,\{ -530, -890, -530, -1580, -530\}
+01510 ,\{ -430, -980, -620, -430, -620\}
+01511 \}
+01512 ,\{\{ 30, -290, -170, 30, -170\}
+01513 ,\{ 30, -530, -170, 30, -170\}
+01514 ,\{ 20, -290, -170, 20, -170\}
+01515 ,\{ 30, -530, -170, 30, -170\}
+01516 ,\{ -30, -340, -220, -30, -220\}
+01517 \}
+01518 ,\{\{ 30, -980, 30, -430, 30\}
+01519 ,\{ -810, -1170, -810, -1870, -810\}
+01520 ,\{ -430, -980, -620, -430, -620\}
+01521 ,\{ 30, -1580, 30, -2280, 30\}
+01522 ,\{ -430, -980, -620, -430, -620\}
+01523 \}
+01524 ,\{\{ 80, -230, -110, 80, -110\}
+01525 ,\{ 30, -530, -170, 30, -170\}
+01526 ,\{ 80, -230, -110, 80, -110\}
+01527 ,\{ 30, -530, -170, 30, -170\}
+01528 ,\{ -960, -1320, -960, -2010, -960\}
+01529 \}
+01530 \}
+01531 ,\{\{\{ -30, -430, -30, -430, -860\}
+01532 ,\{ -220, -620, -220, -620, -860\}
+01533 ,\{ -170, -570, -170, -570, -900\}
+01534 ,\{ -30, -430, -30, -430, -960\}
+01535 ,\{ -280, -680, -280, -680, -1010\}
+01536 \}
+01537 ,\{\{ -340, -770, -340, -770, -860\}
+01538 ,\{ -370, -770, -370, -770, -860\}
+01539 ,\{ -680, -1080, -680, -1080, -1410\}
+01540 ,\{ -340, -980, -340, -980, -1320\}
+01541 ,\{ -680, -1080, -680, -1080, -1410\}
+01542 \}
+01543 ,\{\{ -220, -620, -220, -620, -960\}
+01544 ,\{ -220, -620, -220, -620, -960\}
+01545 ,\{ -230, -630, -230, -630, -960\}
+01546 ,\{ -220, -620, -220, -620, -960\}
+01547 ,\{ -280, -680, -280, -680, -1010\}
+01548 \}
+01549 ,\{\{ -30, -430, -30, -430, -1410\}
+01550 ,\{ -630, -1270, -630, -1270, -1600\}
+01551 ,\{ -680, -1080, -680, -1080, -1410\}
+01552 ,\{ -30, -430, -30, -430, -2010\}
+01553 ,\{ -680, -1080, -680, -1080, -1410\}
+01554 \}
+01555 ,\{\{ -170, -570, -170, -570, -900\}
+01556 ,\{ -220, -620, -220, -620, -960\}
+01557 ,\{ -170, -570, -170, -570, -900\}
+01558 ,\{ -220, -620, -220, -620, -960\}
+01559 ,\{ -1010, -1410, -1010, -1410, -1750\}
+01560 \}
+01561 \}
+01562 \}
+01563 ,\{\{\{\{ 540, 180, 30, 540, 180\}
+01564 ,\{ 10, -580, -150, 10, -90\}
+01565 ,\{ 540, -350, -600, 540, -540\}
+01566 ,\{ 180, 180, 30, -320, 180\}
+01567 ,\{ -90, -740, -90, -260, -540\}
+01568 \}
+01569 ,\{\{ -90, -350, -150, -100, -90\}
+01570 ,\{ -90, -580, -150, -200, -90\}
+01571 ,\{ -100, -350, -600, -100, -540\}
+01572 ,\{ -630, -1790, -630, -1790, -1040\}
+01573 ,\{ -400, -740, -600, -400, -540\}
+01574 \}
+01575 ,\{\{ 540, -660, -510, 540, -400\}
+01576 ,\{ 10, -660, -510, 10, -400\}
+01577 ,\{ 540, -940, -820, 540, -760\}
+01578 ,\{ -320, -660, -510, -320, -460\}
+01579 ,\{ -260, -940, -820, -260, -550\}
+01580 \}
+01581 ,\{\{ 180, 180, 30, -400, 180\}
+01582 ,\{ -500, -1070, -500, -1080, -570\}
+01583 ,\{ -400, -740, -600, -400, -540\}
+01584 ,\{ 180, 180, 30, -430, 180\}
+01585 ,\{ -400, -740, -600, -400, -540\}
+01586 \}
+01587 ,\{\{ -90, -660, -90, -210, -460\}
+01588 ,\{ -320, -660, -510, -320, -460\}
+01589 ,\{ -210, -1250, -1130, -210, -1070\}
+01590 ,\{ -320, -660, -510, -320, -460\}
+01591 ,\{ -90, -830, -90, -810, -800\}
+01592 \}
+01593 \}
+01594 ,\{\{\{ 540, 180, -90, 540, 30\}
+01595 ,\{ 10, -580, -220, 10, -150\}
+01596 ,\{ 540, -740, -600, 540, -600\}
+01597 ,\{ 180, 180, -390, -1160, 30\}
+01598 ,\{ -90, -740, -90, -810, -600\}
+01599 \}
+01600 ,\{\{ -100, -580, -220, -100, -150\}
+01601 ,\{ -150, -580, -220, -970, -150\}
+01602 ,\{ -100, -740, -600, -100, -600\}
+01603 ,\{ -1340, -2010, -1650, -1980, -1340\}
+01604 ,\{ -600, -740, -600, -1240, -600\}
+01605 \}
+01606 ,\{\{ 540, -660, -510, 540, -510\}
+01607 ,\{ 10, -660, -1150, 10, -510\}
+01608 ,\{ 540, -960, -820, 540, -820\}
+01609 ,\{ -510, -660, -510, -1160, -510\}
+01610 ,\{ -820, -960, -820, -1220, -820\}
+01611 \}
+01612 ,\{\{ 180, 180, -390, -1240, 30\}
+01613 ,\{ -860, -1340, -860, -2450, -860\}
+01614 ,\{ -600, -740, -600, -1240, -600\}
+01615 ,\{ 180, 180, -390, -1870, 30\}
+01616 ,\{ -600, -740, -600, -1240, -600\}
+01617 \}
+01618 ,\{\{ -90, -660, -90, -810, -510\}
+01619 ,\{ -510, -660, -510, -1160, -510\}
+01620 ,\{ -1130, -1270, -1130, -1530, -1130\}
+01621 ,\{ -510, -660, -510, -1160, -510\}
+01622 ,\{ -90, -1240, -90, -810, -800\}
+01623 \}
+01624 \}
+01625 ,\{\{\{ 180, -430, 20, -430, 180\}
+01626 ,\{ -90, -600, -500, -600, -90\}
+01627 ,\{ -540, -1050, -600, -1050, -540\}
+01628 ,\{ 180, -430, 20, -430, 180\}
+01629 ,\{ -540, -830, -600, -1050, -540\}
+01630 \}
+01631 ,\{\{ -90, -600, -600, -600, -90\}
+01632 ,\{ -90, -600, -1070, -600, -90\}
+01633 ,\{ -540, -1050, -600, -1050, -540\}
+01634 ,\{ -630, -1790, -630, -1790, -1040\}
+01635 ,\{ -540, -1050, -600, -1050, -540\}
+01636 \}
+01637 ,\{\{ -460, -970, -520, -970, -460\}
+01638 ,\{ -460, -970, -750, -970, -460\}
+01639 ,\{ -760, -1270, -820, -1270, -760\}
+01640 ,\{ -460, -970, -520, -970, -460\}
+01641 ,\{ -550, -1270, -820, -1270, -550\}
+01642 \}
+01643 ,\{\{ 180, -430, 20, -430, 180\}
+01644 ,\{ -500, -1070, -500, -1320, -570\}
+01645 ,\{ -540, -1050, -600, -1050, -540\}
+01646 ,\{ 180, -430, 20, -430, 180\}
+01647 ,\{ -540, -1050, -600, -1050, -540\}
+01648 \}
+01649 ,\{\{ -460, -830, -520, -970, -460\}
+01650 ,\{ -460, -970, -520, -970, -460\}
+01651 ,\{ -1070, -1580, -1130, -1580, -1070\}
+01652 ,\{ -460, -970, -520, -970, -460\}
+01653 ,\{ -830, -830, -1710, -1260, -1460\}
+01654 \}
+01655 \}
+01656 ,\{\{\{ 30, -350, 30, -200, 30\}
+01657 ,\{ -150, -870, -150, -200, -150\}
+01658 ,\{ -210, -350, -600, -210, -600\}
+01659 ,\{ 30, -870, 30, -320, 30\}
+01660 ,\{ -260, -940, -600, -260, -600\}
+01661 \}
+01662 ,\{\{ -150, -350, -150, -200, -150\}
+01663 ,\{ -150, -1600, -150, -200, -150\}
+01664 ,\{ -350, -350, -600, -440, -600\}
+01665 ,\{ -1340, -3070, -1340, -2390, -1340\}
+01666 ,\{ -400, -960, -600, -400, -600\}
+01667 \}
+01668 ,\{\{ -260, -870, -510, -260, -510\}
+01669 ,\{ -320, -1110, -510, -320, -510\}
+01670 ,\{ -620, -940, -820, -620, -820\}
+01671 ,\{ -320, -870, -510, -320, -510\}
+01672 ,\{ -260, -940, -820, -260, -820\}
+01673 \}
+01674 ,\{\{ 30, -960, 30, -400, 30\}
+01675 ,\{ -860, -1880, -860, -1080, -860\}
+01676 ,\{ -400, -960, -600, -400, -600\}
+01677 ,\{ 30, -1370, 30, -2280, 30\}
+01678 ,\{ -400, -960, -600, -400, -600\}
+01679 \}
+01680 ,\{\{ -210, -870, -510, -210, -510\}
+01681 ,\{ -320, -870, -510, -320, -510\}
+01682 ,\{ -210, -1250, -1130, -210, -1130\}
+01683 ,\{ -320, -870, -510, -320, -510\}
+01684 ,\{ -800, -1360, -800, -1550, -800\}
+01685 \}
+01686 \}
+01687 ,\{\{\{ -200, -430, -200, -430, -230\}
+01688 ,\{ -200, -600, -200, -600, -400\}
+01689 ,\{ -650, -1050, -650, -1050, -1390\}
+01690 ,\{ -230, -430, -570, -430, -230\}
+01691 ,\{ -650, -1050, -650, -1050, -1390\}
+01692 \}
+01693 ,\{\{ -200, -600, -200, -600, -1390\}
+01694 ,\{ -200, -600, -200, -600, -1490\}
+01695 ,\{ -650, -1050, -650, -1050, -1390\}
+01696 ,\{ -1150, -1790, -1150, -1790, -1520\}
+01697 ,\{ -650, -1050, -650, -1050, -1390\}
+01698 \}
+01699 ,\{\{ -400, -970, -570, -970, -400\}
+01700 ,\{ -400, -970, -570, -970, -400\}
+01701 ,\{ -870, -1270, -870, -1270, -1610\}
+01702 ,\{ -570, -970, -570, -970, -1300\}
+01703 ,\{ -870, -1270, -870, -1270, -1610\}
+01704 \}
+01705 ,\{\{ -230, -430, -650, -430, -230\}
+01706 ,\{ -1300, -1320, -1750, -1320, -1300\}
+01707 ,\{ -650, -1050, -650, -1050, -1390\}
+01708 ,\{ -230, -430, -880, -430, -230\}
+01709 ,\{ -650, -1050, -650, -1050, -1390\}
+01710 \}
+01711 ,\{\{ -570, -970, -570, -970, -1300\}
+01712 ,\{ -570, -970, -570, -970, -1300\}
+01713 ,\{ -1180, -1580, -1180, -1580, -1920\}
+01714 ,\{ -570, -970, -570, -970, -1300\}
+01715 ,\{ -860, -1260, -860, -1260, -2350\}
+01716 \}
+01717 \}
+01718 \}
+01719 ,\{\{\{\{ 240, 40, 190, -270, 240\}
+01720 ,\{ -590, -1030, -650, -870, -590\}
+01721 ,\{ -870, -1180, -1060, -870, -1010\}
+01722 ,\{ 240, 40, 190, -270, 240\}
+01723 ,\{ -870, -970, -1060, -870, -1010\}
+01724 \}
+01725 ,\{\{ -780, -1210, -840, -870, -780\}
+01726 ,\{ -1050, -1370, -1240, -1050, -1190\}
+01727 ,\{ -870, -1210, -1060, -870, -1010\}
+01728 ,\{ -780, -1220, -840, -1530, -780\}
+01729 ,\{ -870, -1210, -1060, -870, -1010\}
+01730 \}
+01731 ,\{\{ -870, -1180, -1060, -870, -1010\}
+01732 ,\{ -870, -1210, -1060, -870, -1010\}
+01733 ,\{ -870, -1180, -1060, -870, -1010\}
+01734 ,\{ -870, -1210, -1060, -870, -1010\}
+01735 ,\{ -870, -1180, -1060, -870, -1010\}
+01736 \}
+01737 ,\{\{ 240, 40, 190, -270, 240\}
+01738 ,\{ -590, -1030, -650, -1340, -590\}
+01739 ,\{ -870, -1210, -1060, -870, -1010\}
+01740 ,\{ 240, 40, 190, -270, 240\}
+01741 ,\{ -870, -1210, -1060, -870, -1010\}
+01742 \}
+01743 ,\{\{ -870, -970, -1060, -870, -1010\}
+01744 ,\{ -870, -1210, -1060, -870, -1010\}
+01745 ,\{ -870, -1180, -1060, -870, -1010\}
+01746 ,\{ -870, -1210, -1060, -870, -1010\}
+01747 ,\{ -970, -970, -1060, -1520, -1010\}
+01748 \}
+01749 \}
+01750 ,\{\{\{ 190, 40, 190, -1470, 190\}
+01751 ,\{ -890, -1030, -890, -1530, -890\}
+01752 ,\{ -1060, -1210, -1060, -1470, -1060\}
+01753 ,\{ 190, 40, 190, -1710, 190\}
+01754 ,\{ -970, -970, -1060, -1470, -1060\}
+01755 \}
+01756 ,\{\{ -1060, -1210, -1060, -1710, -1060\}
+01757 ,\{ -1240, -1370, -1240, -1890, -1240\}
+01758 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01759 ,\{ -1080, -1220, -1080, -1720, -1080\}
+01760 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01761 \}
+01762 ,\{\{ -1060, -1210, -1060, -1470, -1060\}
+01763 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01764 ,\{ -1060, -1210, -1060, -1470, -1060\}
+01765 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01766 ,\{ -1060, -1210, -1060, -1470, -1060\}
+01767 \}
+01768 ,\{\{ 190, 40, 190, -1530, 190\}
+01769 ,\{ -890, -1030, -890, -1530, -890\}
+01770 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01771 ,\{ 190, 40, 190, -1710, 190\}
+01772 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01773 \}
+01774 ,\{\{ -970, -970, -1060, -1470, -1060\}
+01775 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01776 ,\{ -1060, -1210, -1060, -1470, -1060\}
+01777 ,\{ -1060, -1210, -1060, -1710, -1060\}
+01778 ,\{ -970, -970, -1060, -1710, -1060\}
+01779 \}
+01780 \}
+01781 ,\{\{\{ 240, -270, 180, -270, 240\}
+01782 ,\{ -590, -1340, -650, -1340, -590\}
+01783 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01784 ,\{ 240, -270, 180, -270, 240\}
+01785 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01786 \}
+01787 ,\{\{ -780, -1520, -840, -1520, -780\}
+01788 ,\{ -1190, -1700, -1250, -1700, -1190\}
+01789 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01790 ,\{ -780, -1530, -840, -1530, -780\}
+01791 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01792 \}
+01793 ,\{\{ -1010, -1520, -1070, -1520, -1010\}
+01794 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01795 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01796 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01797 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01798 \}
+01799 ,\{\{ 240, -270, 180, -270, 240\}
+01800 ,\{ -590, -1340, -650, -1340, -590\}
+01801 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01802 ,\{ 240, -270, 180, -270, 240\}
+01803 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01804 \}
+01805 ,\{\{ -1010, -1520, -1070, -1520, -1010\}
+01806 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01807 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01808 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01809 ,\{ -1010, -1520, -1070, -1520, -1010\}
+01810 \}
+01811 \}
+01812 ,\{\{\{ 190, -1180, 190, -870, 190\}
+01813 ,\{ -870, -1250, -890, -870, -890\}
+01814 ,\{ -870, -1180, -1060, -870, -1060\}
+01815 ,\{ 190, -1420, 190, -870, 190\}
+01816 ,\{ -870, -1180, -1060, -870, -1060\}
+01817 \}
+01818 ,\{\{ -870, -1420, -1060, -870, -1060\}
+01819 ,\{ -1050, -1600, -1240, -1050, -1240\}
+01820 ,\{ -870, -1420, -1060, -870, -1060\}
+01821 ,\{ -1080, -1440, -1080, -2130, -1080\}
+01822 ,\{ -870, -1420, -1060, -870, -1060\}
+01823 \}
+01824 ,\{\{ -870, -1180, -1060, -870, -1060\}
+01825 ,\{ -870, -1420, -1060, -870, -1060\}
+01826 ,\{ -870, -1180, -1060, -870, -1060\}
+01827 ,\{ -870, -1420, -1060, -870, -1060\}
+01828 ,\{ -870, -1180, -1060, -870, -1060\}
+01829 \}
+01830 ,\{\{ 190, -1250, 190, -870, 190\}
+01831 ,\{ -890, -1250, -890, -1940, -890\}
+01832 ,\{ -870, -1420, -1060, -870, -1060\}
+01833 ,\{ 190, -1420, 190, -2120, 190\}
+01834 ,\{ -870, -1420, -1060, -870, -1060\}
+01835 \}
+01836 ,\{\{ -870, -1180, -1060, -870, -1060\}
+01837 ,\{ -870, -1420, -1060, -870, -1060\}
+01838 ,\{ -870, -1180, -1060, -870, -1060\}
+01839 ,\{ -870, -1420, -1060, -870, -1060\}
+01840 ,\{ -1060, -1420, -1060, -2120, -1060\}
+01841 \}
+01842 \}
+01843 ,\{\{\{ 130, -270, 130, -270, -1680\}
+01844 ,\{ -700, -1340, -700, -1340, -1680\}
+01845 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01846 ,\{ 130, -270, 130, -270, -1850\}
+01847 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01848 \}
+01849 ,\{\{ -890, -1520, -890, -1520, -1790\}
+01850 ,\{ -1300, -1700, -1300, -1700, -1790\}
+01851 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01852 ,\{ -890, -1530, -890, -1530, -1870\}
+01853 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01854 \}
+01855 ,\{\{ -1120, -1520, -1120, -1520, -1850\}
+01856 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01857 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01858 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01859 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01860 \}
+01861 ,\{\{ 130, -270, 130, -270, -1680\}
+01862 ,\{ -700, -1340, -700, -1340, -1680\}
+01863 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01864 ,\{ 130, -270, 130, -270, -1850\}
+01865 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01866 \}
+01867 ,\{\{ -1120, -1520, -1120, -1520, -1850\}
+01868 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01869 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01870 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01871 ,\{ -1120, -1520, -1120, -1520, -1850\}
+01872 \}
+01873 \}
+01874 \}
+01875 ,\{\{\{\{ 800, 600, 740, 290, 800\}
+01876 ,\{ 200, -140, 0, 200, 50\}
+01877 ,\{ -310, -630, -510, -310, -450\}
+01878 ,\{ 800, 600, 740, 290, 800\}
+01879 ,\{ -310, -410, -510, -310, -450\}
+01880 \}
+01881 ,\{\{ 200, -140, 0, 200, 50\}
+01882 ,\{ 200, -140, 0, 200, 50\}
+01883 ,\{ -310, -650, -510, -310, -450\}
+01884 ,\{ -550, -990, -610, -1300, -550\}
+01885 ,\{ -310, -650, -510, -310, -450\}
+01886 \}
+01887 ,\{\{ -310, -630, -510, -310, -450\}
+01888 ,\{ -310, -650, -510, -310, -450\}
+01889 ,\{ -310, -630, -510, -310, -450\}
+01890 ,\{ -310, -650, -510, -310, -450\}
+01891 ,\{ -310, -630, -510, -310, -450\}
+01892 \}
+01893 ,\{\{ 800, 600, 740, 290, 800\}
+01894 ,\{ -720, -1160, -780, -1470, -720\}
+01895 ,\{ -310, -650, -510, -310, -450\}
+01896 ,\{ 800, 600, 740, 290, 800\}
+01897 ,\{ -310, -650, -510, -310, -450\}
+01898 \}
+01899 ,\{\{ -310, -410, -510, -310, -450\}
+01900 ,\{ -310, -650, -510, -310, -450\}
+01901 ,\{ -310, -630, -510, -310, -450\}
+01902 ,\{ -310, -650, -510, -310, -450\}
+01903 ,\{ -410, -410, -510, -960, -450\}
+01904 \}
+01905 \}
+01906 ,\{\{\{ 740, 600, 740, -640, 740\}
+01907 ,\{ 0, -140, 0, -640, 0\}
+01908 ,\{ -510, -650, -510, -910, -510\}
+01909 ,\{ 740, 600, 740, -1150, 740\}
+01910 ,\{ -410, -410, -510, -910, -510\}
+01911 \}
+01912 ,\{\{ 0, -140, 0, -640, 0\}
+01913 ,\{ 0, -140, 0, -640, 0\}
+01914 ,\{ -510, -650, -510, -1150, -510\}
+01915 ,\{ -850, -990, -850, -1490, -850\}
+01916 ,\{ -510, -650, -510, -1150, -510\}
+01917 \}
+01918 ,\{\{ -510, -650, -510, -910, -510\}
+01919 ,\{ -510, -650, -510, -1150, -510\}
+01920 ,\{ -510, -650, -510, -910, -510\}
+01921 ,\{ -510, -650, -510, -1150, -510\}
+01922 ,\{ -510, -650, -510, -910, -510\}
+01923 \}
+01924 ,\{\{ 740, 600, 740, -1150, 740\}
+01925 ,\{ -1020, -1160, -1020, -1660, -1020\}
+01926 ,\{ -510, -650, -510, -1150, -510\}
+01927 ,\{ 740, 600, 740, -1150, 740\}
+01928 ,\{ -510, -650, -510, -1150, -510\}
+01929 \}
+01930 ,\{\{ -410, -410, -510, -910, -510\}
+01931 ,\{ -510, -650, -510, -1150, -510\}
+01932 ,\{ -510, -650, -510, -910, -510\}
+01933 ,\{ -510, -650, -510, -1150, -510\}
+01934 ,\{ -410, -410, -510, -1150, -510\}
+01935 \}
+01936 \}
+01937 ,\{\{\{ 800, 290, 740, 290, 800\}
+01938 ,\{ 50, -450, 0, -450, 50\}
+01939 ,\{ -450, -960, -510, -960, -450\}
+01940 ,\{ 800, 290, 740, 290, 800\}
+01941 ,\{ -450, -960, -510, -960, -450\}
+01942 \}
+01943 ,\{\{ 50, -450, 0, -450, 50\}
+01944 ,\{ 50, -450, 0, -450, 50\}
+01945 ,\{ -450, -960, -510, -960, -450\}
+01946 ,\{ -550, -1300, -610, -1300, -550\}
+01947 ,\{ -450, -960, -510, -960, -450\}
+01948 \}
+01949 ,\{\{ -450, -960, -510, -960, -450\}
+01950 ,\{ -450, -960, -510, -960, -450\}
+01951 ,\{ -450, -960, -510, -960, -450\}
+01952 ,\{ -450, -960, -510, -960, -450\}
+01953 ,\{ -450, -960, -510, -960, -450\}
+01954 \}
+01955 ,\{\{ 800, 290, 740, 290, 800\}
+01956 ,\{ -720, -1470, -780, -1470, -720\}
+01957 ,\{ -450, -960, -510, -960, -450\}
+01958 ,\{ 800, 290, 740, 290, 800\}
+01959 ,\{ -450, -960, -510, -960, -450\}
+01960 \}
+01961 ,\{\{ -450, -960, -510, -960, -450\}
+01962 ,\{ -450, -960, -510, -960, -450\}
+01963 ,\{ -450, -960, -510, -960, -450\}
+01964 ,\{ -450, -960, -510, -960, -450\}
+01965 ,\{ -450, -960, -510, -960, -450\}
+01966 \}
+01967 \}
+01968 ,\{\{\{ 740, -360, 740, 200, 740\}
+01969 ,\{ 200, -360, 0, 200, 0\}
+01970 ,\{ -310, -630, -510, -310, -510\}
+01971 ,\{ 740, -870, 740, -310, 740\}
+01972 ,\{ -310, -630, -510, -310, -510\}
+01973 \}
+01974 ,\{\{ 200, -360, 0, 200, 0\}
+01975 ,\{ 200, -360, 0, 200, 0\}
+01976 ,\{ -310, -870, -510, -310, -510\}
+01977 ,\{ -850, -1210, -850, -1900, -850\}
+01978 ,\{ -310, -870, -510, -310, -510\}
+01979 \}
+01980 ,\{\{ -310, -630, -510, -310, -510\}
+01981 ,\{ -310, -870, -510, -310, -510\}
+01982 ,\{ -310, -630, -510, -310, -510\}
+01983 ,\{ -310, -870, -510, -310, -510\}
+01984 ,\{ -310, -630, -510, -310, -510\}
+01985 \}
+01986 ,\{\{ 740, -870, 740, -310, 740\}
+01987 ,\{ -1020, -1380, -1020, -2070, -1020\}
+01988 ,\{ -310, -870, -510, -310, -510\}
+01989 ,\{ 740, -870, 740, -1560, 740\}
+01990 ,\{ -310, -870, -510, -310, -510\}
+01991 \}
+01992 ,\{\{ -310, -630, -510, -310, -510\}
+01993 ,\{ -310, -870, -510, -310, -510\}
+01994 ,\{ -310, -630, -510, -310, -510\}
+01995 ,\{ -310, -870, -510, -310, -510\}
+01996 ,\{ -510, -870, -510, -1560, -510\}
+01997 \}
+01998 \}
+01999 ,\{\{\{ 690, 290, 690, 290, -550\}
+02000 ,\{ -50, -450, -50, -450, -550\}
+02001 ,\{ -560, -960, -560, -960, -1300\}
+02002 ,\{ 690, 290, 690, 290, -1300\}
+02003 ,\{ -560, -960, -560, -960, -1300\}
+02004 \}
+02005 ,\{\{ -50, -450, -50, -450, -550\}
+02006 ,\{ -50, -450, -50, -450, -550\}
+02007 ,\{ -560, -960, -560, -960, -1300\}
+02008 ,\{ -660, -1300, -660, -1300, -1640\}
+02009 ,\{ -560, -960, -560, -960, -1300\}
+02010 \}
+02011 ,\{\{ -560, -960, -560, -960, -1300\}
+02012 ,\{ -560, -960, -560, -960, -1300\}
+02013 ,\{ -560, -960, -560, -960, -1300\}
+02014 ,\{ -560, -960, -560, -960, -1300\}
+02015 ,\{ -560, -960, -560, -960, -1300\}
+02016 \}
+02017 ,\{\{ 690, 290, 690, 290, -1300\}
+02018 ,\{ -830, -1470, -830, -1470, -1810\}
+02019 ,\{ -560, -960, -560, -960, -1300\}
+02020 ,\{ 690, 290, 690, 290, -1300\}
+02021 ,\{ -560, -960, -560, -960, -1300\}
+02022 \}
+02023 ,\{\{ -560, -960, -560, -960, -1300\}
+02024 ,\{ -560, -960, -560, -960, -1300\}
+02025 ,\{ -560, -960, -560, -960, -1300\}
+02026 ,\{ -560, -960, -560, -960, -1300\}
+02027 ,\{ -560, -960, -560, -960, -1300\}
+02028 \}
+02029 \}
+02030 \}
+02031 ,\{\{\{\{ 1170, 970, 1120, 780, 1170\}
+02032 ,\{ 780, 440, 580, 780, 640\}
+02033 ,\{ 480, 170, 280, 480, 340\}
+02034 ,\{ 1170, 970, 1120, 660, 1170\}
+02035 ,\{ 480, 170, 280, 480, 340\}
+02036 \}
+02037 ,\{\{ 780, 440, 580, 780, 640\}
+02038 ,\{ 780, 440, 580, 780, 640\}
+02039 ,\{ 470, 130, 270, 470, 330\}
+02040 ,\{ -510, -950, -570, -1260, -510\}
+02041 ,\{ 470, 130, 270, 470, 330\}
+02042 \}
+02043 ,\{\{ 490, 170, 290, 490, 340\}
+02044 ,\{ 490, 140, 290, 490, 340\}
+02045 ,\{ 480, 170, 280, 480, 340\}
+02046 ,\{ 490, 140, 290, 490, 340\}
+02047 ,\{ 480, 170, 280, 480, 340\}
+02048 \}
+02049 ,\{\{ 1170, 970, 1120, 660, 1170\}
+02050 ,\{ -330, -770, -390, -1080, -330\}
+02051 ,\{ 470, 130, 270, 470, 330\}
+02052 ,\{ 1170, 970, 1120, 660, 1170\}
+02053 ,\{ 470, 130, 270, 470, 330\}
+02054 \}
+02055 ,\{\{ 490, 170, 290, 490, 340\}
+02056 ,\{ 490, 140, 290, 490, 340\}
+02057 ,\{ 480, 170, 280, 480, 340\}
+02058 ,\{ 490, 140, 290, 490, 340\}
+02059 ,\{ -600, -600, -690, -1150, -640\}
+02060 \}
+02061 \}
+02062 ,\{\{\{ 1120, 970, 1120, -60, 1120\}
+02063 ,\{ 580, 440, 580, -60, 580\}
+02064 ,\{ 280, 140, 280, -120, 280\}
+02065 ,\{ 1120, 970, 1120, -350, 1120\}
+02066 ,\{ 280, 140, 280, -120, 280\}
+02067 \}
+02068 ,\{\{ 580, 440, 580, -60, 580\}
+02069 ,\{ 580, 440, 580, -60, 580\}
+02070 ,\{ 270, 130, 270, -370, 270\}
+02071 ,\{ -800, -950, -800, -1450, -800\}
+02072 ,\{ 270, 130, 270, -370, 270\}
+02073 \}
+02074 ,\{\{ 290, 140, 290, -120, 290\}
+02075 ,\{ 290, 140, 290, -350, 290\}
+02076 ,\{ 280, 140, 280, -120, 280\}
+02077 ,\{ 290, 140, 290, -350, 290\}
+02078 ,\{ 280, 140, 280, -120, 280\}
+02079 \}
+02080 ,\{\{ 1120, 970, 1120, -370, 1120\}
+02081 ,\{ -620, -770, -620, -1270, -620\}
+02082 ,\{ 270, 130, 270, -370, 270\}
+02083 ,\{ 1120, 970, 1120, -780, 1120\}
+02084 ,\{ 270, 130, 270, -370, 270\}
+02085 \}
+02086 ,\{\{ 290, 140, 290, -120, 290\}
+02087 ,\{ 290, 140, 290, -350, 290\}
+02088 ,\{ 280, 140, 280, -120, 280\}
+02089 ,\{ 290, 140, 290, -350, 290\}
+02090 ,\{ -600, -600, -690, -1340, -690\}
+02091 \}
+02092 \}
+02093 ,\{\{\{ 1170, 660, 1110, 660, 1170\}
+02094 ,\{ 640, 130, 580, 130, 640\}
+02095 ,\{ 340, -170, 280, -170, 340\}
+02096 ,\{ 1170, 660, 1110, 660, 1170\}
+02097 ,\{ 340, -170, 280, -170, 340\}
+02098 \}
+02099 ,\{\{ 640, 130, 580, 130, 640\}
+02100 ,\{ 640, 130, 580, 130, 640\}
+02101 ,\{ 330, -180, 270, -180, 330\}
+02102 ,\{ -510, -1260, -570, -1260, -510\}
+02103 ,\{ 330, -180, 270, -180, 330\}
+02104 \}
+02105 ,\{\{ 340, -160, 280, -160, 340\}
+02106 ,\{ 340, -160, 280, -160, 340\}
+02107 ,\{ 340, -170, 280, -170, 340\}
+02108 ,\{ 340, -160, 280, -160, 340\}
+02109 ,\{ 340, -170, 280, -170, 340\}
+02110 \}
+02111 ,\{\{ 1170, 660, 1110, 660, 1170\}
+02112 ,\{ -330, -1080, -390, -1080, -330\}
+02113 ,\{ 330, -180, 270, -180, 330\}
+02114 ,\{ 1170, 660, 1110, 660, 1170\}
+02115 ,\{ 330, -180, 270, -180, 330\}
+02116 \}
+02117 ,\{\{ 340, -160, 280, -160, 340\}
+02118 ,\{ 340, -160, 280, -160, 340\}
+02119 ,\{ 340, -170, 280, -170, 340\}
+02120 ,\{ 340, -160, 280, -160, 340\}
+02121 ,\{ -640, -1150, -700, -1150, -640\}
+02122 \}
+02123 \}
+02124 ,\{\{\{ 1120, 220, 1120, 780, 1120\}
+02125 ,\{ 780, 220, 580, 780, 580\}
+02126 ,\{ 480, 170, 280, 480, 280\}
+02127 ,\{ 1120, -70, 1120, 490, 1120\}
+02128 ,\{ 480, 170, 280, 480, 280\}
+02129 \}
+02130 ,\{\{ 780, 220, 580, 780, 580\}
+02131 ,\{ 780, 220, 580, 780, 580\}
+02132 ,\{ 470, -80, 270, 470, 270\}
+02133 ,\{ -800, -1160, -800, -1860, -800\}
+02134 ,\{ 470, -80, 270, 470, 270\}
+02135 \}
+02136 ,\{\{ 490, 170, 290, 490, 290\}
+02137 ,\{ 490, -70, 290, 490, 290\}
+02138 ,\{ 480, 170, 280, 480, 280\}
+02139 ,\{ 490, -70, 290, 490, 290\}
+02140 ,\{ 480, 170, 280, 480, 280\}
+02141 \}
+02142 ,\{\{ 1120, -80, 1120, 470, 1120\}
+02143 ,\{ -620, -980, -620, -1680, -620\}
+02144 ,\{ 470, -80, 270, 470, 270\}
+02145 ,\{ 1120, -490, 1120, -1190, 1120\}
+02146 ,\{ 470, -80, 270, 470, 270\}
+02147 \}
+02148 ,\{\{ 490, 170, 290, 490, 290\}
+02149 ,\{ 490, -70, 290, 490, 290\}
+02150 ,\{ 480, 170, 280, 480, 280\}
+02151 ,\{ 490, -70, 290, 490, 290\}
+02152 ,\{ -690, -1050, -690, -1750, -690\}
+02153 \}
+02154 \}
+02155 ,\{\{\{ 1060, 660, 1060, 660, 40\}
+02156 ,\{ 530, 130, 530, 130, 40\}
+02157 ,\{ 230, -170, 230, -170, -500\}
+02158 ,\{ 1060, 660, 1060, 660, -500\}
+02159 ,\{ 230, -170, 230, -170, -500\}
+02160 \}
+02161 ,\{\{ 530, 130, 530, 130, 40\}
+02162 ,\{ 530, 130, 530, 130, 40\}
+02163 ,\{ 220, -180, 220, -180, -510\}
+02164 ,\{ -620, -1260, -620, -1260, -1590\}
+02165 ,\{ 220, -180, 220, -180, -510\}
+02166 \}
+02167 ,\{\{ 230, -160, 230, -160, -500\}
+02168 ,\{ 230, -160, 230, -160, -500\}
+02169 ,\{ 230, -170, 230, -170, -500\}
+02170 ,\{ 230, -160, 230, -160, -500\}
+02171 ,\{ 230, -170, 230, -170, -500\}
+02172 \}
+02173 ,\{\{ 1060, 660, 1060, 660, -510\}
+02174 ,\{ -440, -1080, -440, -1080, -1410\}
+02175 ,\{ 220, -180, 220, -180, -510\}
+02176 ,\{ 1060, 660, 1060, 660, -920\}
+02177 ,\{ 220, -180, 220, -180, -510\}
+02178 \}
+02179 ,\{\{ 230, -160, 230, -160, -500\}
+02180 ,\{ 230, -160, 230, -160, -500\}
+02181 ,\{ 230, -170, 230, -170, -500\}
+02182 ,\{ 230, -160, 230, -160, -500\}
+02183 ,\{ -750, -1150, -750, -1150, -1480\}
+02184 \}
+02185 \}
+02186 \}
+02187 ,\{\{\{\{ 1350, 1160, 1300, 850, 1350\}
+02188 ,\{ 850, 500, 650, 850, 700\}
+02189 ,\{ 720, 400, 520, 720, 570\}
+02190 ,\{ 1350, 1160, 1300, 850, 1350\}
+02191 ,\{ 590, 270, 390, 590, 440\}
+02192 \}
+02193 ,\{\{ 850, 500, 650, 850, 700\}
+02194 ,\{ 850, 500, 650, 850, 700\}
+02195 ,\{ 570, 220, 370, 570, 420\}
+02196 ,\{ -460, -900, -520, -1210, -460\}
+02197 ,\{ 570, 220, 370, 570, 420\}
+02198 \}
+02199 ,\{\{ 720, 400, 520, 720, 570\}
+02200 ,\{ 720, 370, 520, 720, 570\}
+02201 ,\{ 720, 400, 520, 720, 570\}
+02202 ,\{ 720, 370, 520, 720, 570\}
+02203 ,\{ 590, 270, 390, 590, 440\}
+02204 \}
+02205 ,\{\{ 1350, 1160, 1300, 850, 1350\}
+02206 ,\{ -760, -1200, -820, -1510, -760\}
+02207 ,\{ 570, 220, 370, 570, 420\}
+02208 ,\{ 1350, 1160, 1300, 850, 1350\}
+02209 ,\{ 570, 220, 370, 570, 420\}
+02210 \}
+02211 ,\{\{ 720, 370, 520, 720, 570\}
+02212 ,\{ 720, 370, 520, 720, 570\}
+02213 ,\{ 280, -40, 80, 280, 130\}
+02214 ,\{ 720, 370, 520, 720, 570\}
+02215 ,\{ -320, -320, -420, -870, -360\}
+02216 \}
+02217 \}
+02218 ,\{\{\{ 1300, 1160, 1300, 120, 1300\}
+02219 ,\{ 650, 500, 650, 0, 650\}
+02220 ,\{ 520, 370, 520, 120, 520\}
+02221 ,\{ 1300, 1160, 1300, -120, 1300\}
+02222 ,\{ 390, 240, 390, -10, 390\}
+02223 \}
+02224 ,\{\{ 650, 500, 650, 0, 650\}
+02225 ,\{ 650, 500, 650, 0, 650\}
+02226 ,\{ 370, 220, 370, -270, 370\}
+02227 ,\{ -750, -900, -750, -1400, -750\}
+02228 ,\{ 370, 220, 370, -270, 370\}
+02229 \}
+02230 ,\{\{ 520, 370, 520, 120, 520\}
+02231 ,\{ 520, 370, 520, -120, 520\}
+02232 ,\{ 520, 370, 520, 120, 520\}
+02233 ,\{ 520, 370, 520, -120, 520\}
+02234 ,\{ 390, 240, 390, -10, 390\}
+02235 \}
+02236 ,\{\{ 1300, 1160, 1300, -270, 1300\}
+02237 ,\{ -1050, -1200, -1050, -1700, -1050\}
+02238 ,\{ 370, 220, 370, -270, 370\}
+02239 ,\{ 1300, 1160, 1300, -590, 1300\}
+02240 ,\{ 370, 220, 370, -270, 370\}
+02241 \}
+02242 ,\{\{ 520, 370, 520, -120, 520\}
+02243 ,\{ 520, 370, 520, -120, 520\}
+02244 ,\{ 80, -60, 80, -320, 80\}
+02245 ,\{ 520, 370, 520, -120, 520\}
+02246 ,\{ -320, -320, -420, -1060, -420\}
+02247 \}
+02248 \}
+02249 ,\{\{\{ 1350, 850, 1290, 850, 1350\}
+02250 ,\{ 700, 190, 640, 190, 700\}
+02251 ,\{ 570, 60, 510, 60, 570\}
+02252 ,\{ 1350, 850, 1290, 850, 1350\}
+02253 ,\{ 440, -60, 380, -60, 440\}
+02254 \}
+02255 ,\{\{ 700, 190, 640, 190, 700\}
+02256 ,\{ 700, 190, 640, 190, 700\}
+02257 ,\{ 420, -80, 360, -80, 420\}
+02258 ,\{ -460, -1210, -520, -1210, -460\}
+02259 ,\{ 420, -80, 360, -80, 420\}
+02260 \}
+02261 ,\{\{ 570, 60, 510, 60, 570\}
+02262 ,\{ 570, 60, 510, 60, 570\}
+02263 ,\{ 570, 60, 510, 60, 570\}
+02264 ,\{ 570, 60, 510, 60, 570\}
+02265 ,\{ 440, -60, 380, -60, 440\}
+02266 \}
+02267 ,\{\{ 1350, 850, 1290, 850, 1350\}
+02268 ,\{ -760, -1510, -820, -1510, -760\}
+02269 ,\{ 420, -80, 360, -80, 420\}
+02270 ,\{ 1350, 850, 1290, 850, 1350\}
+02271 ,\{ 420, -80, 360, -80, 420\}
+02272 \}
+02273 ,\{\{ 570, 60, 510, 60, 570\}
+02274 ,\{ 570, 60, 510, 60, 570\}
+02275 ,\{ 130, -370, 70, -370, 130\}
+02276 ,\{ 570, 60, 510, 60, 570\}
+02277 ,\{ -360, -870, -420, -870, -360\}
+02278 \}
+02279 \}
+02280 ,\{\{\{ 1300, 400, 1300, 850, 1300\}
+02281 ,\{ 850, 290, 650, 850, 650\}
+02282 ,\{ 720, 400, 520, 720, 520\}
+02283 ,\{ 1300, 160, 1300, 720, 1300\}
+02284 ,\{ 590, 270, 390, 590, 390\}
+02285 \}
+02286 ,\{\{ 850, 290, 650, 850, 650\}
+02287 ,\{ 850, 290, 650, 850, 650\}
+02288 ,\{ 570, 10, 370, 570, 370\}
+02289 ,\{ -750, -1110, -750, -1810, -750\}
+02290 ,\{ 570, 10, 370, 570, 370\}
+02291 \}
+02292 ,\{\{ 720, 400, 520, 720, 520\}
+02293 ,\{ 720, 160, 520, 720, 520\}
+02294 ,\{ 720, 400, 520, 720, 520\}
+02295 ,\{ 720, 160, 520, 720, 520\}
+02296 ,\{ 590, 270, 390, 590, 390\}
+02297 \}
+02298 ,\{\{ 1300, 10, 1300, 570, 1300\}
+02299 ,\{ -1050, -1410, -1050, -2110, -1050\}
+02300 ,\{ 570, 10, 370, 570, 370\}
+02301 ,\{ 1300, -310, 1300, -1000, 1300\}
+02302 ,\{ 570, 10, 370, 570, 370\}
+02303 \}
+02304 ,\{\{ 720, 160, 520, 720, 520\}
+02305 ,\{ 720, 160, 520, 720, 520\}
+02306 ,\{ 280, -40, 80, 280, 80\}
+02307 ,\{ 720, 160, 520, 720, 520\}
+02308 ,\{ -420, -780, -420, -1470, -420\}
+02309 \}
+02310 \}
+02311 ,\{\{\{ 1250, 850, 1250, 850, 100\}
+02312 ,\{ 590, 190, 590, 190, 100\}
+02313 ,\{ 460, 60, 460, 60, -270\}
+02314 ,\{ 1250, 850, 1250, 850, -270\}
+02315 ,\{ 330, -60, 330, -60, -400\}
+02316 \}
+02317 ,\{\{ 590, 190, 590, 190, 100\}
+02318 ,\{ 590, 190, 590, 190, 100\}
+02319 ,\{ 310, -80, 310, -80, -420\}
+02320 ,\{ -570, -1210, -570, -1210, -1540\}
+02321 ,\{ 310, -80, 310, -80, -420\}
+02322 \}
+02323 ,\{\{ 460, 60, 460, 60, -270\}
+02324 ,\{ 460, 60, 460, 60, -270\}
+02325 ,\{ 460, 60, 460, 60, -270\}
+02326 ,\{ 460, 60, 460, 60, -270\}
+02327 ,\{ 330, -60, 330, -60, -400\}
+02328 \}
+02329 ,\{\{ 1250, 850, 1250, 850, -420\}
+02330 ,\{ -870, -1510, -870, -1510, -1840\}
+02331 ,\{ 310, -80, 310, -80, -420\}
+02332 ,\{ 1250, 850, 1250, 850, -740\}
+02333 ,\{ 310, -80, 310, -80, -420\}
+02334 \}
+02335 ,\{\{ 460, 60, 460, 60, -270\}
+02336 ,\{ 460, 60, 460, 60, -270\}
+02337 ,\{ 20, -370, 20, -370, -710\}
+02338 ,\{ 460, 60, 460, 60, -270\}
+02339 ,\{ -470, -870, -470, -870, -1210\}
+02340 \}
+02341 \}
+02342 \}
+02343 ,\{\{\{\{ 1350, 1160, 1300, 850, 1350\}
+02344 ,\{ 850, 500, 650, 850, 700\}
+02345 ,\{ 720, 400, 520, 720, 570\}
+02346 ,\{ 1350, 1160, 1300, 850, 1350\}
+02347 ,\{ 590, 270, 390, 590, 440\}
+02348 \}
+02349 ,\{\{ 850, 500, 650, 850, 700\}
+02350 ,\{ 850, 500, 650, 850, 700\}
+02351 ,\{ 570, 220, 370, 570, 420\}
+02352 ,\{ -230, -670, -290, -980, -230\}
+02353 ,\{ 570, 220, 370, 570, 420\}
+02354 \}
+02355 ,\{\{ 720, 400, 520, 720, 570\}
+02356 ,\{ 720, 370, 520, 720, 570\}
+02357 ,\{ 720, 400, 520, 720, 570\}
+02358 ,\{ 720, 370, 520, 720, 570\}
+02359 ,\{ 590, 270, 390, 590, 440\}
+02360 \}
+02361 ,\{\{ 1350, 1160, 1300, 850, 1350\}
+02362 ,\{ -330, -770, -390, -1080, -330\}
+02363 ,\{ 570, 220, 370, 570, 420\}
+02364 ,\{ 1350, 1160, 1300, 850, 1350\}
+02365 ,\{ 570, 220, 370, 570, 420\}
+02366 \}
+02367 ,\{\{ 720, 370, 520, 720, 570\}
+02368 ,\{ 720, 370, 520, 720, 570\}
+02369 ,\{ 480, 170, 280, 480, 340\}
+02370 ,\{ 720, 370, 520, 720, 570\}
+02371 ,\{ -90, -320, -90, -810, -360\}
+02372 \}
+02373 \}
+02374 ,\{\{\{ 1300, 1160, 1300, 540, 1300\}
+02375 ,\{ 650, 500, 650, 10, 650\}
+02376 ,\{ 540, 370, 520, 540, 520\}
+02377 ,\{ 1300, 1160, 1300, -120, 1300\}
+02378 ,\{ 390, 240, 390, -10, 390\}
+02379 \}
+02380 ,\{\{ 650, 500, 650, 0, 650\}
+02381 ,\{ 650, 500, 650, 0, 650\}
+02382 ,\{ 370, 220, 370, -100, 370\}
+02383 ,\{ -530, -670, -530, -1170, -530\}
+02384 ,\{ 370, 220, 370, -270, 370\}
+02385 \}
+02386 ,\{\{ 540, 370, 520, 540, 520\}
+02387 ,\{ 520, 370, 520, 10, 520\}
+02388 ,\{ 540, 370, 520, 540, 520\}
+02389 ,\{ 520, 370, 520, -120, 520\}
+02390 ,\{ 390, 240, 390, -10, 390\}
+02391 \}
+02392 ,\{\{ 1300, 1160, 1300, -270, 1300\}
+02393 ,\{ -620, -770, -620, -1270, -620\}
+02394 ,\{ 370, 220, 370, -270, 370\}
+02395 ,\{ 1300, 1160, 1300, -590, 1300\}
+02396 ,\{ 370, 220, 370, -270, 370\}
+02397 \}
+02398 ,\{\{ 520, 370, 520, -120, 520\}
+02399 ,\{ 520, 370, 520, -120, 520\}
+02400 ,\{ 280, 140, 280, -120, 280\}
+02401 ,\{ 520, 370, 520, -120, 520\}
+02402 ,\{ -90, -320, -90, -810, -420\}
+02403 \}
+02404 \}
+02405 ,\{\{\{ 1350, 850, 1290, 850, 1350\}
+02406 ,\{ 700, 190, 640, 190, 700\}
+02407 ,\{ 570, 60, 510, 60, 570\}
+02408 ,\{ 1350, 850, 1290, 850, 1350\}
+02409 ,\{ 440, -60, 380, -60, 440\}
+02410 \}
+02411 ,\{\{ 700, 190, 640, 190, 700\}
+02412 ,\{ 700, 190, 640, 190, 700\}
+02413 ,\{ 420, -80, 360, -80, 420\}
+02414 ,\{ -230, -980, -290, -980, -230\}
+02415 ,\{ 420, -80, 360, -80, 420\}
+02416 \}
+02417 ,\{\{ 570, 60, 510, 60, 570\}
+02418 ,\{ 570, 60, 510, 60, 570\}
+02419 ,\{ 570, 60, 510, 60, 570\}
+02420 ,\{ 570, 60, 510, 60, 570\}
+02421 ,\{ 440, -60, 380, -60, 440\}
+02422 \}
+02423 ,\{\{ 1350, 850, 1290, 850, 1350\}
+02424 ,\{ -330, -1070, -390, -1080, -330\}
+02425 ,\{ 420, -80, 360, -80, 420\}
+02426 ,\{ 1350, 850, 1290, 850, 1350\}
+02427 ,\{ 420, -80, 360, -80, 420\}
+02428 \}
+02429 ,\{\{ 570, 60, 510, 60, 570\}
+02430 ,\{ 570, 60, 510, 60, 570\}
+02431 ,\{ 340, -170, 280, -170, 340\}
+02432 ,\{ 570, 60, 510, 60, 570\}
+02433 ,\{ -360, -830, -420, -870, -360\}
+02434 \}
+02435 \}
+02436 ,\{\{\{ 1300, 400, 1300, 850, 1300\}
+02437 ,\{ 850, 290, 650, 850, 650\}
+02438 ,\{ 720, 400, 520, 720, 520\}
+02439 ,\{ 1300, 160, 1300, 720, 1300\}
+02440 ,\{ 590, 270, 390, 590, 390\}
+02441 \}
+02442 ,\{\{ 850, 290, 650, 850, 650\}
+02443 ,\{ 850, 290, 650, 850, 650\}
+02444 ,\{ 570, 10, 370, 570, 370\}
+02445 ,\{ -530, -890, -530, -1580, -530\}
+02446 ,\{ 570, 10, 370, 570, 370\}
+02447 \}
+02448 ,\{\{ 720, 400, 520, 720, 520\}
+02449 ,\{ 720, 160, 520, 720, 520\}
+02450 ,\{ 720, 400, 520, 720, 520\}
+02451 ,\{ 720, 160, 520, 720, 520\}
+02452 ,\{ 590, 270, 390, 590, 390\}
+02453 \}
+02454 ,\{\{ 1300, 10, 1300, 570, 1300\}
+02455 ,\{ -620, -980, -620, -1080, -620\}
+02456 ,\{ 570, 10, 370, 570, 370\}
+02457 ,\{ 1300, -310, 1300, -1000, 1300\}
+02458 ,\{ 570, 10, 370, 570, 370\}
+02459 \}
+02460 ,\{\{ 720, 170, 520, 720, 520\}
+02461 ,\{ 720, 160, 520, 720, 520\}
+02462 ,\{ 480, 170, 280, 480, 280\}
+02463 ,\{ 720, 160, 520, 720, 520\}
+02464 ,\{ -420, -780, -420, -1470, -420\}
+02465 \}
+02466 \}
+02467 ,\{\{\{ 1250, 850, 1250, 850, 100\}
+02468 ,\{ 590, 190, 590, 190, 100\}
+02469 ,\{ 460, 60, 460, 60, -270\}
+02470 ,\{ 1250, 850, 1250, 850, -230\}
+02471 ,\{ 330, -60, 330, -60, -400\}
+02472 \}
+02473 ,\{\{ 590, 190, 590, 190, 100\}
+02474 ,\{ 590, 190, 590, 190, 100\}
+02475 ,\{ 310, -80, 310, -80, -420\}
+02476 ,\{ -340, -980, -340, -980, -1320\}
+02477 ,\{ 310, -80, 310, -80, -420\}
+02478 \}
+02479 ,\{\{ 460, 60, 460, 60, -270\}
+02480 ,\{ 460, 60, 460, 60, -270\}
+02481 ,\{ 460, 60, 460, 60, -270\}
+02482 ,\{ 460, 60, 460, 60, -270\}
+02483 ,\{ 330, -60, 330, -60, -400\}
+02484 \}
+02485 ,\{\{ 1250, 850, 1250, 850, -230\}
+02486 ,\{ -440, -1080, -440, -1080, -1300\}
+02487 ,\{ 310, -80, 310, -80, -420\}
+02488 ,\{ 1250, 850, 1250, 850, -230\}
+02489 ,\{ 310, -80, 310, -80, -420\}
+02490 \}
+02491 ,\{\{ 460, 60, 460, 60, -270\}
+02492 ,\{ 460, 60, 460, 60, -270\}
+02493 ,\{ 230, -170, 230, -170, -500\}
+02494 ,\{ 460, 60, 460, 60, -270\}
+02495 ,\{ -470, -870, -470, -870, -1210\}
+02496 \}
+02497 \}
+02498 \}
+02499 \}
+02500 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02501 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02502 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02505 \}
+02506 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02507 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02508 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02511 \}
+02512 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02513 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02514 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02517 \}
+02518 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02519 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02520 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02523 \}
+02524 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02525 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02526 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02527 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02529 \}
+02530 \}
+02531 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02532 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02533 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02534 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02535 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02536 \}
+02537 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02538 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02539 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02540 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02541 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02542 \}
+02543 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02544 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02545 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02546 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02547 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02548 \}
+02549 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02550 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02551 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02552 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02553 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02554 \}
+02555 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02556 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02557 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02558 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02559 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02560 \}
+02561 \}
+02562 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02563 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02564 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02565 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02566 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02567 \}
+02568 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02569 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02570 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02571 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02572 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02573 \}
+02574 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02575 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02576 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02577 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02578 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02579 \}
+02580 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02581 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02582 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02583 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02584 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02585 \}
+02586 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02587 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02588 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02589 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02590 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02591 \}
+02592 \}
+02593 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02594 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02595 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02596 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02597 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02598 \}
+02599 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02600 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02601 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02602 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02603 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02604 \}
+02605 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02606 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02607 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02608 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02609 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02610 \}
+02611 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02612 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02613 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02614 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02615 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02616 \}
+02617 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02618 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02619 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02620 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02621 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02622 \}
+02623 \}
+02624 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02625 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02626 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02627 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02628 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02629 \}
+02630 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02631 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02632 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02633 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02634 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02635 \}
+02636 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02637 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02638 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02639 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02640 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02641 \}
+02642 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02643 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02644 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02645 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02646 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02647 \}
+02648 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02649 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02650 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02651 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02652 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+02653 \}
+02654 \}
+02655 \}
+02656 ,\{\{\{\{ 540, -90, 540, 180, -90\}
+02657 ,\{ 540, -100, 540, 180, -90\}
+02658 ,\{ 180, -90, -460, 180, -460\}
+02659 ,\{ 30, -150, -260, 30, -210\}
+02660 ,\{ -200, -200, -400, -230, -570\}
+02661 \}
+02662 ,\{\{ 180, -350, -660, 180, -660\}
+02663 ,\{ 180, -580, -660, 180, -660\}
+02664 ,\{ -430, -600, -970, -430, -830\}
+02665 ,\{ -350, -350, -870, -960, -870\}
+02666 ,\{ -430, -600, -970, -430, -970\}
+02667 \}
+02668 ,\{\{ 30, -150, -510, 30, -90\}
+02669 ,\{ -90, -220, -510, -390, -90\}
+02670 ,\{ 20, -600, -520, 20, -520\}
+02671 ,\{ 30, -150, -510, 30, -510\}
+02672 ,\{ -200, -200, -570, -650, -570\}
+02673 \}
+02674 ,\{\{ 540, -100, 540, -400, -210\}
+02675 ,\{ 540, -100, 540, -1240, -810\}
+02676 ,\{ -430, -600, -970, -430, -970\}
+02677 ,\{ -200, -200, -260, -400, -210\}
+02678 ,\{ -430, -600, -970, -430, -970\}
+02679 \}
+02680 ,\{\{ 180, -90, -400, 180, -460\}
+02681 ,\{ 30, -150, -510, 30, -510\}
+02682 ,\{ 180, -90, -460, 180, -460\}
+02683 ,\{ 30, -150, -510, 30, -510\}
+02684 ,\{ -230, -1390, -400, -230, -1300\}
+02685 \}
+02686 \}
+02687 ,\{\{\{ 10, -90, 10, -500, -320\}
+02688 ,\{ 10, -150, 10, -860, -510\}
+02689 ,\{ -90, -90, -460, -500, -460\}
+02690 ,\{ -150, -150, -320, -860, -320\}
+02691 ,\{ -200, -200, -400, -1300, -570\}
+02692 \}
+02693 ,\{\{ -580, -580, -660, -1070, -660\}
+02694 ,\{ -580, -580, -660, -1340, -660\}
+02695 ,\{ -600, -600, -970, -1070, -970\}
+02696 ,\{ -870, -1600, -1110, -1880, -870\}
+02697 ,\{ -600, -600, -970, -1320, -970\}
+02698 \}
+02699 ,\{\{ -150, -150, -510, -500, -510\}
+02700 ,\{ -220, -220, -1150, -860, -510\}
+02701 ,\{ -500, -1070, -750, -500, -520\}
+02702 ,\{ -150, -150, -510, -860, -510\}
+02703 ,\{ -200, -200, -570, -1750, -570\}
+02704 \}
+02705 ,\{\{ 10, -200, 10, -1080, -320\}
+02706 ,\{ 10, -970, 10, -2450, -1160\}
+02707 ,\{ -600, -600, -970, -1320, -970\}
+02708 ,\{ -200, -200, -320, -1080, -320\}
+02709 ,\{ -600, -600, -970, -1320, -970\}
+02710 \}
+02711 ,\{\{ -90, -90, -400, -570, -460\}
+02712 ,\{ -150, -150, -510, -860, -510\}
+02713 ,\{ -90, -90, -460, -570, -460\}
+02714 ,\{ -150, -150, -510, -860, -510\}
+02715 ,\{ -400, -1490, -400, -1300, -1300\}
+02716 \}
+02717 \}
+02718 ,\{\{\{ 540, -100, 540, -400, -210\}
+02719 ,\{ 540, -100, 540, -600, -1130\}
+02720 ,\{ -540, -540, -760, -540, -1070\}
+02721 ,\{ -210, -350, -620, -400, -210\}
+02722 ,\{ -650, -650, -870, -650, -1180\}
+02723 \}
+02724 ,\{\{ -350, -350, -940, -740, -1250\}
+02725 ,\{ -740, -740, -960, -740, -1270\}
+02726 ,\{ -1050, -1050, -1270, -1050, -1580\}
+02727 ,\{ -350, -350, -940, -960, -1250\}
+02728 ,\{ -1050, -1050, -1270, -1050, -1580\}
+02729 \}
+02730 ,\{\{ -600, -600, -820, -600, -1130\}
+02731 ,\{ -600, -600, -820, -600, -1130\}
+02732 ,\{ -600, -600, -820, -600, -1130\}
+02733 ,\{ -600, -600, -820, -600, -1130\}
+02734 ,\{ -650, -650, -870, -650, -1180\}
+02735 \}
+02736 ,\{\{ 540, -100, 540, -400, -210\}
+02737 ,\{ 540, -100, 540, -1240, -1530\}
+02738 ,\{ -1050, -1050, -1270, -1050, -1580\}
+02739 ,\{ -210, -440, -620, -400, -210\}
+02740 ,\{ -1050, -1050, -1270, -1050, -1580\}
+02741 \}
+02742 ,\{\{ -540, -540, -760, -540, -1070\}
+02743 ,\{ -600, -600, -820, -600, -1130\}
+02744 ,\{ -540, -540, -760, -540, -1070\}
+02745 ,\{ -600, -600, -820, -600, -1130\}
+02746 ,\{ -1390, -1390, -1610, -1390, -1920\}
+02747 \}
+02748 \}
+02749 ,\{\{\{ 180, -630, -320, 180, -320\}
+02750 ,\{ 180, -1340, -510, 180, -510\}
+02751 ,\{ 180, -630, -460, 180, -460\}
+02752 ,\{ 30, -1340, -320, 30, -320\}
+02753 ,\{ -230, -1150, -570, -230, -570\}
+02754 \}
+02755 ,\{\{ 180, -1790, -660, 180, -660\}
+02756 ,\{ 180, -2010, -660, 180, -660\}
+02757 ,\{ -430, -1790, -970, -430, -970\}
+02758 ,\{ -870, -3070, -870, -1370, -870\}
+02759 ,\{ -430, -1790, -970, -430, -970\}
+02760 \}
+02761 ,\{\{ 30, -630, -510, 30, -510\}
+02762 ,\{ -390, -1650, -510, -390, -510\}
+02763 ,\{ 20, -630, -520, 20, -520\}
+02764 ,\{ 30, -1340, -510, 30, -510\}
+02765 ,\{ -570, -1150, -570, -880, -570\}
+02766 \}
+02767 ,\{\{ -320, -1790, -320, -430, -320\}
+02768 ,\{ -1160, -1980, -1160, -1870, -1160\}
+02769 ,\{ -430, -1790, -970, -430, -970\}
+02770 ,\{ -320, -2390, -320, -2280, -320\}
+02771 ,\{ -430, -1790, -970, -430, -970\}
+02772 \}
+02773 ,\{\{ 180, -1040, -460, 180, -460\}
+02774 ,\{ 30, -1340, -510, 30, -510\}
+02775 ,\{ 180, -1040, -460, 180, -460\}
+02776 ,\{ 30, -1340, -510, 30, -510\}
+02777 ,\{ -230, -1520, -1300, -230, -1300\}
+02778 \}
+02779 \}
+02780 ,\{\{\{ -90, -400, -260, -400, -90\}
+02781 ,\{ -90, -600, -820, -600, -90\}
+02782 ,\{ -540, -540, -550, -540, -830\}
+02783 ,\{ -260, -400, -260, -400, -800\}
+02784 ,\{ -650, -650, -870, -650, -860\}
+02785 \}
+02786 ,\{\{ -740, -740, -940, -740, -830\}
+02787 ,\{ -740, -740, -960, -740, -1240\}
+02788 ,\{ -830, -1050, -1270, -1050, -830\}
+02789 ,\{ -940, -960, -940, -960, -1360\}
+02790 ,\{ -1050, -1050, -1270, -1050, -1260\}
+02791 \}
+02792 ,\{\{ -90, -600, -820, -600, -90\}
+02793 ,\{ -90, -600, -820, -600, -90\}
+02794 ,\{ -600, -600, -820, -600, -1710\}
+02795 ,\{ -600, -600, -820, -600, -800\}
+02796 ,\{ -650, -650, -870, -650, -860\}
+02797 \}
+02798 ,\{\{ -260, -400, -260, -400, -810\}
+02799 ,\{ -810, -1240, -1220, -1240, -810\}
+02800 ,\{ -1050, -1050, -1270, -1050, -1260\}
+02801 ,\{ -260, -400, -260, -400, -1550\}
+02802 ,\{ -1050, -1050, -1270, -1050, -1260\}
+02803 \}
+02804 ,\{\{ -540, -540, -550, -540, -800\}
+02805 ,\{ -600, -600, -820, -600, -800\}
+02806 ,\{ -540, -540, -550, -540, -1460\}
+02807 ,\{ -600, -600, -820, -600, -800\}
+02808 ,\{ -1390, -1390, -1610, -1390, -2350\}
+02809 \}
+02810 \}
+02811 \}
+02812 ,\{\{\{\{ 50, 50, -320, 50, -320\}
+02813 ,\{ 50, -130, -490, 50, -490\}
+02814 ,\{ -400, -580, -940, -400, -940\}
+02815 ,\{ 50, 50, -320, -320, -320\}
+02816 ,\{ -400, -540, -940, -400, -940\}
+02817 \}
+02818 ,\{\{ 50, -130, -490, 50, -490\}
+02819 ,\{ 50, -130, -490, 50, -490\}
+02820 ,\{ -400, -580, -940, -400, -940\}
+02821 ,\{ -1320, -1320, -1680, -1770, -1680\}
+02822 ,\{ -400, -580, -940, -400, -940\}
+02823 \}
+02824 ,\{\{ -320, -490, -860, -320, -860\}
+02825 ,\{ -320, -490, -860, -320, -860\}
+02826 ,\{ -620, -800, -1160, -620, -1160\}
+02827 ,\{ -320, -490, -860, -320, -860\}
+02828 ,\{ -620, -800, -1160, -620, -1160\}
+02829 \}
+02830 ,\{\{ 50, 50, -320, -400, -320\}
+02831 ,\{ -840, -840, -1210, -1290, -1210\}
+02832 ,\{ -400, -580, -940, -400, -940\}
+02833 ,\{ 50, 50, -320, -400, -320\}
+02834 ,\{ -400, -580, -940, -400, -940\}
+02835 \}
+02836 ,\{\{ -320, -490, -860, -320, -860\}
+02837 ,\{ -320, -490, -860, -320, -860\}
+02838 ,\{ -930, -1110, -1470, -930, -1470\}
+02839 ,\{ -320, -490, -860, -320, -860\}
+02840 ,\{ -540, -540, -1150, -1230, -1150\}
+02841 \}
+02842 \}
+02843 ,\{\{\{ 50, 50, -320, -840, -320\}
+02844 ,\{ -130, -130, -490, -840, -490\}
+02845 ,\{ -580, -580, -940, -1270, -940\}
+02846 ,\{ 50, 50, -320, -1210, -320\}
+02847 ,\{ -540, -540, -940, -1270, -940\}
+02848 \}
+02849 ,\{\{ -130, -130, -490, -840, -490\}
+02850 ,\{ -130, -130, -490, -840, -490\}
+02851 ,\{ -580, -580, -940, -1290, -940\}
+02852 ,\{ -1320, -1320, -1680, -2030, -1680\}
+02853 ,\{ -580, -580, -940, -1290, -940\}
+02854 \}
+02855 ,\{\{ -490, -490, -860, -1210, -860\}
+02856 ,\{ -490, -490, -860, -1210, -860\}
+02857 ,\{ -800, -800, -1160, -1270, -1160\}
+02858 ,\{ -490, -490, -860, -1210, -860\}
+02859 ,\{ -800, -800, -1160, -1270, -1160\}
+02860 \}
+02861 ,\{\{ 50, 50, -320, -1290, -320\}
+02862 ,\{ -840, -840, -1210, -1560, -1210\}
+02863 ,\{ -580, -580, -940, -1290, -940\}
+02864 ,\{ 50, 50, -320, -1920, -320\}
+02865 ,\{ -580, -580, -940, -1290, -940\}
+02866 \}
+02867 ,\{\{ -490, -490, -860, -1210, -860\}
+02868 ,\{ -490, -490, -860, -1210, -860\}
+02869 ,\{ -1110, -1110, -1470, -1580, -1470\}
+02870 ,\{ -490, -490, -860, -1210, -860\}
+02871 ,\{ -540, -540, -1150, -1500, -1150\}
+02872 \}
+02873 \}
+02874 ,\{\{\{ -400, -400, -620, -400, -930\}
+02875 ,\{ -580, -580, -800, -580, -1110\}
+02876 ,\{ -1030, -1030, -1250, -1030, -1560\}
+02877 ,\{ -400, -400, -620, -400, -930\}
+02878 ,\{ -1030, -1030, -1250, -1030, -1560\}
+02879 \}
+02880 ,\{\{ -580, -580, -800, -580, -1110\}
+02881 ,\{ -580, -580, -800, -580, -1110\}
+02882 ,\{ -1030, -1030, -1250, -1030, -1560\}
+02883 ,\{ -1750, -1770, -1750, -1770, -2060\}
+02884 ,\{ -1030, -1030, -1250, -1030, -1560\}
+02885 \}
+02886 ,\{\{ -940, -940, -1160, -940, -1470\}
+02887 ,\{ -940, -940, -1160, -940, -1470\}
+02888 ,\{ -1250, -1250, -1470, -1250, -1780\}
+02889 ,\{ -940, -940, -1160, -940, -1470\}
+02890 ,\{ -1250, -1250, -1470, -1250, -1780\}
+02891 \}
+02892 ,\{\{ -400, -400, -620, -400, -930\}
+02893 ,\{ -1270, -1290, -1270, -1290, -1580\}
+02894 ,\{ -1030, -1030, -1250, -1030, -1560\}
+02895 ,\{ -400, -400, -620, -400, -930\}
+02896 ,\{ -1030, -1030, -1250, -1030, -1560\}
+02897 \}
+02898 ,\{\{ -940, -940, -1160, -940, -1470\}
+02899 ,\{ -940, -940, -1160, -940, -1470\}
+02900 ,\{ -1560, -1560, -1780, -1560, -2090\}
+02901 ,\{ -940, -940, -1160, -940, -1470\}
+02902 ,\{ -1230, -1230, -1450, -1230, -1760\}
+02903 \}
+02904 \}
+02905 ,\{\{\{ 50, -1320, -320, 50, -320\}
+02906 ,\{ 50, -1320, -490, 50, -490\}
+02907 ,\{ -400, -1750, -940, -400, -940\}
+02908 ,\{ -320, -1680, -320, -320, -320\}
+02909 ,\{ -400, -1750, -940, -400, -940\}
+02910 \}
+02911 ,\{\{ 50, -1320, -490, 50, -490\}
+02912 ,\{ 50, -1320, -490, 50, -490\}
+02913 ,\{ -400, -1770, -940, -400, -940\}
+02914 ,\{ -1680, -2510, -1680, -2390, -1680\}
+02915 ,\{ -400, -1770, -940, -400, -940\}
+02916 \}
+02917 ,\{\{ -320, -1680, -860, -320, -860\}
+02918 ,\{ -320, -1680, -860, -320, -860\}
+02919 ,\{ -620, -1750, -1160, -620, -1160\}
+02920 ,\{ -320, -1680, -860, -320, -860\}
+02921 ,\{ -620, -1750, -1160, -620, -1160\}
+02922 \}
+02923 ,\{\{ -320, -1770, -320, -400, -320\}
+02924 ,\{ -1210, -2030, -1210, -1920, -1210\}
+02925 ,\{ -400, -1770, -940, -400, -940\}
+02926 ,\{ -320, -2390, -320, -2280, -320\}
+02927 ,\{ -400, -1770, -940, -400, -940\}
+02928 \}
+02929 ,\{\{ -320, -1680, -860, -320, -860\}
+02930 ,\{ -320, -1680, -860, -320, -860\}
+02931 ,\{ -930, -2060, -1470, -930, -1470\}
+02932 ,\{ -320, -1680, -860, -320, -860\}
+02933 ,\{ -1150, -1970, -1150, -1860, -1150\}
+02934 \}
+02935 \}
+02936 ,\{\{\{ -400, -400, -620, -400, -540\}
+02937 ,\{ -540, -580, -800, -580, -540\}
+02938 ,\{ -1030, -1030, -1250, -1030, -1230\}
+02939 ,\{ -400, -400, -620, -400, -1150\}
+02940 ,\{ -1030, -1030, -1250, -1030, -1230\}
+02941 \}
+02942 ,\{\{ -540, -580, -800, -580, -540\}
+02943 ,\{ -540, -580, -800, -580, -540\}
+02944 ,\{ -1030, -1030, -1250, -1030, -1230\}
+02945 ,\{ -1750, -1770, -1750, -1770, -1970\}
+02946 ,\{ -1030, -1030, -1250, -1030, -1230\}
+02947 \}
+02948 ,\{\{ -940, -940, -1160, -940, -1150\}
+02949 ,\{ -940, -940, -1160, -940, -1150\}
+02950 ,\{ -1250, -1250, -1470, -1250, -1450\}
+02951 ,\{ -940, -940, -1160, -940, -1150\}
+02952 ,\{ -1250, -1250, -1470, -1250, -1450\}
+02953 \}
+02954 ,\{\{ -400, -400, -620, -400, -1230\}
+02955 ,\{ -1270, -1290, -1270, -1290, -1500\}
+02956 ,\{ -1030, -1030, -1250, -1030, -1230\}
+02957 ,\{ -400, -400, -620, -400, -1860\}
+02958 ,\{ -1030, -1030, -1250, -1030, -1230\}
+02959 \}
+02960 ,\{\{ -940, -940, -1160, -940, -1150\}
+02961 ,\{ -940, -940, -1160, -940, -1150\}
+02962 ,\{ -1560, -1560, -1780, -1560, -1760\}
+02963 ,\{ -940, -940, -1160, -940, -1150\}
+02964 ,\{ -1230, -1230, -1450, -1230, -1440\}
+02965 \}
+02966 \}
+02967 \}
+02968 ,\{\{\{\{ 210, 210, -160, -240, -160\}
+02969 ,\{ -870, -870, -1230, -870, -1230\}
+02970 ,\{ -870, -1040, -1410, -870, -1410\}
+02971 ,\{ 210, 210, -160, -240, -160\}
+02972 ,\{ -800, -800, -1410, -870, -1410\}
+02973 \}
+02974 ,\{\{ -870, -1040, -1410, -870, -1410\}
+02975 ,\{ -1050, -1220, -1590, -1050, -1590\}
+02976 ,\{ -870, -1040, -1410, -870, -1410\}
+02977 ,\{ -1060, -1060, -1420, -1510, -1420\}
+02978 ,\{ -870, -1040, -1410, -870, -1410\}
+02979 \}
+02980 ,\{\{ -870, -1040, -1410, -870, -1410\}
+02981 ,\{ -870, -1040, -1410, -870, -1410\}
+02982 ,\{ -870, -1040, -1410, -870, -1410\}
+02983 ,\{ -870, -1040, -1410, -870, -1410\}
+02984 ,\{ -870, -1040, -1410, -870, -1410\}
+02985 \}
+02986 ,\{\{ 210, 210, -160, -240, -160\}
+02987 ,\{ -870, -870, -1230, -1320, -1230\}
+02988 ,\{ -870, -1040, -1410, -870, -1410\}
+02989 ,\{ 210, 210, -160, -240, -160\}
+02990 ,\{ -870, -1040, -1410, -870, -1410\}
+02991 \}
+02992 ,\{\{ -800, -800, -1410, -870, -1410\}
+02993 ,\{ -870, -1040, -1410, -870, -1410\}
+02994 ,\{ -870, -1040, -1410, -870, -1410\}
+02995 ,\{ -870, -1040, -1410, -870, -1410\}
+02996 ,\{ -800, -800, -1410, -1490, -1410\}
+02997 \}
+02998 \}
+02999 ,\{\{\{ 210, 210, -160, -1520, -160\}
+03000 ,\{ -870, -870, -1230, -1580, -1230\}
+03001 ,\{ -1040, -1040, -1410, -1520, -1410\}
+03002 ,\{ 210, 210, -160, -1760, -160\}
+03003 ,\{ -800, -800, -1410, -1520, -1410\}
+03004 \}
+03005 ,\{\{ -1040, -1040, -1410, -1760, -1410\}
+03006 ,\{ -1220, -1220, -1590, -1940, -1590\}
+03007 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03008 ,\{ -1060, -1060, -1420, -1770, -1420\}
+03009 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03010 \}
+03011 ,\{\{ -1040, -1040, -1410, -1520, -1410\}
+03012 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03013 ,\{ -1040, -1040, -1410, -1520, -1410\}
+03014 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03015 ,\{ -1040, -1040, -1410, -1520, -1410\}
+03016 \}
+03017 ,\{\{ 210, 210, -160, -1580, -160\}
+03018 ,\{ -870, -870, -1230, -1580, -1230\}
+03019 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03020 ,\{ 210, 210, -160, -1760, -160\}
+03021 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03022 \}
+03023 ,\{\{ -800, -800, -1410, -1520, -1410\}
+03024 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03025 ,\{ -1040, -1040, -1410, -1520, -1410\}
+03026 ,\{ -1040, -1040, -1410, -1760, -1410\}
+03027 ,\{ -800, -800, -1410, -1760, -1410\}
+03028 \}
+03029 \}
+03030 ,\{\{\{ -240, -240, -460, -240, -770\}
+03031 ,\{ -1300, -1320, -1300, -1320, -1610\}
+03032 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03033 ,\{ -240, -240, -460, -240, -770\}
+03034 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03035 \}
+03036 ,\{\{ -1490, -1490, -1490, -1490, -1800\}
+03037 ,\{ -1670, -1670, -1890, -1670, -2200\}
+03038 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03039 ,\{ -1490, -1510, -1490, -1510, -1800\}
+03040 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03041 \}
+03042 ,\{\{ -1490, -1490, -1710, -1490, -2020\}
+03043 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03044 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03045 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03046 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03047 \}
+03048 ,\{\{ -240, -240, -460, -240, -770\}
+03049 ,\{ -1300, -1320, -1300, -1320, -1610\}
+03050 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03051 ,\{ -240, -240, -460, -240, -770\}
+03052 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03053 \}
+03054 ,\{\{ -1490, -1490, -1710, -1490, -2020\}
+03055 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03056 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03057 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03058 ,\{ -1490, -1490, -1710, -1490, -2020\}
+03059 \}
+03060 \}
+03061 ,\{\{\{ -160, -1990, -160, -870, -160\}
+03062 ,\{ -870, -2060, -1230, -870, -1230\}
+03063 ,\{ -870, -1990, -1410, -870, -1410\}
+03064 ,\{ -160, -2230, -160, -870, -160\}
+03065 ,\{ -870, -1990, -1410, -870, -1410\}
+03066 \}
+03067 ,\{\{ -870, -2230, -1410, -870, -1410\}
+03068 ,\{ -1050, -2410, -1590, -1050, -1590\}
+03069 ,\{ -870, -2230, -1410, -870, -1410\}
+03070 ,\{ -1420, -2250, -1420, -2130, -1420\}
+03071 ,\{ -870, -2230, -1410, -870, -1410\}
+03072 \}
+03073 ,\{\{ -870, -1990, -1410, -870, -1410\}
+03074 ,\{ -870, -2230, -1410, -870, -1410\}
+03075 ,\{ -870, -1990, -1410, -870, -1410\}
+03076 ,\{ -870, -2230, -1410, -870, -1410\}
+03077 ,\{ -870, -1990, -1410, -870, -1410\}
+03078 \}
+03079 ,\{\{ -160, -2060, -160, -870, -160\}
+03080 ,\{ -1230, -2060, -1230, -1940, -1230\}
+03081 ,\{ -870, -2230, -1410, -870, -1410\}
+03082 ,\{ -160, -2230, -160, -2120, -160\}
+03083 ,\{ -870, -2230, -1410, -870, -1410\}
+03084 \}
+03085 ,\{\{ -870, -1990, -1410, -870, -1410\}
+03086 ,\{ -870, -2230, -1410, -870, -1410\}
+03087 ,\{ -870, -1990, -1410, -870, -1410\}
+03088 ,\{ -870, -2230, -1410, -870, -1410\}
+03089 ,\{ -1410, -2230, -1410, -2120, -1410\}
+03090 \}
+03091 \}
+03092 ,\{\{\{ -240, -240, -460, -240, -1520\}
+03093 ,\{ -1300, -1320, -1300, -1320, -1520\}
+03094 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03095 ,\{ -240, -240, -460, -240, -1700\}
+03096 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03097 \}
+03098 ,\{\{ -1490, -1490, -1490, -1490, -1640\}
+03099 ,\{ -1640, -1670, -1890, -1670, -1640\}
+03100 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03101 ,\{ -1490, -1510, -1490, -1510, -1710\}
+03102 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03103 \}
+03104 ,\{\{ -1490, -1490, -1710, -1490, -1700\}
+03105 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03106 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03107 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03108 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03109 \}
+03110 ,\{\{ -240, -240, -460, -240, -1520\}
+03111 ,\{ -1300, -1320, -1300, -1320, -1520\}
+03112 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03113 ,\{ -240, -240, -460, -240, -1700\}
+03114 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03115 \}
+03116 ,\{\{ -1490, -1490, -1710, -1490, -1700\}
+03117 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03118 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03119 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03120 ,\{ -1490, -1490, -1710, -1490, -1700\}
+03121 \}
+03122 \}
+03123 \}
+03124 ,\{\{\{\{ 760, 760, 400, 310, 400\}
+03125 ,\{ 200, -430, -340, 200, -340\}
+03126 ,\{ -310, -490, -850, -310, -850\}
+03127 ,\{ 760, 760, 400, 310, 400\}
+03128 ,\{ -250, -250, -850, -310, -850\}
+03129 \}
+03130 ,\{\{ 200, -430, -340, 200, -340\}
+03131 ,\{ 200, -430, -340, 200, -340\}
+03132 ,\{ -310, -490, -850, -310, -850\}
+03133 ,\{ -830, -830, -1190, -1280, -1190\}
+03134 ,\{ -310, -490, -850, -310, -850\}
+03135 \}
+03136 ,\{\{ -310, -490, -850, -310, -850\}
+03137 ,\{ -310, -490, -850, -310, -850\}
+03138 ,\{ -310, -490, -850, -310, -850\}
+03139 ,\{ -310, -490, -850, -310, -850\}
+03140 ,\{ -310, -490, -850, -310, -850\}
+03141 \}
+03142 ,\{\{ 760, 760, 400, 310, 400\}
+03143 ,\{ -1000, -1000, -1360, -1450, -1360\}
+03144 ,\{ -310, -490, -850, -310, -850\}
+03145 ,\{ 760, 760, 400, 310, 400\}
+03146 ,\{ -310, -490, -850, -310, -850\}
+03147 \}
+03148 ,\{\{ -250, -250, -850, -310, -850\}
+03149 ,\{ -310, -490, -850, -310, -850\}
+03150 ,\{ -310, -490, -850, -310, -850\}
+03151 ,\{ -310, -490, -850, -310, -850\}
+03152 ,\{ -250, -250, -850, -940, -850\}
+03153 \}
+03154 \}
+03155 ,\{\{\{ 760, 760, 400, -690, 400\}
+03156 ,\{ -340, -490, -340, -690, -340\}
+03157 ,\{ -490, -490, -850, -960, -850\}
+03158 ,\{ 760, 760, 400, -1200, 400\}
+03159 ,\{ -250, -250, -850, -960, -850\}
+03160 \}
+03161 ,\{\{ -340, -490, -340, -690, -340\}
+03162 ,\{ -340, -2040, -340, -690, -340\}
+03163 ,\{ -490, -490, -850, -1200, -850\}
+03164 ,\{ -830, -830, -1190, -1540, -1190\}
+03165 ,\{ -490, -490, -850, -1200, -850\}
+03166 \}
+03167 ,\{\{ -490, -490, -850, -960, -850\}
+03168 ,\{ -490, -490, -850, -1200, -850\}
+03169 ,\{ -490, -490, -850, -960, -850\}
+03170 ,\{ -490, -490, -850, -1200, -850\}
+03171 ,\{ -490, -490, -850, -960, -850\}
+03172 \}
+03173 ,\{\{ 760, 760, 400, -1200, 400\}
+03174 ,\{ -1000, -1000, -1360, -1710, -1360\}
+03175 ,\{ -490, -490, -850, -1200, -850\}
+03176 ,\{ 760, 760, 400, -1200, 400\}
+03177 ,\{ -490, -490, -850, -1200, -850\}
+03178 \}
+03179 ,\{\{ -250, -250, -850, -960, -850\}
+03180 ,\{ -490, -490, -850, -1200, -850\}
+03181 ,\{ -490, -490, -850, -960, -850\}
+03182 ,\{ -490, -490, -850, -1200, -850\}
+03183 ,\{ -250, -250, -850, -1200, -850\}
+03184 \}
+03185 \}
+03186 ,\{\{\{ 310, 310, 90, 310, -220\}
+03187 ,\{ -430, -430, -650, -430, -960\}
+03188 ,\{ -940, -940, -1160, -940, -1470\}
+03189 ,\{ 310, 310, 90, 310, -220\}
+03190 ,\{ -940, -940, -1160, -940, -1470\}
+03191 \}
+03192 ,\{\{ -430, -430, -650, -430, -960\}
+03193 ,\{ -430, -430, -650, -430, -960\}
+03194 ,\{ -940, -940, -1160, -940, -1470\}
+03195 ,\{ -1260, -1280, -1260, -1280, -1570\}
+03196 ,\{ -940, -940, -1160, -940, -1470\}
+03197 \}
+03198 ,\{\{ -940, -940, -1160, -940, -1470\}
+03199 ,\{ -940, -940, -1160, -940, -1470\}
+03200 ,\{ -940, -940, -1160, -940, -1470\}
+03201 ,\{ -940, -940, -1160, -940, -1470\}
+03202 ,\{ -940, -940, -1160, -940, -1470\}
+03203 \}
+03204 ,\{\{ 310, 310, 90, 310, -220\}
+03205 ,\{ -1430, -1450, -1430, -1450, -1740\}
+03206 ,\{ -940, -940, -1160, -940, -1470\}
+03207 ,\{ 310, 310, 90, 310, -220\}
+03208 ,\{ -940, -940, -1160, -940, -1470\}
+03209 \}
+03210 ,\{\{ -940, -940, -1160, -940, -1470\}
+03211 ,\{ -940, -940, -1160, -940, -1470\}
+03212 ,\{ -940, -940, -1160, -940, -1470\}
+03213 ,\{ -940, -940, -1160, -940, -1470\}
+03214 ,\{ -940, -940, -1160, -940, -1470\}
+03215 \}
+03216 \}
+03217 ,\{\{\{ 400, -1170, 400, 200, 400\}
+03218 ,\{ 200, -1170, -340, 200, -340\}
+03219 ,\{ -310, -1440, -850, -310, -850\}
+03220 ,\{ 400, -1680, 400, -310, 400\}
+03221 ,\{ -310, -1440, -850, -310, -850\}
+03222 \}
+03223 ,\{\{ 200, -1170, -340, 200, -340\}
+03224 ,\{ 200, -1170, -340, 200, -340\}
+03225 ,\{ -310, -1680, -850, -310, -850\}
+03226 ,\{ -1190, -2020, -1190, -1900, -1190\}
+03227 ,\{ -310, -1680, -850, -310, -850\}
+03228 \}
+03229 ,\{\{ -310, -1440, -850, -310, -850\}
+03230 ,\{ -310, -1680, -850, -310, -850\}
+03231 ,\{ -310, -1440, -850, -310, -850\}
+03232 ,\{ -310, -1680, -850, -310, -850\}
+03233 ,\{ -310, -1440, -850, -310, -850\}
+03234 \}
+03235 ,\{\{ 400, -1680, 400, -310, 400\}
+03236 ,\{ -1360, -2190, -1360, -2070, -1360\}
+03237 ,\{ -310, -1680, -850, -310, -850\}
+03238 ,\{ 400, -1680, 400, -1560, 400\}
+03239 ,\{ -310, -1680, -850, -310, -850\}
+03240 \}
+03241 ,\{\{ -310, -1440, -850, -310, -850\}
+03242 ,\{ -310, -1680, -850, -310, -850\}
+03243 ,\{ -310, -1440, -850, -310, -850\}
+03244 ,\{ -310, -1680, -850, -310, -850\}
+03245 ,\{ -850, -1680, -850, -1560, -850\}
+03246 \}
+03247 \}
+03248 ,\{\{\{ 310, 310, 90, 310, -390\}
+03249 ,\{ -390, -430, -650, -430, -390\}
+03250 ,\{ -940, -940, -1160, -940, -1140\}
+03251 ,\{ 310, 310, 90, 310, -1140\}
+03252 ,\{ -940, -940, -1160, -940, -1140\}
+03253 \}
+03254 ,\{\{ -390, -430, -650, -430, -390\}
+03255 ,\{ -390, -430, -650, -430, -390\}
+03256 ,\{ -940, -940, -1160, -940, -1140\}
+03257 ,\{ -1260, -1280, -1260, -1280, -1480\}
+03258 ,\{ -940, -940, -1160, -940, -1140\}
+03259 \}
+03260 ,\{\{ -940, -940, -1160, -940, -1140\}
+03261 ,\{ -940, -940, -1160, -940, -1140\}
+03262 ,\{ -940, -940, -1160, -940, -1140\}
+03263 ,\{ -940, -940, -1160, -940, -1140\}
+03264 ,\{ -940, -940, -1160, -940, -1140\}
+03265 \}
+03266 ,\{\{ 310, 310, 90, 310, -1140\}
+03267 ,\{ -1430, -1450, -1430, -1450, -1650\}
+03268 ,\{ -940, -940, -1160, -940, -1140\}
+03269 ,\{ 310, 310, 90, 310, -1140\}
+03270 ,\{ -940, -940, -1160, -940, -1140\}
+03271 \}
+03272 ,\{\{ -940, -940, -1160, -940, -1140\}
+03273 ,\{ -940, -940, -1160, -940, -1140\}
+03274 ,\{ -940, -940, -1160, -940, -1140\}
+03275 ,\{ -940, -940, -1160, -940, -1140\}
+03276 ,\{ -940, -940, -1160, -940, -1140\}
+03277 \}
+03278 \}
+03279 \}
+03280 ,\{\{\{\{ 1140, 1140, 770, 780, 770\}
+03281 ,\{ 780, 600, 240, 780, 240\}
+03282 ,\{ 480, 300, -60, 480, -60\}
+03283 ,\{ 1140, 1140, 770, 690, 770\}
+03284 ,\{ 480, 300, -60, 480, -60\}
+03285 \}
+03286 ,\{\{ 780, 600, 240, 780, 240\}
+03287 ,\{ 780, 600, 240, 780, 240\}
+03288 ,\{ 470, 290, -70, 470, -70\}
+03289 ,\{ -780, -780, -1150, -1230, -1150\}
+03290 ,\{ 470, 290, -70, 470, -70\}
+03291 \}
+03292 ,\{\{ 490, 310, -50, 490, -50\}
+03293 ,\{ 490, 310, -50, 490, -50\}
+03294 ,\{ 480, 300, -60, 480, -60\}
+03295 ,\{ 490, 310, -50, 490, -50\}
+03296 ,\{ 480, 300, -60, 480, -60\}
+03297 \}
+03298 ,\{\{ 1140, 1140, 770, 690, 770\}
+03299 ,\{ -600, -600, -970, -1050, -970\}
+03300 ,\{ 470, 290, -70, 470, -70\}
+03301 ,\{ 1140, 1140, 770, 690, 770\}
+03302 ,\{ 470, 290, -70, 470, -70\}
+03303 \}
+03304 ,\{\{ 490, 310, -50, 490, -50\}
+03305 ,\{ 490, 310, -50, 490, -50\}
+03306 ,\{ 480, 300, -60, 480, -60\}
+03307 ,\{ 490, 310, -50, 490, -50\}
+03308 ,\{ -430, -430, -1040, -1120, -1040\}
+03309 \}
+03310 \}
+03311 ,\{\{\{ 1140, 1140, 770, -110, 770\}
+03312 ,\{ 600, 600, 240, -110, 240\}
+03313 ,\{ 300, 300, -60, -170, -60\}
+03314 ,\{ 1140, 1140, 770, -400, 770\}
+03315 ,\{ 300, 300, -60, -170, -60\}
+03316 \}
+03317 ,\{\{ 600, 600, 240, -110, 240\}
+03318 ,\{ 600, 600, 240, -110, 240\}
+03319 ,\{ 290, 290, -70, -420, -70\}
+03320 ,\{ -780, -780, -1150, -1500, -1150\}
+03321 ,\{ 290, 290, -70, -420, -70\}
+03322 \}
+03323 ,\{\{ 310, 310, -50, -170, -50\}
+03324 ,\{ 310, 310, -50, -400, -50\}
+03325 ,\{ 300, 300, -60, -170, -60\}
+03326 ,\{ 310, 310, -50, -400, -50\}
+03327 ,\{ 300, 300, -60, -170, -60\}
+03328 \}
+03329 ,\{\{ 1140, 1140, 770, -420, 770\}
+03330 ,\{ -600, -600, -970, -1320, -970\}
+03331 ,\{ 290, 290, -70, -420, -70\}
+03332 ,\{ 1140, 1140, 770, -830, 770\}
+03333 ,\{ 290, 290, -70, -420, -70\}
+03334 \}
+03335 ,\{\{ 310, 310, -50, -170, -50\}
+03336 ,\{ 310, 310, -50, -400, -50\}
+03337 ,\{ 300, 300, -60, -170, -60\}
+03338 ,\{ 310, 310, -50, -400, -50\}
+03339 ,\{ -430, -430, -1040, -1390, -1040\}
+03340 \}
+03341 \}
+03342 ,\{\{\{ 690, 690, 470, 690, 160\}
+03343 ,\{ 150, 150, -60, 150, -370\}
+03344 ,\{ -140, -140, -360, -140, -670\}
+03345 ,\{ 690, 690, 470, 690, 160\}
+03346 ,\{ -140, -140, -360, -140, -670\}
+03347 \}
+03348 ,\{\{ 150, 150, -60, 150, -370\}
+03349 ,\{ 150, 150, -60, 150, -370\}
+03350 ,\{ -150, -150, -370, -150, -680\}
+03351 ,\{ -1210, -1230, -1210, -1230, -1520\}
+03352 ,\{ -150, -150, -370, -150, -680\}
+03353 \}
+03354 ,\{\{ -140, -140, -360, -140, -670\}
+03355 ,\{ -140, -140, -360, -140, -670\}
+03356 ,\{ -140, -140, -360, -140, -670\}
+03357 ,\{ -140, -140, -360, -140, -670\}
+03358 ,\{ -140, -140, -360, -140, -670\}
+03359 \}
+03360 ,\{\{ 690, 690, 470, 690, 160\}
+03361 ,\{ -1030, -1050, -1030, -1050, -1340\}
+03362 ,\{ -150, -150, -370, -150, -680\}
+03363 ,\{ 690, 690, 470, 690, 160\}
+03364 ,\{ -150, -150, -370, -150, -680\}
+03365 \}
+03366 ,\{\{ -140, -140, -360, -140, -670\}
+03367 ,\{ -140, -140, -360, -140, -670\}
+03368 ,\{ -140, -140, -360, -140, -670\}
+03369 ,\{ -140, -140, -360, -140, -670\}
+03370 ,\{ -1120, -1120, -1340, -1120, -1650\}
+03371 \}
+03372 \}
+03373 ,\{\{\{ 780, -580, 770, 780, 770\}
+03374 ,\{ 780, -580, 240, 780, 240\}
+03375 ,\{ 480, -640, -60, 480, -60\}
+03376 ,\{ 770, -880, 770, 490, 770\}
+03377 ,\{ 480, -640, -60, 480, -60\}
+03378 \}
+03379 ,\{\{ 780, -580, 240, 780, 240\}
+03380 ,\{ 780, -580, 240, 780, 240\}
+03381 ,\{ 470, -890, -70, 470, -70\}
+03382 ,\{ -1150, -1970, -1150, -1860, -1150\}
+03383 ,\{ 470, -890, -70, 470, -70\}
+03384 \}
+03385 ,\{\{ 490, -640, -50, 490, -50\}
+03386 ,\{ 490, -880, -50, 490, -50\}
+03387 ,\{ 480, -640, -60, 480, -60\}
+03388 ,\{ 490, -880, -50, 490, -50\}
+03389 ,\{ 480, -640, -60, 480, -60\}
+03390 \}
+03391 ,\{\{ 770, -890, 770, 470, 770\}
+03392 ,\{ -970, -1790, -970, -1680, -970\}
+03393 ,\{ 470, -890, -70, 470, -70\}
+03394 ,\{ 770, -1300, 770, -1190, 770\}
+03395 ,\{ 470, -890, -70, 470, -70\}
+03396 \}
+03397 ,\{\{ 490, -640, -50, 490, -50\}
+03398 ,\{ 490, -880, -50, 490, -50\}
+03399 ,\{ 480, -640, -60, 480, -60\}
+03400 ,\{ 490, -880, -50, 490, -50\}
+03401 ,\{ -1040, -1860, -1040, -1750, -1040\}
+03402 \}
+03403 \}
+03404 ,\{\{\{ 690, 690, 470, 690, 190\}
+03405 ,\{ 190, 150, -60, 150, 190\}
+03406 ,\{ -140, -140, -360, -140, -350\}
+03407 ,\{ 690, 690, 470, 690, -340\}
+03408 ,\{ -140, -140, -360, -140, -350\}
+03409 \}
+03410 ,\{\{ 190, 150, -60, 150, 190\}
+03411 ,\{ 190, 150, -60, 150, 190\}
+03412 ,\{ -150, -150, -370, -150, -360\}
+03413 ,\{ -1210, -1230, -1210, -1230, -1440\}
+03414 ,\{ -150, -150, -370, -150, -360\}
+03415 \}
+03416 ,\{\{ -140, -140, -360, -140, -340\}
+03417 ,\{ -140, -140, -360, -140, -340\}
+03418 ,\{ -140, -140, -360, -140, -350\}
+03419 ,\{ -140, -140, -360, -140, -340\}
+03420 ,\{ -140, -140, -360, -140, -350\}
+03421 \}
+03422 ,\{\{ 690, 690, 470, 690, -360\}
+03423 ,\{ -1030, -1050, -1030, -1050, -1260\}
+03424 ,\{ -150, -150, -370, -150, -360\}
+03425 ,\{ 690, 690, 470, 690, -770\}
+03426 ,\{ -150, -150, -370, -150, -360\}
+03427 \}
+03428 ,\{\{ -140, -140, -360, -140, -340\}
+03429 ,\{ -140, -140, -360, -140, -340\}
+03430 ,\{ -140, -140, -360, -140, -350\}
+03431 ,\{ -140, -140, -360, -140, -340\}
+03432 ,\{ -1120, -1120, -1340, -1120, -1330\}
+03433 \}
+03434 \}
+03435 \}
+03436 ,\{\{\{\{ 1320, 1320, 960, 870, 960\}
+03437 ,\{ 850, 670, 300, 850, 300\}
+03438 ,\{ 720, 540, 170, 720, 170\}
+03439 ,\{ 1320, 1320, 960, 870, 960\}
+03440 ,\{ 590, 410, 40, 590, 40\}
+03441 \}
+03442 ,\{\{ 850, 670, 300, 850, 300\}
+03443 ,\{ 850, 670, 300, 850, 300\}
+03444 ,\{ 570, 390, 20, 570, 20\}
+03445 ,\{ -730, -730, -1100, -1180, -1100\}
+03446 ,\{ 570, 390, 20, 570, 20\}
+03447 \}
+03448 ,\{\{ 720, 540, 170, 720, 170\}
+03449 ,\{ 720, 540, 170, 720, 170\}
+03450 ,\{ 720, 540, 170, 720, 170\}
+03451 ,\{ 720, 540, 170, 720, 170\}
+03452 ,\{ 590, 410, 40, 590, 40\}
+03453 \}
+03454 ,\{\{ 1320, 1320, 960, 870, 960\}
+03455 ,\{ -1030, -1030, -1400, -1480, -1400\}
+03456 ,\{ 570, 390, 20, 570, 20\}
+03457 ,\{ 1320, 1320, 960, 870, 960\}
+03458 ,\{ 570, 390, 20, 570, 20\}
+03459 \}
+03460 ,\{\{ 720, 540, 170, 720, 170\}
+03461 ,\{ 720, 540, 170, 720, 170\}
+03462 ,\{ 280, 100, -260, 280, -260\}
+03463 ,\{ 720, 540, 170, 720, 170\}
+03464 ,\{ -160, -160, -760, -850, -760\}
+03465 \}
+03466 \}
+03467 ,\{\{\{ 1320, 1320, 960, 70, 960\}
+03468 ,\{ 670, 670, 300, -40, 300\}
+03469 ,\{ 540, 540, 170, 70, 170\}
+03470 ,\{ 1320, 1320, 960, -170, 960\}
+03471 ,\{ 410, 410, 40, -60, 40\}
+03472 \}
+03473 ,\{\{ 670, 670, 300, -40, 300\}
+03474 ,\{ 670, 670, 300, -40, 300\}
+03475 ,\{ 390, 390, 20, -320, 20\}
+03476 ,\{ -730, -730, -1100, -1450, -1100\}
+03477 ,\{ 390, 390, 20, -320, 20\}
+03478 \}
+03479 ,\{\{ 540, 540, 170, 70, 170\}
+03480 ,\{ 540, 540, 170, -170, 170\}
+03481 ,\{ 540, 540, 170, 70, 170\}
+03482 ,\{ 540, 540, 170, -170, 170\}
+03483 ,\{ 410, 410, 40, -60, 40\}
+03484 \}
+03485 ,\{\{ 1320, 1320, 960, -320, 960\}
+03486 ,\{ -1030, -1030, -1400, -1750, -1400\}
+03487 ,\{ 390, 390, 20, -320, 20\}
+03488 ,\{ 1320, 1320, 960, -640, 960\}
+03489 ,\{ 390, 390, 20, -320, 20\}
+03490 \}
+03491 ,\{\{ 540, 540, 170, -170, 170\}
+03492 ,\{ 540, 540, 170, -170, 170\}
+03493 ,\{ 100, 100, -260, -370, -260\}
+03494 ,\{ 540, 540, 170, -170, 170\}
+03495 ,\{ -160, -160, -760, -1110, -760\}
+03496 \}
+03497 \}
+03498 ,\{\{\{ 870, 870, 650, 870, 340\}
+03499 ,\{ 220, 220, 0, 220, -310\}
+03500 ,\{ 90, 90, -130, 90, -440\}
+03501 ,\{ 870, 870, 650, 870, 340\}
+03502 ,\{ -40, -40, -260, -40, -570\}
+03503 \}
+03504 ,\{\{ 220, 220, 0, 220, -310\}
+03505 ,\{ 220, 220, 0, 220, -310\}
+03506 ,\{ -60, -60, -280, -60, -590\}
+03507 ,\{ -1160, -1180, -1160, -1180, -1470\}
+03508 ,\{ -60, -60, -280, -60, -590\}
+03509 \}
+03510 ,\{\{ 90, 90, -130, 90, -440\}
+03511 ,\{ 90, 90, -130, 90, -440\}
+03512 ,\{ 90, 90, -130, 90, -440\}
+03513 ,\{ 90, 90, -130, 90, -440\}
+03514 ,\{ -40, -40, -260, -40, -570\}
+03515 \}
+03516 ,\{\{ 870, 870, 650, 870, 340\}
+03517 ,\{ -1460, -1480, -1460, -1480, -1770\}
+03518 ,\{ -60, -60, -280, -60, -590\}
+03519 ,\{ 870, 870, 650, 870, 340\}
+03520 ,\{ -60, -60, -280, -60, -590\}
+03521 \}
+03522 ,\{\{ 90, 90, -130, 90, -440\}
+03523 ,\{ 90, 90, -130, 90, -440\}
+03524 ,\{ -350, -350, -570, -350, -880\}
+03525 ,\{ 90, 90, -130, 90, -440\}
+03526 ,\{ -850, -850, -1070, -850, -1380\}
+03527 \}
+03528 \}
+03529 ,\{\{\{ 960, -410, 960, 850, 960\}
+03530 ,\{ 850, -520, 300, 850, 300\}
+03531 ,\{ 720, -410, 170, 720, 170\}
+03532 ,\{ 960, -650, 960, 720, 960\}
+03533 ,\{ 590, -540, 40, 590, 40\}
+03534 \}
+03535 ,\{\{ 850, -520, 300, 850, 300\}
+03536 ,\{ 850, -520, 300, 850, 300\}
+03537 ,\{ 570, -800, 20, 570, 20\}
+03538 ,\{ -1100, -1920, -1100, -1810, -1100\}
+03539 ,\{ 570, -800, 20, 570, 20\}
+03540 \}
+03541 ,\{\{ 720, -410, 170, 720, 170\}
+03542 ,\{ 720, -650, 170, 720, 170\}
+03543 ,\{ 720, -410, 170, 720, 170\}
+03544 ,\{ 720, -650, 170, 720, 170\}
+03545 ,\{ 590, -540, 40, 590, 40\}
+03546 \}
+03547 ,\{\{ 960, -800, 960, 570, 960\}
+03548 ,\{ -1400, -2220, -1400, -2110, -1400\}
+03549 ,\{ 570, -800, 20, 570, 20\}
+03550 ,\{ 960, -1120, 960, -1000, 960\}
+03551 ,\{ 570, -800, 20, 570, 20\}
+03552 \}
+03553 ,\{\{ 720, -650, 170, 720, 170\}
+03554 ,\{ 720, -650, 170, 720, 170\}
+03555 ,\{ 280, -850, -260, 280, -260\}
+03556 ,\{ 720, -650, 170, 720, 170\}
+03557 ,\{ -760, -1590, -760, -1470, -760\}
+03558 \}
+03559 \}
+03560 ,\{\{\{ 870, 870, 650, 870, 250\}
+03561 ,\{ 250, 220, 0, 220, 250\}
+03562 ,\{ 90, 90, -130, 90, -110\}
+03563 ,\{ 870, 870, 650, 870, -110\}
+03564 ,\{ -40, -40, -260, -40, -240\}
+03565 \}
+03566 ,\{\{ 250, 220, 0, 220, 250\}
+03567 ,\{ 250, 220, 0, 220, 250\}
+03568 ,\{ -60, -60, -280, -60, -260\}
+03569 ,\{ -1160, -1180, -1160, -1180, -1390\}
+03570 ,\{ -60, -60, -280, -60, -260\}
+03571 \}
+03572 ,\{\{ 90, 90, -130, 90, -110\}
+03573 ,\{ 90, 90, -130, 90, -110\}
+03574 ,\{ 90, 90, -130, 90, -110\}
+03575 ,\{ 90, 90, -130, 90, -110\}
+03576 ,\{ -40, -40, -260, -40, -240\}
+03577 \}
+03578 ,\{\{ 870, 870, 650, 870, -260\}
+03579 ,\{ -1460, -1480, -1460, -1480, -1690\}
+03580 ,\{ -60, -60, -280, -60, -260\}
+03581 ,\{ 870, 870, 650, 870, -580\}
+03582 ,\{ -60, -60, -280, -60, -260\}
+03583 \}
+03584 ,\{\{ 90, 90, -130, 90, -110\}
+03585 ,\{ 90, 90, -130, 90, -110\}
+03586 ,\{ -350, -350, -570, -350, -550\}
+03587 ,\{ 90, 90, -130, 90, -110\}
+03588 ,\{ -850, -850, -1070, -850, -1050\}
+03589 \}
+03590 \}
+03591 \}
+03592 ,\{\{\{\{ 1320, 1320, 960, 870, 960\}
+03593 ,\{ 850, 670, 540, 850, 300\}
+03594 ,\{ 720, 540, 170, 720, 170\}
+03595 ,\{ 1320, 1320, 960, 870, 960\}
+03596 ,\{ 590, 410, 40, 590, 40\}
+03597 \}
+03598 ,\{\{ 850, 670, 300, 850, 300\}
+03599 ,\{ 850, 670, 300, 850, 300\}
+03600 ,\{ 570, 390, 20, 570, 20\}
+03601 ,\{ -350, -350, -870, -960, -870\}
+03602 ,\{ 570, 390, 20, 570, 20\}
+03603 \}
+03604 ,\{\{ 720, 540, 170, 720, 170\}
+03605 ,\{ 720, 540, 170, 720, 170\}
+03606 ,\{ 720, 540, 170, 720, 170\}
+03607 ,\{ 720, 540, 170, 720, 170\}
+03608 ,\{ 590, 410, 40, 590, 40\}
+03609 \}
+03610 ,\{\{ 1320, 1320, 960, 870, 960\}
+03611 ,\{ 540, -100, 540, -1050, -810\}
+03612 ,\{ 570, 390, 20, 570, 20\}
+03613 ,\{ 1320, 1320, 960, 870, 960\}
+03614 ,\{ 570, 390, 20, 570, 20\}
+03615 \}
+03616 ,\{\{ 720, 540, 170, 720, 170\}
+03617 ,\{ 720, 540, 170, 720, 170\}
+03618 ,\{ 480, 300, -60, 480, -60\}
+03619 ,\{ 720, 540, 170, 720, 170\}
+03620 ,\{ -160, -160, -400, -230, -760\}
+03621 \}
+03622 \}
+03623 ,\{\{\{ 1320, 1320, 960, 70, 960\}
+03624 ,\{ 670, 670, 300, -40, 300\}
+03625 ,\{ 540, 540, 170, 70, 170\}
+03626 ,\{ 1320, 1320, 960, -170, 960\}
+03627 ,\{ 410, 410, 40, -60, 40\}
+03628 \}
+03629 ,\{\{ 670, 670, 300, -40, 300\}
+03630 ,\{ 670, 670, 300, -40, 300\}
+03631 ,\{ 390, 390, 20, -320, 20\}
+03632 ,\{ -730, -730, -1100, -1450, -870\}
+03633 ,\{ 390, 390, 20, -320, 20\}
+03634 \}
+03635 ,\{\{ 540, 540, 170, 70, 170\}
+03636 ,\{ 540, 540, 170, -170, 170\}
+03637 ,\{ 540, 540, 170, 70, 170\}
+03638 ,\{ 540, 540, 170, -170, 170\}
+03639 ,\{ 410, 410, 40, -60, 40\}
+03640 \}
+03641 ,\{\{ 1320, 1320, 960, -320, 960\}
+03642 ,\{ 10, -600, 10, -1320, -970\}
+03643 ,\{ 390, 390, 20, -320, 20\}
+03644 ,\{ 1320, 1320, 960, -640, 960\}
+03645 ,\{ 390, 390, 20, -320, 20\}
+03646 \}
+03647 ,\{\{ 540, 540, 170, -170, 170\}
+03648 ,\{ 540, 540, 170, -170, 170\}
+03649 ,\{ 300, 300, -60, -170, -60\}
+03650 ,\{ 540, 540, 170, -170, 170\}
+03651 ,\{ -160, -160, -400, -1110, -760\}
+03652 \}
+03653 \}
+03654 ,\{\{\{ 870, 870, 650, 870, 340\}
+03655 ,\{ 540, 220, 540, 220, -310\}
+03656 ,\{ 90, 90, -130, 90, -440\}
+03657 ,\{ 870, 870, 650, 870, 340\}
+03658 ,\{ -40, -40, -260, -40, -570\}
+03659 \}
+03660 ,\{\{ 220, 220, 0, 220, -310\}
+03661 ,\{ 220, 220, 0, 220, -310\}
+03662 ,\{ -60, -60, -280, -60, -590\}
+03663 ,\{ -350, -350, -940, -960, -1250\}
+03664 ,\{ -60, -60, -280, -60, -590\}
+03665 \}
+03666 ,\{\{ 90, 90, -130, 90, -440\}
+03667 ,\{ 90, 90, -130, 90, -440\}
+03668 ,\{ 90, 90, -130, 90, -440\}
+03669 ,\{ 90, 90, -130, 90, -440\}
+03670 ,\{ -40, -40, -260, -40, -570\}
+03671 \}
+03672 ,\{\{ 870, 870, 650, 870, 340\}
+03673 ,\{ 540, -100, 540, -1050, -1340\}
+03674 ,\{ -60, -60, -280, -60, -590\}
+03675 ,\{ 870, 870, 650, 870, 340\}
+03676 ,\{ -60, -60, -280, -60, -590\}
+03677 \}
+03678 ,\{\{ 90, 90, -130, 90, -440\}
+03679 ,\{ 90, 90, -130, 90, -440\}
+03680 ,\{ -140, -140, -360, -140, -670\}
+03681 ,\{ 90, 90, -130, 90, -440\}
+03682 ,\{ -850, -850, -1070, -850, -1380\}
+03683 \}
+03684 \}
+03685 ,\{\{\{ 960, -410, 960, 850, 960\}
+03686 ,\{ 850, -520, 300, 850, 300\}
+03687 ,\{ 720, -410, 170, 720, 170\}
+03688 ,\{ 960, -650, 960, 720, 960\}
+03689 ,\{ 590, -540, 40, 590, 40\}
+03690 \}
+03691 ,\{\{ 850, -520, 300, 850, 300\}
+03692 ,\{ 850, -520, 300, 850, 300\}
+03693 ,\{ 570, -800, 20, 570, 20\}
+03694 ,\{ -870, -1920, -870, -1370, -870\}
+03695 ,\{ 570, -800, 20, 570, 20\}
+03696 \}
+03697 ,\{\{ 720, -410, 170, 720, 170\}
+03698 ,\{ 720, -650, 170, 720, 170\}
+03699 ,\{ 720, -410, 170, 720, 170\}
+03700 ,\{ 720, -650, 170, 720, 170\}
+03701 ,\{ 590, -540, 40, 590, 40\}
+03702 \}
+03703 ,\{\{ 960, -800, 960, 570, 960\}
+03704 ,\{ -970, -1790, -970, -1680, -970\}
+03705 ,\{ 570, -800, 20, 570, 20\}
+03706 ,\{ 960, -1120, 960, -1000, 960\}
+03707 ,\{ 570, -800, 20, 570, 20\}
+03708 \}
+03709 ,\{\{ 720, -640, 170, 720, 170\}
+03710 ,\{ 720, -650, 170, 720, 170\}
+03711 ,\{ 480, -640, -60, 480, -60\}
+03712 ,\{ 720, -650, 170, 720, 170\}
+03713 ,\{ -230, -1520, -760, -230, -760\}
+03714 \}
+03715 \}
+03716 ,\{\{\{ 870, 870, 650, 870, 250\}
+03717 ,\{ 250, 220, 0, 220, 250\}
+03718 ,\{ 90, 90, -130, 90, -110\}
+03719 ,\{ 870, 870, 650, 870, -110\}
+03720 ,\{ -40, -40, -260, -40, -240\}
+03721 \}
+03722 ,\{\{ 250, 220, 0, 220, 250\}
+03723 ,\{ 250, 220, 0, 220, 250\}
+03724 ,\{ -60, -60, -280, -60, -260\}
+03725 ,\{ -940, -960, -940, -960, -1360\}
+03726 ,\{ -60, -60, -280, -60, -260\}
+03727 \}
+03728 ,\{\{ 90, 90, -130, 90, -90\}
+03729 ,\{ 90, 90, -130, 90, -90\}
+03730 ,\{ 90, 90, -130, 90, -110\}
+03731 ,\{ 90, 90, -130, 90, -110\}
+03732 ,\{ -40, -40, -260, -40, -240\}
+03733 \}
+03734 ,\{\{ 870, 870, 650, 870, -260\}
+03735 ,\{ -810, -1050, -1030, -1050, -810\}
+03736 ,\{ -60, -60, -280, -60, -260\}
+03737 ,\{ 870, 870, 650, 870, -580\}
+03738 ,\{ -60, -60, -280, -60, -260\}
+03739 \}
+03740 ,\{\{ 90, 90, -130, 90, -110\}
+03741 ,\{ 90, 90, -130, 90, -110\}
+03742 ,\{ -140, -140, -360, -140, -350\}
+03743 ,\{ 90, 90, -130, 90, -110\}
+03744 ,\{ -850, -850, -1070, -850, -1050\}
+03745 \}
+03746 \}
+03747 \}
+03748 \}
+03749 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03750 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03751 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03754 \}
+03755 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03756 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03757 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03760 \}
+03761 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03762 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03763 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03766 \}
+03767 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03768 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03769 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03772 \}
+03773 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03774 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03775 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03776 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03778 \}
+03779 \}
+03780 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03781 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03782 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03783 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03784 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03785 \}
+03786 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03787 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03788 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03789 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03790 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03791 \}
+03792 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03793 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03794 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03795 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03796 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03797 \}
+03798 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03799 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03800 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03801 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03802 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03803 \}
+03804 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03805 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03806 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03807 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03808 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03809 \}
+03810 \}
+03811 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03812 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03813 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03814 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03815 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03816 \}
+03817 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03818 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03819 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03820 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03821 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03822 \}
+03823 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03824 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03825 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03826 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03827 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03828 \}
+03829 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03830 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03831 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03832 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03833 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03834 \}
+03835 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03836 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03837 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03838 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03839 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03840 \}
+03841 \}
+03842 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03843 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03844 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03845 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03846 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03847 \}
+03848 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03849 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03850 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03851 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03852 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03853 \}
+03854 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03855 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03856 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03857 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03858 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03859 \}
+03860 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03861 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03862 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03863 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03864 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03865 \}
+03866 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03867 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03868 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03869 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03870 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03871 \}
+03872 \}
+03873 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03874 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03875 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03876 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03877 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03878 \}
+03879 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03880 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03881 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03882 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03883 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03884 \}
+03885 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03886 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03887 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03888 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03889 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03890 \}
+03891 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03892 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03893 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03894 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03895 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03896 \}
+03897 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03898 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03899 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03900 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03901 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+03902 \}
+03903 \}
+03904 \}
+03905 ,\{\{\{\{ 240, -780, -870, 240, -870\}
+03906 ,\{ 190, -1060, -1060, 190, -970\}
+03907 ,\{ 240, -780, -1010, 240, -1010\}
+03908 ,\{ 190, -870, -870, 190, -870\}
+03909 ,\{ 130, -890, -1120, 130, -1120\}
+03910 \}
+03911 ,\{\{ 40, -1210, -1180, 40, -970\}
+03912 ,\{ 40, -1210, -1210, 40, -970\}
+03913 ,\{ -270, -1520, -1520, -270, -1520\}
+03914 ,\{ -1180, -1420, -1180, -1250, -1180\}
+03915 ,\{ -270, -1520, -1520, -270, -1520\}
+03916 \}
+03917 ,\{\{ 190, -840, -1060, 190, -1060\}
+03918 ,\{ 190, -1060, -1060, 190, -1060\}
+03919 ,\{ 180, -840, -1070, 180, -1070\}
+03920 ,\{ 190, -1060, -1060, 190, -1060\}
+03921 ,\{ 130, -890, -1120, 130, -1120\}
+03922 \}
+03923 ,\{\{ -270, -870, -870, -270, -870\}
+03924 ,\{ -1470, -1710, -1470, -1530, -1470\}
+03925 ,\{ -270, -1520, -1520, -270, -1520\}
+03926 ,\{ -870, -870, -870, -870, -870\}
+03927 ,\{ -270, -1520, -1520, -270, -1520\}
+03928 \}
+03929 ,\{\{ 240, -780, -1010, 240, -1010\}
+03930 ,\{ 190, -1060, -1060, 190, -1060\}
+03931 ,\{ 240, -780, -1010, 240, -1010\}
+03932 ,\{ 190, -1060, -1060, 190, -1060\}
+03933 ,\{ -1680, -1790, -1850, -1680, -1850\}
+03934 \}
+03935 \}
+03936 ,\{\{\{ -590, -1050, -870, -590, -870\}
+03937 ,\{ -890, -1240, -1060, -890, -1060\}
+03938 ,\{ -590, -1190, -1010, -590, -1010\}
+03939 ,\{ -870, -1050, -870, -890, -870\}
+03940 ,\{ -700, -1300, -1120, -700, -1120\}
+03941 \}
+03942 ,\{\{ -1030, -1370, -1210, -1030, -1210\}
+03943 ,\{ -1030, -1370, -1210, -1030, -1210\}
+03944 ,\{ -1340, -1700, -1520, -1340, -1520\}
+03945 ,\{ -1250, -1600, -1420, -1250, -1420\}
+03946 ,\{ -1340, -1700, -1520, -1340, -1520\}
+03947 \}
+03948 ,\{\{ -650, -1240, -1060, -650, -1060\}
+03949 ,\{ -890, -1240, -1060, -890, -1060\}
+03950 ,\{ -650, -1250, -1070, -650, -1070\}
+03951 ,\{ -890, -1240, -1060, -890, -1060\}
+03952 ,\{ -700, -1300, -1120, -700, -1120\}
+03953 \}
+03954 ,\{\{ -870, -1050, -870, -1340, -870\}
+03955 ,\{ -1530, -1890, -1710, -1530, -1710\}
+03956 ,\{ -1340, -1700, -1520, -1340, -1520\}
+03957 ,\{ -870, -1050, -870, -1940, -870\}
+03958 ,\{ -1340, -1700, -1520, -1340, -1520\}
+03959 \}
+03960 ,\{\{ -590, -1190, -1010, -590, -1010\}
+03961 ,\{ -890, -1240, -1060, -890, -1060\}
+03962 ,\{ -590, -1190, -1010, -590, -1010\}
+03963 ,\{ -890, -1240, -1060, -890, -1060\}
+03964 ,\{ -1680, -1790, -1850, -1680, -1850\}
+03965 \}
+03966 \}
+03967 ,\{\{\{ -870, -870, -870, -870, -870\}
+03968 ,\{ -1060, -1060, -1060, -1060, -1060\}
+03969 ,\{ -1010, -1010, -1010, -1010, -1010\}
+03970 ,\{ -870, -870, -870, -870, -870\}
+03971 ,\{ -1120, -1120, -1120, -1120, -1120\}
+03972 \}
+03973 ,\{\{ -1180, -1210, -1180, -1210, -1180\}
+03974 ,\{ -1210, -1210, -1210, -1210, -1210\}
+03975 ,\{ -1520, -1520, -1520, -1520, -1520\}
+03976 ,\{ -1180, -1420, -1180, -1420, -1180\}
+03977 ,\{ -1520, -1520, -1520, -1520, -1520\}
+03978 \}
+03979 ,\{\{ -1060, -1060, -1060, -1060, -1060\}
+03980 ,\{ -1060, -1060, -1060, -1060, -1060\}
+03981 ,\{ -1070, -1070, -1070, -1070, -1070\}
+03982 ,\{ -1060, -1060, -1060, -1060, -1060\}
+03983 ,\{ -1120, -1120, -1120, -1120, -1120\}
+03984 \}
+03985 ,\{\{ -870, -870, -870, -870, -870\}
+03986 ,\{ -1470, -1710, -1470, -1710, -1470\}
+03987 ,\{ -1520, -1520, -1520, -1520, -1520\}
+03988 ,\{ -870, -870, -870, -870, -870\}
+03989 ,\{ -1520, -1520, -1520, -1520, -1520\}
+03990 \}
+03991 ,\{\{ -1010, -1010, -1010, -1010, -1010\}
+03992 ,\{ -1060, -1060, -1060, -1060, -1060\}
+03993 ,\{ -1010, -1010, -1010, -1010, -1010\}
+03994 ,\{ -1060, -1060, -1060, -1060, -1060\}
+03995 ,\{ -1850, -1850, -1850, -1850, -1850\}
+03996 \}
+03997 \}
+03998 ,\{\{\{ 240, -780, -870, 240, -870\}
+03999 ,\{ 190, -1080, -1060, 190, -1060\}
+04000 ,\{ 240, -780, -1010, 240, -1010\}
+04001 ,\{ 190, -1080, -870, 190, -870\}
+04002 ,\{ 130, -890, -1120, 130, -1120\}
+04003 \}
+04004 ,\{\{ 40, -1220, -1210, 40, -1210\}
+04005 ,\{ 40, -1220, -1210, 40, -1210\}
+04006 ,\{ -270, -1530, -1520, -270, -1520\}
+04007 ,\{ -1420, -1440, -1420, -1420, -1420\}
+04008 ,\{ -270, -1530, -1520, -270, -1520\}
+04009 \}
+04010 ,\{\{ 190, -840, -1060, 190, -1060\}
+04011 ,\{ 190, -1080, -1060, 190, -1060\}
+04012 ,\{ 180, -840, -1070, 180, -1070\}
+04013 ,\{ 190, -1080, -1060, 190, -1060\}
+04014 ,\{ 130, -890, -1120, 130, -1120\}
+04015 \}
+04016 ,\{\{ -270, -1530, -870, -270, -870\}
+04017 ,\{ -1710, -1720, -1710, -1710, -1710\}
+04018 ,\{ -270, -1530, -1520, -270, -1520\}
+04019 ,\{ -870, -2130, -870, -2120, -870\}
+04020 ,\{ -270, -1530, -1520, -270, -1520\}
+04021 \}
+04022 ,\{\{ 240, -780, -1010, 240, -1010\}
+04023 ,\{ 190, -1080, -1060, 190, -1060\}
+04024 ,\{ 240, -780, -1010, 240, -1010\}
+04025 ,\{ 190, -1080, -1060, 190, -1060\}
+04026 ,\{ -1850, -1870, -1850, -1850, -1850\}
+04027 \}
+04028 \}
+04029 ,\{\{\{ -870, -870, -870, -870, -970\}
+04030 ,\{ -970, -1060, -1060, -1060, -970\}
+04031 ,\{ -1010, -1010, -1010, -1010, -1010\}
+04032 ,\{ -870, -870, -870, -870, -1060\}
+04033 ,\{ -1120, -1120, -1120, -1120, -1120\}
+04034 \}
+04035 ,\{\{ -970, -1210, -1180, -1210, -970\}
+04036 ,\{ -970, -1210, -1210, -1210, -970\}
+04037 ,\{ -1520, -1520, -1520, -1520, -1520\}
+04038 ,\{ -1180, -1420, -1180, -1420, -1420\}
+04039 ,\{ -1520, -1520, -1520, -1520, -1520\}
+04040 \}
+04041 ,\{\{ -1060, -1060, -1060, -1060, -1060\}
+04042 ,\{ -1060, -1060, -1060, -1060, -1060\}
+04043 ,\{ -1070, -1070, -1070, -1070, -1070\}
+04044 ,\{ -1060, -1060, -1060, -1060, -1060\}
+04045 ,\{ -1120, -1120, -1120, -1120, -1120\}
+04046 \}
+04047 ,\{\{ -870, -870, -870, -870, -1520\}
+04048 ,\{ -1470, -1710, -1470, -1710, -1710\}
+04049 ,\{ -1520, -1520, -1520, -1520, -1520\}
+04050 ,\{ -870, -870, -870, -870, -2120\}
+04051 ,\{ -1520, -1520, -1520, -1520, -1520\}
+04052 \}
+04053 ,\{\{ -1010, -1010, -1010, -1010, -1010\}
+04054 ,\{ -1060, -1060, -1060, -1060, -1060\}
+04055 ,\{ -1010, -1010, -1010, -1010, -1010\}
+04056 ,\{ -1060, -1060, -1060, -1060, -1060\}
+04057 ,\{ -1850, -1850, -1850, -1850, -1850\}
+04058 \}
+04059 \}
+04060 \}
+04061 ,\{\{\{\{ 210, -870, -870, 210, -800\}
+04062 ,\{ 210, -1040, -1040, 210, -800\}
+04063 ,\{ -240, -1490, -1490, -240, -1490\}
+04064 ,\{ -160, -870, -870, -160, -870\}
+04065 ,\{ -240, -1490, -1490, -240, -1490\}
+04066 \}
+04067 ,\{\{ 210, -1040, -1040, 210, -800\}
+04068 ,\{ 210, -1040, -1040, 210, -800\}
+04069 ,\{ -240, -1490, -1490, -240, -1490\}
+04070 ,\{ -1990, -2230, -1990, -2060, -1990\}
+04071 ,\{ -240, -1490, -1490, -240, -1490\}
+04072 \}
+04073 ,\{\{ -160, -1410, -1410, -160, -1410\}
+04074 ,\{ -160, -1410, -1410, -160, -1410\}
+04075 ,\{ -460, -1490, -1710, -460, -1710\}
+04076 ,\{ -160, -1410, -1410, -160, -1410\}
+04077 ,\{ -460, -1490, -1710, -460, -1710\}
+04078 \}
+04079 ,\{\{ -240, -870, -870, -240, -870\}
+04080 ,\{ -1520, -1760, -1520, -1580, -1520\}
+04081 ,\{ -240, -1490, -1490, -240, -1490\}
+04082 ,\{ -870, -870, -870, -870, -870\}
+04083 ,\{ -240, -1490, -1490, -240, -1490\}
+04084 \}
+04085 ,\{\{ -160, -1410, -1410, -160, -1410\}
+04086 ,\{ -160, -1410, -1410, -160, -1410\}
+04087 ,\{ -770, -1800, -2020, -770, -2020\}
+04088 ,\{ -160, -1410, -1410, -160, -1410\}
+04089 ,\{ -1520, -1640, -1700, -1520, -1700\}
+04090 \}
+04091 \}
+04092 ,\{\{\{ -870, -1050, -870, -870, -870\}
+04093 ,\{ -870, -1220, -1040, -870, -1040\}
+04094 ,\{ -1300, -1670, -1490, -1300, -1490\}
+04095 ,\{ -870, -1050, -870, -1230, -870\}
+04096 ,\{ -1300, -1640, -1490, -1300, -1490\}
+04097 \}
+04098 ,\{\{ -870, -1220, -1040, -870, -1040\}
+04099 ,\{ -870, -1220, -1040, -870, -1040\}
+04100 ,\{ -1320, -1670, -1490, -1320, -1490\}
+04101 ,\{ -2060, -2410, -2230, -2060, -2230\}
+04102 ,\{ -1320, -1670, -1490, -1320, -1490\}
+04103 \}
+04104 ,\{\{ -1230, -1590, -1410, -1230, -1410\}
+04105 ,\{ -1230, -1590, -1410, -1230, -1410\}
+04106 ,\{ -1300, -1890, -1710, -1300, -1710\}
+04107 ,\{ -1230, -1590, -1410, -1230, -1410\}
+04108 ,\{ -1300, -1890, -1710, -1300, -1710\}
+04109 \}
+04110 ,\{\{ -870, -1050, -870, -1320, -870\}
+04111 ,\{ -1580, -1940, -1760, -1580, -1760\}
+04112 ,\{ -1320, -1670, -1490, -1320, -1490\}
+04113 ,\{ -870, -1050, -870, -1940, -870\}
+04114 ,\{ -1320, -1670, -1490, -1320, -1490\}
+04115 \}
+04116 ,\{\{ -1230, -1590, -1410, -1230, -1410\}
+04117 ,\{ -1230, -1590, -1410, -1230, -1410\}
+04118 ,\{ -1610, -2200, -2020, -1610, -2020\}
+04119 ,\{ -1230, -1590, -1410, -1230, -1410\}
+04120 ,\{ -1520, -1640, -1700, -1520, -1700\}
+04121 \}
+04122 \}
+04123 ,\{\{\{ -870, -870, -870, -870, -870\}
+04124 ,\{ -1040, -1040, -1040, -1040, -1040\}
+04125 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04126 ,\{ -870, -870, -870, -870, -870\}
+04127 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04128 \}
+04129 ,\{\{ -1040, -1040, -1040, -1040, -1040\}
+04130 ,\{ -1040, -1040, -1040, -1040, -1040\}
+04131 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04132 ,\{ -1990, -2230, -1990, -2230, -1990\}
+04133 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04134 \}
+04135 ,\{\{ -1410, -1410, -1410, -1410, -1410\}
+04136 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04137 ,\{ -1710, -1710, -1710, -1710, -1710\}
+04138 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04139 ,\{ -1710, -1710, -1710, -1710, -1710\}
+04140 \}
+04141 ,\{\{ -870, -870, -870, -870, -870\}
+04142 ,\{ -1520, -1760, -1520, -1760, -1520\}
+04143 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04144 ,\{ -870, -870, -870, -870, -870\}
+04145 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04146 \}
+04147 ,\{\{ -1410, -1410, -1410, -1410, -1410\}
+04148 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04149 ,\{ -2020, -2020, -2020, -2020, -2020\}
+04150 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04151 ,\{ -1700, -1700, -1700, -1700, -1700\}
+04152 \}
+04153 \}
+04154 ,\{\{\{ 210, -1060, -870, 210, -870\}
+04155 ,\{ 210, -1060, -1040, 210, -1040\}
+04156 ,\{ -240, -1490, -1490, -240, -1490\}
+04157 ,\{ -160, -1420, -870, -160, -870\}
+04158 ,\{ -240, -1490, -1490, -240, -1490\}
+04159 \}
+04160 ,\{\{ 210, -1060, -1040, 210, -1040\}
+04161 ,\{ 210, -1060, -1040, 210, -1040\}
+04162 ,\{ -240, -1510, -1490, -240, -1490\}
+04163 ,\{ -2230, -2250, -2230, -2230, -2230\}
+04164 ,\{ -240, -1510, -1490, -240, -1490\}
+04165 \}
+04166 ,\{\{ -160, -1420, -1410, -160, -1410\}
+04167 ,\{ -160, -1420, -1410, -160, -1410\}
+04168 ,\{ -460, -1490, -1710, -460, -1710\}
+04169 ,\{ -160, -1420, -1410, -160, -1410\}
+04170 ,\{ -460, -1490, -1710, -460, -1710\}
+04171 \}
+04172 ,\{\{ -240, -1510, -870, -240, -870\}
+04173 ,\{ -1760, -1770, -1760, -1760, -1760\}
+04174 ,\{ -240, -1510, -1490, -240, -1490\}
+04175 ,\{ -870, -2130, -870, -2120, -870\}
+04176 ,\{ -240, -1510, -1490, -240, -1490\}
+04177 \}
+04178 ,\{\{ -160, -1420, -1410, -160, -1410\}
+04179 ,\{ -160, -1420, -1410, -160, -1410\}
+04180 ,\{ -770, -1800, -2020, -770, -2020\}
+04181 ,\{ -160, -1420, -1410, -160, -1410\}
+04182 ,\{ -1700, -1710, -1700, -1700, -1700\}
+04183 \}
+04184 \}
+04185 ,\{\{\{ -800, -870, -870, -870, -800\}
+04186 ,\{ -800, -1040, -1040, -1040, -800\}
+04187 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04188 ,\{ -870, -870, -870, -870, -1410\}
+04189 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04190 \}
+04191 ,\{\{ -800, -1040, -1040, -1040, -800\}
+04192 ,\{ -800, -1040, -1040, -1040, -800\}
+04193 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04194 ,\{ -1990, -2230, -1990, -2230, -2230\}
+04195 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04196 \}
+04197 ,\{\{ -1410, -1410, -1410, -1410, -1410\}
+04198 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04199 ,\{ -1710, -1710, -1710, -1710, -1710\}
+04200 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04201 ,\{ -1710, -1710, -1710, -1710, -1710\}
+04202 \}
+04203 ,\{\{ -870, -870, -870, -870, -1490\}
+04204 ,\{ -1520, -1760, -1520, -1760, -1760\}
+04205 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04206 ,\{ -870, -870, -870, -870, -2120\}
+04207 ,\{ -1490, -1490, -1490, -1490, -1490\}
+04208 \}
+04209 ,\{\{ -1410, -1410, -1410, -1410, -1410\}
+04210 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04211 ,\{ -2020, -2020, -2020, -2020, -2020\}
+04212 ,\{ -1410, -1410, -1410, -1410, -1410\}
+04213 ,\{ -1700, -1700, -1700, -1700, -1700\}
+04214 \}
+04215 \}
+04216 \}
+04217 ,\{\{\{\{ -710, -710, -710, -710, -710\}
+04218 ,\{ -710, -1780, -1540, -710, -1540\}
+04219 ,\{ -710, -1730, -1960, -710, -1960\}
+04220 ,\{ -710, -710, -710, -710, -710\}
+04221 ,\{ -710, -1730, -1960, -710, -1960\}
+04222 \}
+04223 ,\{\{ -710, -1960, -1730, -710, -1730\}
+04224 ,\{ -890, -2140, -2140, -890, -1900\}
+04225 ,\{ -710, -1960, -1960, -710, -1960\}
+04226 ,\{ -1730, -1970, -1730, -1800, -1730\}
+04227 ,\{ -710, -1960, -1960, -710, -1960\}
+04228 \}
+04229 ,\{\{ -710, -1730, -1960, -710, -1960\}
+04230 ,\{ -710, -1960, -1960, -710, -1960\}
+04231 ,\{ -710, -1730, -1960, -710, -1960\}
+04232 ,\{ -710, -1960, -1960, -710, -1960\}
+04233 ,\{ -710, -1730, -1960, -710, -1960\}
+04234 \}
+04235 ,\{\{ -710, -710, -710, -710, -710\}
+04236 ,\{ -1540, -1780, -1540, -1610, -1540\}
+04237 ,\{ -710, -1960, -1960, -710, -1960\}
+04238 ,\{ -710, -710, -710, -710, -710\}
+04239 ,\{ -710, -1960, -1960, -710, -1960\}
+04240 \}
+04241 ,\{\{ -710, -1730, -1960, -710, -1960\}
+04242 ,\{ -710, -1960, -1960, -710, -1960\}
+04243 ,\{ -710, -1730, -1960, -710, -1960\}
+04244 ,\{ -710, -1960, -1960, -710, -1960\}
+04245 ,\{ -1780, -1900, -1960, -1780, -1960\}
+04246 \}
+04247 \}
+04248 ,\{\{\{ -710, -890, -710, -1540, -710\}
+04249 ,\{ -1610, -1960, -1780, -1610, -1780\}
+04250 ,\{ -1540, -2140, -1960, -1540, -1960\}
+04251 ,\{ -710, -890, -710, -1780, -710\}
+04252 ,\{ -1540, -1900, -1960, -1540, -1960\}
+04253 \}
+04254 ,\{\{ -1780, -2140, -1960, -1780, -1960\}
+04255 ,\{ -1960, -2320, -2140, -1960, -2140\}
+04256 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04257 ,\{ -1800, -2150, -1970, -1800, -1970\}
+04258 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04259 \}
+04260 ,\{\{ -1540, -2140, -1960, -1540, -1960\}
+04261 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04262 ,\{ -1540, -2140, -1960, -1540, -1960\}
+04263 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04264 ,\{ -1540, -2140, -1960, -1540, -1960\}
+04265 \}
+04266 ,\{\{ -710, -890, -710, -1610, -710\}
+04267 ,\{ -1610, -1960, -1780, -1610, -1780\}
+04268 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04269 ,\{ -710, -890, -710, -1780, -710\}
+04270 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04271 \}
+04272 ,\{\{ -1540, -1900, -1960, -1540, -1960\}
+04273 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04274 ,\{ -1540, -2140, -1960, -1540, -1960\}
+04275 ,\{ -1780, -2140, -1960, -1780, -1960\}
+04276 ,\{ -1780, -1900, -1960, -1780, -1960\}
+04277 \}
+04278 \}
+04279 ,\{\{\{ -710, -710, -710, -710, -710\}
+04280 ,\{ -1540, -1780, -1540, -1780, -1540\}
+04281 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04282 ,\{ -710, -710, -710, -710, -710\}
+04283 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04284 \}
+04285 ,\{\{ -1730, -1960, -1730, -1960, -1730\}
+04286 ,\{ -2140, -2140, -2140, -2140, -2140\}
+04287 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04288 ,\{ -1730, -1970, -1730, -1970, -1730\}
+04289 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04290 \}
+04291 ,\{\{ -1960, -1960, -1960, -1960, -1960\}
+04292 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04293 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04294 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04295 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04296 \}
+04297 ,\{\{ -710, -710, -710, -710, -710\}
+04298 ,\{ -1540, -1780, -1540, -1780, -1540\}
+04299 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04300 ,\{ -710, -710, -710, -710, -710\}
+04301 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04302 \}
+04303 ,\{\{ -1960, -1960, -1960, -1960, -1960\}
+04304 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04305 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04306 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04307 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04308 \}
+04309 \}
+04310 ,\{\{\{ -710, -1730, -710, -710, -710\}
+04311 ,\{ -710, -1800, -1780, -710, -1780\}
+04312 ,\{ -710, -1730, -1960, -710, -1960\}
+04313 ,\{ -710, -1970, -710, -710, -710\}
+04314 ,\{ -710, -1730, -1960, -710, -1960\}
+04315 \}
+04316 ,\{\{ -710, -1970, -1960, -710, -1960\}
+04317 ,\{ -890, -2150, -2140, -890, -2140\}
+04318 ,\{ -710, -1970, -1960, -710, -1960\}
+04319 ,\{ -1970, -1990, -1970, -1970, -1970\}
+04320 ,\{ -710, -1970, -1960, -710, -1960\}
+04321 \}
+04322 ,\{\{ -710, -1730, -1960, -710, -1960\}
+04323 ,\{ -710, -1970, -1960, -710, -1960\}
+04324 ,\{ -710, -1730, -1960, -710, -1960\}
+04325 ,\{ -710, -1970, -1960, -710, -1960\}
+04326 ,\{ -710, -1730, -1960, -710, -1960\}
+04327 \}
+04328 ,\{\{ -710, -1800, -710, -710, -710\}
+04329 ,\{ -1780, -1800, -1780, -1780, -1780\}
+04330 ,\{ -710, -1970, -1960, -710, -1960\}
+04331 ,\{ -710, -1970, -710, -1960, -710\}
+04332 ,\{ -710, -1970, -1960, -710, -1960\}
+04333 \}
+04334 ,\{\{ -710, -1730, -1960, -710, -1960\}
+04335 ,\{ -710, -1970, -1960, -710, -1960\}
+04336 ,\{ -710, -1730, -1960, -710, -1960\}
+04337 ,\{ -710, -1970, -1960, -710, -1960\}
+04338 ,\{ -1960, -1970, -1960, -1960, -1960\}
+04339 \}
+04340 \}
+04341 ,\{\{\{ -710, -710, -710, -710, -1780\}
+04342 ,\{ -1540, -1780, -1540, -1780, -1780\}
+04343 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04344 ,\{ -710, -710, -710, -710, -1960\}
+04345 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04346 \}
+04347 ,\{\{ -1730, -1960, -1730, -1960, -1900\}
+04348 ,\{ -1900, -2140, -2140, -2140, -1900\}
+04349 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04350 ,\{ -1730, -1970, -1730, -1970, -1970\}
+04351 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04352 \}
+04353 ,\{\{ -1960, -1960, -1960, -1960, -1960\}
+04354 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04355 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04356 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04357 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04358 \}
+04359 ,\{\{ -710, -710, -710, -710, -1780\}
+04360 ,\{ -1540, -1780, -1540, -1780, -1780\}
+04361 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04362 ,\{ -710, -710, -710, -710, -1960\}
+04363 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04364 \}
+04365 ,\{\{ -1960, -1960, -1960, -1960, -1960\}
+04366 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04367 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04368 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04369 ,\{ -1960, -1960, -1960, -1960, -1960\}
+04370 \}
+04371 \}
+04372 \}
+04373 ,\{\{\{\{ 360, -70, -150, 360, -150\}
+04374 ,\{ 360, -70, -890, 360, -650\}
+04375 ,\{ -150, -1180, -1400, -150, -1400\}
+04376 ,\{ -150, -150, -150, -150, -150\}
+04377 ,\{ -150, -1180, -1400, -150, -1400\}
+04378 \}
+04379 ,\{\{ 360, -70, -890, 360, -650\}
+04380 ,\{ 360, -70, -890, 360, -650\}
+04381 ,\{ -150, -1400, -1400, -150, -1400\}
+04382 ,\{ -1500, -1600, -1500, -1570, -1500\}
+04383 ,\{ -150, -1400, -1400, -150, -1400\}
+04384 \}
+04385 ,\{\{ -150, -1180, -1400, -150, -1400\}
+04386 ,\{ -150, -1400, -1400, -150, -1400\}
+04387 ,\{ -150, -1180, -1400, -150, -1400\}
+04388 ,\{ -150, -1400, -1400, -150, -1400\}
+04389 ,\{ -150, -1180, -1400, -150, -1400\}
+04390 \}
+04391 ,\{\{ -150, -150, -150, -150, -150\}
+04392 ,\{ -1670, -1910, -1670, -1740, -1670\}
+04393 ,\{ -150, -1400, -1400, -150, -1400\}
+04394 ,\{ -150, -150, -150, -150, -150\}
+04395 ,\{ -150, -1400, -1400, -150, -1400\}
+04396 \}
+04397 ,\{\{ -150, -1180, -1400, -150, -1400\}
+04398 ,\{ -150, -1400, -1400, -150, -1400\}
+04399 ,\{ -150, -1180, -1400, -150, -1400\}
+04400 ,\{ -150, -1400, -1400, -150, -1400\}
+04401 ,\{ -1230, -1340, -1400, -1230, -1400\}
+04402 \}
+04403 \}
+04404 ,\{\{\{ -30, -70, -150, -30, -150\}
+04405 ,\{ -30, -70, -890, -30, -890\}
+04406 ,\{ -990, -1580, -1400, -990, -1400\}
+04407 ,\{ -150, -330, -150, -1230, -150\}
+04408 ,\{ -990, -1340, -1400, -990, -1400\}
+04409 \}
+04410 ,\{\{ -30, -70, -890, -30, -890\}
+04411 ,\{ -30, -70, -890, -30, -890\}
+04412 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04413 ,\{ -1570, -1600, -1740, -1570, -1740\}
+04414 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04415 \}
+04416 ,\{\{ -990, -1580, -1400, -990, -1400\}
+04417 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04418 ,\{ -990, -1580, -1400, -990, -1400\}
+04419 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04420 ,\{ -990, -1580, -1400, -990, -1400\}
+04421 \}
+04422 ,\{\{ -150, -330, -150, -1230, -150\}
+04423 ,\{ -1740, -2090, -1910, -1740, -1910\}
+04424 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04425 ,\{ -150, -330, -150, -1230, -150\}
+04426 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04427 \}
+04428 ,\{\{ -990, -1340, -1400, -990, -1400\}
+04429 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04430 ,\{ -990, -1580, -1400, -990, -1400\}
+04431 ,\{ -1230, -1580, -1400, -1230, -1400\}
+04432 ,\{ -1230, -1340, -1400, -1230, -1400\}
+04433 \}
+04434 \}
+04435 ,\{\{\{ -150, -150, -150, -150, -150\}
+04436 ,\{ -890, -890, -890, -890, -890\}
+04437 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04438 ,\{ -150, -150, -150, -150, -150\}
+04439 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04440 \}
+04441 ,\{\{ -890, -890, -890, -890, -890\}
+04442 ,\{ -890, -890, -890, -890, -890\}
+04443 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04444 ,\{ -1500, -1740, -1500, -1740, -1500\}
+04445 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04446 \}
+04447 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+04448 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04449 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04450 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04451 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04452 \}
+04453 ,\{\{ -150, -150, -150, -150, -150\}
+04454 ,\{ -1670, -1910, -1670, -1910, -1670\}
+04455 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04456 ,\{ -150, -150, -150, -150, -150\}
+04457 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04458 \}
+04459 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+04460 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04461 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04462 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04463 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04464 \}
+04465 \}
+04466 ,\{\{\{ 360, -910, -150, 360, -150\}
+04467 ,\{ 360, -910, -890, 360, -890\}
+04468 ,\{ -150, -1180, -1400, -150, -1400\}
+04469 ,\{ -150, -1420, -150, -150, -150\}
+04470 ,\{ -150, -1180, -1400, -150, -1400\}
+04471 \}
+04472 ,\{\{ 360, -910, -890, 360, -890\}
+04473 ,\{ 360, -910, -890, 360, -890\}
+04474 ,\{ -150, -1420, -1400, -150, -1400\}
+04475 ,\{ -1740, -3040, -1740, -1740, -1740\}
+04476 ,\{ -150, -1420, -1400, -150, -1400\}
+04477 \}
+04478 ,\{\{ -150, -1180, -1400, -150, -1400\}
+04479 ,\{ -150, -1420, -1400, -150, -1400\}
+04480 ,\{ -150, -1180, -1400, -150, -1400\}
+04481 ,\{ -150, -1420, -1400, -150, -1400\}
+04482 ,\{ -150, -1180, -1400, -150, -1400\}
+04483 \}
+04484 ,\{\{ -150, -1420, -150, -150, -150\}
+04485 ,\{ -1910, -1930, -1910, -1910, -1910\}
+04486 ,\{ -150, -1420, -1400, -150, -1400\}
+04487 ,\{ -150, -1420, -150, -1400, -150\}
+04488 ,\{ -150, -1420, -1400, -150, -1400\}
+04489 \}
+04490 ,\{\{ -150, -1180, -1400, -150, -1400\}
+04491 ,\{ -150, -1420, -1400, -150, -1400\}
+04492 ,\{ -150, -1180, -1400, -150, -1400\}
+04493 ,\{ -150, -1420, -1400, -150, -1400\}
+04494 ,\{ -1400, -1420, -1400, -1400, -1400\}
+04495 \}
+04496 \}
+04497 ,\{\{\{ -150, -150, -150, -150, -650\}
+04498 ,\{ -650, -890, -890, -890, -650\}
+04499 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04500 ,\{ -150, -150, -150, -150, -1400\}
+04501 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04502 \}
+04503 ,\{\{ -650, -890, -890, -890, -650\}
+04504 ,\{ -650, -890, -890, -890, -650\}
+04505 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04506 ,\{ -1500, -1740, -1500, -1740, -1740\}
+04507 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04508 \}
+04509 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+04510 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04511 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04512 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04513 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04514 \}
+04515 ,\{\{ -150, -150, -150, -150, -1400\}
+04516 ,\{ -1670, -1910, -1670, -1910, -1910\}
+04517 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04518 ,\{ -150, -150, -150, -150, -1400\}
+04519 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04520 \}
+04521 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+04522 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04523 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04524 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04525 ,\{ -1400, -1400, -1400, -1400, -1400\}
+04526 \}
+04527 \}
+04528 \}
+04529 ,\{\{\{\{ 940, 220, 220, 940, 220\}
+04530 ,\{ 940, -310, -310, 940, -70\}
+04531 ,\{ 640, -380, -610, 640, -610\}
+04532 ,\{ 650, 220, 220, 650, 220\}
+04533 ,\{ 640, -380, -610, 640, -610\}
+04534 \}
+04535 ,\{\{ 940, -310, -310, 940, -70\}
+04536 ,\{ 940, -310, -310, 940, -70\}
+04537 ,\{ 630, -620, -620, 630, -620\}
+04538 ,\{ -1460, -1700, -1460, -1520, -1460\}
+04539 ,\{ 630, -620, -620, 630, -620\}
+04540 \}
+04541 ,\{\{ 650, -380, -600, 650, -600\}
+04542 ,\{ 650, -600, -600, 650, -600\}
+04543 ,\{ 640, -380, -610, 640, -610\}
+04544 ,\{ 650, -600, -600, 650, -600\}
+04545 ,\{ 640, -380, -610, 640, -610\}
+04546 \}
+04547 ,\{\{ 630, 220, 220, 630, 220\}
+04548 ,\{ -1280, -1520, -1280, -1340, -1280\}
+04549 ,\{ 630, -620, -620, 630, -620\}
+04550 ,\{ 220, 220, 220, 220, 220\}
+04551 ,\{ 630, -620, -620, 630, -620\}
+04552 \}
+04553 ,\{\{ 650, -380, -600, 650, -600\}
+04554 ,\{ 650, -600, -600, 650, -600\}
+04555 ,\{ 640, -380, -610, 640, -610\}
+04556 ,\{ 650, -600, -600, 650, -600\}
+04557 ,\{ -1410, -1530, -1590, -1410, -1590\}
+04558 \}
+04559 \}
+04560 ,\{\{\{ 220, 40, 220, -130, 220\}
+04561 ,\{ -130, -490, -310, -130, -310\}
+04562 ,\{ -190, -790, -610, -190, -610\}
+04563 ,\{ 220, 40, 220, -430, 220\}
+04564 ,\{ -190, -790, -610, -190, -610\}
+04565 \}
+04566 ,\{\{ -130, -490, -310, -130, -310\}
+04567 ,\{ -130, -490, -310, -130, -310\}
+04568 ,\{ -440, -800, -620, -440, -620\}
+04569 ,\{ -1520, -1880, -1700, -1520, -1700\}
+04570 ,\{ -440, -800, -620, -440, -620\}
+04571 \}
+04572 ,\{\{ -190, -780, -600, -190, -600\}
+04573 ,\{ -430, -780, -600, -430, -600\}
+04574 ,\{ -190, -790, -610, -190, -610\}
+04575 ,\{ -430, -780, -600, -430, -600\}
+04576 ,\{ -190, -790, -610, -190, -610\}
+04577 \}
+04578 ,\{\{ 220, 40, 220, -440, 220\}
+04579 ,\{ -1340, -1700, -1520, -1340, -1520\}
+04580 ,\{ -440, -800, -620, -440, -620\}
+04581 ,\{ 220, 40, 220, -850, 220\}
+04582 ,\{ -440, -800, -620, -440, -620\}
+04583 \}
+04584 ,\{\{ -190, -780, -600, -190, -600\}
+04585 ,\{ -430, -780, -600, -430, -600\}
+04586 ,\{ -190, -790, -610, -190, -610\}
+04587 ,\{ -430, -780, -600, -430, -600\}
+04588 ,\{ -1410, -1530, -1590, -1410, -1590\}
+04589 \}
+04590 \}
+04591 ,\{\{\{ 220, 220, 220, 220, 220\}
+04592 ,\{ -310, -310, -310, -310, -310\}
+04593 ,\{ -610, -610, -610, -610, -610\}
+04594 ,\{ 220, 220, 220, 220, 220\}
+04595 ,\{ -610, -610, -610, -610, -610\}
+04596 \}
+04597 ,\{\{ -310, -310, -310, -310, -310\}
+04598 ,\{ -310, -310, -310, -310, -310\}
+04599 ,\{ -620, -620, -620, -620, -620\}
+04600 ,\{ -1460, -1700, -1460, -1700, -1460\}
+04601 ,\{ -620, -620, -620, -620, -620\}
+04602 \}
+04603 ,\{\{ -600, -600, -600, -600, -600\}
+04604 ,\{ -600, -600, -600, -600, -600\}
+04605 ,\{ -610, -610, -610, -610, -610\}
+04606 ,\{ -600, -600, -600, -600, -600\}
+04607 ,\{ -610, -610, -610, -610, -610\}
+04608 \}
+04609 ,\{\{ 220, 220, 220, 220, 220\}
+04610 ,\{ -1280, -1520, -1280, -1520, -1280\}
+04611 ,\{ -620, -620, -620, -620, -620\}
+04612 ,\{ 220, 220, 220, 220, 220\}
+04613 ,\{ -620, -620, -620, -620, -620\}
+04614 \}
+04615 ,\{\{ -600, -600, -600, -600, -600\}
+04616 ,\{ -600, -600, -600, -600, -600\}
+04617 ,\{ -610, -610, -610, -610, -610\}
+04618 ,\{ -600, -600, -600, -600, -600\}
+04619 ,\{ -1590, -1590, -1590, -1590, -1590\}
+04620 \}
+04621 \}
+04622 ,\{\{\{ 940, -320, 220, 940, 220\}
+04623 ,\{ 940, -320, -310, 940, -310\}
+04624 ,\{ 640, -380, -610, 640, -610\}
+04625 ,\{ 650, -620, 220, 650, 220\}
+04626 ,\{ 640, -380, -610, 640, -610\}
+04627 \}
+04628 ,\{\{ 940, -320, -310, 940, -310\}
+04629 ,\{ 940, -320, -310, 940, -310\}
+04630 ,\{ 630, -630, -620, 630, -620\}
+04631 ,\{ -1700, -1710, -1700, -1700, -1700\}
+04632 ,\{ 630, -630, -620, 630, -620\}
+04633 \}
+04634 ,\{\{ 650, -380, -600, 650, -600\}
+04635 ,\{ 650, -620, -600, 650, -600\}
+04636 ,\{ 640, -380, -610, 640, -610\}
+04637 ,\{ 650, -620, -600, 650, -600\}
+04638 ,\{ 640, -380, -610, 640, -610\}
+04639 \}
+04640 ,\{\{ 630, -630, 220, 630, 220\}
+04641 ,\{ -1520, -1530, -1520, -1520, -1520\}
+04642 ,\{ 630, -630, -620, 630, -620\}
+04643 ,\{ 220, -1040, 220, -1030, 220\}
+04644 ,\{ 630, -630, -620, 630, -620\}
+04645 \}
+04646 ,\{\{ 650, -380, -600, 650, -600\}
+04647 ,\{ 650, -620, -600, 650, -600\}
+04648 ,\{ 640, -380, -610, 640, -610\}
+04649 ,\{ 650, -620, -600, 650, -600\}
+04650 ,\{ -1590, -1600, -1590, -1590, -1590\}
+04651 \}
+04652 \}
+04653 ,\{\{\{ 220, 220, 220, 220, -70\}
+04654 ,\{ -70, -310, -310, -310, -70\}
+04655 ,\{ -610, -610, -610, -610, -610\}
+04656 ,\{ 220, 220, 220, 220, -600\}
+04657 ,\{ -610, -610, -610, -610, -610\}
+04658 \}
+04659 ,\{\{ -70, -310, -310, -310, -70\}
+04660 ,\{ -70, -310, -310, -310, -70\}
+04661 ,\{ -620, -620, -620, -620, -620\}
+04662 ,\{ -1460, -1700, -1460, -1700, -1700\}
+04663 ,\{ -620, -620, -620, -620, -620\}
+04664 \}
+04665 ,\{\{ -600, -600, -600, -600, -600\}
+04666 ,\{ -600, -600, -600, -600, -600\}
+04667 ,\{ -610, -610, -610, -610, -610\}
+04668 ,\{ -600, -600, -600, -600, -600\}
+04669 ,\{ -610, -610, -610, -610, -610\}
+04670 \}
+04671 ,\{\{ 220, 220, 220, 220, -620\}
+04672 ,\{ -1280, -1520, -1280, -1520, -1520\}
+04673 ,\{ -620, -620, -620, -620, -620\}
+04674 ,\{ 220, 220, 220, 220, -1030\}
+04675 ,\{ -620, -620, -620, -620, -620\}
+04676 \}
+04677 ,\{\{ -600, -600, -600, -600, -600\}
+04678 ,\{ -600, -600, -600, -600, -600\}
+04679 ,\{ -610, -610, -610, -610, -610\}
+04680 ,\{ -600, -600, -600, -600, -600\}
+04681 ,\{ -1590, -1590, -1590, -1590, -1590\}
+04682 \}
+04683 \}
+04684 \}
+04685 ,\{\{\{\{ 1010, 410, 410, 1010, 410\}
+04686 ,\{ 1010, -240, -240, 1010, 0\}
+04687 ,\{ 880, -150, -370, 880, -370\}
+04688 ,\{ 880, 410, 410, 880, 410\}
+04689 ,\{ 750, -280, -500, 750, -500\}
+04690 \}
+04691 ,\{\{ 1010, -240, -240, 1010, 0\}
+04692 ,\{ 1010, -240, -240, 1010, 0\}
+04693 ,\{ 730, -520, -520, 730, -520\}
+04694 ,\{ -1410, -1650, -1410, -1470, -1410\}
+04695 ,\{ 730, -520, -520, 730, -520\}
+04696 \}
+04697 ,\{\{ 880, -150, -370, 880, -370\}
+04698 ,\{ 880, -370, -370, 880, -370\}
+04699 ,\{ 880, -150, -370, 880, -370\}
+04700 ,\{ 880, -370, -370, 880, -370\}
+04701 ,\{ 750, -280, -500, 750, -500\}
+04702 \}
+04703 ,\{\{ 730, 410, 410, 730, 410\}
+04704 ,\{ -1710, -1950, -1710, -1770, -1710\}
+04705 ,\{ 730, -520, -520, 730, -520\}
+04706 ,\{ 410, 410, 410, 410, 410\}
+04707 ,\{ 730, -520, -520, 730, -520\}
+04708 \}
+04709 ,\{\{ 880, -370, -370, 880, -370\}
+04710 ,\{ 880, -370, -370, 880, -370\}
+04711 ,\{ 440, -590, -810, 440, -810\}
+04712 ,\{ 880, -370, -370, 880, -370\}
+04713 ,\{ -1140, -1250, -1310, -1140, -1310\}
+04714 \}
+04715 \}
+04716 ,\{\{\{ 410, 230, 410, 40, 410\}
+04717 ,\{ -70, -420, -240, -70, -240\}
+04718 ,\{ 40, -550, -370, 40, -370\}
+04719 ,\{ 410, 230, 410, -200, 410\}
+04720 ,\{ -90, -680, -500, -90, -500\}
+04721 \}
+04722 ,\{\{ -70, -420, -240, -70, -240\}
+04723 ,\{ -70, -420, -240, -70, -240\}
+04724 ,\{ -350, -700, -520, -350, -520\}
+04725 ,\{ -1470, -1830, -1650, -1470, -1650\}
+04726 ,\{ -350, -700, -520, -350, -520\}
+04727 \}
+04728 ,\{\{ 40, -550, -370, 40, -370\}
+04729 ,\{ -200, -550, -370, -200, -370\}
+04730 ,\{ 40, -550, -370, 40, -370\}
+04731 ,\{ -200, -550, -370, -200, -370\}
+04732 ,\{ -90, -680, -500, -90, -500\}
+04733 \}
+04734 ,\{\{ 410, 230, 410, -350, 410\}
+04735 ,\{ -1770, -2130, -1950, -1770, -1950\}
+04736 ,\{ -350, -700, -520, -350, -520\}
+04737 ,\{ 410, 230, 410, -670, 410\}
+04738 ,\{ -350, -700, -520, -350, -520\}
+04739 \}
+04740 ,\{\{ -200, -550, -370, -200, -370\}
+04741 ,\{ -200, -550, -370, -200, -370\}
+04742 ,\{ -400, -990, -810, -400, -810\}
+04743 ,\{ -200, -550, -370, -200, -370\}
+04744 ,\{ -1140, -1250, -1310, -1140, -1310\}
+04745 \}
+04746 \}
+04747 ,\{\{\{ 410, 410, 410, 410, 410\}
+04748 ,\{ -240, -240, -240, -240, -240\}
+04749 ,\{ -370, -370, -370, -370, -370\}
+04750 ,\{ 410, 410, 410, 410, 410\}
+04751 ,\{ -500, -500, -500, -500, -500\}
+04752 \}
+04753 ,\{\{ -240, -240, -240, -240, -240\}
+04754 ,\{ -240, -240, -240, -240, -240\}
+04755 ,\{ -520, -520, -520, -520, -520\}
+04756 ,\{ -1410, -1650, -1410, -1650, -1410\}
+04757 ,\{ -520, -520, -520, -520, -520\}
+04758 \}
+04759 ,\{\{ -370, -370, -370, -370, -370\}
+04760 ,\{ -370, -370, -370, -370, -370\}
+04761 ,\{ -370, -370, -370, -370, -370\}
+04762 ,\{ -370, -370, -370, -370, -370\}
+04763 ,\{ -500, -500, -500, -500, -500\}
+04764 \}
+04765 ,\{\{ 410, 410, 410, 410, 410\}
+04766 ,\{ -1710, -1950, -1710, -1950, -1710\}
+04767 ,\{ -520, -520, -520, -520, -520\}
+04768 ,\{ 410, 410, 410, 410, 410\}
+04769 ,\{ -520, -520, -520, -520, -520\}
+04770 \}
+04771 ,\{\{ -370, -370, -370, -370, -370\}
+04772 ,\{ -370, -370, -370, -370, -370\}
+04773 ,\{ -810, -810, -810, -810, -810\}
+04774 ,\{ -370, -370, -370, -370, -370\}
+04775 ,\{ -1310, -1310, -1310, -1310, -1310\}
+04776 \}
+04777 \}
+04778 ,\{\{\{ 1010, -150, 410, 1010, 410\}
+04779 ,\{ 1010, -260, -240, 1010, -240\}
+04780 ,\{ 880, -150, -370, 880, -370\}
+04781 ,\{ 880, -390, 410, 880, 410\}
+04782 ,\{ 750, -280, -500, 750, -500\}
+04783 \}
+04784 ,\{\{ 1010, -260, -240, 1010, -240\}
+04785 ,\{ 1010, -260, -240, 1010, -240\}
+04786 ,\{ 730, -540, -520, 730, -520\}
+04787 ,\{ -1650, -1660, -1650, -1650, -1650\}
+04788 ,\{ 730, -540, -520, 730, -520\}
+04789 \}
+04790 ,\{\{ 880, -150, -370, 880, -370\}
+04791 ,\{ 880, -390, -370, 880, -370\}
+04792 ,\{ 880, -150, -370, 880, -370\}
+04793 ,\{ 880, -390, -370, 880, -370\}
+04794 ,\{ 750, -280, -500, 750, -500\}
+04795 \}
+04796 ,\{\{ 730, -540, 410, 730, 410\}
+04797 ,\{ -1950, -1960, -1950, -1950, -1950\}
+04798 ,\{ 730, -540, -520, 730, -520\}
+04799 ,\{ 410, -860, 410, -840, 410\}
+04800 ,\{ 730, -540, -520, 730, -520\}
+04801 \}
+04802 ,\{\{ 880, -390, -370, 880, -370\}
+04803 ,\{ 880, -390, -370, 880, -370\}
+04804 ,\{ 440, -590, -810, 440, -810\}
+04805 ,\{ 880, -390, -370, 880, -370\}
+04806 ,\{ -1310, -1330, -1310, -1310, -1310\}
+04807 \}
+04808 \}
+04809 ,\{\{\{ 410, 410, 410, 410, 0\}
+04810 ,\{ 0, -240, -240, -240, 0\}
+04811 ,\{ -370, -370, -370, -370, -370\}
+04812 ,\{ 410, 410, 410, 410, -370\}
+04813 ,\{ -500, -500, -500, -500, -500\}
+04814 \}
+04815 ,\{\{ 0, -240, -240, -240, 0\}
+04816 ,\{ 0, -240, -240, -240, 0\}
+04817 ,\{ -520, -520, -520, -520, -520\}
+04818 ,\{ -1410, -1650, -1410, -1650, -1650\}
+04819 ,\{ -520, -520, -520, -520, -520\}
+04820 \}
+04821 ,\{\{ -370, -370, -370, -370, -370\}
+04822 ,\{ -370, -370, -370, -370, -370\}
+04823 ,\{ -370, -370, -370, -370, -370\}
+04824 ,\{ -370, -370, -370, -370, -370\}
+04825 ,\{ -500, -500, -500, -500, -500\}
+04826 \}
+04827 ,\{\{ 410, 410, 410, 410, -520\}
+04828 ,\{ -1710, -1950, -1710, -1950, -1950\}
+04829 ,\{ -520, -520, -520, -520, -520\}
+04830 ,\{ 410, 410, 410, 410, -840\}
+04831 ,\{ -520, -520, -520, -520, -520\}
+04832 \}
+04833 ,\{\{ -370, -370, -370, -370, -370\}
+04834 ,\{ -370, -370, -370, -370, -370\}
+04835 ,\{ -810, -810, -810, -810, -810\}
+04836 ,\{ -370, -370, -370, -370, -370\}
+04837 ,\{ -1310, -1310, -1310, -1310, -1310\}
+04838 \}
+04839 \}
+04840 \}
+04841 ,\{\{\{\{ 1010, 410, 410, 1010, 410\}
+04842 ,\{ 1010, -70, -240, 1010, 0\}
+04843 ,\{ 880, -150, -370, 880, -370\}
+04844 ,\{ 880, 410, 410, 880, 410\}
+04845 ,\{ 750, -280, -500, 750, -500\}
+04846 \}
+04847 ,\{\{ 1010, -70, -240, 1010, 0\}
+04848 ,\{ 1010, -70, -240, 1010, 0\}
+04849 ,\{ 730, -520, -520, 730, -520\}
+04850 ,\{ -1180, -1420, -1180, -1250, -1180\}
+04851 ,\{ 730, -520, -520, 730, -520\}
+04852 \}
+04853 ,\{\{ 880, -150, -370, 880, -370\}
+04854 ,\{ 880, -370, -370, 880, -370\}
+04855 ,\{ 880, -150, -370, 880, -370\}
+04856 ,\{ 880, -370, -370, 880, -370\}
+04857 ,\{ 750, -280, -500, 750, -500\}
+04858 \}
+04859 ,\{\{ 730, 410, 410, 730, 410\}
+04860 ,\{ -1280, -1520, -1280, -1340, -1280\}
+04861 ,\{ 730, -520, -520, 730, -520\}
+04862 ,\{ 410, 410, 410, 410, 410\}
+04863 ,\{ 730, -520, -520, 730, -520\}
+04864 \}
+04865 ,\{\{ 880, -370, -370, 880, -370\}
+04866 ,\{ 880, -370, -370, 880, -370\}
+04867 ,\{ 640, -380, -610, 640, -610\}
+04868 ,\{ 880, -370, -370, 880, -370\}
+04869 ,\{ -1140, -1250, -1310, -1140, -1310\}
+04870 \}
+04871 \}
+04872 ,\{\{\{ 410, 230, 410, 40, 410\}
+04873 ,\{ -30, -70, -240, -30, -240\}
+04874 ,\{ 40, -550, -370, 40, -370\}
+04875 ,\{ 410, 230, 410, -200, 410\}
+04876 ,\{ -90, -680, -500, -90, -500\}
+04877 \}
+04878 ,\{\{ -30, -70, -240, -30, -240\}
+04879 ,\{ -30, -70, -240, -30, -240\}
+04880 ,\{ -350, -700, -520, -350, -520\}
+04881 ,\{ -1250, -1600, -1420, -1250, -1420\}
+04882 ,\{ -350, -700, -520, -350, -520\}
+04883 \}
+04884 ,\{\{ 40, -550, -370, 40, -370\}
+04885 ,\{ -200, -550, -370, -200, -370\}
+04886 ,\{ 40, -550, -370, 40, -370\}
+04887 ,\{ -200, -550, -370, -200, -370\}
+04888 ,\{ -90, -680, -500, -90, -500\}
+04889 \}
+04890 ,\{\{ 410, 230, 410, -350, 410\}
+04891 ,\{ -1340, -1700, -1520, -1340, -1520\}
+04892 ,\{ -350, -700, -520, -350, -520\}
+04893 ,\{ 410, 230, 410, -670, 410\}
+04894 ,\{ -350, -700, -520, -350, -520\}
+04895 \}
+04896 ,\{\{ -190, -550, -370, -190, -370\}
+04897 ,\{ -200, -550, -370, -200, -370\}
+04898 ,\{ -190, -790, -610, -190, -610\}
+04899 ,\{ -200, -550, -370, -200, -370\}
+04900 ,\{ -1140, -1250, -1310, -1140, -1310\}
+04901 \}
+04902 \}
+04903 ,\{\{\{ 410, 410, 410, 410, 410\}
+04904 ,\{ -240, -240, -240, -240, -240\}
+04905 ,\{ -370, -370, -370, -370, -370\}
+04906 ,\{ 410, 410, 410, 410, 410\}
+04907 ,\{ -500, -500, -500, -500, -500\}
+04908 \}
+04909 ,\{\{ -240, -240, -240, -240, -240\}
+04910 ,\{ -240, -240, -240, -240, -240\}
+04911 ,\{ -520, -520, -520, -520, -520\}
+04912 ,\{ -1180, -1420, -1180, -1420, -1180\}
+04913 ,\{ -520, -520, -520, -520, -520\}
+04914 \}
+04915 ,\{\{ -370, -370, -370, -370, -370\}
+04916 ,\{ -370, -370, -370, -370, -370\}
+04917 ,\{ -370, -370, -370, -370, -370\}
+04918 ,\{ -370, -370, -370, -370, -370\}
+04919 ,\{ -500, -500, -500, -500, -500\}
+04920 \}
+04921 ,\{\{ 410, 410, 410, 410, 410\}
+04922 ,\{ -1280, -1520, -1280, -1520, -1280\}
+04923 ,\{ -520, -520, -520, -520, -520\}
+04924 ,\{ 410, 410, 410, 410, 410\}
+04925 ,\{ -520, -520, -520, -520, -520\}
+04926 \}
+04927 ,\{\{ -370, -370, -370, -370, -370\}
+04928 ,\{ -370, -370, -370, -370, -370\}
+04929 ,\{ -610, -610, -610, -610, -610\}
+04930 ,\{ -370, -370, -370, -370, -370\}
+04931 ,\{ -1310, -1310, -1310, -1310, -1310\}
+04932 \}
+04933 \}
+04934 ,\{\{\{ 1010, -150, 410, 1010, 410\}
+04935 ,\{ 1010, -260, -240, 1010, -240\}
+04936 ,\{ 880, -150, -370, 880, -370\}
+04937 ,\{ 880, -390, 410, 880, 410\}
+04938 ,\{ 750, -280, -500, 750, -500\}
+04939 \}
+04940 ,\{\{ 1010, -260, -240, 1010, -240\}
+04941 ,\{ 1010, -260, -240, 1010, -240\}
+04942 ,\{ 730, -540, -520, 730, -520\}
+04943 ,\{ -1420, -1440, -1420, -1420, -1420\}
+04944 ,\{ 730, -540, -520, 730, -520\}
+04945 \}
+04946 ,\{\{ 880, -150, -370, 880, -370\}
+04947 ,\{ 880, -390, -370, 880, -370\}
+04948 ,\{ 880, -150, -370, 880, -370\}
+04949 ,\{ 880, -390, -370, 880, -370\}
+04950 ,\{ 750, -280, -500, 750, -500\}
+04951 \}
+04952 ,\{\{ 730, -540, 410, 730, 410\}
+04953 ,\{ -1520, -1530, -1520, -1520, -1520\}
+04954 ,\{ 730, -540, -520, 730, -520\}
+04955 ,\{ 410, -860, 410, -840, 410\}
+04956 ,\{ 730, -540, -520, 730, -520\}
+04957 \}
+04958 ,\{\{ 880, -380, -370, 880, -370\}
+04959 ,\{ 880, -390, -370, 880, -370\}
+04960 ,\{ 640, -380, -610, 640, -610\}
+04961 ,\{ 880, -390, -370, 880, -370\}
+04962 ,\{ -1310, -1330, -1310, -1310, -1310\}
+04963 \}
+04964 \}
+04965 ,\{\{\{ 410, 410, 410, 410, 0\}
+04966 ,\{ 0, -240, -240, -240, 0\}
+04967 ,\{ -370, -370, -370, -370, -370\}
+04968 ,\{ 410, 410, 410, 410, -370\}
+04969 ,\{ -500, -500, -500, -500, -500\}
+04970 \}
+04971 ,\{\{ 0, -240, -240, -240, 0\}
+04972 ,\{ 0, -240, -240, -240, 0\}
+04973 ,\{ -520, -520, -520, -520, -520\}
+04974 ,\{ -1180, -1420, -1180, -1420, -1420\}
+04975 ,\{ -520, -520, -520, -520, -520\}
+04976 \}
+04977 ,\{\{ -370, -370, -370, -370, -370\}
+04978 ,\{ -370, -370, -370, -370, -370\}
+04979 ,\{ -370, -370, -370, -370, -370\}
+04980 ,\{ -370, -370, -370, -370, -370\}
+04981 ,\{ -500, -500, -500, -500, -500\}
+04982 \}
+04983 ,\{\{ 410, 410, 410, 410, -520\}
+04984 ,\{ -1280, -1520, -1280, -1520, -1520\}
+04985 ,\{ -520, -520, -520, -520, -520\}
+04986 ,\{ 410, 410, 410, 410, -840\}
+04987 ,\{ -520, -520, -520, -520, -520\}
+04988 \}
+04989 ,\{\{ -370, -370, -370, -370, -370\}
+04990 ,\{ -370, -370, -370, -370, -370\}
+04991 ,\{ -610, -610, -610, -610, -610\}
+04992 ,\{ -370, -370, -370, -370, -370\}
+04993 ,\{ -1310, -1310, -1310, -1310, -1310\}
+04994 \}
+04995 \}
+04996 \}
+04997 \}
+04998 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+04999 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05000 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05001 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05002 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05003 \}
+05004 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05005 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05006 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05007 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05008 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05009 \}
+05010 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05011 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05012 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05013 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05014 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05015 \}
+05016 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05017 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05018 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05019 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05020 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05021 \}
+05022 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05023 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05024 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05025 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05026 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05027 \}
+05028 \}
+05029 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05030 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05031 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05032 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05033 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05034 \}
+05035 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05036 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05037 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05038 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05039 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05040 \}
+05041 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05042 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05043 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05044 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05045 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05046 \}
+05047 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05048 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05049 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05050 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05051 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05052 \}
+05053 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05054 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05055 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05056 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05057 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05058 \}
+05059 \}
+05060 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05061 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05062 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05063 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05064 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05065 \}
+05066 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05067 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05068 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05069 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05070 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05071 \}
+05072 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05073 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05074 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05075 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05076 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05077 \}
+05078 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05079 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05080 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05081 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05082 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05083 \}
+05084 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05085 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05086 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05087 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05088 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05089 \}
+05090 \}
+05091 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05092 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05093 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05094 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05095 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05096 \}
+05097 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05098 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05099 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05100 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05101 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05102 \}
+05103 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05104 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05105 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05106 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05107 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05108 \}
+05109 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05110 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05111 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05112 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05113 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05114 \}
+05115 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05116 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05117 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05118 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05119 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05120 \}
+05121 \}
+05122 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05123 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05124 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05125 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05126 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05127 \}
+05128 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05129 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05130 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05131 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05132 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05133 \}
+05134 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05135 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05136 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05137 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05138 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05139 \}
+05140 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05141 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05142 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05143 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05144 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05145 \}
+05146 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05147 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05148 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05149 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05150 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+05151 \}
+05152 \}
+05153 \}
+05154 ,\{\{\{\{ 800, 200, -310, 800, -310\}
+05155 ,\{ 740, 0, -510, 740, -410\}
+05156 ,\{ 800, 50, -450, 800, -450\}
+05157 ,\{ 740, 200, -310, 740, -310\}
+05158 ,\{ 690, -50, -560, 690, -560\}
+05159 \}
+05160 ,\{\{ 600, -140, -630, 600, -410\}
+05161 ,\{ 600, -140, -650, 600, -410\}
+05162 ,\{ 290, -450, -960, 290, -960\}
+05163 ,\{ -360, -360, -630, -870, -630\}
+05164 ,\{ 290, -450, -960, 290, -960\}
+05165 \}
+05166 ,\{\{ 740, 0, -510, 740, -510\}
+05167 ,\{ 740, 0, -510, 740, -510\}
+05168 ,\{ 740, 0, -510, 740, -510\}
+05169 ,\{ 740, 0, -510, 740, -510\}
+05170 ,\{ 690, -50, -560, 690, -560\}
+05171 \}
+05172 ,\{\{ 290, 200, -310, 290, -310\}
+05173 ,\{ -640, -640, -910, -1150, -910\}
+05174 ,\{ 290, -450, -960, 290, -960\}
+05175 ,\{ 200, 200, -310, -310, -310\}
+05176 ,\{ 290, -450, -960, 290, -960\}
+05177 \}
+05178 ,\{\{ 800, 50, -450, 800, -450\}
+05179 ,\{ 740, 0, -510, 740, -510\}
+05180 ,\{ 800, 50, -450, 800, -450\}
+05181 ,\{ 740, 0, -510, 740, -510\}
+05182 ,\{ -550, -550, -1300, -1300, -1300\}
+05183 \}
+05184 \}
+05185 ,\{\{\{ 200, 200, -310, -720, -310\}
+05186 ,\{ 0, 0, -510, -1020, -510\}
+05187 ,\{ 50, 50, -450, -720, -450\}
+05188 ,\{ 200, 200, -310, -1020, -310\}
+05189 ,\{ -50, -50, -560, -830, -560\}
+05190 \}
+05191 ,\{\{ -140, -140, -650, -1160, -650\}
+05192 ,\{ -140, -140, -650, -1160, -650\}
+05193 ,\{ -450, -450, -960, -1470, -960\}
+05194 ,\{ -360, -360, -870, -1380, -870\}
+05195 ,\{ -450, -450, -960, -1470, -960\}
+05196 \}
+05197 ,\{\{ 0, 0, -510, -780, -510\}
+05198 ,\{ 0, 0, -510, -1020, -510\}
+05199 ,\{ 0, 0, -510, -780, -510\}
+05200 ,\{ 0, 0, -510, -1020, -510\}
+05201 ,\{ -50, -50, -560, -830, -560\}
+05202 \}
+05203 ,\{\{ 200, 200, -310, -1470, -310\}
+05204 ,\{ -640, -640, -1150, -1660, -1150\}
+05205 ,\{ -450, -450, -960, -1470, -960\}
+05206 ,\{ 200, 200, -310, -2070, -310\}
+05207 ,\{ -450, -450, -960, -1470, -960\}
+05208 \}
+05209 ,\{\{ 50, 50, -450, -720, -450\}
+05210 ,\{ 0, 0, -510, -1020, -510\}
+05211 ,\{ 50, 50, -450, -720, -450\}
+05212 ,\{ 0, 0, -510, -1020, -510\}
+05213 ,\{ -550, -550, -1300, -1810, -1300\}
+05214 \}
+05215 \}
+05216 ,\{\{\{ -310, -310, -310, -310, -310\}
+05217 ,\{ -510, -510, -510, -510, -510\}
+05218 ,\{ -450, -450, -450, -450, -450\}
+05219 ,\{ -310, -310, -310, -310, -310\}
+05220 ,\{ -560, -560, -560, -560, -560\}
+05221 \}
+05222 ,\{\{ -630, -650, -630, -650, -630\}
+05223 ,\{ -650, -650, -650, -650, -650\}
+05224 ,\{ -960, -960, -960, -960, -960\}
+05225 ,\{ -630, -870, -630, -870, -630\}
+05226 ,\{ -960, -960, -960, -960, -960\}
+05227 \}
+05228 ,\{\{ -510, -510, -510, -510, -510\}
+05229 ,\{ -510, -510, -510, -510, -510\}
+05230 ,\{ -510, -510, -510, -510, -510\}
+05231 ,\{ -510, -510, -510, -510, -510\}
+05232 ,\{ -560, -560, -560, -560, -560\}
+05233 \}
+05234 ,\{\{ -310, -310, -310, -310, -310\}
+05235 ,\{ -910, -1150, -910, -1150, -910\}
+05236 ,\{ -960, -960, -960, -960, -960\}
+05237 ,\{ -310, -310, -310, -310, -310\}
+05238 ,\{ -960, -960, -960, -960, -960\}
+05239 \}
+05240 ,\{\{ -450, -450, -450, -450, -450\}
+05241 ,\{ -510, -510, -510, -510, -510\}
+05242 ,\{ -450, -450, -450, -450, -450\}
+05243 ,\{ -510, -510, -510, -510, -510\}
+05244 ,\{ -1300, -1300, -1300, -1300, -1300\}
+05245 \}
+05246 \}
+05247 ,\{\{\{ 800, -550, -310, 800, -310\}
+05248 ,\{ 740, -850, -510, 740, -510\}
+05249 ,\{ 800, -550, -450, 800, -450\}
+05250 ,\{ 740, -850, -310, 740, -310\}
+05251 ,\{ 690, -660, -560, 690, -560\}
+05252 \}
+05253 ,\{\{ 600, -990, -650, 600, -650\}
+05254 ,\{ 600, -990, -650, 600, -650\}
+05255 ,\{ 290, -1300, -960, 290, -960\}
+05256 ,\{ -870, -1210, -870, -870, -870\}
+05257 ,\{ 290, -1300, -960, 290, -960\}
+05258 \}
+05259 ,\{\{ 740, -610, -510, 740, -510\}
+05260 ,\{ 740, -850, -510, 740, -510\}
+05261 ,\{ 740, -610, -510, 740, -510\}
+05262 ,\{ 740, -850, -510, 740, -510\}
+05263 ,\{ 690, -660, -560, 690, -560\}
+05264 \}
+05265 ,\{\{ 290, -1300, -310, 290, -310\}
+05266 ,\{ -1150, -1490, -1150, -1150, -1150\}
+05267 ,\{ 290, -1300, -960, 290, -960\}
+05268 ,\{ -310, -1900, -310, -1560, -310\}
+05269 ,\{ 290, -1300, -960, 290, -960\}
+05270 \}
+05271 ,\{\{ 800, -550, -450, 800, -450\}
+05272 ,\{ 740, -850, -510, 740, -510\}
+05273 ,\{ 800, -550, -450, 800, -450\}
+05274 ,\{ 740, -850, -510, 740, -510\}
+05275 ,\{ -1300, -1640, -1300, -1300, -1300\}
+05276 \}
+05277 \}
+05278 ,\{\{\{ -310, -310, -310, -310, -410\}
+05279 ,\{ -410, -510, -510, -510, -410\}
+05280 ,\{ -450, -450, -450, -450, -450\}
+05281 ,\{ -310, -310, -310, -310, -510\}
+05282 ,\{ -560, -560, -560, -560, -560\}
+05283 \}
+05284 ,\{\{ -410, -650, -630, -650, -410\}
+05285 ,\{ -410, -650, -650, -650, -410\}
+05286 ,\{ -960, -960, -960, -960, -960\}
+05287 ,\{ -630, -870, -630, -870, -870\}
+05288 ,\{ -960, -960, -960, -960, -960\}
+05289 \}
+05290 ,\{\{ -510, -510, -510, -510, -510\}
+05291 ,\{ -510, -510, -510, -510, -510\}
+05292 ,\{ -510, -510, -510, -510, -510\}
+05293 ,\{ -510, -510, -510, -510, -510\}
+05294 ,\{ -560, -560, -560, -560, -560\}
+05295 \}
+05296 ,\{\{ -310, -310, -310, -310, -960\}
+05297 ,\{ -910, -1150, -910, -1150, -1150\}
+05298 ,\{ -960, -960, -960, -960, -960\}
+05299 ,\{ -310, -310, -310, -310, -1560\}
+05300 ,\{ -960, -960, -960, -960, -960\}
+05301 \}
+05302 ,\{\{ -450, -450, -450, -450, -450\}
+05303 ,\{ -510, -510, -510, -510, -510\}
+05304 ,\{ -450, -450, -450, -450, -450\}
+05305 ,\{ -510, -510, -510, -510, -510\}
+05306 ,\{ -1300, -1300, -1300, -1300, -1300\}
+05307 \}
+05308 \}
+05309 \}
+05310 ,\{\{\{\{ 760, 200, -310, 760, -250\}
+05311 ,\{ 760, -340, -490, 760, -250\}
+05312 ,\{ 310, -430, -940, 310, -940\}
+05313 ,\{ 400, 200, -310, 400, -310\}
+05314 ,\{ 310, -390, -940, 310, -940\}
+05315 \}
+05316 ,\{\{ 760, -430, -490, 760, -250\}
+05317 ,\{ 760, -490, -490, 760, -250\}
+05318 ,\{ 310, -430, -940, 310, -940\}
+05319 ,\{ -1170, -1170, -1440, -1680, -1440\}
+05320 ,\{ 310, -430, -940, 310, -940\}
+05321 \}
+05322 ,\{\{ 400, -340, -850, 400, -850\}
+05323 ,\{ 400, -340, -850, 400, -850\}
+05324 ,\{ 90, -650, -1160, 90, -1160\}
+05325 ,\{ 400, -340, -850, 400, -850\}
+05326 ,\{ 90, -650, -1160, 90, -1160\}
+05327 \}
+05328 ,\{\{ 310, 200, -310, 310, -310\}
+05329 ,\{ -690, -690, -960, -1200, -960\}
+05330 ,\{ 310, -430, -940, 310, -940\}
+05331 ,\{ 200, 200, -310, -310, -310\}
+05332 ,\{ 310, -430, -940, 310, -940\}
+05333 \}
+05334 ,\{\{ 400, -340, -850, 400, -850\}
+05335 ,\{ 400, -340, -850, 400, -850\}
+05336 ,\{ -220, -960, -1470, -220, -1470\}
+05337 ,\{ 400, -340, -850, 400, -850\}
+05338 ,\{ -390, -390, -1140, -1140, -1140\}
+05339 \}
+05340 \}
+05341 ,\{\{\{ 200, 200, -310, -1000, -310\}
+05342 ,\{ -340, -340, -490, -1000, -490\}
+05343 ,\{ -430, -430, -940, -1430, -940\}
+05344 ,\{ 200, 200, -310, -1360, -310\}
+05345 ,\{ -390, -390, -940, -1430, -940\}
+05346 \}
+05347 ,\{\{ -430, -430, -490, -1000, -490\}
+05348 ,\{ -490, -2040, -490, -1000, -490\}
+05349 ,\{ -430, -430, -940, -1450, -940\}
+05350 ,\{ -1170, -1170, -1680, -2190, -1680\}
+05351 ,\{ -430, -430, -940, -1450, -940\}
+05352 \}
+05353 ,\{\{ -340, -340, -850, -1360, -850\}
+05354 ,\{ -340, -340, -850, -1360, -850\}
+05355 ,\{ -650, -650, -1160, -1430, -1160\}
+05356 ,\{ -340, -340, -850, -1360, -850\}
+05357 ,\{ -650, -650, -1160, -1430, -1160\}
+05358 \}
+05359 ,\{\{ 200, 200, -310, -1450, -310\}
+05360 ,\{ -690, -690, -1200, -1710, -1200\}
+05361 ,\{ -430, -430, -940, -1450, -940\}
+05362 ,\{ 200, 200, -310, -2070, -310\}
+05363 ,\{ -430, -430, -940, -1450, -940\}
+05364 \}
+05365 ,\{\{ -340, -340, -850, -1360, -850\}
+05366 ,\{ -340, -340, -850, -1360, -850\}
+05367 ,\{ -960, -960, -1470, -1740, -1470\}
+05368 ,\{ -340, -340, -850, -1360, -850\}
+05369 ,\{ -390, -390, -1140, -1650, -1140\}
+05370 \}
+05371 \}
+05372 ,\{\{\{ -310, -310, -310, -310, -310\}
+05373 ,\{ -490, -490, -490, -490, -490\}
+05374 ,\{ -940, -940, -940, -940, -940\}
+05375 ,\{ -310, -310, -310, -310, -310\}
+05376 ,\{ -940, -940, -940, -940, -940\}
+05377 \}
+05378 ,\{\{ -490, -490, -490, -490, -490\}
+05379 ,\{ -490, -490, -490, -490, -490\}
+05380 ,\{ -940, -940, -940, -940, -940\}
+05381 ,\{ -1440, -1680, -1440, -1680, -1440\}
+05382 ,\{ -940, -940, -940, -940, -940\}
+05383 \}
+05384 ,\{\{ -850, -850, -850, -850, -850\}
+05385 ,\{ -850, -850, -850, -850, -850\}
+05386 ,\{ -1160, -1160, -1160, -1160, -1160\}
+05387 ,\{ -850, -850, -850, -850, -850\}
+05388 ,\{ -1160, -1160, -1160, -1160, -1160\}
+05389 \}
+05390 ,\{\{ -310, -310, -310, -310, -310\}
+05391 ,\{ -960, -1200, -960, -1200, -960\}
+05392 ,\{ -940, -940, -940, -940, -940\}
+05393 ,\{ -310, -310, -310, -310, -310\}
+05394 ,\{ -940, -940, -940, -940, -940\}
+05395 \}
+05396 ,\{\{ -850, -850, -850, -850, -850\}
+05397 ,\{ -850, -850, -850, -850, -850\}
+05398 ,\{ -1470, -1470, -1470, -1470, -1470\}
+05399 ,\{ -850, -850, -850, -850, -850\}
+05400 ,\{ -1140, -1140, -1140, -1140, -1140\}
+05401 \}
+05402 \}
+05403 ,\{\{\{ 760, -830, -310, 760, -310\}
+05404 ,\{ 760, -830, -490, 760, -490\}
+05405 ,\{ 310, -1260, -940, 310, -940\}
+05406 ,\{ 400, -1190, -310, 400, -310\}
+05407 ,\{ 310, -1260, -940, 310, -940\}
+05408 \}
+05409 ,\{\{ 760, -830, -490, 760, -490\}
+05410 ,\{ 760, -830, -490, 760, -490\}
+05411 ,\{ 310, -1280, -940, 310, -940\}
+05412 ,\{ -1680, -2020, -1680, -1680, -1680\}
+05413 ,\{ 310, -1280, -940, 310, -940\}
+05414 \}
+05415 ,\{\{ 400, -1190, -850, 400, -850\}
+05416 ,\{ 400, -1190, -850, 400, -850\}
+05417 ,\{ 90, -1260, -1160, 90, -1160\}
+05418 ,\{ 400, -1190, -850, 400, -850\}
+05419 ,\{ 90, -1260, -1160, 90, -1160\}
+05420 \}
+05421 ,\{\{ 310, -1280, -310, 310, -310\}
+05422 ,\{ -1200, -1540, -1200, -1200, -1200\}
+05423 ,\{ 310, -1280, -940, 310, -940\}
+05424 ,\{ -310, -1900, -310, -1560, -310\}
+05425 ,\{ 310, -1280, -940, 310, -940\}
+05426 \}
+05427 ,\{\{ 400, -1190, -850, 400, -850\}
+05428 ,\{ 400, -1190, -850, 400, -850\}
+05429 ,\{ -220, -1570, -1470, -220, -1470\}
+05430 ,\{ 400, -1190, -850, 400, -850\}
+05431 ,\{ -1140, -1480, -1140, -1140, -1140\}
+05432 \}
+05433 \}
+05434 ,\{\{\{ -250, -310, -310, -310, -250\}
+05435 ,\{ -250, -490, -490, -490, -250\}
+05436 ,\{ -940, -940, -940, -940, -940\}
+05437 ,\{ -310, -310, -310, -310, -850\}
+05438 ,\{ -940, -940, -940, -940, -940\}
+05439 \}
+05440 ,\{\{ -250, -490, -490, -490, -250\}
+05441 ,\{ -250, -490, -490, -490, -250\}
+05442 ,\{ -940, -940, -940, -940, -940\}
+05443 ,\{ -1440, -1680, -1440, -1680, -1680\}
+05444 ,\{ -940, -940, -940, -940, -940\}
+05445 \}
+05446 ,\{\{ -850, -850, -850, -850, -850\}
+05447 ,\{ -850, -850, -850, -850, -850\}
+05448 ,\{ -1160, -1160, -1160, -1160, -1160\}
+05449 ,\{ -850, -850, -850, -850, -850\}
+05450 ,\{ -1160, -1160, -1160, -1160, -1160\}
+05451 \}
+05452 ,\{\{ -310, -310, -310, -310, -940\}
+05453 ,\{ -960, -1200, -960, -1200, -1200\}
+05454 ,\{ -940, -940, -940, -940, -940\}
+05455 ,\{ -310, -310, -310, -310, -1560\}
+05456 ,\{ -940, -940, -940, -940, -940\}
+05457 \}
+05458 ,\{\{ -850, -850, -850, -850, -850\}
+05459 ,\{ -850, -850, -850, -850, -850\}
+05460 ,\{ -1470, -1470, -1470, -1470, -1470\}
+05461 ,\{ -850, -850, -850, -850, -850\}
+05462 ,\{ -1140, -1140, -1140, -1140, -1140\}
+05463 \}
+05464 \}
+05465 \}
+05466 ,\{\{\{\{ 360, 360, -150, -150, -150\}
+05467 ,\{ -30, -30, -990, -150, -990\}
+05468 ,\{ -150, -890, -1400, -150, -1400\}
+05469 ,\{ 360, 360, -150, -150, -150\}
+05470 ,\{ -150, -650, -1400, -150, -1400\}
+05471 \}
+05472 ,\{\{ -70, -70, -1180, -150, -1180\}
+05473 ,\{ -70, -70, -1580, -330, -1340\}
+05474 ,\{ -150, -890, -1400, -150, -1400\}
+05475 ,\{ -910, -910, -1180, -1420, -1180\}
+05476 ,\{ -150, -890, -1400, -150, -1400\}
+05477 \}
+05478 ,\{\{ -150, -890, -1400, -150, -1400\}
+05479 ,\{ -150, -890, -1400, -150, -1400\}
+05480 ,\{ -150, -890, -1400, -150, -1400\}
+05481 ,\{ -150, -890, -1400, -150, -1400\}
+05482 ,\{ -150, -890, -1400, -150, -1400\}
+05483 \}
+05484 ,\{\{ 360, 360, -150, -150, -150\}
+05485 ,\{ -30, -30, -990, -1230, -990\}
+05486 ,\{ -150, -890, -1400, -150, -1400\}
+05487 ,\{ 360, 360, -150, -150, -150\}
+05488 ,\{ -150, -890, -1400, -150, -1400\}
+05489 \}
+05490 ,\{\{ -150, -650, -1400, -150, -1400\}
+05491 ,\{ -150, -890, -1400, -150, -1400\}
+05492 ,\{ -150, -890, -1400, -150, -1400\}
+05493 ,\{ -150, -890, -1400, -150, -1400\}
+05494 ,\{ -650, -650, -1400, -1400, -1400\}
+05495 \}
+05496 \}
+05497 ,\{\{\{ 360, 360, -150, -1670, -150\}
+05498 ,\{ -30, -30, -1230, -1740, -1230\}
+05499 ,\{ -890, -890, -1400, -1670, -1400\}
+05500 ,\{ 360, 360, -150, -1910, -150\}
+05501 ,\{ -650, -650, -1400, -1670, -1400\}
+05502 \}
+05503 ,\{\{ -70, -70, -1400, -1910, -1400\}
+05504 ,\{ -70, -70, -1580, -2090, -1580\}
+05505 ,\{ -890, -890, -1400, -1910, -1400\}
+05506 ,\{ -910, -910, -1420, -1930, -1420\}
+05507 ,\{ -890, -890, -1400, -1910, -1400\}
+05508 \}
+05509 ,\{\{ -890, -890, -1400, -1670, -1400\}
+05510 ,\{ -890, -890, -1400, -1910, -1400\}
+05511 ,\{ -890, -890, -1400, -1670, -1400\}
+05512 ,\{ -890, -890, -1400, -1910, -1400\}
+05513 ,\{ -890, -890, -1400, -1670, -1400\}
+05514 \}
+05515 ,\{\{ 360, 360, -150, -1740, -150\}
+05516 ,\{ -30, -30, -1230, -1740, -1230\}
+05517 ,\{ -890, -890, -1400, -1910, -1400\}
+05518 ,\{ 360, 360, -150, -1910, -150\}
+05519 ,\{ -890, -890, -1400, -1910, -1400\}
+05520 \}
+05521 ,\{\{ -650, -650, -1400, -1670, -1400\}
+05522 ,\{ -890, -890, -1400, -1910, -1400\}
+05523 ,\{ -890, -890, -1400, -1670, -1400\}
+05524 ,\{ -890, -890, -1400, -1910, -1400\}
+05525 ,\{ -650, -650, -1400, -1910, -1400\}
+05526 \}
+05527 \}
+05528 ,\{\{\{ -150, -150, -150, -150, -150\}
+05529 ,\{ -990, -1230, -990, -1230, -990\}
+05530 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05531 ,\{ -150, -150, -150, -150, -150\}
+05532 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05533 \}
+05534 ,\{\{ -1180, -1400, -1180, -1400, -1180\}
+05535 ,\{ -1580, -1580, -1580, -1580, -1580\}
+05536 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05537 ,\{ -1180, -1420, -1180, -1420, -1180\}
+05538 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05539 \}
+05540 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+05541 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05542 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05543 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05544 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05545 \}
+05546 ,\{\{ -150, -150, -150, -150, -150\}
+05547 ,\{ -990, -1230, -990, -1230, -990\}
+05548 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05549 ,\{ -150, -150, -150, -150, -150\}
+05550 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05551 \}
+05552 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+05553 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05554 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05555 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05556 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05557 \}
+05558 \}
+05559 ,\{\{\{ -150, -1500, -150, -150, -150\}
+05560 ,\{ -150, -1570, -1230, -150, -1230\}
+05561 ,\{ -150, -1500, -1400, -150, -1400\}
+05562 ,\{ -150, -1740, -150, -150, -150\}
+05563 ,\{ -150, -1500, -1400, -150, -1400\}
+05564 \}
+05565 ,\{\{ -150, -1600, -1400, -150, -1400\}
+05566 ,\{ -330, -1600, -1580, -330, -1580\}
+05567 ,\{ -150, -1740, -1400, -150, -1400\}
+05568 ,\{ -1420, -3040, -1420, -1420, -1420\}
+05569 ,\{ -150, -1740, -1400, -150, -1400\}
+05570 \}
+05571 ,\{\{ -150, -1500, -1400, -150, -1400\}
+05572 ,\{ -150, -1740, -1400, -150, -1400\}
+05573 ,\{ -150, -1500, -1400, -150, -1400\}
+05574 ,\{ -150, -1740, -1400, -150, -1400\}
+05575 ,\{ -150, -1500, -1400, -150, -1400\}
+05576 \}
+05577 ,\{\{ -150, -1570, -150, -150, -150\}
+05578 ,\{ -1230, -1570, -1230, -1230, -1230\}
+05579 ,\{ -150, -1740, -1400, -150, -1400\}
+05580 ,\{ -150, -1740, -150, -1400, -150\}
+05581 ,\{ -150, -1740, -1400, -150, -1400\}
+05582 \}
+05583 ,\{\{ -150, -1500, -1400, -150, -1400\}
+05584 ,\{ -150, -1740, -1400, -150, -1400\}
+05585 ,\{ -150, -1500, -1400, -150, -1400\}
+05586 ,\{ -150, -1740, -1400, -150, -1400\}
+05587 ,\{ -1400, -1740, -1400, -1400, -1400\}
+05588 \}
+05589 \}
+05590 ,\{\{\{ -150, -150, -150, -150, -1230\}
+05591 ,\{ -990, -1230, -990, -1230, -1230\}
+05592 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05593 ,\{ -150, -150, -150, -150, -1400\}
+05594 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05595 \}
+05596 ,\{\{ -1180, -1400, -1180, -1400, -1340\}
+05597 ,\{ -1340, -1580, -1580, -1580, -1340\}
+05598 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05599 ,\{ -1180, -1420, -1180, -1420, -1420\}
+05600 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05601 \}
+05602 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+05603 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05604 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05605 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05606 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05607 \}
+05608 ,\{\{ -150, -150, -150, -150, -1230\}
+05609 ,\{ -990, -1230, -990, -1230, -1230\}
+05610 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05611 ,\{ -150, -150, -150, -150, -1400\}
+05612 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05613 \}
+05614 ,\{\{ -1400, -1400, -1400, -1400, -1400\}
+05615 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05616 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05617 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05618 ,\{ -1400, -1400, -1400, -1400, -1400\}
+05619 \}
+05620 \}
+05621 \}
+05622 ,\{\{\{\{ 910, 910, 400, 910, 400\}
+05623 ,\{ 910, 170, -340, 910, -100\}
+05624 ,\{ 400, -340, -850, 400, -850\}
+05625 ,\{ 910, 910, 400, 400, 400\}
+05626 ,\{ 400, -100, -850, 400, -850\}
+05627 \}
+05628 ,\{\{ 910, 170, -340, 910, -100\}
+05629 ,\{ 910, 170, -340, 910, -100\}
+05630 ,\{ 400, -340, -850, 400, -850\}
+05631 ,\{ -680, -680, -950, -1190, -950\}
+05632 ,\{ 400, -340, -850, 400, -850\}
+05633 \}
+05634 ,\{\{ 400, -340, -850, 400, -850\}
+05635 ,\{ 400, -340, -850, 400, -850\}
+05636 ,\{ 400, -340, -850, 400, -850\}
+05637 ,\{ 400, -340, -850, 400, -850\}
+05638 ,\{ 400, -340, -850, 400, -850\}
+05639 \}
+05640 ,\{\{ 910, 910, 400, 400, 400\}
+05641 ,\{ -850, -850, -1120, -1360, -1120\}
+05642 ,\{ 400, -340, -850, 400, -850\}
+05643 ,\{ 910, 910, 400, 400, 400\}
+05644 ,\{ 400, -340, -850, 400, -850\}
+05645 \}
+05646 ,\{\{ 400, -100, -850, 400, -850\}
+05647 ,\{ 400, -340, -850, 400, -850\}
+05648 ,\{ 400, -340, -850, 400, -850\}
+05649 ,\{ 400, -340, -850, 400, -850\}
+05650 ,\{ -100, -100, -850, -850, -850\}
+05651 \}
+05652 \}
+05653 ,\{\{\{ 910, 910, 400, -850, 400\}
+05654 ,\{ 170, 170, -340, -850, -340\}
+05655 ,\{ -340, -340, -850, -1120, -850\}
+05656 ,\{ 910, 910, 400, -1360, 400\}
+05657 ,\{ -100, -100, -850, -1120, -850\}
+05658 \}
+05659 ,\{\{ 170, 170, -340, -850, -340\}
+05660 ,\{ 170, 170, -340, -850, -340\}
+05661 ,\{ -340, -340, -850, -1360, -850\}
+05662 ,\{ -680, -680, -1190, -1700, -1190\}
+05663 ,\{ -340, -340, -850, -1360, -850\}
+05664 \}
+05665 ,\{\{ -340, -340, -850, -1120, -850\}
+05666 ,\{ -340, -340, -850, -1360, -850\}
+05667 ,\{ -340, -340, -850, -1120, -850\}
+05668 ,\{ -340, -340, -850, -1360, -850\}
+05669 ,\{ -340, -340, -850, -1120, -850\}
+05670 \}
+05671 ,\{\{ 910, 910, 400, -1360, 400\}
+05672 ,\{ -850, -850, -1360, -1870, -1360\}
+05673 ,\{ -340, -340, -850, -1360, -850\}
+05674 ,\{ 910, 910, 400, -1360, 400\}
+05675 ,\{ -340, -340, -850, -1360, -850\}
+05676 \}
+05677 ,\{\{ -100, -100, -850, -1120, -850\}
+05678 ,\{ -340, -340, -850, -1360, -850\}
+05679 ,\{ -340, -340, -850, -1120, -850\}
+05680 ,\{ -340, -340, -850, -1360, -850\}
+05681 ,\{ -100, -100, -850, -1360, -850\}
+05682 \}
+05683 \}
+05684 ,\{\{\{ 400, 400, 400, 400, 400\}
+05685 ,\{ -340, -340, -340, -340, -340\}
+05686 ,\{ -850, -850, -850, -850, -850\}
+05687 ,\{ 400, 400, 400, 400, 400\}
+05688 ,\{ -850, -850, -850, -850, -850\}
+05689 \}
+05690 ,\{\{ -340, -340, -340, -340, -340\}
+05691 ,\{ -340, -340, -340, -340, -340\}
+05692 ,\{ -850, -850, -850, -850, -850\}
+05693 ,\{ -950, -1190, -950, -1190, -950\}
+05694 ,\{ -850, -850, -850, -850, -850\}
+05695 \}
+05696 ,\{\{ -850, -850, -850, -850, -850\}
+05697 ,\{ -850, -850, -850, -850, -850\}
+05698 ,\{ -850, -850, -850, -850, -850\}
+05699 ,\{ -850, -850, -850, -850, -850\}
+05700 ,\{ -850, -850, -850, -850, -850\}
+05701 \}
+05702 ,\{\{ 400, 400, 400, 400, 400\}
+05703 ,\{ -1120, -1360, -1120, -1360, -1120\}
+05704 ,\{ -850, -850, -850, -850, -850\}
+05705 ,\{ 400, 400, 400, 400, 400\}
+05706 ,\{ -850, -850, -850, -850, -850\}
+05707 \}
+05708 ,\{\{ -850, -850, -850, -850, -850\}
+05709 ,\{ -850, -850, -850, -850, -850\}
+05710 ,\{ -850, -850, -850, -850, -850\}
+05711 ,\{ -850, -850, -850, -850, -850\}
+05712 ,\{ -850, -850, -850, -850, -850\}
+05713 \}
+05714 \}
+05715 ,\{\{\{ 910, -680, 400, 910, 400\}
+05716 ,\{ 910, -680, -340, 910, -340\}
+05717 ,\{ 400, -950, -850, 400, -850\}
+05718 ,\{ 400, -1190, 400, 400, 400\}
+05719 ,\{ 400, -950, -850, 400, -850\}
+05720 \}
+05721 ,\{\{ 910, -680, -340, 910, -340\}
+05722 ,\{ 910, -680, -340, 910, -340\}
+05723 ,\{ 400, -1190, -850, 400, -850\}
+05724 ,\{ -1190, -1530, -1190, -1190, -1190\}
+05725 ,\{ 400, -1190, -850, 400, -850\}
+05726 \}
+05727 ,\{\{ 400, -950, -850, 400, -850\}
+05728 ,\{ 400, -1190, -850, 400, -850\}
+05729 ,\{ 400, -950, -850, 400, -850\}
+05730 ,\{ 400, -1190, -850, 400, -850\}
+05731 ,\{ 400, -950, -850, 400, -850\}
+05732 \}
+05733 ,\{\{ 400, -1190, 400, 400, 400\}
+05734 ,\{ -1360, -1700, -1360, -1360, -1360\}
+05735 ,\{ 400, -1190, -850, 400, -850\}
+05736 ,\{ 400, -1190, 400, -850, 400\}
+05737 ,\{ 400, -1190, -850, 400, -850\}
+05738 \}
+05739 ,\{\{ 400, -950, -850, 400, -850\}
+05740 ,\{ 400, -1190, -850, 400, -850\}
+05741 ,\{ 400, -950, -850, 400, -850\}
+05742 ,\{ 400, -1190, -850, 400, -850\}
+05743 ,\{ -850, -1190, -850, -850, -850\}
+05744 \}
+05745 \}
+05746 ,\{\{\{ 400, 400, 400, 400, -100\}
+05747 ,\{ -100, -340, -340, -340, -100\}
+05748 ,\{ -850, -850, -850, -850, -850\}
+05749 ,\{ 400, 400, 400, 400, -850\}
+05750 ,\{ -850, -850, -850, -850, -850\}
+05751 \}
+05752 ,\{\{ -100, -340, -340, -340, -100\}
+05753 ,\{ -100, -340, -340, -340, -100\}
+05754 ,\{ -850, -850, -850, -850, -850\}
+05755 ,\{ -950, -1190, -950, -1190, -1190\}
+05756 ,\{ -850, -850, -850, -850, -850\}
+05757 \}
+05758 ,\{\{ -850, -850, -850, -850, -850\}
+05759 ,\{ -850, -850, -850, -850, -850\}
+05760 ,\{ -850, -850, -850, -850, -850\}
+05761 ,\{ -850, -850, -850, -850, -850\}
+05762 ,\{ -850, -850, -850, -850, -850\}
+05763 \}
+05764 ,\{\{ 400, 400, 400, 400, -850\}
+05765 ,\{ -1120, -1360, -1120, -1360, -1360\}
+05766 ,\{ -850, -850, -850, -850, -850\}
+05767 ,\{ 400, 400, 400, 400, -850\}
+05768 ,\{ -850, -850, -850, -850, -850\}
+05769 \}
+05770 ,\{\{ -850, -850, -850, -850, -850\}
+05771 ,\{ -850, -850, -850, -850, -850\}
+05772 ,\{ -850, -850, -850, -850, -850\}
+05773 ,\{ -850, -850, -850, -850, -850\}
+05774 ,\{ -850, -850, -850, -850, -850\}
+05775 \}
+05776 \}
+05777 \}
+05778 ,\{\{\{\{ 1490, 1280, 780, 1490, 780\}
+05779 ,\{ 1490, 750, 240, 1490, 480\}
+05780 ,\{ 1200, 450, -50, 1200, -50\}
+05781 ,\{ 1280, 1280, 780, 1200, 780\}
+05782 ,\{ 1200, 450, -50, 1200, -50\}
+05783 \}
+05784 ,\{\{ 1490, 750, 240, 1490, 480\}
+05785 ,\{ 1490, 750, 240, 1490, 480\}
+05786 ,\{ 1190, 440, -60, 1190, -60\}
+05787 ,\{ -630, -630, -900, -1140, -900\}
+05788 ,\{ 1190, 440, -60, 1190, -60\}
+05789 \}
+05790 ,\{\{ 1200, 460, -50, 1200, -50\}
+05791 ,\{ 1200, 460, -50, 1200, -50\}
+05792 ,\{ 1200, 450, -50, 1200, -50\}
+05793 ,\{ 1200, 460, -50, 1200, -50\}
+05794 ,\{ 1200, 450, -50, 1200, -50\}
+05795 \}
+05796 ,\{\{ 1280, 1280, 780, 1190, 780\}
+05797 ,\{ -450, -450, -720, -960, -720\}
+05798 ,\{ 1190, 440, -60, 1190, -60\}
+05799 ,\{ 1280, 1280, 780, 780, 780\}
+05800 ,\{ 1190, 440, -60, 1190, -60\}
+05801 \}
+05802 ,\{\{ 1200, 460, -50, 1200, -50\}
+05803 ,\{ 1200, 460, -50, 1200, -50\}
+05804 ,\{ 1200, 450, -50, 1200, -50\}
+05805 ,\{ 1200, 460, -50, 1200, -50\}
+05806 ,\{ -280, -280, -1030, -1030, -1030\}
+05807 \}
+05808 \}
+05809 ,\{\{\{ 1280, 1280, 780, -260, 780\}
+05810 ,\{ 750, 750, 240, -260, 240\}
+05811 ,\{ 450, 450, -50, -320, -50\}
+05812 ,\{ 1280, 1280, 780, -560, 780\}
+05813 ,\{ 450, 450, -50, -320, -50\}
+05814 \}
+05815 ,\{\{ 750, 750, 240, -260, 240\}
+05816 ,\{ 750, 750, 240, -260, 240\}
+05817 ,\{ 440, 440, -60, -570, -60\}
+05818 ,\{ -630, -630, -1140, -1650, -1140\}
+05819 ,\{ 440, 440, -60, -570, -60\}
+05820 \}
+05821 ,\{\{ 460, 460, -50, -320, -50\}
+05822 ,\{ 460, 460, -50, -560, -50\}
+05823 ,\{ 450, 450, -50, -320, -50\}
+05824 ,\{ 460, 460, -50, -560, -50\}
+05825 ,\{ 450, 450, -50, -320, -50\}
+05826 \}
+05827 ,\{\{ 1280, 1280, 780, -570, 780\}
+05828 ,\{ -450, -450, -960, -1470, -960\}
+05829 ,\{ 440, 440, -60, -570, -60\}
+05830 ,\{ 1280, 1280, 780, -980, 780\}
+05831 ,\{ 440, 440, -60, -570, -60\}
+05832 \}
+05833 ,\{\{ 460, 460, -50, -320, -50\}
+05834 ,\{ 460, 460, -50, -560, -50\}
+05835 ,\{ 450, 450, -50, -320, -50\}
+05836 ,\{ 460, 460, -50, -560, -50\}
+05837 ,\{ -280, -280, -1030, -1540, -1030\}
+05838 \}
+05839 \}
+05840 ,\{\{\{ 780, 780, 780, 780, 780\}
+05841 ,\{ 240, 240, 240, 240, 240\}
+05842 ,\{ -50, -50, -50, -50, -50\}
+05843 ,\{ 780, 780, 780, 780, 780\}
+05844 ,\{ -50, -50, -50, -50, -50\}
+05845 \}
+05846 ,\{\{ 240, 240, 240, 240, 240\}
+05847 ,\{ 240, 240, 240, 240, 240\}
+05848 ,\{ -60, -60, -60, -60, -60\}
+05849 ,\{ -900, -1140, -900, -1140, -900\}
+05850 ,\{ -60, -60, -60, -60, -60\}
+05851 \}
+05852 ,\{\{ -50, -50, -50, -50, -50\}
+05853 ,\{ -50, -50, -50, -50, -50\}
+05854 ,\{ -50, -50, -50, -50, -50\}
+05855 ,\{ -50, -50, -50, -50, -50\}
+05856 ,\{ -50, -50, -50, -50, -50\}
+05857 \}
+05858 ,\{\{ 780, 780, 780, 780, 780\}
+05859 ,\{ -720, -960, -720, -960, -720\}
+05860 ,\{ -60, -60, -60, -60, -60\}
+05861 ,\{ 780, 780, 780, 780, 780\}
+05862 ,\{ -60, -60, -60, -60, -60\}
+05863 \}
+05864 ,\{\{ -50, -50, -50, -50, -50\}
+05865 ,\{ -50, -50, -50, -50, -50\}
+05866 ,\{ -50, -50, -50, -50, -50\}
+05867 ,\{ -50, -50, -50, -50, -50\}
+05868 ,\{ -1030, -1030, -1030, -1030, -1030\}
+05869 \}
+05870 \}
+05871 ,\{\{\{ 1490, -90, 780, 1490, 780\}
+05872 ,\{ 1490, -90, 240, 1490, 240\}
+05873 ,\{ 1200, -150, -50, 1200, -50\}
+05874 ,\{ 1200, -390, 780, 1200, 780\}
+05875 ,\{ 1200, -150, -50, 1200, -50\}
+05876 \}
+05877 ,\{\{ 1490, -90, 240, 1490, 240\}
+05878 ,\{ 1490, -90, 240, 1490, 240\}
+05879 ,\{ 1190, -400, -60, 1190, -60\}
+05880 ,\{ -1140, -1480, -1140, -1140, -1140\}
+05881 ,\{ 1190, -400, -60, 1190, -60\}
+05882 \}
+05883 ,\{\{ 1200, -150, -50, 1200, -50\}
+05884 ,\{ 1200, -390, -50, 1200, -50\}
+05885 ,\{ 1200, -150, -50, 1200, -50\}
+05886 ,\{ 1200, -390, -50, 1200, -50\}
+05887 ,\{ 1200, -150, -50, 1200, -50\}
+05888 \}
+05889 ,\{\{ 1190, -400, 780, 1190, 780\}
+05890 ,\{ -960, -1300, -960, -960, -960\}
+05891 ,\{ 1190, -400, -60, 1190, -60\}
+05892 ,\{ 780, -810, 780, -470, 780\}
+05893 ,\{ 1190, -400, -60, 1190, -60\}
+05894 \}
+05895 ,\{\{ 1200, -150, -50, 1200, -50\}
+05896 ,\{ 1200, -390, -50, 1200, -50\}
+05897 ,\{ 1200, -150, -50, 1200, -50\}
+05898 ,\{ 1200, -390, -50, 1200, -50\}
+05899 ,\{ -1030, -1370, -1030, -1030, -1030\}
+05900 \}
+05901 \}
+05902 ,\{\{\{ 780, 780, 780, 780, 480\}
+05903 ,\{ 480, 240, 240, 240, 480\}
+05904 ,\{ -50, -50, -50, -50, -50\}
+05905 ,\{ 780, 780, 780, 780, -50\}
+05906 ,\{ -50, -50, -50, -50, -50\}
+05907 \}
+05908 ,\{\{ 480, 240, 240, 240, 480\}
+05909 ,\{ 480, 240, 240, 240, 480\}
+05910 ,\{ -60, -60, -60, -60, -60\}
+05911 ,\{ -900, -1140, -900, -1140, -1140\}
+05912 ,\{ -60, -60, -60, -60, -60\}
+05913 \}
+05914 ,\{\{ -50, -50, -50, -50, -50\}
+05915 ,\{ -50, -50, -50, -50, -50\}
+05916 ,\{ -50, -50, -50, -50, -50\}
+05917 ,\{ -50, -50, -50, -50, -50\}
+05918 ,\{ -50, -50, -50, -50, -50\}
+05919 \}
+05920 ,\{\{ 780, 780, 780, 780, -60\}
+05921 ,\{ -720, -960, -720, -960, -960\}
+05922 ,\{ -60, -60, -60, -60, -60\}
+05923 ,\{ 780, 780, 780, 780, -470\}
+05924 ,\{ -60, -60, -60, -60, -60\}
+05925 \}
+05926 ,\{\{ -50, -50, -50, -50, -50\}
+05927 ,\{ -50, -50, -50, -50, -50\}
+05928 ,\{ -50, -50, -50, -50, -50\}
+05929 ,\{ -50, -50, -50, -50, -50\}
+05930 ,\{ -1030, -1030, -1030, -1030, -1030\}
+05931 \}
+05932 \}
+05933 \}
+05934 ,\{\{\{\{ 1560, 1470, 960, 1560, 960\}
+05935 ,\{ 1560, 820, 310, 1560, 550\}
+05936 ,\{ 1430, 690, 180, 1430, 180\}
+05937 ,\{ 1470, 1470, 960, 1430, 960\}
+05938 ,\{ 1300, 560, 50, 1300, 50\}
+05939 \}
+05940 ,\{\{ 1560, 820, 310, 1560, 550\}
+05941 ,\{ 1560, 820, 310, 1560, 550\}
+05942 ,\{ 1280, 540, 30, 1280, 30\}
+05943 ,\{ -580, -580, -850, -1090, -850\}
+05944 ,\{ 1280, 540, 30, 1280, 30\}
+05945 \}
+05946 ,\{\{ 1430, 690, 180, 1430, 180\}
+05947 ,\{ 1430, 690, 180, 1430, 180\}
+05948 ,\{ 1430, 690, 180, 1430, 180\}
+05949 ,\{ 1430, 690, 180, 1430, 180\}
+05950 ,\{ 1300, 560, 50, 1300, 50\}
+05951 \}
+05952 ,\{\{ 1470, 1470, 960, 1280, 960\}
+05953 ,\{ -880, -880, -1150, -1390, -1150\}
+05954 ,\{ 1280, 540, 30, 1280, 30\}
+05955 ,\{ 1470, 1470, 960, 960, 960\}
+05956 ,\{ 1280, 540, 30, 1280, 30\}
+05957 \}
+05958 ,\{\{ 1430, 690, 180, 1430, 180\}
+05959 ,\{ 1430, 690, 180, 1430, 180\}
+05960 ,\{ 990, 250, -260, 990, -260\}
+05961 ,\{ 1430, 690, 180, 1430, 180\}
+05962 ,\{ -10, -10, -760, -760, -760\}
+05963 \}
+05964 \}
+05965 ,\{\{\{ 1470, 1470, 960, -90, 960\}
+05966 ,\{ 820, 820, 310, -200, 310\}
+05967 ,\{ 690, 690, 180, -90, 180\}
+05968 ,\{ 1470, 1470, 960, -330, 960\}
+05969 ,\{ 560, 560, 50, -220, 50\}
+05970 \}
+05971 ,\{\{ 820, 820, 310, -200, 310\}
+05972 ,\{ 820, 820, 310, -200, 310\}
+05973 ,\{ 540, 540, 30, -480, 30\}
+05974 ,\{ -580, -580, -1090, -1600, -1090\}
+05975 ,\{ 540, 540, 30, -480, 30\}
+05976 \}
+05977 ,\{\{ 690, 690, 180, -90, 180\}
+05978 ,\{ 690, 690, 180, -330, 180\}
+05979 ,\{ 690, 690, 180, -90, 180\}
+05980 ,\{ 690, 690, 180, -330, 180\}
+05981 ,\{ 560, 560, 50, -220, 50\}
+05982 \}
+05983 ,\{\{ 1470, 1470, 960, -480, 960\}
+05984 ,\{ -880, -880, -1390, -1900, -1390\}
+05985 ,\{ 540, 540, 30, -480, 30\}
+05986 ,\{ 1470, 1470, 960, -800, 960\}
+05987 ,\{ 540, 540, 30, -480, 30\}
+05988 \}
+05989 ,\{\{ 690, 690, 180, -330, 180\}
+05990 ,\{ 690, 690, 180, -330, 180\}
+05991 ,\{ 250, 250, -260, -530, -260\}
+05992 ,\{ 690, 690, 180, -330, 180\}
+05993 ,\{ -10, -10, -760, -1270, -760\}
+05994 \}
+05995 \}
+05996 ,\{\{\{ 960, 960, 960, 960, 960\}
+05997 ,\{ 310, 310, 310, 310, 310\}
+05998 ,\{ 180, 180, 180, 180, 180\}
+05999 ,\{ 960, 960, 960, 960, 960\}
+06000 ,\{ 50, 50, 50, 50, 50\}
+06001 \}
+06002 ,\{\{ 310, 310, 310, 310, 310\}
+06003 ,\{ 310, 310, 310, 310, 310\}
+06004 ,\{ 30, 30, 30, 30, 30\}
+06005 ,\{ -850, -1090, -850, -1090, -850\}
+06006 ,\{ 30, 30, 30, 30, 30\}
+06007 \}
+06008 ,\{\{ 180, 180, 180, 180, 180\}
+06009 ,\{ 180, 180, 180, 180, 180\}
+06010 ,\{ 180, 180, 180, 180, 180\}
+06011 ,\{ 180, 180, 180, 180, 180\}
+06012 ,\{ 50, 50, 50, 50, 50\}
+06013 \}
+06014 ,\{\{ 960, 960, 960, 960, 960\}
+06015 ,\{ -1150, -1390, -1150, -1390, -1150\}
+06016 ,\{ 30, 30, 30, 30, 30\}
+06017 ,\{ 960, 960, 960, 960, 960\}
+06018 ,\{ 30, 30, 30, 30, 30\}
+06019 \}
+06020 ,\{\{ 180, 180, 180, 180, 180\}
+06021 ,\{ 180, 180, 180, 180, 180\}
+06022 ,\{ -260, -260, -260, -260, -260\}
+06023 ,\{ 180, 180, 180, 180, 180\}
+06024 ,\{ -760, -760, -760, -760, -760\}
+06025 \}
+06026 \}
+06027 ,\{\{\{ 1560, 80, 960, 1560, 960\}
+06028 ,\{ 1560, -30, 310, 1560, 310\}
+06029 ,\{ 1430, 80, 180, 1430, 180\}
+06030 ,\{ 1430, -160, 960, 1430, 960\}
+06031 ,\{ 1300, -50, 50, 1300, 50\}
+06032 \}
+06033 ,\{\{ 1560, -30, 310, 1560, 310\}
+06034 ,\{ 1560, -30, 310, 1560, 310\}
+06035 ,\{ 1280, -310, 30, 1280, 30\}
+06036 ,\{ -1090, -1430, -1090, -1090, -1090\}
+06037 ,\{ 1280, -310, 30, 1280, 30\}
+06038 \}
+06039 ,\{\{ 1430, 80, 180, 1430, 180\}
+06040 ,\{ 1430, -160, 180, 1430, 180\}
+06041 ,\{ 1430, 80, 180, 1430, 180\}
+06042 ,\{ 1430, -160, 180, 1430, 180\}
+06043 ,\{ 1300, -50, 50, 1300, 50\}
+06044 \}
+06045 ,\{\{ 1280, -310, 960, 1280, 960\}
+06046 ,\{ -1390, -1730, -1390, -1390, -1390\}
+06047 ,\{ 1280, -310, 30, 1280, 30\}
+06048 ,\{ 960, -630, 960, -290, 960\}
+06049 ,\{ 1280, -310, 30, 1280, 30\}
+06050 \}
+06051 ,\{\{ 1430, -160, 180, 1430, 180\}
+06052 ,\{ 1430, -160, 180, 1430, 180\}
+06053 ,\{ 990, -360, -260, 990, -260\}
+06054 ,\{ 1430, -160, 180, 1430, 180\}
+06055 ,\{ -760, -1100, -760, -760, -760\}
+06056 \}
+06057 \}
+06058 ,\{\{\{ 960, 960, 960, 960, 550\}
+06059 ,\{ 550, 310, 310, 310, 550\}
+06060 ,\{ 180, 180, 180, 180, 180\}
+06061 ,\{ 960, 960, 960, 960, 180\}
+06062 ,\{ 50, 50, 50, 50, 50\}
+06063 \}
+06064 ,\{\{ 550, 310, 310, 310, 550\}
+06065 ,\{ 550, 310, 310, 310, 550\}
+06066 ,\{ 30, 30, 30, 30, 30\}
+06067 ,\{ -850, -1090, -850, -1090, -1090\}
+06068 ,\{ 30, 30, 30, 30, 30\}
+06069 \}
+06070 ,\{\{ 180, 180, 180, 180, 180\}
+06071 ,\{ 180, 180, 180, 180, 180\}
+06072 ,\{ 180, 180, 180, 180, 180\}
+06073 ,\{ 180, 180, 180, 180, 180\}
+06074 ,\{ 50, 50, 50, 50, 50\}
+06075 \}
+06076 ,\{\{ 960, 960, 960, 960, 30\}
+06077 ,\{ -1150, -1390, -1150, -1390, -1390\}
+06078 ,\{ 30, 30, 30, 30, 30\}
+06079 ,\{ 960, 960, 960, 960, -290\}
+06080 ,\{ 30, 30, 30, 30, 30\}
+06081 \}
+06082 ,\{\{ 180, 180, 180, 180, 180\}
+06083 ,\{ 180, 180, 180, 180, 180\}
+06084 ,\{ -260, -260, -260, -260, -260\}
+06085 ,\{ 180, 180, 180, 180, 180\}
+06086 ,\{ -760, -760, -760, -760, -760\}
+06087 \}
+06088 \}
+06089 \}
+06090 ,\{\{\{\{ 1560, 1470, 960, 1560, 960\}
+06091 ,\{ 1560, 820, 310, 1560, 550\}
+06092 ,\{ 1430, 690, 180, 1430, 180\}
+06093 ,\{ 1470, 1470, 960, 1430, 960\}
+06094 ,\{ 1300, 560, 50, 1300, 50\}
+06095 \}
+06096 ,\{\{ 1560, 820, 310, 1560, 550\}
+06097 ,\{ 1560, 820, 310, 1560, 550\}
+06098 ,\{ 1280, 540, 30, 1280, 30\}
+06099 ,\{ -360, -360, -630, -870, -630\}
+06100 ,\{ 1280, 540, 30, 1280, 30\}
+06101 \}
+06102 ,\{\{ 1430, 690, 180, 1430, 180\}
+06103 ,\{ 1430, 690, 180, 1430, 180\}
+06104 ,\{ 1430, 690, 180, 1430, 180\}
+06105 ,\{ 1430, 690, 180, 1430, 180\}
+06106 ,\{ 1300, 560, 50, 1300, 50\}
+06107 \}
+06108 ,\{\{ 1470, 1470, 960, 1280, 960\}
+06109 ,\{ -30, -30, -720, -960, -720\}
+06110 ,\{ 1280, 540, 30, 1280, 30\}
+06111 ,\{ 1470, 1470, 960, 960, 960\}
+06112 ,\{ 1280, 540, 30, 1280, 30\}
+06113 \}
+06114 ,\{\{ 1430, 690, 180, 1430, 180\}
+06115 ,\{ 1430, 690, 180, 1430, 180\}
+06116 ,\{ 1200, 450, -50, 1200, -50\}
+06117 ,\{ 1430, 690, 180, 1430, 180\}
+06118 ,\{ -10, -10, -760, -760, -760\}
+06119 \}
+06120 \}
+06121 ,\{\{\{ 1470, 1470, 960, -90, 960\}
+06122 ,\{ 820, 820, 310, -200, 310\}
+06123 ,\{ 690, 690, 180, -90, 180\}
+06124 ,\{ 1470, 1470, 960, -330, 960\}
+06125 ,\{ 560, 560, 50, -220, 50\}
+06126 \}
+06127 ,\{\{ 820, 820, 310, -200, 310\}
+06128 ,\{ 820, 820, 310, -200, 310\}
+06129 ,\{ 540, 540, 30, -480, 30\}
+06130 ,\{ -360, -360, -870, -1380, -870\}
+06131 ,\{ 540, 540, 30, -480, 30\}
+06132 \}
+06133 ,\{\{ 690, 690, 180, -90, 180\}
+06134 ,\{ 690, 690, 180, -330, 180\}
+06135 ,\{ 690, 690, 180, -90, 180\}
+06136 ,\{ 690, 690, 180, -330, 180\}
+06137 ,\{ 560, 560, 50, -220, 50\}
+06138 \}
+06139 ,\{\{ 1470, 1470, 960, -480, 960\}
+06140 ,\{ -30, -30, -960, -1470, -960\}
+06141 ,\{ 540, 540, 30, -480, 30\}
+06142 ,\{ 1470, 1470, 960, -800, 960\}
+06143 ,\{ 540, 540, 30, -480, 30\}
+06144 \}
+06145 ,\{\{ 690, 690, 180, -320, 180\}
+06146 ,\{ 690, 690, 180, -330, 180\}
+06147 ,\{ 450, 450, -50, -320, -50\}
+06148 ,\{ 690, 690, 180, -330, 180\}
+06149 ,\{ -10, -10, -760, -1270, -760\}
+06150 \}
+06151 \}
+06152 ,\{\{\{ 960, 960, 960, 960, 960\}
+06153 ,\{ 310, 310, 310, 310, 310\}
+06154 ,\{ 180, 180, 180, 180, 180\}
+06155 ,\{ 960, 960, 960, 960, 960\}
+06156 ,\{ 50, 50, 50, 50, 50\}
+06157 \}
+06158 ,\{\{ 310, 310, 310, 310, 310\}
+06159 ,\{ 310, 310, 310, 310, 310\}
+06160 ,\{ 30, 30, 30, 30, 30\}
+06161 ,\{ -630, -870, -630, -870, -630\}
+06162 ,\{ 30, 30, 30, 30, 30\}
+06163 \}
+06164 ,\{\{ 180, 180, 180, 180, 180\}
+06165 ,\{ 180, 180, 180, 180, 180\}
+06166 ,\{ 180, 180, 180, 180, 180\}
+06167 ,\{ 180, 180, 180, 180, 180\}
+06168 ,\{ 50, 50, 50, 50, 50\}
+06169 \}
+06170 ,\{\{ 960, 960, 960, 960, 960\}
+06171 ,\{ -720, -960, -720, -960, -720\}
+06172 ,\{ 30, 30, 30, 30, 30\}
+06173 ,\{ 960, 960, 960, 960, 960\}
+06174 ,\{ 30, 30, 30, 30, 30\}
+06175 \}
+06176 ,\{\{ 180, 180, 180, 180, 180\}
+06177 ,\{ 180, 180, 180, 180, 180\}
+06178 ,\{ -50, -50, -50, -50, -50\}
+06179 ,\{ 180, 180, 180, 180, 180\}
+06180 ,\{ -760, -760, -760, -760, -760\}
+06181 \}
+06182 \}
+06183 ,\{\{\{ 1560, 80, 960, 1560, 960\}
+06184 ,\{ 1560, -30, 310, 1560, 310\}
+06185 ,\{ 1430, 80, 180, 1430, 180\}
+06186 ,\{ 1430, -160, 960, 1430, 960\}
+06187 ,\{ 1300, -50, 50, 1300, 50\}
+06188 \}
+06189 ,\{\{ 1560, -30, 310, 1560, 310\}
+06190 ,\{ 1560, -30, 310, 1560, 310\}
+06191 ,\{ 1280, -310, 30, 1280, 30\}
+06192 ,\{ -870, -1210, -870, -870, -870\}
+06193 ,\{ 1280, -310, 30, 1280, 30\}
+06194 \}
+06195 ,\{\{ 1430, 80, 180, 1430, 180\}
+06196 ,\{ 1430, -160, 180, 1430, 180\}
+06197 ,\{ 1430, 80, 180, 1430, 180\}
+06198 ,\{ 1430, -160, 180, 1430, 180\}
+06199 ,\{ 1300, -50, 50, 1300, 50\}
+06200 \}
+06201 ,\{\{ 1280, -310, 960, 1280, 960\}
+06202 ,\{ -960, -1300, -960, -960, -960\}
+06203 ,\{ 1280, -310, 30, 1280, 30\}
+06204 ,\{ 960, -630, 960, -290, 960\}
+06205 ,\{ 1280, -310, 30, 1280, 30\}
+06206 \}
+06207 ,\{\{ 1430, -150, 180, 1430, 180\}
+06208 ,\{ 1430, -160, 180, 1430, 180\}
+06209 ,\{ 1200, -150, -50, 1200, -50\}
+06210 ,\{ 1430, -160, 180, 1430, 180\}
+06211 ,\{ -760, -1100, -760, -760, -760\}
+06212 \}
+06213 \}
+06214 ,\{\{\{ 960, 960, 960, 960, 550\}
+06215 ,\{ 550, 310, 310, 310, 550\}
+06216 ,\{ 180, 180, 180, 180, 180\}
+06217 ,\{ 960, 960, 960, 960, 180\}
+06218 ,\{ 50, 50, 50, 50, 50\}
+06219 \}
+06220 ,\{\{ 550, 310, 310, 310, 550\}
+06221 ,\{ 550, 310, 310, 310, 550\}
+06222 ,\{ 30, 30, 30, 30, 30\}
+06223 ,\{ -630, -870, -630, -870, -870\}
+06224 ,\{ 30, 30, 30, 30, 30\}
+06225 \}
+06226 ,\{\{ 180, 180, 180, 180, 180\}
+06227 ,\{ 180, 180, 180, 180, 180\}
+06228 ,\{ 180, 180, 180, 180, 180\}
+06229 ,\{ 180, 180, 180, 180, 180\}
+06230 ,\{ 50, 50, 50, 50, 50\}
+06231 \}
+06232 ,\{\{ 960, 960, 960, 960, 30\}
+06233 ,\{ -720, -960, -720, -960, -960\}
+06234 ,\{ 30, 30, 30, 30, 30\}
+06235 ,\{ 960, 960, 960, 960, -290\}
+06236 ,\{ 30, 30, 30, 30, 30\}
+06237 \}
+06238 ,\{\{ 180, 180, 180, 180, 180\}
+06239 ,\{ 180, 180, 180, 180, 180\}
+06240 ,\{ -50, -50, -50, -50, -50\}
+06241 ,\{ 180, 180, 180, 180, 180\}
+06242 ,\{ -760, -760, -760, -760, -760\}
+06243 \}
+06244 \}
+06245 \}
+06246 \}
+06247 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06248 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06249 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06250 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06251 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06252 \}
+06253 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06254 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06255 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06256 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06257 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06258 \}
+06259 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06260 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06261 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06262 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06263 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06264 \}
+06265 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06266 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06267 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06268 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06269 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06270 \}
+06271 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06272 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06273 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06274 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06275 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06276 \}
+06277 \}
+06278 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06279 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06280 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06281 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06282 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06283 \}
+06284 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06285 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06286 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06287 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06288 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06289 \}
+06290 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06291 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06292 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06293 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06294 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06295 \}
+06296 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06297 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06298 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06299 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06300 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06301 \}
+06302 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06303 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06304 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06305 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06306 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06307 \}
+06308 \}
+06309 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06310 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06311 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06312 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06313 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06314 \}
+06315 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06316 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06317 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06318 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06319 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06320 \}
+06321 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06322 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06323 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06324 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06325 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06326 \}
+06327 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06328 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06329 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06330 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06331 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06332 \}
+06333 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06334 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06335 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06336 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06337 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06338 \}
+06339 \}
+06340 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06341 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06342 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06343 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06344 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06345 \}
+06346 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06347 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06348 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06349 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06350 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06351 \}
+06352 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06353 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06354 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06355 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06356 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06357 \}
+06358 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06359 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06360 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06361 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06362 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06363 \}
+06364 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06365 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06366 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06367 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06368 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06369 \}
+06370 \}
+06371 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06372 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06373 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06374 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06375 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06376 \}
+06377 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06378 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06379 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06380 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06381 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06382 \}
+06383 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06384 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06385 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06386 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06387 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06388 \}
+06389 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06390 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06391 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06392 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06393 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06394 \}
+06395 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06396 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06397 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06398 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06399 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+06400 \}
+06401 \}
+06402 \}
+06403 ,\{\{\{\{ 1170, 780, 490, 1170, 490\}
+06404 ,\{ 1120, 580, 290, 1120, 290\}
+06405 ,\{ 1170, 640, 340, 1170, 340\}
+06406 ,\{ 1120, 780, 490, 1120, 490\}
+06407 ,\{ 1060, 530, 230, 1060, 230\}
+06408 \}
+06409 ,\{\{ 970, 440, 170, 970, 170\}
+06410 ,\{ 970, 440, 140, 970, 140\}
+06411 ,\{ 660, 130, -160, 660, -160\}
+06412 ,\{ 220, 220, 170, -80, 170\}
+06413 ,\{ 660, 130, -160, 660, -160\}
+06414 \}
+06415 ,\{\{ 1120, 580, 290, 1120, 290\}
+06416 ,\{ 1120, 580, 290, 1120, 290\}
+06417 ,\{ 1110, 580, 280, 1110, 280\}
+06418 ,\{ 1120, 580, 290, 1120, 290\}
+06419 ,\{ 1060, 530, 230, 1060, 230\}
+06420 \}
+06421 ,\{\{ 780, 780, 490, 660, 490\}
+06422 ,\{ -60, -60, -120, -370, -120\}
+06423 ,\{ 660, 130, -160, 660, -160\}
+06424 ,\{ 780, 780, 490, 470, 490\}
+06425 ,\{ 660, 130, -160, 660, -160\}
+06426 \}
+06427 ,\{\{ 1170, 640, 340, 1170, 340\}
+06428 ,\{ 1120, 580, 290, 1120, 290\}
+06429 ,\{ 1170, 640, 340, 1170, 340\}
+06430 ,\{ 1120, 580, 290, 1120, 290\}
+06431 ,\{ 40, 40, -500, -510, -500\}
+06432 \}
+06433 \}
+06434 ,\{\{\{ 780, 780, 490, -330, 490\}
+06435 ,\{ 580, 580, 290, -620, 290\}
+06436 ,\{ 640, 640, 340, -330, 340\}
+06437 ,\{ 780, 780, 490, -620, 490\}
+06438 ,\{ 530, 530, 230, -440, 230\}
+06439 \}
+06440 ,\{\{ 440, 440, 140, -770, 140\}
+06441 ,\{ 440, 440, 140, -770, 140\}
+06442 ,\{ 130, 130, -160, -1080, -160\}
+06443 ,\{ 220, 220, -70, -980, -70\}
+06444 ,\{ 130, 130, -160, -1080, -160\}
+06445 \}
+06446 ,\{\{ 580, 580, 290, -390, 290\}
+06447 ,\{ 580, 580, 290, -620, 290\}
+06448 ,\{ 580, 580, 280, -390, 280\}
+06449 ,\{ 580, 580, 290, -620, 290\}
+06450 ,\{ 530, 530, 230, -440, 230\}
+06451 \}
+06452 ,\{\{ 780, 780, 490, -1080, 490\}
+06453 ,\{ -60, -60, -350, -1270, -350\}
+06454 ,\{ 130, 130, -160, -1080, -160\}
+06455 ,\{ 780, 780, 490, -1680, 490\}
+06456 ,\{ 130, 130, -160, -1080, -160\}
+06457 \}
+06458 ,\{\{ 640, 640, 340, -330, 340\}
+06459 ,\{ 580, 580, 290, -620, 290\}
+06460 ,\{ 640, 640, 340, -330, 340\}
+06461 ,\{ 580, 580, 290, -620, 290\}
+06462 ,\{ 40, 40, -500, -1410, -500\}
+06463 \}
+06464 \}
+06465 ,\{\{\{ 480, 470, 480, 470, 480\}
+06466 ,\{ 280, 270, 280, 270, 280\}
+06467 ,\{ 340, 330, 340, 330, 340\}
+06468 ,\{ 480, 470, 480, 470, 480\}
+06469 ,\{ 230, 220, 230, 220, 230\}
+06470 \}
+06471 ,\{\{ 170, 130, 170, 130, 170\}
+06472 ,\{ 140, 130, 140, 130, 140\}
+06473 ,\{ -170, -180, -170, -180, -170\}
+06474 ,\{ 170, -80, 170, -80, 170\}
+06475 ,\{ -170, -180, -170, -180, -170\}
+06476 \}
+06477 ,\{\{ 280, 270, 280, 270, 280\}
+06478 ,\{ 280, 270, 280, 270, 280\}
+06479 ,\{ 280, 270, 280, 270, 280\}
+06480 ,\{ 280, 270, 280, 270, 280\}
+06481 ,\{ 230, 220, 230, 220, 230\}
+06482 \}
+06483 ,\{\{ 480, 470, 480, 470, 480\}
+06484 ,\{ -120, -370, -120, -370, -120\}
+06485 ,\{ -170, -180, -170, -180, -170\}
+06486 ,\{ 480, 470, 480, 470, 480\}
+06487 ,\{ -170, -180, -170, -180, -170\}
+06488 \}
+06489 ,\{\{ 340, 330, 340, 330, 340\}
+06490 ,\{ 280, 270, 280, 270, 280\}
+06491 ,\{ 340, 330, 340, 330, 340\}
+06492 ,\{ 280, 270, 280, 270, 280\}
+06493 ,\{ -500, -510, -500, -510, -500\}
+06494 \}
+06495 \}
+06496 ,\{\{\{ 1170, -510, 490, 1170, 490\}
+06497 ,\{ 1120, -800, 290, 1120, 290\}
+06498 ,\{ 1170, -510, 340, 1170, 340\}
+06499 ,\{ 1120, -800, 490, 1120, 490\}
+06500 ,\{ 1060, -620, 230, 1060, 230\}
+06501 \}
+06502 ,\{\{ 970, -950, 140, 970, 140\}
+06503 ,\{ 970, -950, 140, 970, 140\}
+06504 ,\{ 660, -1260, -160, 660, -160\}
+06505 ,\{ -70, -1160, -70, -490, -70\}
+06506 ,\{ 660, -1260, -160, 660, -160\}
+06507 \}
+06508 ,\{\{ 1120, -570, 290, 1120, 290\}
+06509 ,\{ 1120, -800, 290, 1120, 290\}
+06510 ,\{ 1110, -570, 280, 1110, 280\}
+06511 ,\{ 1120, -800, 290, 1120, 290\}
+06512 ,\{ 1060, -620, 230, 1060, 230\}
+06513 \}
+06514 ,\{\{ 660, -1260, 490, 660, 490\}
+06515 ,\{ -350, -1450, -350, -780, -350\}
+06516 ,\{ 660, -1260, -160, 660, -160\}
+06517 ,\{ 490, -1860, 490, -1190, 490\}
+06518 ,\{ 660, -1260, -160, 660, -160\}
+06519 \}
+06520 ,\{\{ 1170, -510, 340, 1170, 340\}
+06521 ,\{ 1120, -800, 290, 1120, 290\}
+06522 ,\{ 1170, -510, 340, 1170, 340\}
+06523 ,\{ 1120, -800, 290, 1120, 290\}
+06524 ,\{ -500, -1590, -500, -920, -500\}
+06525 \}
+06526 \}
+06527 ,\{\{\{ 480, 470, 480, 470, -600\}
+06528 ,\{ 280, 270, 280, 270, -600\}
+06529 ,\{ 340, 330, 340, 330, -640\}
+06530 ,\{ 480, 470, 480, 470, -690\}
+06531 ,\{ 230, 220, 230, 220, -750\}
+06532 \}
+06533 ,\{\{ 170, 130, 170, 130, -600\}
+06534 ,\{ 140, 130, 140, 130, -600\}
+06535 ,\{ -170, -180, -170, -180, -1150\}
+06536 ,\{ 170, -80, 170, -80, -1050\}
+06537 ,\{ -170, -180, -170, -180, -1150\}
+06538 \}
+06539 ,\{\{ 280, 270, 280, 270, -690\}
+06540 ,\{ 280, 270, 280, 270, -690\}
+06541 ,\{ 280, 270, 280, 270, -700\}
+06542 ,\{ 280, 270, 280, 270, -690\}
+06543 ,\{ 230, 220, 230, 220, -750\}
+06544 \}
+06545 ,\{\{ 480, 470, 480, 470, -1150\}
+06546 ,\{ -120, -370, -120, -370, -1340\}
+06547 ,\{ -170, -180, -170, -180, -1150\}
+06548 ,\{ 480, 470, 480, 470, -1750\}
+06549 ,\{ -170, -180, -170, -180, -1150\}
+06550 \}
+06551 ,\{\{ 340, 330, 340, 330, -640\}
+06552 ,\{ 280, 270, 280, 270, -690\}
+06553 ,\{ 340, 330, 340, 330, -640\}
+06554 ,\{ 280, 270, 280, 270, -690\}
+06555 ,\{ -500, -510, -500, -510, -1480\}
+06556 \}
+06557 \}
+06558 \}
+06559 ,\{\{\{\{ 1140, 780, 490, 1140, 490\}
+06560 ,\{ 1140, 600, 310, 1140, 310\}
+06561 ,\{ 690, 150, -140, 690, -140\}
+06562 ,\{ 780, 780, 490, 770, 490\}
+06563 ,\{ 690, 190, -140, 690, -140\}
+06564 \}
+06565 ,\{\{ 1140, 600, 310, 1140, 310\}
+06566 ,\{ 1140, 600, 310, 1140, 310\}
+06567 ,\{ 690, 150, -140, 690, -140\}
+06568 ,\{ -580, -580, -640, -890, -640\}
+06569 ,\{ 690, 150, -140, 690, -140\}
+06570 \}
+06571 ,\{\{ 770, 240, -50, 770, -50\}
+06572 ,\{ 770, 240, -50, 770, -50\}
+06573 ,\{ 470, -60, -360, 470, -360\}
+06574 ,\{ 770, 240, -50, 770, -50\}
+06575 ,\{ 470, -60, -360, 470, -360\}
+06576 \}
+06577 ,\{\{ 780, 780, 490, 690, 490\}
+06578 ,\{ -110, -110, -170, -420, -170\}
+06579 ,\{ 690, 150, -140, 690, -140\}
+06580 ,\{ 780, 780, 490, 470, 490\}
+06581 ,\{ 690, 150, -140, 690, -140\}
+06582 \}
+06583 ,\{\{ 770, 240, -50, 770, -50\}
+06584 ,\{ 770, 240, -50, 770, -50\}
+06585 ,\{ 160, -370, -670, 160, -670\}
+06586 ,\{ 770, 240, -50, 770, -50\}
+06587 ,\{ 190, 190, -340, -360, -340\}
+06588 \}
+06589 \}
+06590 ,\{\{\{ 780, 780, 490, -600, 490\}
+06591 ,\{ 600, 600, 310, -600, 310\}
+06592 ,\{ 150, 150, -140, -1030, -140\}
+06593 ,\{ 780, 780, 490, -970, 490\}
+06594 ,\{ 190, 190, -140, -1030, -140\}
+06595 \}
+06596 ,\{\{ 600, 600, 310, -600, 310\}
+06597 ,\{ 600, 600, 310, -600, 310\}
+06598 ,\{ 150, 150, -140, -1050, -140\}
+06599 ,\{ -580, -580, -880, -1790, -880\}
+06600 ,\{ 150, 150, -140, -1050, -140\}
+06601 \}
+06602 ,\{\{ 240, 240, -50, -970, -50\}
+06603 ,\{ 240, 240, -50, -970, -50\}
+06604 ,\{ -60, -60, -360, -1030, -360\}
+06605 ,\{ 240, 240, -50, -970, -50\}
+06606 ,\{ -60, -60, -360, -1030, -360\}
+06607 \}
+06608 ,\{\{ 780, 780, 490, -1050, 490\}
+06609 ,\{ -110, -110, -400, -1320, -400\}
+06610 ,\{ 150, 150, -140, -1050, -140\}
+06611 ,\{ 780, 780, 490, -1680, 490\}
+06612 ,\{ 150, 150, -140, -1050, -140\}
+06613 \}
+06614 ,\{\{ 240, 240, -50, -970, -50\}
+06615 ,\{ 240, 240, -50, -970, -50\}
+06616 ,\{ -370, -370, -670, -1340, -670\}
+06617 ,\{ 240, 240, -50, -970, -50\}
+06618 ,\{ 190, 190, -340, -1260, -340\}
+06619 \}
+06620 \}
+06621 ,\{\{\{ 480, 470, 480, 470, 480\}
+06622 ,\{ 300, 290, 300, 290, 300\}
+06623 ,\{ -140, -150, -140, -150, -140\}
+06624 ,\{ 480, 470, 480, 470, 480\}
+06625 ,\{ -140, -150, -140, -150, -140\}
+06626 \}
+06627 ,\{\{ 300, 290, 300, 290, 300\}
+06628 ,\{ 300, 290, 300, 290, 300\}
+06629 ,\{ -140, -150, -140, -150, -140\}
+06630 ,\{ -640, -890, -640, -890, -640\}
+06631 ,\{ -140, -150, -140, -150, -140\}
+06632 \}
+06633 ,\{\{ -60, -70, -60, -70, -60\}
+06634 ,\{ -60, -70, -60, -70, -60\}
+06635 ,\{ -360, -370, -360, -370, -360\}
+06636 ,\{ -60, -70, -60, -70, -60\}
+06637 ,\{ -360, -370, -360, -370, -360\}
+06638 \}
+06639 ,\{\{ 480, 470, 480, 470, 480\}
+06640 ,\{ -170, -420, -170, -420, -170\}
+06641 ,\{ -140, -150, -140, -150, -140\}
+06642 ,\{ 480, 470, 480, 470, 480\}
+06643 ,\{ -140, -150, -140, -150, -140\}
+06644 \}
+06645 ,\{\{ -60, -70, -60, -70, -60\}
+06646 ,\{ -60, -70, -60, -70, -60\}
+06647 ,\{ -670, -680, -670, -680, -670\}
+06648 ,\{ -60, -70, -60, -70, -60\}
+06649 ,\{ -350, -360, -350, -360, -350\}
+06650 \}
+06651 \}
+06652 ,\{\{\{ 1140, -780, 490, 1140, 490\}
+06653 ,\{ 1140, -780, 310, 1140, 310\}
+06654 ,\{ 690, -1210, -140, 690, -140\}
+06655 ,\{ 770, -1150, 490, 770, 490\}
+06656 ,\{ 690, -1210, -140, 690, -140\}
+06657 \}
+06658 ,\{\{ 1140, -780, 310, 1140, 310\}
+06659 ,\{ 1140, -780, 310, 1140, 310\}
+06660 ,\{ 690, -1230, -140, 690, -140\}
+06661 ,\{ -880, -1970, -880, -1300, -880\}
+06662 ,\{ 690, -1230, -140, 690, -140\}
+06663 \}
+06664 ,\{\{ 770, -1150, -50, 770, -50\}
+06665 ,\{ 770, -1150, -50, 770, -50\}
+06666 ,\{ 470, -1210, -360, 470, -360\}
+06667 ,\{ 770, -1150, -50, 770, -50\}
+06668 ,\{ 470, -1210, -360, 470, -360\}
+06669 \}
+06670 ,\{\{ 690, -1230, 490, 690, 490\}
+06671 ,\{ -400, -1500, -400, -830, -400\}
+06672 ,\{ 690, -1230, -140, 690, -140\}
+06673 ,\{ 490, -1860, 490, -1190, 490\}
+06674 ,\{ 690, -1230, -140, 690, -140\}
+06675 \}
+06676 ,\{\{ 770, -1150, -50, 770, -50\}
+06677 ,\{ 770, -1150, -50, 770, -50\}
+06678 ,\{ 160, -1520, -670, 160, -670\}
+06679 ,\{ 770, -1150, -50, 770, -50\}
+06680 ,\{ -340, -1440, -340, -770, -340\}
+06681 \}
+06682 \}
+06683 ,\{\{\{ 480, 470, 480, 470, -430\}
+06684 ,\{ 300, 290, 300, 290, -430\}
+06685 ,\{ -140, -150, -140, -150, -1120\}
+06686 ,\{ 480, 470, 480, 470, -1040\}
+06687 ,\{ -140, -150, -140, -150, -1120\}
+06688 \}
+06689 ,\{\{ 300, 290, 300, 290, -430\}
+06690 ,\{ 300, 290, 300, 290, -430\}
+06691 ,\{ -140, -150, -140, -150, -1120\}
+06692 ,\{ -640, -890, -640, -890, -1860\}
+06693 ,\{ -140, -150, -140, -150, -1120\}
+06694 \}
+06695 ,\{\{ -60, -70, -60, -70, -1040\}
+06696 ,\{ -60, -70, -60, -70, -1040\}
+06697 ,\{ -360, -370, -360, -370, -1340\}
+06698 ,\{ -60, -70, -60, -70, -1040\}
+06699 ,\{ -360, -370, -360, -370, -1340\}
+06700 \}
+06701 ,\{\{ 480, 470, 480, 470, -1120\}
+06702 ,\{ -170, -420, -170, -420, -1390\}
+06703 ,\{ -140, -150, -140, -150, -1120\}
+06704 ,\{ 480, 470, 480, 470, -1750\}
+06705 ,\{ -140, -150, -140, -150, -1120\}
+06706 \}
+06707 ,\{\{ -60, -70, -60, -70, -1040\}
+06708 ,\{ -60, -70, -60, -70, -1040\}
+06709 ,\{ -670, -680, -670, -680, -1650\}
+06710 ,\{ -60, -70, -60, -70, -1040\}
+06711 ,\{ -350, -360, -350, -360, -1330\}
+06712 \}
+06713 \}
+06714 \}
+06715 ,\{\{\{\{ 940, 940, 650, 630, 650\}
+06716 ,\{ 220, -130, -190, 220, -190\}
+06717 ,\{ 220, -310, -600, 220, -600\}
+06718 ,\{ 940, 940, 650, 630, 650\}
+06719 ,\{ 220, -70, -600, 220, -600\}
+06720 \}
+06721 ,\{\{ 220, -310, -380, 220, -380\}
+06722 ,\{ 40, -490, -780, 40, -780\}
+06723 ,\{ 220, -310, -600, 220, -600\}
+06724 ,\{ -320, -320, -380, -630, -380\}
+06725 ,\{ 220, -310, -600, 220, -600\}
+06726 \}
+06727 ,\{\{ 220, -310, -600, 220, -600\}
+06728 ,\{ 220, -310, -600, 220, -600\}
+06729 ,\{ 220, -310, -600, 220, -600\}
+06730 ,\{ 220, -310, -600, 220, -600\}
+06731 ,\{ 220, -310, -600, 220, -600\}
+06732 \}
+06733 ,\{\{ 940, 940, 650, 630, 650\}
+06734 ,\{ -130, -130, -190, -440, -190\}
+06735 ,\{ 220, -310, -600, 220, -600\}
+06736 ,\{ 940, 940, 650, 630, 650\}
+06737 ,\{ 220, -310, -600, 220, -600\}
+06738 \}
+06739 ,\{\{ 220, -70, -600, 220, -600\}
+06740 ,\{ 220, -310, -600, 220, -600\}
+06741 ,\{ 220, -310, -600, 220, -600\}
+06742 ,\{ 220, -310, -600, 220, -600\}
+06743 ,\{ -70, -70, -600, -620, -600\}
+06744 \}
+06745 \}
+06746 ,\{\{\{ 940, 940, 650, -1280, 650\}
+06747 ,\{ -130, -130, -430, -1340, -430\}
+06748 ,\{ -310, -310, -600, -1280, -600\}
+06749 ,\{ 940, 940, 650, -1520, 650\}
+06750 ,\{ -70, -70, -600, -1280, -600\}
+06751 \}
+06752 ,\{\{ -310, -310, -600, -1520, -600\}
+06753 ,\{ -490, -490, -780, -1700, -780\}
+06754 ,\{ -310, -310, -600, -1520, -600\}
+06755 ,\{ -320, -320, -620, -1530, -620\}
+06756 ,\{ -310, -310, -600, -1520, -600\}
+06757 \}
+06758 ,\{\{ -310, -310, -600, -1280, -600\}
+06759 ,\{ -310, -310, -600, -1520, -600\}
+06760 ,\{ -310, -310, -600, -1280, -600\}
+06761 ,\{ -310, -310, -600, -1520, -600\}
+06762 ,\{ -310, -310, -600, -1280, -600\}
+06763 \}
+06764 ,\{\{ 940, 940, 650, -1340, 650\}
+06765 ,\{ -130, -130, -430, -1340, -430\}
+06766 ,\{ -310, -310, -600, -1520, -600\}
+06767 ,\{ 940, 940, 650, -1520, 650\}
+06768 ,\{ -310, -310, -600, -1520, -600\}
+06769 \}
+06770 ,\{\{ -70, -70, -600, -1280, -600\}
+06771 ,\{ -310, -310, -600, -1520, -600\}
+06772 ,\{ -310, -310, -600, -1280, -600\}
+06773 ,\{ -310, -310, -600, -1520, -600\}
+06774 ,\{ -70, -70, -600, -1520, -600\}
+06775 \}
+06776 \}
+06777 ,\{\{\{ 640, 630, 640, 630, 640\}
+06778 ,\{ -190, -440, -190, -440, -190\}
+06779 ,\{ -610, -620, -610, -620, -610\}
+06780 ,\{ 640, 630, 640, 630, 640\}
+06781 ,\{ -610, -620, -610, -620, -610\}
+06782 \}
+06783 ,\{\{ -380, -620, -380, -620, -380\}
+06784 ,\{ -790, -800, -790, -800, -790\}
+06785 ,\{ -610, -620, -610, -620, -610\}
+06786 ,\{ -380, -630, -380, -630, -380\}
+06787 ,\{ -610, -620, -610, -620, -610\}
+06788 \}
+06789 ,\{\{ -610, -620, -610, -620, -610\}
+06790 ,\{ -610, -620, -610, -620, -610\}
+06791 ,\{ -610, -620, -610, -620, -610\}
+06792 ,\{ -610, -620, -610, -620, -610\}
+06793 ,\{ -610, -620, -610, -620, -610\}
+06794 \}
+06795 ,\{\{ 640, 630, 640, 630, 640\}
+06796 ,\{ -190, -440, -190, -440, -190\}
+06797 ,\{ -610, -620, -610, -620, -610\}
+06798 ,\{ 640, 630, 640, 630, 640\}
+06799 ,\{ -610, -620, -610, -620, -610\}
+06800 \}
+06801 ,\{\{ -610, -620, -610, -620, -610\}
+06802 ,\{ -610, -620, -610, -620, -610\}
+06803 ,\{ -610, -620, -610, -620, -610\}
+06804 ,\{ -610, -620, -610, -620, -610\}
+06805 ,\{ -610, -620, -610, -620, -610\}
+06806 \}
+06807 \}
+06808 ,\{\{\{ 650, -1460, 650, 220, 650\}
+06809 ,\{ 220, -1520, -430, 220, -430\}
+06810 ,\{ 220, -1460, -600, 220, -600\}
+06811 ,\{ 650, -1700, 650, 220, 650\}
+06812 ,\{ 220, -1460, -600, 220, -600\}
+06813 \}
+06814 ,\{\{ 220, -1700, -600, 220, -600\}
+06815 ,\{ 40, -1880, -780, 40, -780\}
+06816 ,\{ 220, -1700, -600, 220, -600\}
+06817 ,\{ -620, -1710, -620, -1040, -620\}
+06818 ,\{ 220, -1700, -600, 220, -600\}
+06819 \}
+06820 ,\{\{ 220, -1460, -600, 220, -600\}
+06821 ,\{ 220, -1700, -600, 220, -600\}
+06822 ,\{ 220, -1460, -600, 220, -600\}
+06823 ,\{ 220, -1700, -600, 220, -600\}
+06824 ,\{ 220, -1460, -600, 220, -600\}
+06825 \}
+06826 ,\{\{ 650, -1520, 650, 220, 650\}
+06827 ,\{ -430, -1520, -430, -850, -430\}
+06828 ,\{ 220, -1700, -600, 220, -600\}
+06829 ,\{ 650, -1700, 650, -1030, 650\}
+06830 ,\{ 220, -1700, -600, 220, -600\}
+06831 \}
+06832 ,\{\{ 220, -1460, -600, 220, -600\}
+06833 ,\{ 220, -1700, -600, 220, -600\}
+06834 ,\{ 220, -1460, -600, 220, -600\}
+06835 ,\{ 220, -1700, -600, 220, -600\}
+06836 ,\{ -600, -1700, -600, -1030, -600\}
+06837 \}
+06838 \}
+06839 ,\{\{\{ 640, 630, 640, 630, -1410\}
+06840 ,\{ -190, -440, -190, -440, -1410\}
+06841 ,\{ -610, -620, -610, -620, -1590\}
+06842 ,\{ 640, 630, 640, 630, -1590\}
+06843 ,\{ -610, -620, -610, -620, -1590\}
+06844 \}
+06845 ,\{\{ -380, -620, -380, -620, -1530\}
+06846 ,\{ -790, -800, -790, -800, -1530\}
+06847 ,\{ -610, -620, -610, -620, -1590\}
+06848 ,\{ -380, -630, -380, -630, -1600\}
+06849 ,\{ -610, -620, -610, -620, -1590\}
+06850 \}
+06851 ,\{\{ -610, -620, -610, -620, -1590\}
+06852 ,\{ -610, -620, -610, -620, -1590\}
+06853 ,\{ -610, -620, -610, -620, -1590\}
+06854 ,\{ -610, -620, -610, -620, -1590\}
+06855 ,\{ -610, -620, -610, -620, -1590\}
+06856 \}
+06857 ,\{\{ 640, 630, 640, 630, -1410\}
+06858 ,\{ -190, -440, -190, -440, -1410\}
+06859 ,\{ -610, -620, -610, -620, -1590\}
+06860 ,\{ 640, 630, 640, 630, -1590\}
+06861 ,\{ -610, -620, -610, -620, -1590\}
+06862 \}
+06863 ,\{\{ -610, -620, -610, -620, -1590\}
+06864 ,\{ -610, -620, -610, -620, -1590\}
+06865 ,\{ -610, -620, -610, -620, -1590\}
+06866 ,\{ -610, -620, -610, -620, -1590\}
+06867 ,\{ -610, -620, -610, -620, -1590\}
+06868 \}
+06869 \}
+06870 \}
+06871 ,\{\{\{\{ 1490, 1490, 1200, 1280, 1200\}
+06872 ,\{ 1280, 750, 460, 1280, 460\}
+06873 ,\{ 780, 240, -50, 780, -50\}
+06874 ,\{ 1490, 1490, 1200, 1190, 1200\}
+06875 ,\{ 780, 480, -50, 780, -50\}
+06876 \}
+06877 ,\{\{ 1280, 750, 460, 1280, 460\}
+06878 ,\{ 1280, 750, 460, 1280, 460\}
+06879 ,\{ 780, 240, -50, 780, -50\}
+06880 ,\{ -90, -90, -150, -400, -150\}
+06881 ,\{ 780, 240, -50, 780, -50\}
+06882 \}
+06883 ,\{\{ 780, 240, -50, 780, -50\}
+06884 ,\{ 780, 240, -50, 780, -50\}
+06885 ,\{ 780, 240, -50, 780, -50\}
+06886 ,\{ 780, 240, -50, 780, -50\}
+06887 ,\{ 780, 240, -50, 780, -50\}
+06888 \}
+06889 ,\{\{ 1490, 1490, 1200, 1190, 1200\}
+06890 ,\{ -260, -260, -320, -570, -320\}
+06891 ,\{ 780, 240, -50, 780, -50\}
+06892 ,\{ 1490, 1490, 1200, 1190, 1200\}
+06893 ,\{ 780, 240, -50, 780, -50\}
+06894 \}
+06895 ,\{\{ 780, 480, -50, 780, -50\}
+06896 ,\{ 780, 240, -50, 780, -50\}
+06897 ,\{ 780, 240, -50, 780, -50\}
+06898 ,\{ 780, 240, -50, 780, -50\}
+06899 ,\{ 480, 480, -50, -60, -50\}
+06900 \}
+06901 \}
+06902 ,\{\{\{ 1490, 1490, 1200, -450, 1200\}
+06903 ,\{ 750, 750, 460, -450, 460\}
+06904 ,\{ 240, 240, -50, -720, -50\}
+06905 ,\{ 1490, 1490, 1200, -960, 1200\}
+06906 ,\{ 480, 480, -50, -720, -50\}
+06907 \}
+06908 ,\{\{ 750, 750, 460, -450, 460\}
+06909 ,\{ 750, 750, 460, -450, 460\}
+06910 ,\{ 240, 240, -50, -960, -50\}
+06911 ,\{ -90, -90, -390, -1300, -390\}
+06912 ,\{ 240, 240, -50, -960, -50\}
+06913 \}
+06914 ,\{\{ 240, 240, -50, -720, -50\}
+06915 ,\{ 240, 240, -50, -960, -50\}
+06916 ,\{ 240, 240, -50, -720, -50\}
+06917 ,\{ 240, 240, -50, -960, -50\}
+06918 ,\{ 240, 240, -50, -720, -50\}
+06919 \}
+06920 ,\{\{ 1490, 1490, 1200, -960, 1200\}
+06921 ,\{ -260, -260, -560, -1470, -560\}
+06922 ,\{ 240, 240, -50, -960, -50\}
+06923 ,\{ 1490, 1490, 1200, -960, 1200\}
+06924 ,\{ 240, 240, -50, -960, -50\}
+06925 \}
+06926 ,\{\{ 480, 480, -50, -720, -50\}
+06927 ,\{ 240, 240, -50, -960, -50\}
+06928 ,\{ 240, 240, -50, -720, -50\}
+06929 ,\{ 240, 240, -50, -960, -50\}
+06930 ,\{ 480, 480, -50, -960, -50\}
+06931 \}
+06932 \}
+06933 ,\{\{\{ 1200, 1190, 1200, 1190, 1200\}
+06934 ,\{ 450, 440, 450, 440, 450\}
+06935 ,\{ -50, -60, -50, -60, -50\}
+06936 ,\{ 1200, 1190, 1200, 1190, 1200\}
+06937 ,\{ -50, -60, -50, -60, -50\}
+06938 \}
+06939 ,\{\{ 450, 440, 450, 440, 450\}
+06940 ,\{ 450, 440, 450, 440, 450\}
+06941 ,\{ -50, -60, -50, -60, -50\}
+06942 ,\{ -150, -400, -150, -400, -150\}
+06943 ,\{ -50, -60, -50, -60, -50\}
+06944 \}
+06945 ,\{\{ -50, -60, -50, -60, -50\}
+06946 ,\{ -50, -60, -50, -60, -50\}
+06947 ,\{ -50, -60, -50, -60, -50\}
+06948 ,\{ -50, -60, -50, -60, -50\}
+06949 ,\{ -50, -60, -50, -60, -50\}
+06950 \}
+06951 ,\{\{ 1200, 1190, 1200, 1190, 1200\}
+06952 ,\{ -320, -570, -320, -570, -320\}
+06953 ,\{ -50, -60, -50, -60, -50\}
+06954 ,\{ 1200, 1190, 1200, 1190, 1200\}
+06955 ,\{ -50, -60, -50, -60, -50\}
+06956 \}
+06957 ,\{\{ -50, -60, -50, -60, -50\}
+06958 ,\{ -50, -60, -50, -60, -50\}
+06959 ,\{ -50, -60, -50, -60, -50\}
+06960 ,\{ -50, -60, -50, -60, -50\}
+06961 ,\{ -50, -60, -50, -60, -50\}
+06962 \}
+06963 \}
+06964 ,\{\{\{ 1280, -630, 1200, 1280, 1200\}
+06965 ,\{ 1280, -630, 460, 1280, 460\}
+06966 ,\{ 780, -900, -50, 780, -50\}
+06967 ,\{ 1200, -1140, 1200, 780, 1200\}
+06968 ,\{ 780, -900, -50, 780, -50\}
+06969 \}
+06970 ,\{\{ 1280, -630, 460, 1280, 460\}
+06971 ,\{ 1280, -630, 460, 1280, 460\}
+06972 ,\{ 780, -1140, -50, 780, -50\}
+06973 ,\{ -390, -1480, -390, -810, -390\}
+06974 ,\{ 780, -1140, -50, 780, -50\}
+06975 \}
+06976 ,\{\{ 780, -900, -50, 780, -50\}
+06977 ,\{ 780, -1140, -50, 780, -50\}
+06978 ,\{ 780, -900, -50, 780, -50\}
+06979 ,\{ 780, -1140, -50, 780, -50\}
+06980 ,\{ 780, -900, -50, 780, -50\}
+06981 \}
+06982 ,\{\{ 1200, -1140, 1200, 780, 1200\}
+06983 ,\{ -560, -1650, -560, -980, -560\}
+06984 ,\{ 780, -1140, -50, 780, -50\}
+06985 ,\{ 1200, -1140, 1200, -470, 1200\}
+06986 ,\{ 780, -1140, -50, 780, -50\}
+06987 \}
+06988 ,\{\{ 780, -900, -50, 780, -50\}
+06989 ,\{ 780, -1140, -50, 780, -50\}
+06990 ,\{ 780, -900, -50, 780, -50\}
+06991 ,\{ 780, -1140, -50, 780, -50\}
+06992 ,\{ -50, -1140, -50, -470, -50\}
+06993 \}
+06994 \}
+06995 ,\{\{\{ 1200, 1190, 1200, 1190, -280\}
+06996 ,\{ 450, 440, 450, 440, -280\}
+06997 ,\{ -50, -60, -50, -60, -1030\}
+06998 ,\{ 1200, 1190, 1200, 1190, -1030\}
+06999 ,\{ -50, -60, -50, -60, -1030\}
+07000 \}
+07001 ,\{\{ 450, 440, 450, 440, -280\}
+07002 ,\{ 450, 440, 450, 440, -280\}
+07003 ,\{ -50, -60, -50, -60, -1030\}
+07004 ,\{ -150, -400, -150, -400, -1370\}
+07005 ,\{ -50, -60, -50, -60, -1030\}
+07006 \}
+07007 ,\{\{ -50, -60, -50, -60, -1030\}
+07008 ,\{ -50, -60, -50, -60, -1030\}
+07009 ,\{ -50, -60, -50, -60, -1030\}
+07010 ,\{ -50, -60, -50, -60, -1030\}
+07011 ,\{ -50, -60, -50, -60, -1030\}
+07012 \}
+07013 ,\{\{ 1200, 1190, 1200, 1190, -1030\}
+07014 ,\{ -320, -570, -320, -570, -1540\}
+07015 ,\{ -50, -60, -50, -60, -1030\}
+07016 ,\{ 1200, 1190, 1200, 1190, -1030\}
+07017 ,\{ -50, -60, -50, -60, -1030\}
+07018 \}
+07019 ,\{\{ -50, -60, -50, -60, -1030\}
+07020 ,\{ -50, -60, -50, -60, -1030\}
+07021 ,\{ -50, -60, -50, -60, -1030\}
+07022 ,\{ -50, -60, -50, -60, -1030\}
+07023 ,\{ -50, -60, -50, -60, -1030\}
+07024 \}
+07025 \}
+07026 \}
+07027 ,\{\{\{\{ 1870, 1870, 1570, 1870, 1570\}
+07028 ,\{ 1870, 1340, 1040, 1870, 1040\}
+07029 ,\{ 1570, 1040, 740, 1570, 740\}
+07030 ,\{ 1870, 1870, 1570, 1570, 1570\}
+07031 ,\{ 1570, 1040, 740, 1570, 740\}
+07032 \}
+07033 ,\{\{ 1870, 1340, 1040, 1870, 1040\}
+07034 ,\{ 1870, 1340, 1040, 1870, 1040\}
+07035 ,\{ 1560, 1030, 730, 1560, 730\}
+07036 ,\{ -50, -50, -110, -360, -110\}
+07037 ,\{ 1560, 1030, 730, 1560, 730\}
+07038 \}
+07039 ,\{\{ 1570, 1040, 750, 1570, 750\}
+07040 ,\{ 1570, 1040, 750, 1570, 750\}
+07041 ,\{ 1570, 1040, 740, 1570, 740\}
+07042 ,\{ 1570, 1040, 750, 1570, 750\}
+07043 ,\{ 1570, 1040, 740, 1570, 740\}
+07044 \}
+07045 ,\{\{ 1870, 1870, 1570, 1560, 1570\}
+07046 ,\{ 130, 130, 70, -180, 70\}
+07047 ,\{ 1560, 1030, 730, 1560, 730\}
+07048 ,\{ 1870, 1870, 1570, 1560, 1570\}
+07049 ,\{ 1560, 1030, 730, 1560, 730\}
+07050 \}
+07051 ,\{\{ 1570, 1040, 750, 1570, 750\}
+07052 ,\{ 1570, 1040, 750, 1570, 750\}
+07053 ,\{ 1570, 1040, 740, 1570, 740\}
+07054 ,\{ 1570, 1040, 750, 1570, 750\}
+07055 ,\{ 300, 300, -230, -250, -230\}
+07056 \}
+07057 \}
+07058 ,\{\{\{ 1870, 1870, 1570, 130, 1570\}
+07059 ,\{ 1340, 1340, 1040, 130, 1040\}
+07060 ,\{ 1040, 1040, 740, 70, 740\}
+07061 ,\{ 1870, 1870, 1570, -160, 1570\}
+07062 ,\{ 1040, 1040, 740, 70, 740\}
+07063 \}
+07064 ,\{\{ 1340, 1340, 1040, 130, 1040\}
+07065 ,\{ 1340, 1340, 1040, 130, 1040\}
+07066 ,\{ 1030, 1030, 730, -180, 730\}
+07067 ,\{ -50, -50, -340, -1260, -340\}
+07068 ,\{ 1030, 1030, 730, -180, 730\}
+07069 \}
+07070 ,\{\{ 1040, 1040, 750, 70, 750\}
+07071 ,\{ 1040, 1040, 750, -160, 750\}
+07072 ,\{ 1040, 1040, 740, 70, 740\}
+07073 ,\{ 1040, 1040, 750, -160, 750\}
+07074 ,\{ 1040, 1040, 740, 70, 740\}
+07075 \}
+07076 ,\{\{ 1870, 1870, 1570, -180, 1570\}
+07077 ,\{ 130, 130, -160, -1080, -160\}
+07078 ,\{ 1030, 1030, 730, -180, 730\}
+07079 ,\{ 1870, 1870, 1570, -590, 1570\}
+07080 ,\{ 1030, 1030, 730, -180, 730\}
+07081 \}
+07082 ,\{\{ 1040, 1040, 750, 70, 750\}
+07083 ,\{ 1040, 1040, 750, -160, 750\}
+07084 ,\{ 1040, 1040, 740, 70, 740\}
+07085 ,\{ 1040, 1040, 750, -160, 750\}
+07086 ,\{ 300, 300, -230, -1150, -230\}
+07087 \}
+07088 \}
+07089 ,\{\{\{ 1570, 1560, 1570, 1560, 1570\}
+07090 ,\{ 1040, 1030, 1040, 1030, 1040\}
+07091 ,\{ 740, 730, 740, 730, 740\}
+07092 ,\{ 1570, 1560, 1570, 1560, 1570\}
+07093 ,\{ 740, 730, 740, 730, 740\}
+07094 \}
+07095 ,\{\{ 1040, 1030, 1040, 1030, 1040\}
+07096 ,\{ 1040, 1030, 1040, 1030, 1040\}
+07097 ,\{ 730, 720, 730, 720, 730\}
+07098 ,\{ -110, -360, -110, -360, -110\}
+07099 ,\{ 730, 720, 730, 720, 730\}
+07100 \}
+07101 ,\{\{ 740, 730, 740, 730, 740\}
+07102 ,\{ 740, 730, 740, 730, 740\}
+07103 ,\{ 740, 730, 740, 730, 740\}
+07104 ,\{ 740, 730, 740, 730, 740\}
+07105 ,\{ 740, 730, 740, 730, 740\}
+07106 \}
+07107 ,\{\{ 1570, 1560, 1570, 1560, 1570\}
+07108 ,\{ 70, -180, 70, -180, 70\}
+07109 ,\{ 730, 720, 730, 720, 730\}
+07110 ,\{ 1570, 1560, 1570, 1560, 1570\}
+07111 ,\{ 730, 720, 730, 720, 730\}
+07112 \}
+07113 ,\{\{ 740, 730, 740, 730, 740\}
+07114 ,\{ 740, 730, 740, 730, 740\}
+07115 ,\{ 740, 730, 740, 730, 740\}
+07116 ,\{ 740, 730, 740, 730, 740\}
+07117 ,\{ -240, -250, -240, -250, -240\}
+07118 \}
+07119 \}
+07120 ,\{\{\{ 1870, -50, 1570, 1870, 1570\}
+07121 ,\{ 1870, -50, 1040, 1870, 1040\}
+07122 ,\{ 1570, -110, 740, 1570, 740\}
+07123 ,\{ 1570, -340, 1570, 1570, 1570\}
+07124 ,\{ 1570, -110, 740, 1570, 740\}
+07125 \}
+07126 ,\{\{ 1870, -50, 1040, 1870, 1040\}
+07127 ,\{ 1870, -50, 1040, 1870, 1040\}
+07128 ,\{ 1560, -360, 730, 1560, 730\}
+07129 ,\{ -340, -1440, -340, -770, -340\}
+07130 ,\{ 1560, -360, 730, 1560, 730\}
+07131 \}
+07132 ,\{\{ 1570, -110, 750, 1570, 750\}
+07133 ,\{ 1570, -340, 750, 1570, 750\}
+07134 ,\{ 1570, -110, 740, 1570, 740\}
+07135 ,\{ 1570, -340, 750, 1570, 750\}
+07136 ,\{ 1570, -110, 740, 1570, 740\}
+07137 \}
+07138 ,\{\{ 1570, -360, 1570, 1560, 1570\}
+07139 ,\{ -160, -1260, -160, -590, -160\}
+07140 ,\{ 1560, -360, 730, 1560, 730\}
+07141 ,\{ 1570, -770, 1570, -100, 1570\}
+07142 ,\{ 1560, -360, 730, 1560, 730\}
+07143 \}
+07144 ,\{\{ 1570, -110, 750, 1570, 750\}
+07145 ,\{ 1570, -340, 750, 1570, 750\}
+07146 ,\{ 1570, -110, 740, 1570, 740\}
+07147 ,\{ 1570, -340, 750, 1570, 750\}
+07148 ,\{ -230, -1330, -230, -660, -230\}
+07149 \}
+07150 \}
+07151 ,\{\{\{ 1570, 1560, 1570, 1560, 300\}
+07152 ,\{ 1040, 1030, 1040, 1030, 300\}
+07153 ,\{ 740, 730, 740, 730, -240\}
+07154 ,\{ 1570, 1560, 1570, 1560, -230\}
+07155 ,\{ 740, 730, 740, 730, -240\}
+07156 \}
+07157 ,\{\{ 1040, 1030, 1040, 1030, 300\}
+07158 ,\{ 1040, 1030, 1040, 1030, 300\}
+07159 ,\{ 730, 720, 730, 720, -250\}
+07160 ,\{ -110, -360, -110, -360, -1330\}
+07161 ,\{ 730, 720, 730, 720, -250\}
+07162 \}
+07163 ,\{\{ 740, 730, 740, 730, -230\}
+07164 ,\{ 740, 730, 740, 730, -230\}
+07165 ,\{ 740, 730, 740, 730, -240\}
+07166 ,\{ 740, 730, 740, 730, -230\}
+07167 ,\{ 740, 730, 740, 730, -240\}
+07168 \}
+07169 ,\{\{ 1570, 1560, 1570, 1560, -250\}
+07170 ,\{ 70, -180, 70, -180, -1150\}
+07171 ,\{ 730, 720, 730, 720, -250\}
+07172 ,\{ 1570, 1560, 1570, 1560, -660\}
+07173 ,\{ 730, 720, 730, 720, -250\}
+07174 \}
+07175 ,\{\{ 740, 730, 740, 730, -230\}
+07176 ,\{ 740, 730, 740, 730, -230\}
+07177 ,\{ 740, 730, 740, 730, -240\}
+07178 ,\{ 740, 730, 740, 730, -230\}
+07179 ,\{ -240, -250, -240, -250, -1220\}
+07180 \}
+07181 \}
+07182 \}
+07183 ,\{\{\{\{ 2050, 2050, 1760, 1930, 1760\}
+07184 ,\{ 1930, 1400, 1110, 1930, 1110\}
+07185 ,\{ 1800, 1270, 980, 1800, 980\}
+07186 ,\{ 2050, 2050, 1760, 1800, 1760\}
+07187 ,\{ 1670, 1140, 850, 1670, 850\}
+07188 \}
+07189 ,\{\{ 1930, 1400, 1110, 1930, 1110\}
+07190 ,\{ 1930, 1400, 1110, 1930, 1110\}
+07191 ,\{ 1650, 1120, 830, 1650, 830\}
+07192 ,\{ 0, 0, -60, -310, -60\}
+07193 ,\{ 1650, 1120, 830, 1650, 830\}
+07194 \}
+07195 ,\{\{ 1800, 1270, 980, 1800, 980\}
+07196 ,\{ 1800, 1270, 980, 1800, 980\}
+07197 ,\{ 1800, 1270, 980, 1800, 980\}
+07198 ,\{ 1800, 1270, 980, 1800, 980\}
+07199 ,\{ 1670, 1140, 850, 1670, 850\}
+07200 \}
+07201 ,\{\{ 2050, 2050, 1760, 1740, 1760\}
+07202 ,\{ -300, -300, -360, -610, -360\}
+07203 ,\{ 1650, 1120, 830, 1650, 830\}
+07204 ,\{ 2050, 2050, 1760, 1740, 1760\}
+07205 ,\{ 1650, 1120, 830, 1650, 830\}
+07206 \}
+07207 ,\{\{ 1800, 1270, 980, 1800, 980\}
+07208 ,\{ 1800, 1270, 980, 1800, 980\}
+07209 ,\{ 1360, 830, 540, 1360, 540\}
+07210 ,\{ 1800, 1270, 980, 1800, 980\}
+07211 ,\{ 570, 570, 40, 20, 40\}
+07212 \}
+07213 \}
+07214 ,\{\{\{ 2050, 2050, 1760, 300, 1760\}
+07215 ,\{ 1400, 1400, 1110, 190, 1110\}
+07216 ,\{ 1270, 1270, 980, 300, 980\}
+07217 ,\{ 2050, 2050, 1760, 60, 1760\}
+07218 ,\{ 1140, 1140, 850, 180, 850\}
+07219 \}
+07220 ,\{\{ 1400, 1400, 1110, 190, 1110\}
+07221 ,\{ 1400, 1400, 1110, 190, 1110\}
+07222 ,\{ 1120, 1120, 830, -80, 830\}
+07223 ,\{ 0, 0, -290, -1210, -290\}
+07224 ,\{ 1120, 1120, 830, -80, 830\}
+07225 \}
+07226 ,\{\{ 1270, 1270, 980, 300, 980\}
+07227 ,\{ 1270, 1270, 980, 60, 980\}
+07228 ,\{ 1270, 1270, 980, 300, 980\}
+07229 ,\{ 1270, 1270, 980, 60, 980\}
+07230 ,\{ 1140, 1140, 850, 180, 850\}
+07231 \}
+07232 ,\{\{ 2050, 2050, 1760, -80, 1760\}
+07233 ,\{ -300, -300, -590, -1510, -590\}
+07234 ,\{ 1120, 1120, 830, -80, 830\}
+07235 ,\{ 2050, 2050, 1760, -400, 1760\}
+07236 ,\{ 1120, 1120, 830, -80, 830\}
+07237 \}
+07238 ,\{\{ 1270, 1270, 980, 60, 980\}
+07239 ,\{ 1270, 1270, 980, 60, 980\}
+07240 ,\{ 830, 830, 540, -130, 540\}
+07241 ,\{ 1270, 1270, 980, 60, 980\}
+07242 ,\{ 570, 570, 40, -870, 40\}
+07243 \}
+07244 \}
+07245 ,\{\{\{ 1750, 1740, 1750, 1740, 1750\}
+07246 ,\{ 1100, 1090, 1100, 1090, 1100\}
+07247 ,\{ 970, 960, 970, 960, 970\}
+07248 ,\{ 1750, 1740, 1750, 1740, 1750\}
+07249 ,\{ 840, 830, 840, 830, 840\}
+07250 \}
+07251 ,\{\{ 1100, 1090, 1100, 1090, 1100\}
+07252 ,\{ 1100, 1090, 1100, 1090, 1100\}
+07253 ,\{ 820, 810, 820, 810, 820\}
+07254 ,\{ -60, -310, -60, -310, -60\}
+07255 ,\{ 820, 810, 820, 810, 820\}
+07256 \}
+07257 ,\{\{ 970, 960, 970, 960, 970\}
+07258 ,\{ 970, 960, 970, 960, 970\}
+07259 ,\{ 970, 960, 970, 960, 970\}
+07260 ,\{ 970, 960, 970, 960, 970\}
+07261 ,\{ 840, 830, 840, 830, 840\}
+07262 \}
+07263 ,\{\{ 1750, 1740, 1750, 1740, 1750\}
+07264 ,\{ -360, -610, -360, -610, -360\}
+07265 ,\{ 820, 810, 820, 810, 820\}
+07266 ,\{ 1750, 1740, 1750, 1740, 1750\}
+07267 ,\{ 820, 810, 820, 810, 820\}
+07268 \}
+07269 ,\{\{ 970, 960, 970, 960, 970\}
+07270 ,\{ 970, 960, 970, 960, 970\}
+07271 ,\{ 530, 520, 530, 520, 530\}
+07272 ,\{ 970, 960, 970, 960, 970\}
+07273 ,\{ 30, 20, 30, 20, 30\}
+07274 \}
+07275 \}
+07276 ,\{\{\{ 1930, 130, 1760, 1930, 1760\}
+07277 ,\{ 1930, 10, 1110, 1930, 1110\}
+07278 ,\{ 1800, 130, 980, 1800, 980\}
+07279 ,\{ 1800, -110, 1760, 1800, 1760\}
+07280 ,\{ 1670, 0, 850, 1670, 850\}
+07281 \}
+07282 ,\{\{ 1930, 10, 1110, 1930, 1110\}
+07283 ,\{ 1930, 10, 1110, 1930, 1110\}
+07284 ,\{ 1650, -260, 830, 1650, 830\}
+07285 ,\{ -290, -1390, -290, -720, -290\}
+07286 ,\{ 1650, -260, 830, 1650, 830\}
+07287 \}
+07288 ,\{\{ 1800, 130, 980, 1800, 980\}
+07289 ,\{ 1800, -110, 980, 1800, 980\}
+07290 ,\{ 1800, 130, 980, 1800, 980\}
+07291 ,\{ 1800, -110, 980, 1800, 980\}
+07292 ,\{ 1670, 0, 850, 1670, 850\}
+07293 \}
+07294 ,\{\{ 1760, -260, 1760, 1650, 1760\}
+07295 ,\{ -590, -1690, -590, -1020, -590\}
+07296 ,\{ 1650, -260, 830, 1650, 830\}
+07297 ,\{ 1760, -580, 1760, 80, 1760\}
+07298 ,\{ 1650, -260, 830, 1650, 830\}
+07299 \}
+07300 ,\{\{ 1800, -110, 980, 1800, 980\}
+07301 ,\{ 1800, -110, 980, 1800, 980\}
+07302 ,\{ 1360, -310, 540, 1360, 540\}
+07303 ,\{ 1800, -110, 980, 1800, 980\}
+07304 ,\{ 40, -1050, 40, -380, 40\}
+07305 \}
+07306 \}
+07307 ,\{\{\{ 1750, 1740, 1750, 1740, 360\}
+07308 ,\{ 1100, 1090, 1100, 1090, 360\}
+07309 ,\{ 970, 960, 970, 960, 0\}
+07310 ,\{ 1750, 1740, 1750, 1740, 0\}
+07311 ,\{ 840, 830, 840, 830, -130\}
+07312 \}
+07313 ,\{\{ 1100, 1090, 1100, 1090, 360\}
+07314 ,\{ 1100, 1090, 1100, 1090, 360\}
+07315 ,\{ 820, 810, 820, 810, -150\}
+07316 ,\{ -60, -310, -60, -310, -1280\}
+07317 ,\{ 820, 810, 820, 810, -150\}
+07318 \}
+07319 ,\{\{ 970, 960, 970, 960, 0\}
+07320 ,\{ 970, 960, 970, 960, 0\}
+07321 ,\{ 970, 960, 970, 960, 0\}
+07322 ,\{ 970, 960, 970, 960, 0\}
+07323 ,\{ 840, 830, 840, 830, -130\}
+07324 \}
+07325 ,\{\{ 1750, 1740, 1750, 1740, -150\}
+07326 ,\{ -360, -610, -360, -610, -1580\}
+07327 ,\{ 820, 810, 820, 810, -150\}
+07328 ,\{ 1750, 1740, 1750, 1740, -470\}
+07329 ,\{ 820, 810, 820, 810, -150\}
+07330 \}
+07331 ,\{\{ 970, 960, 970, 960, 0\}
+07332 ,\{ 970, 960, 970, 960, 0\}
+07333 ,\{ 530, 520, 530, 520, -440\}
+07334 ,\{ 970, 960, 970, 960, 0\}
+07335 ,\{ 30, 20, 30, 20, -940\}
+07336 \}
+07337 \}
+07338 \}
+07339 ,\{\{\{\{ 2050, 2050, 1760, 1930, 1760\}
+07340 ,\{ 1930, 1400, 1110, 1930, 1110\}
+07341 ,\{ 1800, 1270, 980, 1800, 980\}
+07342 ,\{ 2050, 2050, 1760, 1800, 1760\}
+07343 ,\{ 1670, 1140, 850, 1670, 850\}
+07344 \}
+07345 ,\{\{ 1930, 1400, 1110, 1930, 1110\}
+07346 ,\{ 1930, 1400, 1110, 1930, 1110\}
+07347 ,\{ 1650, 1120, 830, 1650, 830\}
+07348 ,\{ 220, 220, 170, -80, 170\}
+07349 ,\{ 1650, 1120, 830, 1650, 830\}
+07350 \}
+07351 ,\{\{ 1800, 1270, 980, 1800, 980\}
+07352 ,\{ 1800, 1270, 980, 1800, 980\}
+07353 ,\{ 1800, 1270, 980, 1800, 980\}
+07354 ,\{ 1800, 1270, 980, 1800, 980\}
+07355 ,\{ 1670, 1140, 850, 1670, 850\}
+07356 \}
+07357 ,\{\{ 2050, 2050, 1760, 1740, 1760\}
+07358 ,\{ 130, 130, 70, -180, 70\}
+07359 ,\{ 1650, 1120, 830, 1650, 830\}
+07360 ,\{ 2050, 2050, 1760, 1740, 1760\}
+07361 ,\{ 1650, 1120, 830, 1650, 830\}
+07362 \}
+07363 ,\{\{ 1800, 1270, 980, 1800, 980\}
+07364 ,\{ 1800, 1270, 980, 1800, 980\}
+07365 ,\{ 1570, 1040, 740, 1570, 740\}
+07366 ,\{ 1800, 1270, 980, 1800, 980\}
+07367 ,\{ 570, 570, 40, 20, 40\}
+07368 \}
+07369 \}
+07370 ,\{\{\{ 2050, 2050, 1760, 300, 1760\}
+07371 ,\{ 1400, 1400, 1110, 190, 1110\}
+07372 ,\{ 1270, 1270, 980, 300, 980\}
+07373 ,\{ 2050, 2050, 1760, 60, 1760\}
+07374 ,\{ 1140, 1140, 850, 180, 850\}
+07375 \}
+07376 ,\{\{ 1400, 1400, 1110, 190, 1110\}
+07377 ,\{ 1400, 1400, 1110, 190, 1110\}
+07378 ,\{ 1120, 1120, 830, -80, 830\}
+07379 ,\{ 220, 220, -70, -980, -70\}
+07380 ,\{ 1120, 1120, 830, -80, 830\}
+07381 \}
+07382 ,\{\{ 1270, 1270, 980, 300, 980\}
+07383 ,\{ 1270, 1270, 980, 60, 980\}
+07384 ,\{ 1270, 1270, 980, 300, 980\}
+07385 ,\{ 1270, 1270, 980, 60, 980\}
+07386 ,\{ 1140, 1140, 850, 180, 850\}
+07387 \}
+07388 ,\{\{ 2050, 2050, 1760, -80, 1760\}
+07389 ,\{ 130, 130, -160, -1080, -160\}
+07390 ,\{ 1120, 1120, 830, -80, 830\}
+07391 ,\{ 2050, 2050, 1760, -400, 1760\}
+07392 ,\{ 1120, 1120, 830, -80, 830\}
+07393 \}
+07394 ,\{\{ 1270, 1270, 980, 70, 980\}
+07395 ,\{ 1270, 1270, 980, 60, 980\}
+07396 ,\{ 1040, 1040, 740, 70, 740\}
+07397 ,\{ 1270, 1270, 980, 60, 980\}
+07398 ,\{ 570, 570, 40, -870, 40\}
+07399 \}
+07400 \}
+07401 ,\{\{\{ 1750, 1740, 1750, 1740, 1750\}
+07402 ,\{ 1100, 1090, 1100, 1090, 1100\}
+07403 ,\{ 970, 960, 970, 960, 970\}
+07404 ,\{ 1750, 1740, 1750, 1740, 1750\}
+07405 ,\{ 840, 830, 840, 830, 840\}
+07406 \}
+07407 ,\{\{ 1100, 1090, 1100, 1090, 1100\}
+07408 ,\{ 1100, 1090, 1100, 1090, 1100\}
+07409 ,\{ 820, 810, 820, 810, 820\}
+07410 ,\{ 170, -80, 170, -80, 170\}
+07411 ,\{ 820, 810, 820, 810, 820\}
+07412 \}
+07413 ,\{\{ 970, 960, 970, 960, 970\}
+07414 ,\{ 970, 960, 970, 960, 970\}
+07415 ,\{ 970, 960, 970, 960, 970\}
+07416 ,\{ 970, 960, 970, 960, 970\}
+07417 ,\{ 840, 830, 840, 830, 840\}
+07418 \}
+07419 ,\{\{ 1750, 1740, 1750, 1740, 1750\}
+07420 ,\{ 70, -180, 70, -180, 70\}
+07421 ,\{ 820, 810, 820, 810, 820\}
+07422 ,\{ 1750, 1740, 1750, 1740, 1750\}
+07423 ,\{ 820, 810, 820, 810, 820\}
+07424 \}
+07425 ,\{\{ 970, 960, 970, 960, 970\}
+07426 ,\{ 970, 960, 970, 960, 970\}
+07427 ,\{ 740, 730, 740, 730, 740\}
+07428 ,\{ 970, 960, 970, 960, 970\}
+07429 ,\{ 30, 20, 30, 20, 30\}
+07430 \}
+07431 \}
+07432 ,\{\{\{ 1930, 130, 1760, 1930, 1760\}
+07433 ,\{ 1930, 10, 1110, 1930, 1110\}
+07434 ,\{ 1800, 130, 980, 1800, 980\}
+07435 ,\{ 1800, -110, 1760, 1800, 1760\}
+07436 ,\{ 1670, 0, 850, 1670, 850\}
+07437 \}
+07438 ,\{\{ 1930, 10, 1110, 1930, 1110\}
+07439 ,\{ 1930, 10, 1110, 1930, 1110\}
+07440 ,\{ 1650, -260, 830, 1650, 830\}
+07441 ,\{ -70, -1160, -70, -490, -70\}
+07442 ,\{ 1650, -260, 830, 1650, 830\}
+07443 \}
+07444 ,\{\{ 1800, 130, 980, 1800, 980\}
+07445 ,\{ 1800, -110, 980, 1800, 980\}
+07446 ,\{ 1800, 130, 980, 1800, 980\}
+07447 ,\{ 1800, -110, 980, 1800, 980\}
+07448 ,\{ 1670, 0, 850, 1670, 850\}
+07449 \}
+07450 ,\{\{ 1760, -260, 1760, 1650, 1760\}
+07451 ,\{ -160, -1260, -160, -590, -160\}
+07452 ,\{ 1650, -260, 830, 1650, 830\}
+07453 ,\{ 1760, -580, 1760, 80, 1760\}
+07454 ,\{ 1650, -260, 830, 1650, 830\}
+07455 \}
+07456 ,\{\{ 1800, -110, 980, 1800, 980\}
+07457 ,\{ 1800, -110, 980, 1800, 980\}
+07458 ,\{ 1570, -110, 740, 1570, 740\}
+07459 ,\{ 1800, -110, 980, 1800, 980\}
+07460 ,\{ 40, -1050, 40, -380, 40\}
+07461 \}
+07462 \}
+07463 ,\{\{\{ 1750, 1740, 1750, 1740, 360\}
+07464 ,\{ 1100, 1090, 1100, 1090, 360\}
+07465 ,\{ 970, 960, 970, 960, 0\}
+07466 ,\{ 1750, 1740, 1750, 1740, 0\}
+07467 ,\{ 840, 830, 840, 830, -130\}
+07468 \}
+07469 ,\{\{ 1100, 1090, 1100, 1090, 360\}
+07470 ,\{ 1100, 1090, 1100, 1090, 360\}
+07471 ,\{ 820, 810, 820, 810, -150\}
+07472 ,\{ 170, -80, 170, -80, -1050\}
+07473 ,\{ 820, 810, 820, 810, -150\}
+07474 \}
+07475 ,\{\{ 970, 960, 970, 960, 0\}
+07476 ,\{ 970, 960, 970, 960, 0\}
+07477 ,\{ 970, 960, 970, 960, 0\}
+07478 ,\{ 970, 960, 970, 960, 0\}
+07479 ,\{ 840, 830, 840, 830, -130\}
+07480 \}
+07481 ,\{\{ 1750, 1740, 1750, 1740, -150\}
+07482 ,\{ 70, -180, 70, -180, -1150\}
+07483 ,\{ 820, 810, 820, 810, -150\}
+07484 ,\{ 1750, 1740, 1750, 1740, -470\}
+07485 ,\{ 820, 810, 820, 810, -150\}
+07486 \}
+07487 ,\{\{ 970, 960, 970, 960, 0\}
+07488 ,\{ 970, 960, 970, 960, 0\}
+07489 ,\{ 740, 730, 740, 730, -240\}
+07490 ,\{ 970, 960, 970, 960, 0\}
+07491 ,\{ 30, 20, 30, 20, -940\}
+07492 \}
+07493 \}
+07494 \}
+07495 \}
+07496 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07497 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07498 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07499 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07500 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07501 \}
+07502 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07503 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07504 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07505 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07506 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07507 \}
+07508 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07509 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07510 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07511 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07512 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07513 \}
+07514 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07515 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07516 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07517 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07518 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07519 \}
+07520 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07521 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07522 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07523 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07524 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07525 \}
+07526 \}
+07527 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07528 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07529 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07530 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07531 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07532 \}
+07533 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07534 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07535 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07536 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07537 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07538 \}
+07539 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07540 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07541 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07542 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07543 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07544 \}
+07545 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07546 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07547 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07548 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07549 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07550 \}
+07551 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07552 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07553 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07554 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07555 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07556 \}
+07557 \}
+07558 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07559 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07560 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07561 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07562 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07563 \}
+07564 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07565 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07566 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07567 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07568 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07569 \}
+07570 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07571 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07572 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07573 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07574 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07575 \}
+07576 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07577 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07578 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07579 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07580 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07581 \}
+07582 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07583 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07584 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07585 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07586 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07587 \}
+07588 \}
+07589 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07590 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07591 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07592 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07593 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07594 \}
+07595 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07596 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07597 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07598 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07599 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07600 \}
+07601 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07602 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07603 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07604 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07605 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07606 \}
+07607 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07608 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07609 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07610 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07611 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07612 \}
+07613 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07614 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07615 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07616 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07617 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07618 \}
+07619 \}
+07620 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07621 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07622 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07623 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07624 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07625 \}
+07626 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07627 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07628 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07629 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07630 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07631 \}
+07632 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07633 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07634 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07635 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07636 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07637 \}
+07638 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07639 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07640 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07641 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07642 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07643 \}
+07644 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07645 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07646 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07647 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07648 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+07649 \}
+07650 \}
+07651 \}
+07652 ,\{\{\{\{ 1350, 850, 720, 1350, 720\}
+07653 ,\{ 1300, 650, 520, 1300, 520\}
+07654 ,\{ 1350, 700, 570, 1350, 570\}
+07655 ,\{ 1300, 850, 720, 1300, 720\}
+07656 ,\{ 1250, 590, 460, 1250, 460\}
+07657 \}
+07658 ,\{\{ 1160, 500, 400, 1160, 370\}
+07659 ,\{ 1160, 500, 370, 1160, 370\}
+07660 ,\{ 850, 190, 60, 850, 60\}
+07661 ,\{ 400, 290, 400, 10, 160\}
+07662 ,\{ 850, 190, 60, 850, 60\}
+07663 \}
+07664 ,\{\{ 1300, 650, 520, 1300, 520\}
+07665 ,\{ 1300, 650, 520, 1300, 520\}
+07666 ,\{ 1290, 640, 510, 1290, 510\}
+07667 ,\{ 1300, 650, 520, 1300, 520\}
+07668 ,\{ 1250, 590, 460, 1250, 460\}
+07669 \}
+07670 ,\{\{ 850, 850, 720, 850, 720\}
+07671 ,\{ 120, 0, 120, -270, -120\}
+07672 ,\{ 850, 190, 60, 850, 60\}
+07673 ,\{ 850, 850, 720, 570, 720\}
+07674 ,\{ 850, 190, 60, 850, 60\}
+07675 \}
+07676 ,\{\{ 1350, 700, 570, 1350, 570\}
+07677 ,\{ 1300, 650, 520, 1300, 520\}
+07678 ,\{ 1350, 700, 570, 1350, 570\}
+07679 ,\{ 1300, 650, 520, 1300, 520\}
+07680 ,\{ 100, 100, -270, -420, -270\}
+07681 \}
+07682 \}
+07683 ,\{\{\{ 850, 850, 720, -760, 720\}
+07684 ,\{ 650, 650, 520, -1050, 520\}
+07685 ,\{ 700, 700, 570, -760, 570\}
+07686 ,\{ 850, 850, 720, -1050, 720\}
+07687 ,\{ 590, 590, 460, -870, 460\}
+07688 \}
+07689 ,\{\{ 500, 500, 370, -1200, 370\}
+07690 ,\{ 500, 500, 370, -1200, 370\}
+07691 ,\{ 190, 190, 60, -1510, 60\}
+07692 ,\{ 290, 290, 160, -1410, 160\}
+07693 ,\{ 190, 190, 60, -1510, 60\}
+07694 \}
+07695 ,\{\{ 650, 650, 520, -820, 520\}
+07696 ,\{ 650, 650, 520, -1050, 520\}
+07697 ,\{ 640, 640, 510, -820, 510\}
+07698 ,\{ 650, 650, 520, -1050, 520\}
+07699 ,\{ 590, 590, 460, -870, 460\}
+07700 \}
+07701 ,\{\{ 850, 850, 720, -1510, 720\}
+07702 ,\{ 0, 0, -120, -1700, -120\}
+07703 ,\{ 190, 190, 60, -1510, 60\}
+07704 ,\{ 850, 850, 720, -2110, 720\}
+07705 ,\{ 190, 190, 60, -1510, 60\}
+07706 \}
+07707 ,\{\{ 700, 700, 570, -760, 570\}
+07708 ,\{ 650, 650, 520, -1050, 520\}
+07709 ,\{ 700, 700, 570, -760, 570\}
+07710 ,\{ 650, 650, 520, -1050, 520\}
+07711 ,\{ 100, 100, -270, -1840, -270\}
+07712 \}
+07713 \}
+07714 ,\{\{\{ 720, 570, 720, 570, 280\}
+07715 ,\{ 520, 370, 520, 370, 80\}
+07716 ,\{ 570, 420, 570, 420, 130\}
+07717 ,\{ 720, 570, 720, 570, 280\}
+07718 ,\{ 460, 310, 460, 310, 20\}
+07719 \}
+07720 ,\{\{ 400, 220, 400, 220, -40\}
+07721 ,\{ 370, 220, 370, 220, -60\}
+07722 ,\{ 60, -80, 60, -80, -370\}
+07723 ,\{ 400, 10, 400, 10, -40\}
+07724 ,\{ 60, -80, 60, -80, -370\}
+07725 \}
+07726 ,\{\{ 520, 370, 520, 370, 80\}
+07727 ,\{ 520, 370, 520, 370, 80\}
+07728 ,\{ 510, 360, 510, 360, 70\}
+07729 ,\{ 520, 370, 520, 370, 80\}
+07730 ,\{ 460, 310, 460, 310, 20\}
+07731 \}
+07732 ,\{\{ 720, 570, 720, 570, 280\}
+07733 ,\{ 120, -270, 120, -270, -320\}
+07734 ,\{ 60, -80, 60, -80, -370\}
+07735 ,\{ 720, 570, 720, 570, 280\}
+07736 ,\{ 60, -80, 60, -80, -370\}
+07737 \}
+07738 ,\{\{ 570, 420, 570, 420, 130\}
+07739 ,\{ 520, 370, 520, 370, 80\}
+07740 ,\{ 570, 420, 570, 420, 130\}
+07741 ,\{ 520, 370, 520, 370, 80\}
+07742 ,\{ -270, -420, -270, -420, -710\}
+07743 \}
+07744 \}
+07745 ,\{\{\{ 1350, -460, 720, 1350, 720\}
+07746 ,\{ 1300, -750, 520, 1300, 520\}
+07747 ,\{ 1350, -460, 570, 1350, 570\}
+07748 ,\{ 1300, -750, 720, 1300, 720\}
+07749 ,\{ 1250, -570, 460, 1250, 460\}
+07750 \}
+07751 ,\{\{ 1160, -900, 370, 1160, 370\}
+07752 ,\{ 1160, -900, 370, 1160, 370\}
+07753 ,\{ 850, -1210, 60, 850, 60\}
+07754 ,\{ 160, -1110, 160, -310, 160\}
+07755 ,\{ 850, -1210, 60, 850, 60\}
+07756 \}
+07757 ,\{\{ 1300, -520, 520, 1300, 520\}
+07758 ,\{ 1300, -750, 520, 1300, 520\}
+07759 ,\{ 1290, -520, 510, 1290, 510\}
+07760 ,\{ 1300, -750, 520, 1300, 520\}
+07761 ,\{ 1250, -570, 460, 1250, 460\}
+07762 \}
+07763 ,\{\{ 850, -1210, 720, 850, 720\}
+07764 ,\{ -120, -1400, -120, -590, -120\}
+07765 ,\{ 850, -1210, 60, 850, 60\}
+07766 ,\{ 720, -1810, 720, -1000, 720\}
+07767 ,\{ 850, -1210, 60, 850, 60\}
+07768 \}
+07769 ,\{\{ 1350, -460, 570, 1350, 570\}
+07770 ,\{ 1300, -750, 520, 1300, 520\}
+07771 ,\{ 1350, -460, 570, 1350, 570\}
+07772 ,\{ 1300, -750, 520, 1300, 520\}
+07773 ,\{ -270, -1540, -270, -740, -270\}
+07774 \}
+07775 \}
+07776 ,\{\{\{ 590, 570, 590, 570, -320\}
+07777 ,\{ 390, 370, 390, 370, -320\}
+07778 ,\{ 440, 420, 440, 420, -360\}
+07779 ,\{ 590, 570, 590, 570, -420\}
+07780 ,\{ 330, 310, 330, 310, -470\}
+07781 \}
+07782 ,\{\{ 270, 220, 270, 220, -320\}
+07783 ,\{ 240, 220, 240, 220, -320\}
+07784 ,\{ -60, -80, -60, -80, -870\}
+07785 ,\{ 270, 10, 270, 10, -780\}
+07786 ,\{ -60, -80, -60, -80, -870\}
+07787 \}
+07788 ,\{\{ 390, 370, 390, 370, -420\}
+07789 ,\{ 390, 370, 390, 370, -420\}
+07790 ,\{ 380, 360, 380, 360, -420\}
+07791 ,\{ 390, 370, 390, 370, -420\}
+07792 ,\{ 330, 310, 330, 310, -470\}
+07793 \}
+07794 ,\{\{ 590, 570, 590, 570, -870\}
+07795 ,\{ -10, -270, -10, -270, -1060\}
+07796 ,\{ -60, -80, -60, -80, -870\}
+07797 ,\{ 590, 570, 590, 570, -1470\}
+07798 ,\{ -60, -80, -60, -80, -870\}
+07799 \}
+07800 ,\{\{ 440, 420, 440, 420, -360\}
+07801 ,\{ 390, 370, 390, 370, -420\}
+07802 ,\{ 440, 420, 440, 420, -360\}
+07803 ,\{ 390, 370, 390, 370, -420\}
+07804 ,\{ -400, -420, -400, -420, -1210\}
+07805 \}
+07806 \}
+07807 \}
+07808 ,\{\{\{\{ 1320, 850, 720, 1320, 720\}
+07809 ,\{ 1320, 670, 540, 1320, 540\}
+07810 ,\{ 870, 220, 90, 870, 90\}
+07811 ,\{ 960, 850, 720, 960, 720\}
+07812 ,\{ 870, 250, 90, 870, 90\}
+07813 \}
+07814 ,\{\{ 1320, 670, 540, 1320, 540\}
+07815 ,\{ 1320, 670, 540, 1320, 540\}
+07816 ,\{ 870, 220, 90, 870, 90\}
+07817 ,\{ -410, -520, -410, -800, -650\}
+07818 ,\{ 870, 220, 90, 870, 90\}
+07819 \}
+07820 ,\{\{ 960, 300, 170, 960, 170\}
+07821 ,\{ 960, 300, 170, 960, 170\}
+07822 ,\{ 650, 0, -130, 650, -130\}
+07823 ,\{ 960, 300, 170, 960, 170\}
+07824 ,\{ 650, 0, -130, 650, -130\}
+07825 \}
+07826 ,\{\{ 870, 850, 720, 870, 720\}
+07827 ,\{ 70, -40, 70, -320, -170\}
+07828 ,\{ 870, 220, 90, 870, 90\}
+07829 ,\{ 850, 850, 720, 570, 720\}
+07830 ,\{ 870, 220, 90, 870, 90\}
+07831 \}
+07832 ,\{\{ 960, 300, 170, 960, 170\}
+07833 ,\{ 960, 300, 170, 960, 170\}
+07834 ,\{ 340, -310, -440, 340, -440\}
+07835 ,\{ 960, 300, 170, 960, 170\}
+07836 ,\{ 250, 250, -110, -260, -110\}
+07837 \}
+07838 \}
+07839 ,\{\{\{ 850, 850, 720, -1030, 720\}
+07840 ,\{ 670, 670, 540, -1030, 540\}
+07841 ,\{ 220, 220, 90, -1460, 90\}
+07842 ,\{ 850, 850, 720, -1400, 720\}
+07843 ,\{ 250, 250, 90, -1460, 90\}
+07844 \}
+07845 ,\{\{ 670, 670, 540, -1030, 540\}
+07846 ,\{ 670, 670, 540, -1030, 540\}
+07847 ,\{ 220, 220, 90, -1480, 90\}
+07848 ,\{ -520, -520, -650, -2220, -650\}
+07849 ,\{ 220, 220, 90, -1480, 90\}
+07850 \}
+07851 ,\{\{ 300, 300, 170, -1400, 170\}
+07852 ,\{ 300, 300, 170, -1400, 170\}
+07853 ,\{ 0, 0, -130, -1460, -130\}
+07854 ,\{ 300, 300, 170, -1400, 170\}
+07855 ,\{ 0, 0, -130, -1460, -130\}
+07856 \}
+07857 ,\{\{ 850, 850, 720, -1480, 720\}
+07858 ,\{ -40, -40, -170, -1750, -170\}
+07859 ,\{ 220, 220, 90, -1480, 90\}
+07860 ,\{ 850, 850, 720, -2110, 720\}
+07861 ,\{ 220, 220, 90, -1480, 90\}
+07862 \}
+07863 ,\{\{ 300, 300, 170, -1400, 170\}
+07864 ,\{ 300, 300, 170, -1400, 170\}
+07865 ,\{ -310, -310, -440, -1770, -440\}
+07866 ,\{ 300, 300, 170, -1400, 170\}
+07867 ,\{ 250, 250, -110, -1690, -110\}
+07868 \}
+07869 \}
+07870 ,\{\{\{ 720, 570, 720, 570, 280\}
+07871 ,\{ 540, 390, 540, 390, 100\}
+07872 ,\{ 90, -60, 90, -60, -350\}
+07873 ,\{ 720, 570, 720, 570, 280\}
+07874 ,\{ 90, -60, 90, -60, -350\}
+07875 \}
+07876 ,\{\{ 540, 390, 540, 390, 100\}
+07877 ,\{ 540, 390, 540, 390, 100\}
+07878 ,\{ 90, -60, 90, -60, -350\}
+07879 ,\{ -410, -800, -410, -800, -850\}
+07880 ,\{ 90, -60, 90, -60, -350\}
+07881 \}
+07882 ,\{\{ 170, 20, 170, 20, -260\}
+07883 ,\{ 170, 20, 170, 20, -260\}
+07884 ,\{ -130, -280, -130, -280, -570\}
+07885 ,\{ 170, 20, 170, 20, -260\}
+07886 ,\{ -130, -280, -130, -280, -570\}
+07887 \}
+07888 ,\{\{ 720, 570, 720, 570, 280\}
+07889 ,\{ 70, -320, 70, -320, -370\}
+07890 ,\{ 90, -60, 90, -60, -350\}
+07891 ,\{ 720, 570, 720, 570, 280\}
+07892 ,\{ 90, -60, 90, -60, -350\}
+07893 \}
+07894 ,\{\{ 170, 20, 170, 20, -260\}
+07895 ,\{ 170, 20, 170, 20, -260\}
+07896 ,\{ -440, -590, -440, -590, -880\}
+07897 ,\{ 170, 20, 170, 20, -260\}
+07898 ,\{ -110, -260, -110, -260, -550\}
+07899 \}
+07900 \}
+07901 ,\{\{\{ 1320, -730, 720, 1320, 720\}
+07902 ,\{ 1320, -730, 540, 1320, 540\}
+07903 ,\{ 870, -1160, 90, 870, 90\}
+07904 ,\{ 960, -1100, 720, 960, 720\}
+07905 ,\{ 870, -1160, 90, 870, 90\}
+07906 \}
+07907 ,\{\{ 1320, -730, 540, 1320, 540\}
+07908 ,\{ 1320, -730, 540, 1320, 540\}
+07909 ,\{ 870, -1180, 90, 870, 90\}
+07910 ,\{ -650, -1920, -650, -1120, -650\}
+07911 ,\{ 870, -1180, 90, 870, 90\}
+07912 \}
+07913 ,\{\{ 960, -1100, 170, 960, 170\}
+07914 ,\{ 960, -1100, 170, 960, 170\}
+07915 ,\{ 650, -1160, -130, 650, -130\}
+07916 ,\{ 960, -1100, 170, 960, 170\}
+07917 ,\{ 650, -1160, -130, 650, -130\}
+07918 \}
+07919 ,\{\{ 870, -1180, 720, 870, 720\}
+07920 ,\{ -170, -1450, -170, -640, -170\}
+07921 ,\{ 870, -1180, 90, 870, 90\}
+07922 ,\{ 720, -1810, 720, -1000, 720\}
+07923 ,\{ 870, -1180, 90, 870, 90\}
+07924 \}
+07925 ,\{\{ 960, -1100, 170, 960, 170\}
+07926 ,\{ 960, -1100, 170, 960, 170\}
+07927 ,\{ 340, -1470, -440, 340, -440\}
+07928 ,\{ 960, -1100, 170, 960, 170\}
+07929 ,\{ -110, -1390, -110, -580, -110\}
+07930 \}
+07931 \}
+07932 ,\{\{\{ 590, 570, 590, 570, -160\}
+07933 ,\{ 410, 390, 410, 390, -160\}
+07934 ,\{ -40, -60, -40, -60, -850\}
+07935 ,\{ 590, 570, 590, 570, -760\}
+07936 ,\{ -40, -60, -40, -60, -850\}
+07937 \}
+07938 ,\{\{ 410, 390, 410, 390, -160\}
+07939 ,\{ 410, 390, 410, 390, -160\}
+07940 ,\{ -40, -60, -40, -60, -850\}
+07941 ,\{ -540, -800, -540, -800, -1590\}
+07942 ,\{ -40, -60, -40, -60, -850\}
+07943 \}
+07944 ,\{\{ 40, 20, 40, 20, -760\}
+07945 ,\{ 40, 20, 40, 20, -760\}
+07946 ,\{ -260, -280, -260, -280, -1070\}
+07947 ,\{ 40, 20, 40, 20, -760\}
+07948 ,\{ -260, -280, -260, -280, -1070\}
+07949 \}
+07950 ,\{\{ 590, 570, 590, 570, -850\}
+07951 ,\{ -60, -320, -60, -320, -1110\}
+07952 ,\{ -40, -60, -40, -60, -850\}
+07953 ,\{ 590, 570, 590, 570, -1470\}
+07954 ,\{ -40, -60, -40, -60, -850\}
+07955 \}
+07956 ,\{\{ 40, 20, 40, 20, -760\}
+07957 ,\{ 40, 20, 40, 20, -760\}
+07958 ,\{ -570, -590, -570, -590, -1380\}
+07959 ,\{ 40, 20, 40, 20, -760\}
+07960 ,\{ -240, -260, -240, -260, -1050\}
+07961 \}
+07962 \}
+07963 \}
+07964 ,\{\{\{\{ 1010, 1010, 880, 730, 880\}
+07965 ,\{ 410, -70, 40, 410, -200\}
+07966 ,\{ 410, -240, -370, 410, -370\}
+07967 ,\{ 1010, 1010, 880, 730, 880\}
+07968 ,\{ 410, 0, -370, 410, -370\}
+07969 \}
+07970 ,\{\{ 410, -240, -150, 410, -370\}
+07971 ,\{ 230, -420, -550, 230, -550\}
+07972 ,\{ 410, -240, -370, 410, -370\}
+07973 ,\{ -150, -260, -150, -540, -390\}
+07974 ,\{ 410, -240, -370, 410, -370\}
+07975 \}
+07976 ,\{\{ 410, -240, -370, 410, -370\}
+07977 ,\{ 410, -240, -370, 410, -370\}
+07978 ,\{ 410, -240, -370, 410, -370\}
+07979 ,\{ 410, -240, -370, 410, -370\}
+07980 ,\{ 410, -240, -370, 410, -370\}
+07981 \}
+07982 ,\{\{ 1010, 1010, 880, 730, 880\}
+07983 ,\{ 40, -70, 40, -350, -200\}
+07984 ,\{ 410, -240, -370, 410, -370\}
+07985 ,\{ 1010, 1010, 880, 730, 880\}
+07986 ,\{ 410, -240, -370, 410, -370\}
+07987 \}
+07988 ,\{\{ 410, 0, -370, 410, -370\}
+07989 ,\{ 410, -240, -370, 410, -370\}
+07990 ,\{ 410, -240, -370, 410, -370\}
+07991 ,\{ 410, -240, -370, 410, -370\}
+07992 ,\{ 0, 0, -370, -520, -370\}
+07993 \}
+07994 \}
+07995 ,\{\{\{ 1010, 1010, 880, -1710, 880\}
+07996 ,\{ -70, -70, -200, -1770, -200\}
+07997 ,\{ -240, -240, -370, -1710, -370\}
+07998 ,\{ 1010, 1010, 880, -1950, 880\}
+07999 ,\{ 0, 0, -370, -1710, -370\}
+08000 \}
+08001 ,\{\{ -240, -240, -370, -1950, -370\}
+08002 ,\{ -420, -420, -550, -2130, -550\}
+08003 ,\{ -240, -240, -370, -1950, -370\}
+08004 ,\{ -260, -260, -390, -1960, -390\}
+08005 ,\{ -240, -240, -370, -1950, -370\}
+08006 \}
+08007 ,\{\{ -240, -240, -370, -1710, -370\}
+08008 ,\{ -240, -240, -370, -1950, -370\}
+08009 ,\{ -240, -240, -370, -1710, -370\}
+08010 ,\{ -240, -240, -370, -1950, -370\}
+08011 ,\{ -240, -240, -370, -1710, -370\}
+08012 \}
+08013 ,\{\{ 1010, 1010, 880, -1770, 880\}
+08014 ,\{ -70, -70, -200, -1770, -200\}
+08015 ,\{ -240, -240, -370, -1950, -370\}
+08016 ,\{ 1010, 1010, 880, -1950, 880\}
+08017 ,\{ -240, -240, -370, -1950, -370\}
+08018 \}
+08019 ,\{\{ 0, 0, -370, -1710, -370\}
+08020 ,\{ -240, -240, -370, -1950, -370\}
+08021 ,\{ -240, -240, -370, -1710, -370\}
+08022 ,\{ -240, -240, -370, -1950, -370\}
+08023 ,\{ 0, 0, -370, -1950, -370\}
+08024 \}
+08025 \}
+08026 ,\{\{\{ 880, 730, 880, 730, 440\}
+08027 ,\{ 40, -350, 40, -350, -400\}
+08028 ,\{ -370, -520, -370, -520, -810\}
+08029 ,\{ 880, 730, 880, 730, 440\}
+08030 ,\{ -370, -520, -370, -520, -810\}
+08031 \}
+08032 ,\{\{ -150, -520, -150, -520, -590\}
+08033 ,\{ -550, -700, -550, -700, -990\}
+08034 ,\{ -370, -520, -370, -520, -810\}
+08035 ,\{ -150, -540, -150, -540, -590\}
+08036 ,\{ -370, -520, -370, -520, -810\}
+08037 \}
+08038 ,\{\{ -370, -520, -370, -520, -810\}
+08039 ,\{ -370, -520, -370, -520, -810\}
+08040 ,\{ -370, -520, -370, -520, -810\}
+08041 ,\{ -370, -520, -370, -520, -810\}
+08042 ,\{ -370, -520, -370, -520, -810\}
+08043 \}
+08044 ,\{\{ 880, 730, 880, 730, 440\}
+08045 ,\{ 40, -350, 40, -350, -400\}
+08046 ,\{ -370, -520, -370, -520, -810\}
+08047 ,\{ 880, 730, 880, 730, 440\}
+08048 ,\{ -370, -520, -370, -520, -810\}
+08049 \}
+08050 ,\{\{ -370, -520, -370, -520, -810\}
+08051 ,\{ -370, -520, -370, -520, -810\}
+08052 ,\{ -370, -520, -370, -520, -810\}
+08053 ,\{ -370, -520, -370, -520, -810\}
+08054 ,\{ -370, -520, -370, -520, -810\}
+08055 \}
+08056 \}
+08057 ,\{\{\{ 880, -1410, 880, 410, 880\}
+08058 ,\{ 410, -1470, -200, 410, -200\}
+08059 ,\{ 410, -1410, -370, 410, -370\}
+08060 ,\{ 880, -1650, 880, 410, 880\}
+08061 ,\{ 410, -1410, -370, 410, -370\}
+08062 \}
+08063 ,\{\{ 410, -1650, -370, 410, -370\}
+08064 ,\{ 230, -1830, -550, 230, -550\}
+08065 ,\{ 410, -1650, -370, 410, -370\}
+08066 ,\{ -390, -1660, -390, -860, -390\}
+08067 ,\{ 410, -1650, -370, 410, -370\}
+08068 \}
+08069 ,\{\{ 410, -1410, -370, 410, -370\}
+08070 ,\{ 410, -1650, -370, 410, -370\}
+08071 ,\{ 410, -1410, -370, 410, -370\}
+08072 ,\{ 410, -1650, -370, 410, -370\}
+08073 ,\{ 410, -1410, -370, 410, -370\}
+08074 \}
+08075 ,\{\{ 880, -1470, 880, 410, 880\}
+08076 ,\{ -200, -1470, -200, -670, -200\}
+08077 ,\{ 410, -1650, -370, 410, -370\}
+08078 ,\{ 880, -1650, 880, -840, 880\}
+08079 ,\{ 410, -1650, -370, 410, -370\}
+08080 \}
+08081 ,\{\{ 410, -1410, -370, 410, -370\}
+08082 ,\{ 410, -1650, -370, 410, -370\}
+08083 ,\{ 410, -1410, -370, 410, -370\}
+08084 ,\{ 410, -1650, -370, 410, -370\}
+08085 ,\{ -370, -1650, -370, -840, -370\}
+08086 \}
+08087 \}
+08088 ,\{\{\{ 750, 730, 750, 730, -1140\}
+08089 ,\{ -90, -350, -90, -350, -1140\}
+08090 ,\{ -500, -520, -500, -520, -1310\}
+08091 ,\{ 750, 730, 750, 730, -1310\}
+08092 ,\{ -500, -520, -500, -520, -1310\}
+08093 \}
+08094 ,\{\{ -280, -520, -280, -520, -1250\}
+08095 ,\{ -680, -700, -680, -700, -1250\}
+08096 ,\{ -500, -520, -500, -520, -1310\}
+08097 ,\{ -280, -540, -280, -540, -1330\}
+08098 ,\{ -500, -520, -500, -520, -1310\}
+08099 \}
+08100 ,\{\{ -500, -520, -500, -520, -1310\}
+08101 ,\{ -500, -520, -500, -520, -1310\}
+08102 ,\{ -500, -520, -500, -520, -1310\}
+08103 ,\{ -500, -520, -500, -520, -1310\}
+08104 ,\{ -500, -520, -500, -520, -1310\}
+08105 \}
+08106 ,\{\{ 750, 730, 750, 730, -1140\}
+08107 ,\{ -90, -350, -90, -350, -1140\}
+08108 ,\{ -500, -520, -500, -520, -1310\}
+08109 ,\{ 750, 730, 750, 730, -1310\}
+08110 ,\{ -500, -520, -500, -520, -1310\}
+08111 \}
+08112 ,\{\{ -500, -520, -500, -520, -1310\}
+08113 ,\{ -500, -520, -500, -520, -1310\}
+08114 ,\{ -500, -520, -500, -520, -1310\}
+08115 ,\{ -500, -520, -500, -520, -1310\}
+08116 ,\{ -500, -520, -500, -520, -1310\}
+08117 \}
+08118 \}
+08119 \}
+08120 ,\{\{\{\{ 1560, 1560, 1430, 1470, 1430\}
+08121 ,\{ 1470, 820, 690, 1470, 690\}
+08122 ,\{ 960, 310, 180, 960, 180\}
+08123 ,\{ 1560, 1560, 1430, 1280, 1430\}
+08124 ,\{ 960, 550, 180, 960, 180\}
+08125 \}
+08126 ,\{\{ 1470, 820, 690, 1470, 690\}
+08127 ,\{ 1470, 820, 690, 1470, 690\}
+08128 ,\{ 960, 310, 180, 960, 180\}
+08129 ,\{ 80, -30, 80, -310, -160\}
+08130 ,\{ 960, 310, 180, 960, 180\}
+08131 \}
+08132 ,\{\{ 960, 310, 180, 960, 180\}
+08133 ,\{ 960, 310, 180, 960, 180\}
+08134 ,\{ 960, 310, 180, 960, 180\}
+08135 ,\{ 960, 310, 180, 960, 180\}
+08136 ,\{ 960, 310, 180, 960, 180\}
+08137 \}
+08138 ,\{\{ 1560, 1560, 1430, 1280, 1430\}
+08139 ,\{ -90, -200, -90, -480, -330\}
+08140 ,\{ 960, 310, 180, 960, 180\}
+08141 ,\{ 1560, 1560, 1430, 1280, 1430\}
+08142 ,\{ 960, 310, 180, 960, 180\}
+08143 \}
+08144 ,\{\{ 960, 550, 180, 960, 180\}
+08145 ,\{ 960, 310, 180, 960, 180\}
+08146 ,\{ 960, 310, 180, 960, 180\}
+08147 ,\{ 960, 310, 180, 960, 180\}
+08148 ,\{ 550, 550, 180, 30, 180\}
+08149 \}
+08150 \}
+08151 ,\{\{\{ 1560, 1560, 1430, -880, 1430\}
+08152 ,\{ 820, 820, 690, -880, 690\}
+08153 ,\{ 310, 310, 180, -1150, 180\}
+08154 ,\{ 1560, 1560, 1430, -1390, 1430\}
+08155 ,\{ 550, 550, 180, -1150, 180\}
+08156 \}
+08157 ,\{\{ 820, 820, 690, -880, 690\}
+08158 ,\{ 820, 820, 690, -880, 690\}
+08159 ,\{ 310, 310, 180, -1390, 180\}
+08160 ,\{ -30, -30, -160, -1730, -160\}
+08161 ,\{ 310, 310, 180, -1390, 180\}
+08162 \}
+08163 ,\{\{ 310, 310, 180, -1150, 180\}
+08164 ,\{ 310, 310, 180, -1390, 180\}
+08165 ,\{ 310, 310, 180, -1150, 180\}
+08166 ,\{ 310, 310, 180, -1390, 180\}
+08167 ,\{ 310, 310, 180, -1150, 180\}
+08168 \}
+08169 ,\{\{ 1560, 1560, 1430, -1390, 1430\}
+08170 ,\{ -200, -200, -330, -1900, -330\}
+08171 ,\{ 310, 310, 180, -1390, 180\}
+08172 ,\{ 1560, 1560, 1430, -1390, 1430\}
+08173 ,\{ 310, 310, 180, -1390, 180\}
+08174 \}
+08175 ,\{\{ 550, 550, 180, -1150, 180\}
+08176 ,\{ 310, 310, 180, -1390, 180\}
+08177 ,\{ 310, 310, 180, -1150, 180\}
+08178 ,\{ 310, 310, 180, -1390, 180\}
+08179 ,\{ 550, 550, 180, -1390, 180\}
+08180 \}
+08181 \}
+08182 ,\{\{\{ 1430, 1280, 1430, 1280, 990\}
+08183 ,\{ 690, 540, 690, 540, 250\}
+08184 ,\{ 180, 30, 180, 30, -260\}
+08185 ,\{ 1430, 1280, 1430, 1280, 990\}
+08186 ,\{ 180, 30, 180, 30, -260\}
+08187 \}
+08188 ,\{\{ 690, 540, 690, 540, 250\}
+08189 ,\{ 690, 540, 690, 540, 250\}
+08190 ,\{ 180, 30, 180, 30, -260\}
+08191 ,\{ 80, -310, 80, -310, -360\}
+08192 ,\{ 180, 30, 180, 30, -260\}
+08193 \}
+08194 ,\{\{ 180, 30, 180, 30, -260\}
+08195 ,\{ 180, 30, 180, 30, -260\}
+08196 ,\{ 180, 30, 180, 30, -260\}
+08197 ,\{ 180, 30, 180, 30, -260\}
+08198 ,\{ 180, 30, 180, 30, -260\}
+08199 \}
+08200 ,\{\{ 1430, 1280, 1430, 1280, 990\}
+08201 ,\{ -90, -480, -90, -480, -530\}
+08202 ,\{ 180, 30, 180, 30, -260\}
+08203 ,\{ 1430, 1280, 1430, 1280, 990\}
+08204 ,\{ 180, 30, 180, 30, -260\}
+08205 \}
+08206 ,\{\{ 180, 30, 180, 30, -260\}
+08207 ,\{ 180, 30, 180, 30, -260\}
+08208 ,\{ 180, 30, 180, 30, -260\}
+08209 ,\{ 180, 30, 180, 30, -260\}
+08210 ,\{ 180, 30, 180, 30, -260\}
+08211 \}
+08212 \}
+08213 ,\{\{\{ 1470, -580, 1430, 1470, 1430\}
+08214 ,\{ 1470, -580, 690, 1470, 690\}
+08215 ,\{ 960, -850, 180, 960, 180\}
+08216 ,\{ 1430, -1090, 1430, 960, 1430\}
+08217 ,\{ 960, -850, 180, 960, 180\}
+08218 \}
+08219 ,\{\{ 1470, -580, 690, 1470, 690\}
+08220 ,\{ 1470, -580, 690, 1470, 690\}
+08221 ,\{ 960, -1090, 180, 960, 180\}
+08222 ,\{ -160, -1430, -160, -630, -160\}
+08223 ,\{ 960, -1090, 180, 960, 180\}
+08224 \}
+08225 ,\{\{ 960, -850, 180, 960, 180\}
+08226 ,\{ 960, -1090, 180, 960, 180\}
+08227 ,\{ 960, -850, 180, 960, 180\}
+08228 ,\{ 960, -1090, 180, 960, 180\}
+08229 ,\{ 960, -850, 180, 960, 180\}
+08230 \}
+08231 ,\{\{ 1430, -1090, 1430, 960, 1430\}
+08232 ,\{ -330, -1600, -330, -800, -330\}
+08233 ,\{ 960, -1090, 180, 960, 180\}
+08234 ,\{ 1430, -1090, 1430, -290, 1430\}
+08235 ,\{ 960, -1090, 180, 960, 180\}
+08236 \}
+08237 ,\{\{ 960, -850, 180, 960, 180\}
+08238 ,\{ 960, -1090, 180, 960, 180\}
+08239 ,\{ 960, -850, 180, 960, 180\}
+08240 ,\{ 960, -1090, 180, 960, 180\}
+08241 ,\{ 180, -1090, 180, -290, 180\}
+08242 \}
+08243 \}
+08244 ,\{\{\{ 1300, 1280, 1300, 1280, -10\}
+08245 ,\{ 560, 540, 560, 540, -10\}
+08246 ,\{ 50, 30, 50, 30, -760\}
+08247 ,\{ 1300, 1280, 1300, 1280, -760\}
+08248 ,\{ 50, 30, 50, 30, -760\}
+08249 \}
+08250 ,\{\{ 560, 540, 560, 540, -10\}
+08251 ,\{ 560, 540, 560, 540, -10\}
+08252 ,\{ 50, 30, 50, 30, -760\}
+08253 ,\{ -50, -310, -50, -310, -1100\}
+08254 ,\{ 50, 30, 50, 30, -760\}
+08255 \}
+08256 ,\{\{ 50, 30, 50, 30, -760\}
+08257 ,\{ 50, 30, 50, 30, -760\}
+08258 ,\{ 50, 30, 50, 30, -760\}
+08259 ,\{ 50, 30, 50, 30, -760\}
+08260 ,\{ 50, 30, 50, 30, -760\}
+08261 \}
+08262 ,\{\{ 1300, 1280, 1300, 1280, -760\}
+08263 ,\{ -220, -480, -220, -480, -1270\}
+08264 ,\{ 50, 30, 50, 30, -760\}
+08265 ,\{ 1300, 1280, 1300, 1280, -760\}
+08266 ,\{ 50, 30, 50, 30, -760\}
+08267 \}
+08268 ,\{\{ 50, 30, 50, 30, -760\}
+08269 ,\{ 50, 30, 50, 30, -760\}
+08270 ,\{ 50, 30, 50, 30, -760\}
+08271 ,\{ 50, 30, 50, 30, -760\}
+08272 ,\{ 50, 30, 50, 30, -760\}
+08273 \}
+08274 \}
+08275 \}
+08276 ,\{\{\{\{ 2050, 1930, 1800, 2050, 1800\}
+08277 ,\{ 2050, 1400, 1270, 2050, 1270\}
+08278 ,\{ 1750, 1100, 970, 1750, 970\}
+08279 ,\{ 1930, 1930, 1800, 1760, 1800\}
+08280 ,\{ 1750, 1100, 970, 1750, 970\}
+08281 \}
+08282 ,\{\{ 2050, 1400, 1270, 2050, 1270\}
+08283 ,\{ 2050, 1400, 1270, 2050, 1270\}
+08284 ,\{ 1740, 1090, 960, 1740, 960\}
+08285 ,\{ 130, 10, 130, -260, -110\}
+08286 ,\{ 1740, 1090, 960, 1740, 960\}
+08287 \}
+08288 ,\{\{ 1760, 1110, 980, 1760, 980\}
+08289 ,\{ 1760, 1110, 980, 1760, 980\}
+08290 ,\{ 1750, 1100, 970, 1750, 970\}
+08291 ,\{ 1760, 1110, 980, 1760, 980\}
+08292 ,\{ 1750, 1100, 970, 1750, 970\}
+08293 \}
+08294 ,\{\{ 1930, 1930, 1800, 1740, 1800\}
+08295 ,\{ 300, 190, 300, -80, 60\}
+08296 ,\{ 1740, 1090, 960, 1740, 960\}
+08297 ,\{ 1930, 1930, 1800, 1650, 1800\}
+08298 ,\{ 1740, 1090, 960, 1740, 960\}
+08299 \}
+08300 ,\{\{ 1760, 1110, 980, 1760, 980\}
+08301 ,\{ 1760, 1110, 980, 1760, 980\}
+08302 ,\{ 1750, 1100, 970, 1750, 970\}
+08303 ,\{ 1760, 1110, 980, 1760, 980\}
+08304 ,\{ 360, 360, 0, -150, 0\}
+08305 \}
+08306 \}
+08307 ,\{\{\{ 1930, 1930, 1800, -300, 1800\}
+08308 ,\{ 1400, 1400, 1270, -300, 1270\}
+08309 ,\{ 1100, 1100, 970, -360, 970\}
+08310 ,\{ 1930, 1930, 1800, -590, 1800\}
+08311 ,\{ 1100, 1100, 970, -360, 970\}
+08312 \}
+08313 ,\{\{ 1400, 1400, 1270, -300, 1270\}
+08314 ,\{ 1400, 1400, 1270, -300, 1270\}
+08315 ,\{ 1090, 1090, 960, -610, 960\}
+08316 ,\{ 10, 10, -110, -1690, -110\}
+08317 ,\{ 1090, 1090, 960, -610, 960\}
+08318 \}
+08319 ,\{\{ 1110, 1110, 980, -360, 980\}
+08320 ,\{ 1110, 1110, 980, -590, 980\}
+08321 ,\{ 1100, 1100, 970, -360, 970\}
+08322 ,\{ 1110, 1110, 980, -590, 980\}
+08323 ,\{ 1100, 1100, 970, -360, 970\}
+08324 \}
+08325 ,\{\{ 1930, 1930, 1800, -610, 1800\}
+08326 ,\{ 190, 190, 60, -1510, 60\}
+08327 ,\{ 1090, 1090, 960, -610, 960\}
+08328 ,\{ 1930, 1930, 1800, -1020, 1800\}
+08329 ,\{ 1090, 1090, 960, -610, 960\}
+08330 \}
+08331 ,\{\{ 1110, 1110, 980, -360, 980\}
+08332 ,\{ 1110, 1110, 980, -590, 980\}
+08333 ,\{ 1100, 1100, 970, -360, 970\}
+08334 ,\{ 1110, 1110, 980, -590, 980\}
+08335 ,\{ 360, 360, 0, -1580, 0\}
+08336 \}
+08337 \}
+08338 ,\{\{\{ 1800, 1650, 1800, 1650, 1360\}
+08339 ,\{ 1270, 1120, 1270, 1120, 830\}
+08340 ,\{ 970, 820, 970, 820, 530\}
+08341 ,\{ 1800, 1650, 1800, 1650, 1360\}
+08342 ,\{ 970, 820, 970, 820, 530\}
+08343 \}
+08344 ,\{\{ 1270, 1120, 1270, 1120, 830\}
+08345 ,\{ 1270, 1120, 1270, 1120, 830\}
+08346 ,\{ 960, 810, 960, 810, 520\}
+08347 ,\{ 130, -260, 130, -260, -310\}
+08348 ,\{ 960, 810, 960, 810, 520\}
+08349 \}
+08350 ,\{\{ 980, 830, 980, 830, 540\}
+08351 ,\{ 980, 830, 980, 830, 540\}
+08352 ,\{ 970, 820, 970, 820, 530\}
+08353 ,\{ 980, 830, 980, 830, 540\}
+08354 ,\{ 970, 820, 970, 820, 530\}
+08355 \}
+08356 ,\{\{ 1800, 1650, 1800, 1650, 1360\}
+08357 ,\{ 300, -80, 300, -80, -130\}
+08358 ,\{ 960, 810, 960, 810, 520\}
+08359 ,\{ 1800, 1650, 1800, 1650, 1360\}
+08360 ,\{ 960, 810, 960, 810, 520\}
+08361 \}
+08362 ,\{\{ 980, 830, 980, 830, 540\}
+08363 ,\{ 980, 830, 980, 830, 540\}
+08364 ,\{ 970, 820, 970, 820, 530\}
+08365 ,\{ 980, 830, 980, 830, 540\}
+08366 ,\{ 0, -150, 0, -150, -440\}
+08367 \}
+08368 \}
+08369 ,\{\{\{ 2050, 0, 1800, 2050, 1800\}
+08370 ,\{ 2050, 0, 1270, 2050, 1270\}
+08371 ,\{ 1750, -60, 970, 1750, 970\}
+08372 ,\{ 1800, -290, 1800, 1760, 1800\}
+08373 ,\{ 1750, -60, 970, 1750, 970\}
+08374 \}
+08375 ,\{\{ 2050, 0, 1270, 2050, 1270\}
+08376 ,\{ 2050, 0, 1270, 2050, 1270\}
+08377 ,\{ 1740, -310, 960, 1740, 960\}
+08378 ,\{ -110, -1390, -110, -580, -110\}
+08379 ,\{ 1740, -310, 960, 1740, 960\}
+08380 \}
+08381 ,\{\{ 1760, -60, 980, 1760, 980\}
+08382 ,\{ 1760, -290, 980, 1760, 980\}
+08383 ,\{ 1750, -60, 970, 1750, 970\}
+08384 ,\{ 1760, -290, 980, 1760, 980\}
+08385 ,\{ 1750, -60, 970, 1750, 970\}
+08386 \}
+08387 ,\{\{ 1800, -310, 1800, 1740, 1800\}
+08388 ,\{ 60, -1210, 60, -400, 60\}
+08389 ,\{ 1740, -310, 960, 1740, 960\}
+08390 ,\{ 1800, -720, 1800, 80, 1800\}
+08391 ,\{ 1740, -310, 960, 1740, 960\}
+08392 \}
+08393 ,\{\{ 1760, -60, 980, 1760, 980\}
+08394 ,\{ 1760, -290, 980, 1760, 980\}
+08395 ,\{ 1750, -60, 970, 1750, 970\}
+08396 ,\{ 1760, -290, 980, 1760, 980\}
+08397 ,\{ 0, -1280, 0, -470, 0\}
+08398 \}
+08399 \}
+08400 ,\{\{\{ 1670, 1650, 1670, 1650, 570\}
+08401 ,\{ 1140, 1120, 1140, 1120, 570\}
+08402 ,\{ 840, 820, 840, 820, 30\}
+08403 ,\{ 1670, 1650, 1670, 1650, 40\}
+08404 ,\{ 840, 820, 840, 820, 30\}
+08405 \}
+08406 ,\{\{ 1140, 1120, 1140, 1120, 570\}
+08407 ,\{ 1140, 1120, 1140, 1120, 570\}
+08408 ,\{ 830, 810, 830, 810, 20\}
+08409 ,\{ 0, -260, 0, -260, -1050\}
+08410 ,\{ 830, 810, 830, 810, 20\}
+08411 \}
+08412 ,\{\{ 850, 830, 850, 830, 40\}
+08413 ,\{ 850, 830, 850, 830, 40\}
+08414 ,\{ 840, 820, 840, 820, 30\}
+08415 ,\{ 850, 830, 850, 830, 40\}
+08416 ,\{ 840, 820, 840, 820, 30\}
+08417 \}
+08418 ,\{\{ 1670, 1650, 1670, 1650, 20\}
+08419 ,\{ 180, -80, 180, -80, -870\}
+08420 ,\{ 830, 810, 830, 810, 20\}
+08421 ,\{ 1670, 1650, 1670, 1650, -380\}
+08422 ,\{ 830, 810, 830, 810, 20\}
+08423 \}
+08424 ,\{\{ 850, 830, 850, 830, 40\}
+08425 ,\{ 850, 830, 850, 830, 40\}
+08426 ,\{ 840, 820, 840, 820, 30\}
+08427 ,\{ 850, 830, 850, 830, 40\}
+08428 ,\{ -130, -150, -130, -150, -940\}
+08429 \}
+08430 \}
+08431 \}
+08432 ,\{\{\{\{ 2120, 2120, 1990, 2120, 1990\}
+08433 ,\{ 2120, 1470, 1340, 2120, 1340\}
+08434 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08435 ,\{ 2120, 2120, 1990, 1990, 1990\}
+08436 ,\{ 1860, 1210, 1080, 1860, 1080\}
+08437 \}
+08438 ,\{\{ 2120, 1470, 1340, 2120, 1340\}
+08439 ,\{ 2120, 1470, 1340, 2120, 1340\}
+08440 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08441 ,\{ 180, 60, 180, -210, -60\}
+08442 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08443 \}
+08444 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+08445 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08446 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08447 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08448 ,\{ 1860, 1210, 1080, 1860, 1080\}
+08449 \}
+08450 ,\{\{ 2120, 2120, 1990, 1840, 1990\}
+08451 ,\{ -120, -230, -120, -510, -360\}
+08452 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08453 ,\{ 2120, 2120, 1990, 1840, 1990\}
+08454 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08455 \}
+08456 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+08457 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08458 ,\{ 1550, 900, 770, 1550, 770\}
+08459 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08460 ,\{ 640, 640, 270, 120, 270\}
+08461 \}
+08462 \}
+08463 ,\{\{\{ 2120, 2120, 1990, -120, 1990\}
+08464 ,\{ 1470, 1470, 1340, -230, 1340\}
+08465 ,\{ 1340, 1340, 1210, -120, 1210\}
+08466 ,\{ 2120, 2120, 1990, -360, 1990\}
+08467 ,\{ 1210, 1210, 1080, -250, 1080\}
+08468 \}
+08469 ,\{\{ 1470, 1470, 1340, -230, 1340\}
+08470 ,\{ 1470, 1470, 1340, -230, 1340\}
+08471 ,\{ 1190, 1190, 1060, -510, 1060\}
+08472 ,\{ 60, 60, -60, -1640, -60\}
+08473 ,\{ 1190, 1190, 1060, -510, 1060\}
+08474 \}
+08475 ,\{\{ 1340, 1340, 1210, -120, 1210\}
+08476 ,\{ 1340, 1340, 1210, -360, 1210\}
+08477 ,\{ 1340, 1340, 1210, -120, 1210\}
+08478 ,\{ 1340, 1340, 1210, -360, 1210\}
+08479 ,\{ 1210, 1210, 1080, -250, 1080\}
+08480 \}
+08481 ,\{\{ 2120, 2120, 1990, -510, 1990\}
+08482 ,\{ -230, -230, -360, -1940, -360\}
+08483 ,\{ 1190, 1190, 1060, -510, 1060\}
+08484 ,\{ 2120, 2120, 1990, -830, 1990\}
+08485 ,\{ 1190, 1190, 1060, -510, 1060\}
+08486 \}
+08487 ,\{\{ 1340, 1340, 1210, -360, 1210\}
+08488 ,\{ 1340, 1340, 1210, -360, 1210\}
+08489 ,\{ 900, 900, 770, -560, 770\}
+08490 ,\{ 1340, 1340, 1210, -360, 1210\}
+08491 ,\{ 640, 640, 270, -1300, 270\}
+08492 \}
+08493 \}
+08494 ,\{\{\{ 1990, 1840, 1990, 1840, 1550\}
+08495 ,\{ 1340, 1190, 1340, 1190, 900\}
+08496 ,\{ 1210, 1060, 1210, 1060, 770\}
+08497 ,\{ 1990, 1840, 1990, 1840, 1550\}
+08498 ,\{ 1080, 930, 1080, 930, 640\}
+08499 \}
+08500 ,\{\{ 1340, 1190, 1340, 1190, 900\}
+08501 ,\{ 1340, 1190, 1340, 1190, 900\}
+08502 ,\{ 1060, 910, 1060, 910, 620\}
+08503 ,\{ 180, -210, 180, -210, -260\}
+08504 ,\{ 1060, 910, 1060, 910, 620\}
+08505 \}
+08506 ,\{\{ 1210, 1060, 1210, 1060, 770\}
+08507 ,\{ 1210, 1060, 1210, 1060, 770\}
+08508 ,\{ 1210, 1060, 1210, 1060, 770\}
+08509 ,\{ 1210, 1060, 1210, 1060, 770\}
+08510 ,\{ 1080, 930, 1080, 930, 640\}
+08511 \}
+08512 ,\{\{ 1990, 1840, 1990, 1840, 1550\}
+08513 ,\{ -120, -510, -120, -510, -560\}
+08514 ,\{ 1060, 910, 1060, 910, 620\}
+08515 ,\{ 1990, 1840, 1990, 1840, 1550\}
+08516 ,\{ 1060, 910, 1060, 910, 620\}
+08517 \}
+08518 ,\{\{ 1210, 1060, 1210, 1060, 770\}
+08519 ,\{ 1210, 1060, 1210, 1060, 770\}
+08520 ,\{ 770, 620, 770, 620, 330\}
+08521 ,\{ 1210, 1060, 1210, 1060, 770\}
+08522 ,\{ 270, 120, 270, 120, -170\}
+08523 \}
+08524 \}
+08525 ,\{\{\{ 2120, 180, 1990, 2120, 1990\}
+08526 ,\{ 2120, 60, 1340, 2120, 1340\}
+08527 ,\{ 1990, 180, 1210, 1990, 1210\}
+08528 ,\{ 1990, -60, 1990, 1990, 1990\}
+08529 ,\{ 1860, 50, 1080, 1860, 1080\}
+08530 \}
+08531 ,\{\{ 2120, 60, 1340, 2120, 1340\}
+08532 ,\{ 2120, 60, 1340, 2120, 1340\}
+08533 ,\{ 1840, -210, 1060, 1840, 1060\}
+08534 ,\{ -60, -1340, -60, -530, -60\}
+08535 ,\{ 1840, -210, 1060, 1840, 1060\}
+08536 \}
+08537 ,\{\{ 1990, 180, 1210, 1990, 1210\}
+08538 ,\{ 1990, -60, 1210, 1990, 1210\}
+08539 ,\{ 1990, 180, 1210, 1990, 1210\}
+08540 ,\{ 1990, -60, 1210, 1990, 1210\}
+08541 ,\{ 1860, 50, 1080, 1860, 1080\}
+08542 \}
+08543 ,\{\{ 1990, -210, 1990, 1840, 1990\}
+08544 ,\{ -360, -1640, -360, -830, -360\}
+08545 ,\{ 1840, -210, 1060, 1840, 1060\}
+08546 ,\{ 1990, -530, 1990, 270, 1990\}
+08547 ,\{ 1840, -210, 1060, 1840, 1060\}
+08548 \}
+08549 ,\{\{ 1990, -60, 1210, 1990, 1210\}
+08550 ,\{ 1990, -60, 1210, 1990, 1210\}
+08551 ,\{ 1550, -260, 770, 1550, 770\}
+08552 ,\{ 1990, -60, 1210, 1990, 1210\}
+08553 ,\{ 270, -1000, 270, -200, 270\}
+08554 \}
+08555 \}
+08556 ,\{\{\{ 1860, 1840, 1860, 1840, 640\}
+08557 ,\{ 1210, 1190, 1210, 1190, 640\}
+08558 ,\{ 1080, 1060, 1080, 1060, 270\}
+08559 ,\{ 1860, 1840, 1860, 1840, 270\}
+08560 ,\{ 950, 930, 950, 930, 140\}
+08561 \}
+08562 ,\{\{ 1210, 1190, 1210, 1190, 640\}
+08563 ,\{ 1210, 1190, 1210, 1190, 640\}
+08564 ,\{ 930, 910, 930, 910, 120\}
+08565 ,\{ 50, -210, 50, -210, -1000\}
+08566 ,\{ 930, 910, 930, 910, 120\}
+08567 \}
+08568 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+08569 ,\{ 1080, 1060, 1080, 1060, 270\}
+08570 ,\{ 1080, 1060, 1080, 1060, 270\}
+08571 ,\{ 1080, 1060, 1080, 1060, 270\}
+08572 ,\{ 950, 930, 950, 930, 140\}
+08573 \}
+08574 ,\{\{ 1860, 1840, 1860, 1840, 120\}
+08575 ,\{ -250, -510, -250, -510, -1300\}
+08576 ,\{ 930, 910, 930, 910, 120\}
+08577 ,\{ 1860, 1840, 1860, 1840, -200\}
+08578 ,\{ 930, 910, 930, 910, 120\}
+08579 \}
+08580 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+08581 ,\{ 1080, 1060, 1080, 1060, 270\}
+08582 ,\{ 640, 620, 640, 620, -170\}
+08583 ,\{ 1080, 1060, 1080, 1060, 270\}
+08584 ,\{ 140, 120, 140, 120, -670\}
+08585 \}
+08586 \}
+08587 \}
+08588 ,\{\{\{\{ 2120, 2120, 1990, 2120, 1990\}
+08589 ,\{ 2120, 1470, 1340, 2120, 1340\}
+08590 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08591 ,\{ 2120, 2120, 1990, 1990, 1990\}
+08592 ,\{ 1860, 1210, 1080, 1860, 1080\}
+08593 \}
+08594 ,\{\{ 2120, 1470, 1340, 2120, 1340\}
+08595 ,\{ 2120, 1470, 1340, 2120, 1340\}
+08596 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08597 ,\{ 400, 290, 400, 10, 160\}
+08598 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08599 \}
+08600 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+08601 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08602 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08603 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08604 ,\{ 1860, 1210, 1080, 1860, 1080\}
+08605 \}
+08606 ,\{\{ 2120, 2120, 1990, 1840, 1990\}
+08607 ,\{ 300, 190, 300, -80, 60\}
+08608 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08609 ,\{ 2120, 2120, 1990, 1840, 1990\}
+08610 ,\{ 1840, 1190, 1060, 1840, 1060\}
+08611 \}
+08612 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+08613 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08614 ,\{ 1750, 1100, 970, 1750, 970\}
+08615 ,\{ 1990, 1340, 1210, 1990, 1210\}
+08616 ,\{ 640, 640, 270, 120, 270\}
+08617 \}
+08618 \}
+08619 ,\{\{\{ 2120, 2120, 1990, -120, 1990\}
+08620 ,\{ 1470, 1470, 1340, -230, 1340\}
+08621 ,\{ 1340, 1340, 1210, -120, 1210\}
+08622 ,\{ 2120, 2120, 1990, -360, 1990\}
+08623 ,\{ 1210, 1210, 1080, -250, 1080\}
+08624 \}
+08625 ,\{\{ 1470, 1470, 1340, -230, 1340\}
+08626 ,\{ 1470, 1470, 1340, -230, 1340\}
+08627 ,\{ 1190, 1190, 1060, -510, 1060\}
+08628 ,\{ 290, 290, 160, -1410, 160\}
+08629 ,\{ 1190, 1190, 1060, -510, 1060\}
+08630 \}
+08631 ,\{\{ 1340, 1340, 1210, -120, 1210\}
+08632 ,\{ 1340, 1340, 1210, -360, 1210\}
+08633 ,\{ 1340, 1340, 1210, -120, 1210\}
+08634 ,\{ 1340, 1340, 1210, -360, 1210\}
+08635 ,\{ 1210, 1210, 1080, -250, 1080\}
+08636 \}
+08637 ,\{\{ 2120, 2120, 1990, -510, 1990\}
+08638 ,\{ 190, 190, 60, -1510, 60\}
+08639 ,\{ 1190, 1190, 1060, -510, 1060\}
+08640 ,\{ 2120, 2120, 1990, -830, 1990\}
+08641 ,\{ 1190, 1190, 1060, -510, 1060\}
+08642 \}
+08643 ,\{\{ 1340, 1340, 1210, -360, 1210\}
+08644 ,\{ 1340, 1340, 1210, -360, 1210\}
+08645 ,\{ 1100, 1100, 970, -360, 970\}
+08646 ,\{ 1340, 1340, 1210, -360, 1210\}
+08647 ,\{ 640, 640, 270, -1300, 270\}
+08648 \}
+08649 \}
+08650 ,\{\{\{ 1990, 1840, 1990, 1840, 1550\}
+08651 ,\{ 1340, 1190, 1340, 1190, 900\}
+08652 ,\{ 1210, 1060, 1210, 1060, 770\}
+08653 ,\{ 1990, 1840, 1990, 1840, 1550\}
+08654 ,\{ 1080, 930, 1080, 930, 640\}
+08655 \}
+08656 ,\{\{ 1340, 1190, 1340, 1190, 900\}
+08657 ,\{ 1340, 1190, 1340, 1190, 900\}
+08658 ,\{ 1060, 910, 1060, 910, 620\}
+08659 ,\{ 400, 10, 400, 10, -40\}
+08660 ,\{ 1060, 910, 1060, 910, 620\}
+08661 \}
+08662 ,\{\{ 1210, 1060, 1210, 1060, 770\}
+08663 ,\{ 1210, 1060, 1210, 1060, 770\}
+08664 ,\{ 1210, 1060, 1210, 1060, 770\}
+08665 ,\{ 1210, 1060, 1210, 1060, 770\}
+08666 ,\{ 1080, 930, 1080, 930, 640\}
+08667 \}
+08668 ,\{\{ 1990, 1840, 1990, 1840, 1550\}
+08669 ,\{ 300, -80, 300, -80, -130\}
+08670 ,\{ 1060, 910, 1060, 910, 620\}
+08671 ,\{ 1990, 1840, 1990, 1840, 1550\}
+08672 ,\{ 1060, 910, 1060, 910, 620\}
+08673 \}
+08674 ,\{\{ 1210, 1060, 1210, 1060, 770\}
+08675 ,\{ 1210, 1060, 1210, 1060, 770\}
+08676 ,\{ 970, 820, 970, 820, 530\}
+08677 ,\{ 1210, 1060, 1210, 1060, 770\}
+08678 ,\{ 270, 120, 270, 120, -170\}
+08679 \}
+08680 \}
+08681 ,\{\{\{ 2120, 180, 1990, 2120, 1990\}
+08682 ,\{ 2120, 60, 1340, 2120, 1340\}
+08683 ,\{ 1990, 180, 1210, 1990, 1210\}
+08684 ,\{ 1990, -60, 1990, 1990, 1990\}
+08685 ,\{ 1860, 50, 1080, 1860, 1080\}
+08686 \}
+08687 ,\{\{ 2120, 60, 1340, 2120, 1340\}
+08688 ,\{ 2120, 60, 1340, 2120, 1340\}
+08689 ,\{ 1840, -210, 1060, 1840, 1060\}
+08690 ,\{ 160, -1110, 160, -310, 160\}
+08691 ,\{ 1840, -210, 1060, 1840, 1060\}
+08692 \}
+08693 ,\{\{ 1990, 180, 1210, 1990, 1210\}
+08694 ,\{ 1990, -60, 1210, 1990, 1210\}
+08695 ,\{ 1990, 180, 1210, 1990, 1210\}
+08696 ,\{ 1990, -60, 1210, 1990, 1210\}
+08697 ,\{ 1860, 50, 1080, 1860, 1080\}
+08698 \}
+08699 ,\{\{ 1990, -210, 1990, 1840, 1990\}
+08700 ,\{ 60, -1210, 60, -400, 60\}
+08701 ,\{ 1840, -210, 1060, 1840, 1060\}
+08702 ,\{ 1990, -530, 1990, 270, 1990\}
+08703 ,\{ 1840, -210, 1060, 1840, 1060\}
+08704 \}
+08705 ,\{\{ 1990, -60, 1210, 1990, 1210\}
+08706 ,\{ 1990, -60, 1210, 1990, 1210\}
+08707 ,\{ 1750, -60, 970, 1750, 970\}
+08708 ,\{ 1990, -60, 1210, 1990, 1210\}
+08709 ,\{ 270, -1000, 270, -200, 270\}
+08710 \}
+08711 \}
+08712 ,\{\{\{ 1860, 1840, 1860, 1840, 640\}
+08713 ,\{ 1210, 1190, 1210, 1190, 640\}
+08714 ,\{ 1080, 1060, 1080, 1060, 270\}
+08715 ,\{ 1860, 1840, 1860, 1840, 270\}
+08716 ,\{ 950, 930, 950, 930, 140\}
+08717 \}
+08718 ,\{\{ 1210, 1190, 1210, 1190, 640\}
+08719 ,\{ 1210, 1190, 1210, 1190, 640\}
+08720 ,\{ 930, 910, 930, 910, 120\}
+08721 ,\{ 270, 10, 270, 10, -780\}
+08722 ,\{ 930, 910, 930, 910, 120\}
+08723 \}
+08724 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+08725 ,\{ 1080, 1060, 1080, 1060, 270\}
+08726 ,\{ 1080, 1060, 1080, 1060, 270\}
+08727 ,\{ 1080, 1060, 1080, 1060, 270\}
+08728 ,\{ 950, 930, 950, 930, 140\}
+08729 \}
+08730 ,\{\{ 1860, 1840, 1860, 1840, 120\}
+08731 ,\{ 180, -80, 180, -80, -870\}
+08732 ,\{ 930, 910, 930, 910, 120\}
+08733 ,\{ 1860, 1840, 1860, 1840, -200\}
+08734 ,\{ 930, 910, 930, 910, 120\}
+08735 \}
+08736 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+08737 ,\{ 1080, 1060, 1080, 1060, 270\}
+08738 ,\{ 840, 820, 840, 820, 30\}
+08739 ,\{ 1080, 1060, 1080, 1060, 270\}
+08740 ,\{ 140, 120, 140, 120, -670\}
+08741 \}
+08742 \}
+08743 \}
+08744 \}
+08745 ,\{\{\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08746 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08747 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08748 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08749 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08750 \}
+08751 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08752 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08753 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08754 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08755 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08756 \}
+08757 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08758 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08759 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08760 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08761 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08762 \}
+08763 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08764 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08765 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08766 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08767 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08768 \}
+08769 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08770 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08771 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08772 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08773 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08774 \}
+08775 \}
+08776 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08777 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08778 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08779 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08780 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08781 \}
+08782 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08783 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08784 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08785 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08786 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08787 \}
+08788 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08789 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08790 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08791 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08792 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08793 \}
+08794 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08795 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08796 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08797 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08798 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08799 \}
+08800 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08801 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08802 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08803 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08804 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08805 \}
+08806 \}
+08807 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08808 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08809 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08810 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08811 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08812 \}
+08813 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08814 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08815 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08816 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08817 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08818 \}
+08819 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08820 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08821 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08822 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08823 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08824 \}
+08825 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08826 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08827 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08828 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08829 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08830 \}
+08831 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08832 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08833 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08834 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08835 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08836 \}
+08837 \}
+08838 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08839 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08840 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08841 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08842 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08843 \}
+08844 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08845 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08846 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08847 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08848 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08849 \}
+08850 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08851 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08852 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08853 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08854 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08855 \}
+08856 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08857 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08858 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08859 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08860 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08861 \}
+08862 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08863 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08864 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08865 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08866 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08867 \}
+08868 \}
+08869 ,\{\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08870 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08871 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08872 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08873 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08874 \}
+08875 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08876 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08877 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08878 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08879 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08880 \}
+08881 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08882 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08883 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08884 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08885 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08886 \}
+08887 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08888 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08889 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08890 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08891 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08892 \}
+08893 ,\{\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08894 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08895 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08896 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08897 ,\{ \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, INF\}
+08898 \}
+08899 \}
+08900 \}
+08901 ,\{\{\{\{ 1350, 850, 720, 1350, 720\}
+08902 ,\{ 1300, 650, 540, 1300, 520\}
+08903 ,\{ 1350, 700, 570, 1350, 570\}
+08904 ,\{ 1300, 850, 720, 1300, 720\}
+08905 ,\{ 1250, 590, 460, 1250, 460\}
+08906 \}
+08907 ,\{\{ 1160, 500, 400, 1160, 370\}
+08908 ,\{ 1160, 500, 370, 1160, 370\}
+08909 ,\{ 850, 190, 60, 850, 60\}
+08910 ,\{ 400, 290, 400, 10, 170\}
+08911 ,\{ 850, 190, 60, 850, 60\}
+08912 \}
+08913 ,\{\{ 1300, 650, 520, 1300, 520\}
+08914 ,\{ 1300, 650, 520, 1300, 520\}
+08915 ,\{ 1290, 640, 510, 1290, 510\}
+08916 ,\{ 1300, 650, 520, 1300, 520\}
+08917 ,\{ 1250, 590, 460, 1250, 460\}
+08918 \}
+08919 ,\{\{ 850, 850, 720, 850, 720\}
+08920 ,\{ 540, 0, 540, -270, -120\}
+08921 ,\{ 850, 190, 60, 850, 60\}
+08922 ,\{ 850, 850, 720, 570, 720\}
+08923 ,\{ 850, 190, 60, 850, 60\}
+08924 \}
+08925 ,\{\{ 1350, 700, 570, 1350, 570\}
+08926 ,\{ 1300, 650, 520, 1300, 520\}
+08927 ,\{ 1350, 700, 570, 1350, 570\}
+08928 ,\{ 1300, 650, 520, 1300, 520\}
+08929 ,\{ 100, 100, -270, -230, -270\}
+08930 \}
+08931 \}
+08932 ,\{\{\{ 850, 850, 720, -330, 720\}
+08933 ,\{ 650, 650, 520, -620, 520\}
+08934 ,\{ 700, 700, 570, -330, 570\}
+08935 ,\{ 850, 850, 720, -620, 720\}
+08936 ,\{ 590, 590, 460, -440, 460\}
+08937 \}
+08938 ,\{\{ 500, 500, 370, -770, 370\}
+08939 ,\{ 500, 500, 370, -770, 370\}
+08940 ,\{ 190, 190, 60, -1070, 60\}
+08941 ,\{ 290, 290, 160, -980, 160\}
+08942 ,\{ 190, 190, 60, -1080, 60\}
+08943 \}
+08944 ,\{\{ 650, 650, 520, -390, 520\}
+08945 ,\{ 650, 650, 520, -620, 520\}
+08946 ,\{ 640, 640, 510, -390, 510\}
+08947 ,\{ 650, 650, 520, -620, 520\}
+08948 ,\{ 590, 590, 460, -440, 460\}
+08949 \}
+08950 ,\{\{ 850, 850, 720, -1080, 720\}
+08951 ,\{ 10, 0, 10, -1270, -120\}
+08952 ,\{ 190, 190, 60, -1080, 60\}
+08953 ,\{ 850, 850, 720, -1080, 720\}
+08954 ,\{ 190, 190, 60, -1080, 60\}
+08955 \}
+08956 ,\{\{ 700, 700, 570, -330, 570\}
+08957 ,\{ 650, 650, 520, -620, 520\}
+08958 ,\{ 700, 700, 570, -330, 570\}
+08959 ,\{ 650, 650, 520, -620, 520\}
+08960 ,\{ 100, 100, -270, -1300, -270\}
+08961 \}
+08962 \}
+08963 ,\{\{\{ 720, 570, 720, 570, 480\}
+08964 ,\{ 540, 370, 540, 370, 280\}
+08965 ,\{ 570, 420, 570, 420, 340\}
+08966 ,\{ 720, 570, 720, 570, 480\}
+08967 ,\{ 460, 310, 460, 310, 230\}
+08968 \}
+08969 ,\{\{ 400, 220, 400, 220, 170\}
+08970 ,\{ 370, 220, 370, 220, 140\}
+08971 ,\{ 60, -80, 60, -80, -170\}
+08972 ,\{ 400, 10, 400, 10, 170\}
+08973 ,\{ 60, -80, 60, -80, -170\}
+08974 \}
+08975 ,\{\{ 520, 370, 520, 370, 280\}
+08976 ,\{ 520, 370, 520, 370, 280\}
+08977 ,\{ 510, 360, 510, 360, 280\}
+08978 ,\{ 520, 370, 520, 370, 280\}
+08979 ,\{ 460, 310, 460, 310, 230\}
+08980 \}
+08981 ,\{\{ 720, 570, 720, 570, 480\}
+08982 ,\{ 540, -100, 540, -270, -120\}
+08983 ,\{ 60, -80, 60, -80, -170\}
+08984 ,\{ 720, 570, 720, 570, 480\}
+08985 ,\{ 60, -80, 60, -80, -170\}
+08986 \}
+08987 ,\{\{ 570, 420, 570, 420, 340\}
+08988 ,\{ 520, 370, 520, 370, 280\}
+08989 ,\{ 570, 420, 570, 420, 340\}
+08990 ,\{ 520, 370, 520, 370, 280\}
+08991 ,\{ -270, -420, -270, -420, -500\}
+08992 \}
+08993 \}
+08994 ,\{\{\{ 1350, -230, 720, 1350, 720\}
+08995 ,\{ 1300, -530, 520, 1300, 520\}
+08996 ,\{ 1350, -230, 570, 1350, 570\}
+08997 ,\{ 1300, -530, 720, 1300, 720\}
+08998 ,\{ 1250, -340, 460, 1250, 460\}
+08999 \}
+09000 ,\{\{ 1160, -670, 370, 1160, 370\}
+09001 ,\{ 1160, -670, 370, 1160, 370\}
+09002 ,\{ 850, -980, 60, 850, 60\}
+09003 ,\{ 160, -890, 160, -310, 160\}
+09004 ,\{ 850, -980, 60, 850, 60\}
+09005 \}
+09006 ,\{\{ 1300, -290, 520, 1300, 520\}
+09007 ,\{ 1300, -530, 520, 1300, 520\}
+09008 ,\{ 1290, -290, 510, 1290, 510\}
+09009 ,\{ 1300, -530, 520, 1300, 520\}
+09010 ,\{ 1250, -340, 460, 1250, 460\}
+09011 \}
+09012 ,\{\{ 850, -980, 720, 850, 720\}
+09013 ,\{ -120, -1170, -120, -590, -120\}
+09014 ,\{ 850, -980, 60, 850, 60\}
+09015 ,\{ 720, -1580, 720, -1000, 720\}
+09016 ,\{ 850, -980, 60, 850, 60\}
+09017 \}
+09018 ,\{\{ 1350, -230, 570, 1350, 570\}
+09019 ,\{ 1300, -530, 520, 1300, 520\}
+09020 ,\{ 1350, -230, 570, 1350, 570\}
+09021 ,\{ 1300, -530, 520, 1300, 520\}
+09022 ,\{ -230, -1320, -270, -230, -270\}
+09023 \}
+09024 \}
+09025 ,\{\{\{ 590, 570, 590, 570, -90\}
+09026 ,\{ 390, 370, 390, 370, -90\}
+09027 ,\{ 440, 420, 440, 420, -360\}
+09028 ,\{ 590, 570, 590, 570, -420\}
+09029 ,\{ 330, 310, 330, 310, -470\}
+09030 \}
+09031 ,\{\{ 270, 220, 270, 220, -320\}
+09032 ,\{ 240, 220, 240, 220, -320\}
+09033 ,\{ -60, -80, -60, -80, -830\}
+09034 ,\{ 270, 10, 270, 10, -780\}
+09035 ,\{ -60, -80, -60, -80, -870\}
+09036 \}
+09037 ,\{\{ 390, 370, 390, 370, -90\}
+09038 ,\{ 390, 370, 390, 370, -90\}
+09039 ,\{ 380, 360, 380, 360, -420\}
+09040 ,\{ 390, 370, 390, 370, -420\}
+09041 ,\{ 330, 310, 330, 310, -470\}
+09042 \}
+09043 ,\{\{ 590, 570, 590, 570, -810\}
+09044 ,\{ -10, -270, -10, -270, -810\}
+09045 ,\{ -60, -80, -60, -80, -870\}
+09046 ,\{ 590, 570, 590, 570, -1470\}
+09047 ,\{ -60, -80, -60, -80, -870\}
+09048 \}
+09049 ,\{\{ 440, 420, 440, 420, -360\}
+09050 ,\{ 390, 370, 390, 370, -420\}
+09051 ,\{ 440, 420, 440, 420, -360\}
+09052 ,\{ 390, 370, 390, 370, -420\}
+09053 ,\{ -400, -420, -400, -420, -1210\}
+09054 \}
+09055 \}
+09056 \}
+09057 ,\{\{\{\{ 1320, 850, 720, 1320, 720\}
+09058 ,\{ 1320, 670, 540, 1320, 540\}
+09059 ,\{ 870, 220, 90, 870, 90\}
+09060 ,\{ 960, 850, 720, 960, 720\}
+09061 ,\{ 870, 250, 90, 870, 90\}
+09062 \}
+09063 ,\{\{ 1320, 670, 540, 1320, 540\}
+09064 ,\{ 1320, 670, 540, 1320, 540\}
+09065 ,\{ 870, 220, 90, 870, 90\}
+09066 ,\{ -410, -520, -410, -800, -640\}
+09067 ,\{ 870, 220, 90, 870, 90\}
+09068 \}
+09069 ,\{\{ 960, 300, 170, 960, 170\}
+09070 ,\{ 960, 300, 170, 960, 170\}
+09071 ,\{ 650, 0, -130, 650, -130\}
+09072 ,\{ 960, 300, 170, 960, 170\}
+09073 ,\{ 650, 0, -130, 650, -130\}
+09074 \}
+09075 ,\{\{ 870, 850, 720, 870, 720\}
+09076 ,\{ 70, -40, 70, -320, -170\}
+09077 ,\{ 870, 220, 90, 870, 90\}
+09078 ,\{ 850, 850, 720, 570, 720\}
+09079 ,\{ 870, 220, 90, 870, 90\}
+09080 \}
+09081 ,\{\{ 960, 300, 170, 960, 170\}
+09082 ,\{ 960, 300, 170, 960, 170\}
+09083 ,\{ 340, -310, -440, 340, -440\}
+09084 ,\{ 960, 300, 170, 960, 170\}
+09085 ,\{ 250, 250, -90, -260, -110\}
+09086 \}
+09087 \}
+09088 ,\{\{\{ 850, 850, 720, 540, 720\}
+09089 ,\{ 670, 670, 540, 10, 540\}
+09090 ,\{ 540, 220, 90, 540, 90\}
+09091 ,\{ 850, 850, 720, -970, 720\}
+09092 ,\{ 250, 250, 90, -810, 90\}
+09093 \}
+09094 ,\{\{ 670, 670, 540, -100, 540\}
+09095 ,\{ 670, 670, 540, -600, 540\}
+09096 ,\{ 220, 220, 90, -100, 90\}
+09097 ,\{ -520, -520, -650, -1790, -650\}
+09098 ,\{ 220, 220, 90, -1050, 90\}
+09099 \}
+09100 ,\{\{ 540, 300, 170, 540, 170\}
+09101 ,\{ 300, 300, 170, 10, 170\}
+09102 ,\{ 540, 0, -130, 540, -130\}
+09103 ,\{ 300, 300, 170, -970, 170\}
+09104 ,\{ 0, 0, -130, -1030, -130\}
+09105 \}
+09106 ,\{\{ 850, 850, 720, -1050, 720\}
+09107 ,\{ -40, -40, -170, -1320, -170\}
+09108 ,\{ 220, 220, 90, -1050, 90\}
+09109 ,\{ 850, 850, 720, -1680, 720\}
+09110 ,\{ 220, 220, 90, -1050, 90\}
+09111 \}
+09112 ,\{\{ 300, 300, 170, -810, 170\}
+09113 ,\{ 300, 300, 170, -970, 170\}
+09114 ,\{ -310, -310, -440, -1340, -440\}
+09115 ,\{ 300, 300, 170, -970, 170\}
+09116 ,\{ 250, 250, -90, -810, -110\}
+09117 \}
+09118 \}
+09119 ,\{\{\{ 720, 570, 720, 570, 480\}
+09120 ,\{ 540, 390, 540, 390, 300\}
+09121 ,\{ 90, -60, 90, -60, -140\}
+09122 ,\{ 720, 570, 720, 570, 480\}
+09123 ,\{ 90, -60, 90, -60, -140\}
+09124 \}
+09125 ,\{\{ 540, 390, 540, 390, 300\}
+09126 ,\{ 540, 390, 540, 390, 300\}
+09127 ,\{ 90, -60, 90, -60, -140\}
+09128 ,\{ -410, -800, -410, -800, -640\}
+09129 ,\{ 90, -60, 90, -60, -140\}
+09130 \}
+09131 ,\{\{ 170, 20, 170, 20, -60\}
+09132 ,\{ 170, 20, 170, 20, -60\}
+09133 ,\{ -130, -280, -130, -280, -360\}
+09134 ,\{ 170, 20, 170, 20, -60\}
+09135 ,\{ -130, -280, -130, -280, -360\}
+09136 \}
+09137 ,\{\{ 720, 570, 720, 570, 480\}
+09138 ,\{ 70, -320, 70, -320, -170\}
+09139 ,\{ 90, -60, 90, -60, -140\}
+09140 ,\{ 720, 570, 720, 570, 480\}
+09141 ,\{ 90, -60, 90, -60, -140\}
+09142 \}
+09143 ,\{\{ 170, 20, 170, 20, -60\}
+09144 ,\{ 170, 20, 170, 20, -60\}
+09145 ,\{ -440, -590, -440, -590, -670\}
+09146 ,\{ 170, 20, 170, 20, -60\}
+09147 ,\{ -110, -260, -110, -260, -350\}
+09148 \}
+09149 \}
+09150 ,\{\{\{ 1320, -350, 720, 1320, 720\}
+09151 ,\{ 1320, -730, 540, 1320, 540\}
+09152 ,\{ 870, -350, 90, 870, 90\}
+09153 ,\{ 960, -870, 720, 960, 720\}
+09154 ,\{ 870, -940, 90, 870, 90\}
+09155 \}
+09156 ,\{\{ 1320, -350, 540, 1320, 540\}
+09157 ,\{ 1320, -730, 540, 1320, 540\}
+09158 ,\{ 870, -350, 90, 870, 90\}
+09159 ,\{ -650, -1920, -650, -1120, -650\}
+09160 ,\{ 870, -960, 90, 870, 90\}
+09161 \}
+09162 ,\{\{ 960, -870, 170, 960, 170\}
+09163 ,\{ 960, -1100, 170, 960, 170\}
+09164 ,\{ 650, -940, -130, 650, -130\}
+09165 ,\{ 960, -870, 170, 960, 170\}
+09166 ,\{ 650, -940, -130, 650, -130\}
+09167 \}
+09168 ,\{\{ 870, -960, 720, 870, 720\}
+09169 ,\{ -170, -1450, -170, -640, -170\}
+09170 ,\{ 870, -960, 90, 870, 90\}
+09171 ,\{ 720, -1370, 720, -1000, 720\}
+09172 ,\{ 870, -960, 90, 870, 90\}
+09173 \}
+09174 ,\{\{ 960, -870, 170, 960, 170\}
+09175 ,\{ 960, -870, 170, 960, 170\}
+09176 ,\{ 340, -1250, -440, 340, -440\}
+09177 ,\{ 960, -870, 170, 960, 170\}
+09178 ,\{ -110, -1360, -110, -580, -110\}
+09179 \}
+09180 \}
+09181 ,\{\{\{ 590, 570, 590, 570, -160\}
+09182 ,\{ 410, 390, 410, 390, -160\}
+09183 ,\{ -40, -60, -40, -60, -850\}
+09184 ,\{ 590, 570, 590, 570, -230\}
+09185 ,\{ -40, -60, -40, -60, -850\}
+09186 \}
+09187 ,\{\{ 410, 390, 410, 390, -160\}
+09188 ,\{ 410, 390, 410, 390, -160\}
+09189 ,\{ -40, -60, -40, -60, -850\}
+09190 ,\{ -540, -800, -540, -800, -1520\}
+09191 ,\{ -40, -60, -40, -60, -850\}
+09192 \}
+09193 ,\{\{ 40, 20, 40, 20, -400\}
+09194 ,\{ 40, 20, 40, 20, -400\}
+09195 ,\{ -260, -280, -260, -280, -1070\}
+09196 ,\{ 40, 20, 40, 20, -760\}
+09197 ,\{ -260, -280, -260, -280, -1070\}
+09198 \}
+09199 ,\{\{ 590, 570, 590, 570, -230\}
+09200 ,\{ -60, -320, -60, -320, -1110\}
+09201 ,\{ -40, -60, -40, -60, -850\}
+09202 ,\{ 590, 570, 590, 570, -230\}
+09203 ,\{ -40, -60, -40, -60, -850\}
+09204 \}
+09205 ,\{\{ 40, 20, 40, 20, -760\}
+09206 ,\{ 40, 20, 40, 20, -760\}
+09207 ,\{ -570, -590, -570, -590, -1380\}
+09208 ,\{ 40, 20, 40, 20, -760\}
+09209 ,\{ -240, -260, -240, -260, -1050\}
+09210 \}
+09211 \}
+09212 \}
+09213 ,\{\{\{\{ 1010, 1010, 880, 730, 880\}
+09214 ,\{ 410, -30, 40, 410, -190\}
+09215 ,\{ 410, -240, -370, 410, -370\}
+09216 ,\{ 1010, 1010, 880, 730, 880\}
+09217 ,\{ 410, 0, -370, 410, -370\}
+09218 \}
+09219 ,\{\{ 410, -70, -150, 410, -370\}
+09220 ,\{ 230, -70, -550, 230, -550\}
+09221 ,\{ 410, -240, -370, 410, -370\}
+09222 ,\{ -150, -260, -150, -540, -380\}
+09223 ,\{ 410, -240, -370, 410, -370\}
+09224 \}
+09225 ,\{\{ 410, -240, -370, 410, -370\}
+09226 ,\{ 410, -240, -370, 410, -370\}
+09227 ,\{ 410, -240, -370, 410, -370\}
+09228 ,\{ 410, -240, -370, 410, -370\}
+09229 ,\{ 410, -240, -370, 410, -370\}
+09230 \}
+09231 ,\{\{ 1010, 1010, 880, 730, 880\}
+09232 ,\{ 40, -30, 40, -350, -190\}
+09233 ,\{ 410, -240, -370, 410, -370\}
+09234 ,\{ 1010, 1010, 880, 730, 880\}
+09235 ,\{ 410, -240, -370, 410, -370\}
+09236 \}
+09237 ,\{\{ 410, 0, -370, 410, -370\}
+09238 ,\{ 410, -240, -370, 410, -370\}
+09239 ,\{ 410, -240, -370, 410, -370\}
+09240 ,\{ 410, -240, -370, 410, -370\}
+09241 ,\{ 0, 0, -370, -520, -370\}
+09242 \}
+09243 \}
+09244 ,\{\{\{ 1010, 1010, 880, -1280, 880\}
+09245 ,\{ -30, -30, -200, -1340, -200\}
+09246 ,\{ -240, -240, -370, -1280, -370\}
+09247 ,\{ 1010, 1010, 880, -1520, 880\}
+09248 ,\{ 0, 0, -370, -1280, -370\}
+09249 \}
+09250 ,\{\{ -70, -70, -370, -1520, -370\}
+09251 ,\{ -70, -70, -550, -1700, -550\}
+09252 ,\{ -240, -240, -370, -1520, -370\}
+09253 ,\{ -260, -260, -390, -1530, -390\}
+09254 ,\{ -240, -240, -370, -1520, -370\}
+09255 \}
+09256 ,\{\{ -240, -240, -370, -1280, -370\}
+09257 ,\{ -240, -240, -370, -1520, -370\}
+09258 ,\{ -240, -240, -370, -1280, -370\}
+09259 ,\{ -240, -240, -370, -1520, -370\}
+09260 ,\{ -240, -240, -370, -1280, -370\}
+09261 \}
+09262 ,\{\{ 1010, 1010, 880, -1340, 880\}
+09263 ,\{ -30, -30, -200, -1340, -200\}
+09264 ,\{ -240, -240, -370, -1520, -370\}
+09265 ,\{ 1010, 1010, 880, -1520, 880\}
+09266 ,\{ -240, -240, -370, -1520, -370\}
+09267 \}
+09268 ,\{\{ 0, 0, -370, -1280, -370\}
+09269 ,\{ -240, -240, -370, -1520, -370\}
+09270 ,\{ -240, -240, -370, -1280, -370\}
+09271 ,\{ -240, -240, -370, -1520, -370\}
+09272 ,\{ 0, 0, -370, -1520, -370\}
+09273 \}
+09274 \}
+09275 ,\{\{\{ 880, 730, 880, 730, 640\}
+09276 ,\{ 40, -350, 40, -350, -190\}
+09277 ,\{ -370, -520, -370, -520, -610\}
+09278 ,\{ 880, 730, 880, 730, 640\}
+09279 ,\{ -370, -520, -370, -520, -610\}
+09280 \}
+09281 ,\{\{ -150, -520, -150, -520, -380\}
+09282 ,\{ -550, -700, -550, -700, -790\}
+09283 ,\{ -370, -520, -370, -520, -610\}
+09284 ,\{ -150, -540, -150, -540, -380\}
+09285 ,\{ -370, -520, -370, -520, -610\}
+09286 \}
+09287 ,\{\{ -370, -520, -370, -520, -610\}
+09288 ,\{ -370, -520, -370, -520, -610\}
+09289 ,\{ -370, -520, -370, -520, -610\}
+09290 ,\{ -370, -520, -370, -520, -610\}
+09291 ,\{ -370, -520, -370, -520, -610\}
+09292 \}
+09293 ,\{\{ 880, 730, 880, 730, 640\}
+09294 ,\{ 40, -350, 40, -350, -190\}
+09295 ,\{ -370, -520, -370, -520, -610\}
+09296 ,\{ 880, 730, 880, 730, 640\}
+09297 ,\{ -370, -520, -370, -520, -610\}
+09298 \}
+09299 ,\{\{ -370, -520, -370, -520, -610\}
+09300 ,\{ -370, -520, -370, -520, -610\}
+09301 ,\{ -370, -520, -370, -520, -610\}
+09302 ,\{ -370, -520, -370, -520, -610\}
+09303 ,\{ -370, -520, -370, -520, -610\}
+09304 \}
+09305 \}
+09306 ,\{\{\{ 880, -1180, 880, 410, 880\}
+09307 ,\{ 410, -1250, -200, 410, -200\}
+09308 ,\{ 410, -1180, -370, 410, -370\}
+09309 ,\{ 880, -1420, 880, 410, 880\}
+09310 ,\{ 410, -1180, -370, 410, -370\}
+09311 \}
+09312 ,\{\{ 410, -1420, -370, 410, -370\}
+09313 ,\{ 230, -1600, -550, 230, -550\}
+09314 ,\{ 410, -1420, -370, 410, -370\}
+09315 ,\{ -390, -1440, -390, -860, -390\}
+09316 ,\{ 410, -1420, -370, 410, -370\}
+09317 \}
+09318 ,\{\{ 410, -1180, -370, 410, -370\}
+09319 ,\{ 410, -1420, -370, 410, -370\}
+09320 ,\{ 410, -1180, -370, 410, -370\}
+09321 ,\{ 410, -1420, -370, 410, -370\}
+09322 ,\{ 410, -1180, -370, 410, -370\}
+09323 \}
+09324 ,\{\{ 880, -1250, 880, 410, 880\}
+09325 ,\{ -200, -1250, -200, -670, -200\}
+09326 ,\{ 410, -1420, -370, 410, -370\}
+09327 ,\{ 880, -1420, 880, -840, 880\}
+09328 ,\{ 410, -1420, -370, 410, -370\}
+09329 \}
+09330 ,\{\{ 410, -1180, -370, 410, -370\}
+09331 ,\{ 410, -1420, -370, 410, -370\}
+09332 ,\{ 410, -1180, -370, 410, -370\}
+09333 ,\{ 410, -1420, -370, 410, -370\}
+09334 ,\{ -370, -1420, -370, -840, -370\}
+09335 \}
+09336 \}
+09337 ,\{\{\{ 750, 730, 750, 730, -1140\}
+09338 ,\{ -90, -350, -90, -350, -1140\}
+09339 ,\{ -500, -520, -500, -520, -1310\}
+09340 ,\{ 750, 730, 750, 730, -1310\}
+09341 ,\{ -500, -520, -500, -520, -1310\}
+09342 \}
+09343 ,\{\{ -280, -520, -280, -520, -1250\}
+09344 ,\{ -680, -700, -680, -700, -1250\}
+09345 ,\{ -500, -520, -500, -520, -1310\}
+09346 ,\{ -280, -540, -280, -540, -1330\}
+09347 ,\{ -500, -520, -500, -520, -1310\}
+09348 \}
+09349 ,\{\{ -500, -520, -500, -520, -1310\}
+09350 ,\{ -500, -520, -500, -520, -1310\}
+09351 ,\{ -500, -520, -500, -520, -1310\}
+09352 ,\{ -500, -520, -500, -520, -1310\}
+09353 ,\{ -500, -520, -500, -520, -1310\}
+09354 \}
+09355 ,\{\{ 750, 730, 750, 730, -1140\}
+09356 ,\{ -90, -350, -90, -350, -1140\}
+09357 ,\{ -500, -520, -500, -520, -1310\}
+09358 ,\{ 750, 730, 750, 730, -1310\}
+09359 ,\{ -500, -520, -500, -520, -1310\}
+09360 \}
+09361 ,\{\{ -500, -520, -500, -520, -1310\}
+09362 ,\{ -500, -520, -500, -520, -1310\}
+09363 ,\{ -500, -520, -500, -520, -1310\}
+09364 ,\{ -500, -520, -500, -520, -1310\}
+09365 ,\{ -500, -520, -500, -520, -1310\}
+09366 \}
+09367 \}
+09368 \}
+09369 ,\{\{\{\{ 1560, 1560, 1430, 1470, 1430\}
+09370 ,\{ 1470, 820, 690, 1470, 690\}
+09371 ,\{ 960, 310, 180, 960, 180\}
+09372 ,\{ 1560, 1560, 1430, 1280, 1430\}
+09373 ,\{ 960, 550, 180, 960, 180\}
+09374 \}
+09375 ,\{\{ 1470, 820, 690, 1470, 690\}
+09376 ,\{ 1470, 820, 690, 1470, 690\}
+09377 ,\{ 960, 310, 180, 960, 180\}
+09378 ,\{ 80, -30, 80, -310, -150\}
+09379 ,\{ 960, 310, 180, 960, 180\}
+09380 \}
+09381 ,\{\{ 960, 310, 180, 960, 180\}
+09382 ,\{ 960, 310, 180, 960, 180\}
+09383 ,\{ 960, 310, 180, 960, 180\}
+09384 ,\{ 960, 310, 180, 960, 180\}
+09385 ,\{ 960, 310, 180, 960, 180\}
+09386 \}
+09387 ,\{\{ 1560, 1560, 1430, 1280, 1430\}
+09388 ,\{ -90, -200, -90, -480, -320\}
+09389 ,\{ 960, 310, 180, 960, 180\}
+09390 ,\{ 1560, 1560, 1430, 1280, 1430\}
+09391 ,\{ 960, 310, 180, 960, 180\}
+09392 \}
+09393 ,\{\{ 960, 550, 180, 960, 180\}
+09394 ,\{ 960, 310, 180, 960, 180\}
+09395 ,\{ 960, 310, 180, 960, 180\}
+09396 ,\{ 960, 310, 180, 960, 180\}
+09397 ,\{ 550, 550, 180, 30, 180\}
+09398 \}
+09399 \}
+09400 ,\{\{\{ 1560, 1560, 1430, -30, 1430\}
+09401 ,\{ 820, 820, 690, -30, 690\}
+09402 ,\{ 310, 310, 180, -720, 180\}
+09403 ,\{ 1560, 1560, 1430, -960, 1430\}
+09404 ,\{ 550, 550, 180, -720, 180\}
+09405 \}
+09406 ,\{\{ 820, 820, 690, -30, 690\}
+09407 ,\{ 820, 820, 690, -30, 690\}
+09408 ,\{ 310, 310, 180, -960, 180\}
+09409 ,\{ -30, -30, -160, -1300, -160\}
+09410 ,\{ 310, 310, 180, -960, 180\}
+09411 \}
+09412 ,\{\{ 310, 310, 180, -720, 180\}
+09413 ,\{ 310, 310, 180, -960, 180\}
+09414 ,\{ 310, 310, 180, -720, 180\}
+09415 ,\{ 310, 310, 180, -960, 180\}
+09416 ,\{ 310, 310, 180, -720, 180\}
+09417 \}
+09418 ,\{\{ 1560, 1560, 1430, -960, 1430\}
+09419 ,\{ -200, -200, -330, -1470, -330\}
+09420 ,\{ 310, 310, 180, -960, 180\}
+09421 ,\{ 1560, 1560, 1430, -960, 1430\}
+09422 ,\{ 310, 310, 180, -960, 180\}
+09423 \}
+09424 ,\{\{ 550, 550, 180, -720, 180\}
+09425 ,\{ 310, 310, 180, -960, 180\}
+09426 ,\{ 310, 310, 180, -720, 180\}
+09427 ,\{ 310, 310, 180, -960, 180\}
+09428 ,\{ 550, 550, 180, -960, 180\}
+09429 \}
+09430 \}
+09431 ,\{\{\{ 1430, 1280, 1430, 1280, 1200\}
+09432 ,\{ 690, 540, 690, 540, 450\}
+09433 ,\{ 180, 30, 180, 30, -50\}
+09434 ,\{ 1430, 1280, 1430, 1280, 1200\}
+09435 ,\{ 180, 30, 180, 30, -50\}
+09436 \}
+09437 ,\{\{ 690, 540, 690, 540, 450\}
+09438 ,\{ 690, 540, 690, 540, 450\}
+09439 ,\{ 180, 30, 180, 30, -50\}
+09440 ,\{ 80, -310, 80, -310, -150\}
+09441 ,\{ 180, 30, 180, 30, -50\}
+09442 \}
+09443 ,\{\{ 180, 30, 180, 30, -50\}
+09444 ,\{ 180, 30, 180, 30, -50\}
+09445 ,\{ 180, 30, 180, 30, -50\}
+09446 ,\{ 180, 30, 180, 30, -50\}
+09447 ,\{ 180, 30, 180, 30, -50\}
+09448 \}
+09449 ,\{\{ 1430, 1280, 1430, 1280, 1200\}
+09450 ,\{ -90, -480, -90, -480, -320\}
+09451 ,\{ 180, 30, 180, 30, -50\}
+09452 ,\{ 1430, 1280, 1430, 1280, 1200\}
+09453 ,\{ 180, 30, 180, 30, -50\}
+09454 \}
+09455 ,\{\{ 180, 30, 180, 30, -50\}
+09456 ,\{ 180, 30, 180, 30, -50\}
+09457 ,\{ 180, 30, 180, 30, -50\}
+09458 ,\{ 180, 30, 180, 30, -50\}
+09459 ,\{ 180, 30, 180, 30, -50\}
+09460 \}
+09461 \}
+09462 ,\{\{\{ 1470, -360, 1430, 1470, 1430\}
+09463 ,\{ 1470, -360, 690, 1470, 690\}
+09464 ,\{ 960, -630, 180, 960, 180\}
+09465 ,\{ 1430, -870, 1430, 960, 1430\}
+09466 ,\{ 960, -630, 180, 960, 180\}
+09467 \}
+09468 ,\{\{ 1470, -360, 690, 1470, 690\}
+09469 ,\{ 1470, -360, 690, 1470, 690\}
+09470 ,\{ 960, -870, 180, 960, 180\}
+09471 ,\{ -160, -1210, -160, -630, -160\}
+09472 ,\{ 960, -870, 180, 960, 180\}
+09473 \}
+09474 ,\{\{ 960, -630, 180, 960, 180\}
+09475 ,\{ 960, -870, 180, 960, 180\}
+09476 ,\{ 960, -630, 180, 960, 180\}
+09477 ,\{ 960, -870, 180, 960, 180\}
+09478 ,\{ 960, -630, 180, 960, 180\}
+09479 \}
+09480 ,\{\{ 1430, -870, 1430, 960, 1430\}
+09481 ,\{ -330, -1380, -330, -800, -330\}
+09482 ,\{ 960, -870, 180, 960, 180\}
+09483 ,\{ 1430, -870, 1430, -290, 1430\}
+09484 ,\{ 960, -870, 180, 960, 180\}
+09485 \}
+09486 ,\{\{ 960, -630, 180, 960, 180\}
+09487 ,\{ 960, -870, 180, 960, 180\}
+09488 ,\{ 960, -630, 180, 960, 180\}
+09489 ,\{ 960, -870, 180, 960, 180\}
+09490 ,\{ 180, -870, 180, -290, 180\}
+09491 \}
+09492 \}
+09493 ,\{\{\{ 1300, 1280, 1300, 1280, -10\}
+09494 ,\{ 560, 540, 560, 540, -10\}
+09495 ,\{ 50, 30, 50, 30, -760\}
+09496 ,\{ 1300, 1280, 1300, 1280, -760\}
+09497 ,\{ 50, 30, 50, 30, -760\}
+09498 \}
+09499 ,\{\{ 560, 540, 560, 540, -10\}
+09500 ,\{ 560, 540, 560, 540, -10\}
+09501 ,\{ 50, 30, 50, 30, -760\}
+09502 ,\{ -50, -310, -50, -310, -1100\}
+09503 ,\{ 50, 30, 50, 30, -760\}
+09504 \}
+09505 ,\{\{ 50, 30, 50, 30, -760\}
+09506 ,\{ 50, 30, 50, 30, -760\}
+09507 ,\{ 50, 30, 50, 30, -760\}
+09508 ,\{ 50, 30, 50, 30, -760\}
+09509 ,\{ 50, 30, 50, 30, -760\}
+09510 \}
+09511 ,\{\{ 1300, 1280, 1300, 1280, -760\}
+09512 ,\{ -220, -480, -220, -480, -1270\}
+09513 ,\{ 50, 30, 50, 30, -760\}
+09514 ,\{ 1300, 1280, 1300, 1280, -760\}
+09515 ,\{ 50, 30, 50, 30, -760\}
+09516 \}
+09517 ,\{\{ 50, 30, 50, 30, -760\}
+09518 ,\{ 50, 30, 50, 30, -760\}
+09519 ,\{ 50, 30, 50, 30, -760\}
+09520 ,\{ 50, 30, 50, 30, -760\}
+09521 ,\{ 50, 30, 50, 30, -760\}
+09522 \}
+09523 \}
+09524 \}
+09525 ,\{\{\{\{ 2050, 1930, 1800, 2050, 1800\}
+09526 ,\{ 2050, 1400, 1270, 2050, 1270\}
+09527 ,\{ 1750, 1100, 970, 1750, 970\}
+09528 ,\{ 1930, 1930, 1800, 1760, 1800\}
+09529 ,\{ 1750, 1100, 970, 1750, 970\}
+09530 \}
+09531 ,\{\{ 2050, 1400, 1270, 2050, 1270\}
+09532 ,\{ 2050, 1400, 1270, 2050, 1270\}
+09533 ,\{ 1740, 1090, 960, 1740, 960\}
+09534 ,\{ 130, 10, 130, -260, -110\}
+09535 ,\{ 1740, 1090, 960, 1740, 960\}
+09536 \}
+09537 ,\{\{ 1760, 1110, 980, 1760, 980\}
+09538 ,\{ 1760, 1110, 980, 1760, 980\}
+09539 ,\{ 1750, 1100, 970, 1750, 970\}
+09540 ,\{ 1760, 1110, 980, 1760, 980\}
+09541 ,\{ 1750, 1100, 970, 1750, 970\}
+09542 \}
+09543 ,\{\{ 1930, 1930, 1800, 1740, 1800\}
+09544 ,\{ 300, 190, 300, -80, 70\}
+09545 ,\{ 1740, 1090, 960, 1740, 960\}
+09546 ,\{ 1930, 1930, 1800, 1650, 1800\}
+09547 ,\{ 1740, 1090, 960, 1740, 960\}
+09548 \}
+09549 ,\{\{ 1760, 1110, 980, 1760, 980\}
+09550 ,\{ 1760, 1110, 980, 1760, 980\}
+09551 ,\{ 1750, 1100, 970, 1750, 970\}
+09552 ,\{ 1760, 1110, 980, 1760, 980\}
+09553 ,\{ 360, 360, 0, -150, 0\}
+09554 \}
+09555 \}
+09556 ,\{\{\{ 1930, 1930, 1800, 130, 1800\}
+09557 ,\{ 1400, 1400, 1270, 130, 1270\}
+09558 ,\{ 1100, 1100, 970, 70, 970\}
+09559 ,\{ 1930, 1930, 1800, -160, 1800\}
+09560 ,\{ 1100, 1100, 970, 70, 970\}
+09561 \}
+09562 ,\{\{ 1400, 1400, 1270, 130, 1270\}
+09563 ,\{ 1400, 1400, 1270, 130, 1270\}
+09564 ,\{ 1090, 1090, 960, -180, 960\}
+09565 ,\{ 10, 10, -110, -1260, -110\}
+09566 ,\{ 1090, 1090, 960, -180, 960\}
+09567 \}
+09568 ,\{\{ 1110, 1110, 980, 70, 980\}
+09569 ,\{ 1110, 1110, 980, -160, 980\}
+09570 ,\{ 1100, 1100, 970, 70, 970\}
+09571 ,\{ 1110, 1110, 980, -160, 980\}
+09572 ,\{ 1100, 1100, 970, 70, 970\}
+09573 \}
+09574 ,\{\{ 1930, 1930, 1800, -180, 1800\}
+09575 ,\{ 190, 190, 60, -1080, 60\}
+09576 ,\{ 1090, 1090, 960, -180, 960\}
+09577 ,\{ 1930, 1930, 1800, -590, 1800\}
+09578 ,\{ 1090, 1090, 960, -180, 960\}
+09579 \}
+09580 ,\{\{ 1110, 1110, 980, 70, 980\}
+09581 ,\{ 1110, 1110, 980, -160, 980\}
+09582 ,\{ 1100, 1100, 970, 70, 970\}
+09583 ,\{ 1110, 1110, 980, -160, 980\}
+09584 ,\{ 360, 360, 0, -1150, 0\}
+09585 \}
+09586 \}
+09587 ,\{\{\{ 1800, 1650, 1800, 1650, 1570\}
+09588 ,\{ 1270, 1120, 1270, 1120, 1040\}
+09589 ,\{ 970, 820, 970, 820, 740\}
+09590 ,\{ 1800, 1650, 1800, 1650, 1570\}
+09591 ,\{ 970, 820, 970, 820, 740\}
+09592 \}
+09593 ,\{\{ 1270, 1120, 1270, 1120, 1040\}
+09594 ,\{ 1270, 1120, 1270, 1120, 1040\}
+09595 ,\{ 960, 810, 960, 810, 730\}
+09596 ,\{ 130, -260, 130, -260, -110\}
+09597 ,\{ 960, 810, 960, 810, 730\}
+09598 \}
+09599 ,\{\{ 980, 830, 980, 830, 740\}
+09600 ,\{ 980, 830, 980, 830, 740\}
+09601 ,\{ 970, 820, 970, 820, 740\}
+09602 ,\{ 980, 830, 980, 830, 740\}
+09603 ,\{ 970, 820, 970, 820, 740\}
+09604 \}
+09605 ,\{\{ 1800, 1650, 1800, 1650, 1570\}
+09606 ,\{ 300, -80, 300, -80, 70\}
+09607 ,\{ 960, 810, 960, 810, 730\}
+09608 ,\{ 1800, 1650, 1800, 1650, 1570\}
+09609 ,\{ 960, 810, 960, 810, 730\}
+09610 \}
+09611 ,\{\{ 980, 830, 980, 830, 740\}
+09612 ,\{ 980, 830, 980, 830, 740\}
+09613 ,\{ 970, 820, 970, 820, 740\}
+09614 ,\{ 980, 830, 980, 830, 740\}
+09615 ,\{ 0, -150, 0, -150, -240\}
+09616 \}
+09617 \}
+09618 ,\{\{\{ 2050, 220, 1800, 2050, 1800\}
+09619 ,\{ 2050, 220, 1270, 2050, 1270\}
+09620 ,\{ 1750, 170, 970, 1750, 970\}
+09621 ,\{ 1800, -70, 1800, 1760, 1800\}
+09622 ,\{ 1750, 170, 970, 1750, 970\}
+09623 \}
+09624 ,\{\{ 2050, 220, 1270, 2050, 1270\}
+09625 ,\{ 2050, 220, 1270, 2050, 1270\}
+09626 ,\{ 1740, -80, 960, 1740, 960\}
+09627 ,\{ -110, -1160, -110, -580, -110\}
+09628 ,\{ 1740, -80, 960, 1740, 960\}
+09629 \}
+09630 ,\{\{ 1760, 170, 980, 1760, 980\}
+09631 ,\{ 1760, -70, 980, 1760, 980\}
+09632 ,\{ 1750, 170, 970, 1750, 970\}
+09633 ,\{ 1760, -70, 980, 1760, 980\}
+09634 ,\{ 1750, 170, 970, 1750, 970\}
+09635 \}
+09636 ,\{\{ 1800, -80, 1800, 1740, 1800\}
+09637 ,\{ 60, -980, 60, -400, 60\}
+09638 ,\{ 1740, -80, 960, 1740, 960\}
+09639 ,\{ 1800, -490, 1800, 80, 1800\}
+09640 ,\{ 1740, -80, 960, 1740, 960\}
+09641 \}
+09642 ,\{\{ 1760, 170, 980, 1760, 980\}
+09643 ,\{ 1760, -70, 980, 1760, 980\}
+09644 ,\{ 1750, 170, 970, 1750, 970\}
+09645 ,\{ 1760, -70, 980, 1760, 980\}
+09646 ,\{ 0, -1050, 0, -470, 0\}
+09647 \}
+09648 \}
+09649 ,\{\{\{ 1670, 1650, 1670, 1650, 570\}
+09650 ,\{ 1140, 1120, 1140, 1120, 570\}
+09651 ,\{ 840, 820, 840, 820, 30\}
+09652 ,\{ 1670, 1650, 1670, 1650, 40\}
+09653 ,\{ 840, 820, 840, 820, 30\}
+09654 \}
+09655 ,\{\{ 1140, 1120, 1140, 1120, 570\}
+09656 ,\{ 1140, 1120, 1140, 1120, 570\}
+09657 ,\{ 830, 810, 830, 810, 20\}
+09658 ,\{ 0, -260, 0, -260, -1050\}
+09659 ,\{ 830, 810, 830, 810, 20\}
+09660 \}
+09661 ,\{\{ 850, 830, 850, 830, 40\}
+09662 ,\{ 850, 830, 850, 830, 40\}
+09663 ,\{ 840, 820, 840, 820, 30\}
+09664 ,\{ 850, 830, 850, 830, 40\}
+09665 ,\{ 840, 820, 840, 820, 30\}
+09666 \}
+09667 ,\{\{ 1670, 1650, 1670, 1650, 20\}
+09668 ,\{ 180, -80, 180, -80, -870\}
+09669 ,\{ 830, 810, 830, 810, 20\}
+09670 ,\{ 1670, 1650, 1670, 1650, -380\}
+09671 ,\{ 830, 810, 830, 810, 20\}
+09672 \}
+09673 ,\{\{ 850, 830, 850, 830, 40\}
+09674 ,\{ 850, 830, 850, 830, 40\}
+09675 ,\{ 840, 820, 840, 820, 30\}
+09676 ,\{ 850, 830, 850, 830, 40\}
+09677 ,\{ -130, -150, -130, -150, -940\}
+09678 \}
+09679 \}
+09680 \}
+09681 ,\{\{\{\{ 2120, 2120, 1990, 2120, 1990\}
+09682 ,\{ 2120, 1470, 1340, 2120, 1340\}
+09683 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09684 ,\{ 2120, 2120, 1990, 1990, 1990\}
+09685 ,\{ 1860, 1210, 1080, 1860, 1080\}
+09686 \}
+09687 ,\{\{ 2120, 1470, 1340, 2120, 1340\}
+09688 ,\{ 2120, 1470, 1340, 2120, 1340\}
+09689 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09690 ,\{ 180, 60, 180, -210, -60\}
+09691 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09692 \}
+09693 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+09694 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09695 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09696 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09697 ,\{ 1860, 1210, 1080, 1860, 1080\}
+09698 \}
+09699 ,\{\{ 2120, 2120, 1990, 1840, 1990\}
+09700 ,\{ -120, -230, -120, -510, -360\}
+09701 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09702 ,\{ 2120, 2120, 1990, 1840, 1990\}
+09703 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09704 \}
+09705 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+09706 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09707 ,\{ 1550, 900, 770, 1550, 770\}
+09708 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09709 ,\{ 640, 640, 270, 120, 270\}
+09710 \}
+09711 \}
+09712 ,\{\{\{ 2120, 2120, 1990, 300, 1990\}
+09713 ,\{ 1470, 1470, 1340, 190, 1340\}
+09714 ,\{ 1340, 1340, 1210, 300, 1210\}
+09715 ,\{ 2120, 2120, 1990, 60, 1990\}
+09716 ,\{ 1210, 1210, 1080, 180, 1080\}
+09717 \}
+09718 ,\{\{ 1470, 1470, 1340, 190, 1340\}
+09719 ,\{ 1470, 1470, 1340, 190, 1340\}
+09720 ,\{ 1190, 1190, 1060, -80, 1060\}
+09721 ,\{ 60, 60, -60, -1210, -60\}
+09722 ,\{ 1190, 1190, 1060, -80, 1060\}
+09723 \}
+09724 ,\{\{ 1340, 1340, 1210, 300, 1210\}
+09725 ,\{ 1340, 1340, 1210, 60, 1210\}
+09726 ,\{ 1340, 1340, 1210, 300, 1210\}
+09727 ,\{ 1340, 1340, 1210, 60, 1210\}
+09728 ,\{ 1210, 1210, 1080, 180, 1080\}
+09729 \}
+09730 ,\{\{ 2120, 2120, 1990, -80, 1990\}
+09731 ,\{ -230, -230, -360, -1510, -360\}
+09732 ,\{ 1190, 1190, 1060, -80, 1060\}
+09733 ,\{ 2120, 2120, 1990, -400, 1990\}
+09734 ,\{ 1190, 1190, 1060, -80, 1060\}
+09735 \}
+09736 ,\{\{ 1340, 1340, 1210, 60, 1210\}
+09737 ,\{ 1340, 1340, 1210, 60, 1210\}
+09738 ,\{ 900, 900, 770, -130, 770\}
+09739 ,\{ 1340, 1340, 1210, 60, 1210\}
+09740 ,\{ 640, 640, 270, -870, 270\}
+09741 \}
+09742 \}
+09743 ,\{\{\{ 1990, 1840, 1990, 1840, 1750\}
+09744 ,\{ 1340, 1190, 1340, 1190, 1100\}
+09745 ,\{ 1210, 1060, 1210, 1060, 970\}
+09746 ,\{ 1990, 1840, 1990, 1840, 1750\}
+09747 ,\{ 1080, 930, 1080, 930, 840\}
+09748 \}
+09749 ,\{\{ 1340, 1190, 1340, 1190, 1100\}
+09750 ,\{ 1340, 1190, 1340, 1190, 1100\}
+09751 ,\{ 1060, 910, 1060, 910, 820\}
+09752 ,\{ 180, -210, 180, -210, -60\}
+09753 ,\{ 1060, 910, 1060, 910, 820\}
+09754 \}
+09755 ,\{\{ 1210, 1060, 1210, 1060, 970\}
+09756 ,\{ 1210, 1060, 1210, 1060, 970\}
+09757 ,\{ 1210, 1060, 1210, 1060, 970\}
+09758 ,\{ 1210, 1060, 1210, 1060, 970\}
+09759 ,\{ 1080, 930, 1080, 930, 840\}
+09760 \}
+09761 ,\{\{ 1990, 1840, 1990, 1840, 1750\}
+09762 ,\{ -120, -510, -120, -510, -360\}
+09763 ,\{ 1060, 910, 1060, 910, 820\}
+09764 ,\{ 1990, 1840, 1990, 1840, 1750\}
+09765 ,\{ 1060, 910, 1060, 910, 820\}
+09766 \}
+09767 ,\{\{ 1210, 1060, 1210, 1060, 970\}
+09768 ,\{ 1210, 1060, 1210, 1060, 970\}
+09769 ,\{ 770, 620, 770, 620, 530\}
+09770 ,\{ 1210, 1060, 1210, 1060, 970\}
+09771 ,\{ 270, 120, 270, 120, 30\}
+09772 \}
+09773 \}
+09774 ,\{\{\{ 2120, 400, 1990, 2120, 1990\}
+09775 ,\{ 2120, 290, 1340, 2120, 1340\}
+09776 ,\{ 1990, 400, 1210, 1990, 1210\}
+09777 ,\{ 1990, 160, 1990, 1990, 1990\}
+09778 ,\{ 1860, 270, 1080, 1860, 1080\}
+09779 \}
+09780 ,\{\{ 2120, 290, 1340, 2120, 1340\}
+09781 ,\{ 2120, 290, 1340, 2120, 1340\}
+09782 ,\{ 1840, 10, 1060, 1840, 1060\}
+09783 ,\{ -60, -1110, -60, -530, -60\}
+09784 ,\{ 1840, 10, 1060, 1840, 1060\}
+09785 \}
+09786 ,\{\{ 1990, 400, 1210, 1990, 1210\}
+09787 ,\{ 1990, 160, 1210, 1990, 1210\}
+09788 ,\{ 1990, 400, 1210, 1990, 1210\}
+09789 ,\{ 1990, 160, 1210, 1990, 1210\}
+09790 ,\{ 1860, 270, 1080, 1860, 1080\}
+09791 \}
+09792 ,\{\{ 1990, 10, 1990, 1840, 1990\}
+09793 ,\{ -360, -1410, -360, -830, -360\}
+09794 ,\{ 1840, 10, 1060, 1840, 1060\}
+09795 ,\{ 1990, -310, 1990, 270, 1990\}
+09796 ,\{ 1840, 10, 1060, 1840, 1060\}
+09797 \}
+09798 ,\{\{ 1990, 160, 1210, 1990, 1210\}
+09799 ,\{ 1990, 160, 1210, 1990, 1210\}
+09800 ,\{ 1550, -40, 770, 1550, 770\}
+09801 ,\{ 1990, 160, 1210, 1990, 1210\}
+09802 ,\{ 270, -780, 270, -200, 270\}
+09803 \}
+09804 \}
+09805 ,\{\{\{ 1860, 1840, 1860, 1840, 640\}
+09806 ,\{ 1210, 1190, 1210, 1190, 640\}
+09807 ,\{ 1080, 1060, 1080, 1060, 270\}
+09808 ,\{ 1860, 1840, 1860, 1840, 270\}
+09809 ,\{ 950, 930, 950, 930, 140\}
+09810 \}
+09811 ,\{\{ 1210, 1190, 1210, 1190, 640\}
+09812 ,\{ 1210, 1190, 1210, 1190, 640\}
+09813 ,\{ 930, 910, 930, 910, 120\}
+09814 ,\{ 50, -210, 50, -210, -1000\}
+09815 ,\{ 930, 910, 930, 910, 120\}
+09816 \}
+09817 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+09818 ,\{ 1080, 1060, 1080, 1060, 270\}
+09819 ,\{ 1080, 1060, 1080, 1060, 270\}
+09820 ,\{ 1080, 1060, 1080, 1060, 270\}
+09821 ,\{ 950, 930, 950, 930, 140\}
+09822 \}
+09823 ,\{\{ 1860, 1840, 1860, 1840, 120\}
+09824 ,\{ -250, -510, -250, -510, -1300\}
+09825 ,\{ 930, 910, 930, 910, 120\}
+09826 ,\{ 1860, 1840, 1860, 1840, -200\}
+09827 ,\{ 930, 910, 930, 910, 120\}
+09828 \}
+09829 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+09830 ,\{ 1080, 1060, 1080, 1060, 270\}
+09831 ,\{ 640, 620, 640, 620, -170\}
+09832 ,\{ 1080, 1060, 1080, 1060, 270\}
+09833 ,\{ 140, 120, 140, 120, -670\}
+09834 \}
+09835 \}
+09836 \}
+09837 ,\{\{\{\{ 2120, 2120, 1990, 2120, 1990\}
+09838 ,\{ 2120, 1470, 1340, 2120, 1340\}
+09839 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09840 ,\{ 2120, 2120, 1990, 1990, 1990\}
+09841 ,\{ 1860, 1210, 1080, 1860, 1080\}
+09842 \}
+09843 ,\{\{ 2120, 1470, 1340, 2120, 1340\}
+09844 ,\{ 2120, 1470, 1340, 2120, 1340\}
+09845 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09846 ,\{ 400, 290, 400, 10, 170\}
+09847 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09848 \}
+09849 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+09850 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09851 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09852 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09853 ,\{ 1860, 1210, 1080, 1860, 1080\}
+09854 \}
+09855 ,\{\{ 2120, 2120, 1990, 1840, 1990\}
+09856 ,\{ 540, 190, 540, -80, 70\}
+09857 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09858 ,\{ 2120, 2120, 1990, 1840, 1990\}
+09859 ,\{ 1840, 1190, 1060, 1840, 1060\}
+09860 \}
+09861 ,\{\{ 1990, 1340, 1210, 1990, 1210\}
+09862 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09863 ,\{ 1750, 1100, 970, 1750, 970\}
+09864 ,\{ 1990, 1340, 1210, 1990, 1210\}
+09865 ,\{ 640, 640, 270, 120, 270\}
+09866 \}
+09867 \}
+09868 ,\{\{\{ 2120, 2120, 1990, 540, 1990\}
+09869 ,\{ 1470, 1470, 1340, 190, 1340\}
+09870 ,\{ 1340, 1340, 1210, 540, 1210\}
+09871 ,\{ 2120, 2120, 1990, 60, 1990\}
+09872 ,\{ 1210, 1210, 1080, 180, 1080\}
+09873 \}
+09874 ,\{\{ 1470, 1470, 1340, 190, 1340\}
+09875 ,\{ 1470, 1470, 1340, 190, 1340\}
+09876 ,\{ 1190, 1190, 1060, -80, 1060\}
+09877 ,\{ 290, 290, 160, -980, 160\}
+09878 ,\{ 1190, 1190, 1060, -80, 1060\}
+09879 \}
+09880 ,\{\{ 1340, 1340, 1210, 540, 1210\}
+09881 ,\{ 1340, 1340, 1210, 60, 1210\}
+09882 ,\{ 1340, 1340, 1210, 540, 1210\}
+09883 ,\{ 1340, 1340, 1210, 60, 1210\}
+09884 ,\{ 1210, 1210, 1080, 180, 1080\}
+09885 \}
+09886 ,\{\{ 2120, 2120, 1990, -80, 1990\}
+09887 ,\{ 190, 190, 60, -1080, 60\}
+09888 ,\{ 1190, 1190, 1060, -80, 1060\}
+09889 ,\{ 2120, 2120, 1990, -400, 1990\}
+09890 ,\{ 1190, 1190, 1060, -80, 1060\}
+09891 \}
+09892 ,\{\{ 1340, 1340, 1210, 70, 1210\}
+09893 ,\{ 1340, 1340, 1210, 60, 1210\}
+09894 ,\{ 1100, 1100, 970, 70, 970\}
+09895 ,\{ 1340, 1340, 1210, 60, 1210\}
+09896 ,\{ 640, 640, 270, -810, 270\}
+09897 \}
+09898 \}
+09899 ,\{\{\{ 1990, 1840, 1990, 1840, 1750\}
+09900 ,\{ 1340, 1190, 1340, 1190, 1100\}
+09901 ,\{ 1210, 1060, 1210, 1060, 970\}
+09902 ,\{ 1990, 1840, 1990, 1840, 1750\}
+09903 ,\{ 1080, 930, 1080, 930, 840\}
+09904 \}
+09905 ,\{\{ 1340, 1190, 1340, 1190, 1100\}
+09906 ,\{ 1340, 1190, 1340, 1190, 1100\}
+09907 ,\{ 1060, 910, 1060, 910, 820\}
+09908 ,\{ 400, 10, 400, 10, 170\}
+09909 ,\{ 1060, 910, 1060, 910, 820\}
+09910 \}
+09911 ,\{\{ 1210, 1060, 1210, 1060, 970\}
+09912 ,\{ 1210, 1060, 1210, 1060, 970\}
+09913 ,\{ 1210, 1060, 1210, 1060, 970\}
+09914 ,\{ 1210, 1060, 1210, 1060, 970\}
+09915 ,\{ 1080, 930, 1080, 930, 840\}
+09916 \}
+09917 ,\{\{ 1990, 1840, 1990, 1840, 1750\}
+09918 ,\{ 540, -80, 540, -80, 70\}
+09919 ,\{ 1060, 910, 1060, 910, 820\}
+09920 ,\{ 1990, 1840, 1990, 1840, 1750\}
+09921 ,\{ 1060, 910, 1060, 910, 820\}
+09922 \}
+09923 ,\{\{ 1210, 1060, 1210, 1060, 970\}
+09924 ,\{ 1210, 1060, 1210, 1060, 970\}
+09925 ,\{ 970, 820, 970, 820, 740\}
+09926 ,\{ 1210, 1060, 1210, 1060, 970\}
+09927 ,\{ 270, 120, 270, 120, 30\}
+09928 \}
+09929 \}
+09930 ,\{\{\{ 2120, 400, 1990, 2120, 1990\}
+09931 ,\{ 2120, 290, 1340, 2120, 1340\}
+09932 ,\{ 1990, 400, 1210, 1990, 1210\}
+09933 ,\{ 1990, 160, 1990, 1990, 1990\}
+09934 ,\{ 1860, 270, 1080, 1860, 1080\}
+09935 \}
+09936 ,\{\{ 2120, 290, 1340, 2120, 1340\}
+09937 ,\{ 2120, 290, 1340, 2120, 1340\}
+09938 ,\{ 1840, 10, 1060, 1840, 1060\}
+09939 ,\{ 160, -890, 160, -310, 160\}
+09940 ,\{ 1840, 10, 1060, 1840, 1060\}
+09941 \}
+09942 ,\{\{ 1990, 400, 1210, 1990, 1210\}
+09943 ,\{ 1990, 160, 1210, 1990, 1210\}
+09944 ,\{ 1990, 400, 1210, 1990, 1210\}
+09945 ,\{ 1990, 160, 1210, 1990, 1210\}
+09946 ,\{ 1860, 270, 1080, 1860, 1080\}
+09947 \}
+09948 ,\{\{ 1990, 10, 1990, 1840, 1990\}
+09949 ,\{ 60, -980, 60, -400, 60\}
+09950 ,\{ 1840, 10, 1060, 1840, 1060\}
+09951 ,\{ 1990, -310, 1990, 270, 1990\}
+09952 ,\{ 1840, 10, 1060, 1840, 1060\}
+09953 \}
+09954 ,\{\{ 1990, 170, 1210, 1990, 1210\}
+09955 ,\{ 1990, 160, 1210, 1990, 1210\}
+09956 ,\{ 1750, 170, 970, 1750, 970\}
+09957 ,\{ 1990, 160, 1210, 1990, 1210\}
+09958 ,\{ 270, -780, 270, -200, 270\}
+09959 \}
+09960 \}
+09961 ,\{\{\{ 1860, 1840, 1860, 1840, 640\}
+09962 ,\{ 1210, 1190, 1210, 1190, 640\}
+09963 ,\{ 1080, 1060, 1080, 1060, 270\}
+09964 ,\{ 1860, 1840, 1860, 1840, 270\}
+09965 ,\{ 950, 930, 950, 930, 140\}
+09966 \}
+09967 ,\{\{ 1210, 1190, 1210, 1190, 640\}
+09968 ,\{ 1210, 1190, 1210, 1190, 640\}
+09969 ,\{ 930, 910, 930, 910, 120\}
+09970 ,\{ 270, 10, 270, 10, -780\}
+09971 ,\{ 930, 910, 930, 910, 120\}
+09972 \}
+09973 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+09974 ,\{ 1080, 1060, 1080, 1060, 270\}
+09975 ,\{ 1080, 1060, 1080, 1060, 270\}
+09976 ,\{ 1080, 1060, 1080, 1060, 270\}
+09977 ,\{ 950, 930, 950, 930, 140\}
+09978 \}
+09979 ,\{\{ 1860, 1840, 1860, 1840, 120\}
+09980 ,\{ 180, -80, 180, -80, -810\}
+09981 ,\{ 930, 910, 930, 910, 120\}
+09982 ,\{ 1860, 1840, 1860, 1840, -200\}
+09983 ,\{ 930, 910, 930, 910, 120\}
+09984 \}
+09985 ,\{\{ 1080, 1060, 1080, 1060, 270\}
+09986 ,\{ 1080, 1060, 1080, 1060, 270\}
+09987 ,\{ 840, 820, 840, 820, 30\}
+09988 ,\{ 1080, 1060, 1080, 1060, 270\}
+09989 ,\{ 140, 120, 140, 120, -670\}
+09990 \}
+09991 \}
+09992 \}
+09993 \}\};
+\end{DoxyCode}
--- /dev/null
+\hypertarget{inverse_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/inverse.h File Reference}
+\label{inverse_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/inverse.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/inverse.\-h}}
+}
+
+
+Inverse folding routines.
+
+
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\-\_\-fold} (char $\ast$start, const char $\ast$target)
+\begin{DoxyCompactList}\small\item\em Find sequences with predefined structure. \end{DoxyCompactList}\item
+float \hyperlink{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}{inverse\-\_\-pf\-\_\-fold} (char $\ast$start, const char $\ast$target)
+\begin{DoxyCompactList}\small\item\em Find sequence that maximizes probability of a predefined structure. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{char $\ast$ \hyperlink{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{symbolset}}\label{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}
+
+\begin{DoxyCompactList}\small\item\em This global variable points to the allowed bases, initially \char`\"{}\-A\-U\-G\-C\char`\"{}. It can be used to design sequences from reduced alphabets. \end{DoxyCompactList}\item
+float \hyperlink{group__inverse__fold_ga7f17d3b169af048d32bb185039a9c09c}{final\-\_\-cost}
+\item
+int \hyperlink{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}{give\-\_\-up}
+\item
+int \hyperlink{group__inverse__fold_gafcfc65fba01b9cca5946726ed9057a63}{inv\-\_\-verbose}
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Inverse folding routines.
\ No newline at end of file
--- /dev/null
+\hypertarget{inverse_8h}{\section{inverse.\-h}
+\label{inverse_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/inverse.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/inverse.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_INVERSE\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_INVERSE\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00021 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *\hyperlink{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{symbolset};
+00023 \textcolor{keyword}{extern} \textcolor{keywordtype}{float} \hyperlink{group__inverse__fold_ga7f17d3b169af048d32bb185039a9c09c}{final\_cost};
+00025 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__inverse__fold_ga7ec4ba51f86e1717a1e174264e4a75ce}{give\_up};
+00027 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__inverse__fold_gafcfc65fba01b9cca5946726ed9057a63}{inv\_verbose};
+00028
+00045 \textcolor{keywordtype}{float} \hyperlink{group__inverse__fold_ga7af026de55d4babad879f2c92559cbbc}{inverse\_fold}( \textcolor{keywordtype}{char} *start,
+00046 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *target);
+00047
+00061 \textcolor{keywordtype}{float} \hyperlink{group__inverse__fold_gaeef52ecbf2a2450ad585a344f9826806}{inverse\_pf\_fold}(\textcolor{keywordtype}{char} *start,
+00062 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *target);
+00063
+00067 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{list_8h}{\section{list.\-h}
+\label{list_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/list.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/list.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/*}
+00002 \textcolor{comment}{ $Log: list.h,v $}
+00003 \textcolor{comment}{ Revision 1.2 2000/10/10 08:50:01 ivo}
+00004 \textcolor{comment}{ some annotation for lclint}
+00005 \textcolor{comment}{}
+00006 \textcolor{comment}{ Revision 1.1 1997/08/04 21:05:32 walter}
+00007 \textcolor{comment}{ Initial revision}
+00008 \textcolor{comment}{}
+00009 \textcolor{comment}{*/}
+00010
+00011 \textcolor{preprocessor}{#ifndef \_\_LIST\_H}
+00012 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_LIST\_H}
+00013 \textcolor{preprocessor}{}
+00014 \textcolor{comment}{/*---------------------- Macros and type definitions ----------------------*/}
+00015
+\hypertarget{list_8h_source_l00016}{}\hyperlink{structLST__BUCKET}{00016} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structLST__BUCKET}{LST\_BUCKET} \{
+00017 \textcolor{keyword}{struct }\hyperlink{structLST__BUCKET}{LST\_BUCKET} *next;
+00018 \}
+00019 \hyperlink{structLST__BUCKET}{LST\_BUCKET};
+00020
+\hypertarget{list_8h_source_l00021}{}\hyperlink{structLIST}{00021} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\{
+00022 \textcolor{keywordtype}{int} count; \textcolor{comment}{/* Number of elements currently in list */}
+00023 \hyperlink{structLST__BUCKET}{LST\_BUCKET} *head; \textcolor{comment}{/* Pointer to head element of list */}
+00024 \hyperlink{structLST__BUCKET}{LST\_BUCKET} *z; \textcolor{comment}{/* Pointer to last node of list */}
+00025 \hyperlink{structLST__BUCKET}{LST\_BUCKET} hz[2]; \textcolor{comment}{/* Space for head and z nodes */}
+00026 \}
+00027 \hyperlink{structLIST}{LIST};
+00028
+00029 \textcolor{comment}{/* Return a pointer to the user space given the address of the header of}
+00030 \textcolor{comment}{ * a node.}
+00031 \textcolor{comment}{ */}
+00032
+00033 \textcolor{preprocessor}{#define LST\_USERSPACE(h) ((void*)((LST\_BUCKET*)(h) + 1))}
+00034 \textcolor{preprocessor}{}
+00035 \textcolor{comment}{/* Return a pointer to the header of a node, given the address of the}
+00036 \textcolor{comment}{ * user space.}
+00037 \textcolor{comment}{ */}
+00038
+00039 \textcolor{preprocessor}{#define LST\_HEADER(n) ((LST\_BUCKET*)(n) - 1)}
+00040 \textcolor{preprocessor}{}
+00041 \textcolor{comment}{/* Return a pointer to the user space of the list's head node. This user}
+00042 \textcolor{comment}{ * space does not actually exist, but it is useful to be able to address}
+00043 \textcolor{comment}{ * it to enable insertion at the start of the list.}
+00044 \textcolor{comment}{ */}
+00045
+00046 \textcolor{preprocessor}{#define LST\_HEAD(l) LST\_USERSPACE((l)->head)}
+00047 \textcolor{preprocessor}{}
+00048 \textcolor{comment}{/* Determine if a list is empty}
+00049 \textcolor{comment}{ */}
+00050
+00051 \textcolor{preprocessor}{#define LST\_EMPTY(l) ((l)->count == 0)}
+00052 \textcolor{preprocessor}{}
+00053 \textcolor{comment}{/*-------------------------- Function Prototypes --------------------------*/}
+00054
+00055 \textcolor{comment}{/*@only@*/}\textcolor{comment}{/*@out@*/} \textcolor{keywordtype}{void} *lst\_newnode (\textcolor{keywordtype}{int} size);
+00056 \textcolor{keywordtype}{void} lst\_freenode (\textcolor{comment}{/*@only@*/} \textcolor{keywordtype}{void} *node);
+00057 \textcolor{comment}{/*@only@*/}\textcolor{comment}{/*@out@*/} \hyperlink{structLIST}{LIST} *lst\_init (\textcolor{keywordtype}{void});
+00058 \textcolor{keywordtype}{void} lst\_kill (\hyperlink{structLIST}{LIST} * l, \textcolor{keywordtype}{void} (*freeNode) ());
+00059 \textcolor{keywordtype}{void} lst\_insertafter (\hyperlink{structLIST}{LIST} * l, \textcolor{comment}{/*@keep@*/} \textcolor{keywordtype}{void} *node, \textcolor{keywordtype}{void} *after);
+00060 \textcolor{keywordtype}{void} *lst\_deletenext (\textcolor{comment}{/*@only@*/} \hyperlink{structLIST}{LIST} * l, \textcolor{keywordtype}{void} *node);
+00061 \textcolor{comment}{/*@dependent@*/} \textcolor{keywordtype}{void} *lst\_first (\hyperlink{structLIST}{LIST} * l);
+00062 \textcolor{comment}{/*@dependent@*/} \textcolor{keywordtype}{void} *lst\_next (\textcolor{keywordtype}{void} *prev);
+00063 \textcolor{keywordtype}{void} lst\_mergesort (\hyperlink{structLIST}{LIST} * l, \textcolor{keywordtype}{int} (*cmp\_func) ());
+00064
+00065 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{loop__energies_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/loop\-\_\-energies.h File Reference}
+\label{loop__energies_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/loop\-\_\-energies.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/loop\-\_\-energies.\-h}}
+}
+
+
+Energy evaluation for M\-F\-E and partition function calculations.
+
+
+Include dependency graph for loop\-\_\-energies.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{loop__energies_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+P\-R\-I\-V\-A\-T\-E int \hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\-\_\-\-Int\-Loop} (int n1, int n2, int type, int type\-\_\-2, int si1, int sj1, int sp1, int sq1, \hyperlink{structparamT}{param\-T} $\ast$P)
+\item
+P\-R\-I\-V\-A\-T\-E int \hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\-\_\-\-Hairpin} (int size, int type, int si1, int sj1, const char $\ast$string, \hyperlink{structparamT}{param\-T} $\ast$P)
+\item
+P\-R\-I\-V\-A\-T\-E int \hyperlink{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{E\-\_\-\-Stem} (int type, int si1, int sj1, int ext\-Loop, \hyperlink{structparamT}{param\-T} $\ast$P)
+\item
+P\-R\-I\-V\-A\-T\-E double \hyperlink{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}{exp\-\_\-\-E\-\_\-\-Stem} (int type, int si1, int sj1, int ext\-Loop, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$P)
+\item
+P\-R\-I\-V\-A\-T\-E double \hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{exp\-\_\-\-E\-\_\-\-Hairpin} (int u, int type, short si1, short sj1, const char $\ast$string, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$P)
+\item
+P\-R\-I\-V\-A\-T\-E double \hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{exp\-\_\-\-E\-\_\-\-Int\-Loop} (int u1, int u2, int type, int type2, short si1, short sj1, short sp1, short sq1, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$P)
+\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Energy evaluation for M\-F\-E and partition function calculations. This file contains functions for the calculation of the free energy $\Delta G$ of a hairpin-\/ \mbox{[} \hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\-\_\-\-Hairpin()} \mbox{]} or interior-\/loop \mbox{[} \hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\-\_\-\-Int\-Loop()}\mbox{]} .\par
+ The unit of the free energy returned is $10^{-2} * \mathrm{kcal}/\mathrm{mol}$
+
+In case of computing the partition function, this file also supplies functions which return the Boltzmann weights $e^{-\Delta G/kT} $ for a hairpin-\/ \mbox{[} \hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{exp\-\_\-\-E\-\_\-\-Hairpin()} \mbox{]} or interior-\/loop \mbox{[} \hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{exp\-\_\-\-E\-\_\-\-Int\-Loop()} \mbox{]}.
+
+\subsection{Function Documentation}
+\hypertarget{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{\index{loop\-\_\-energies.\-h@{loop\-\_\-energies.\-h}!E\-\_\-\-Int\-Loop@{E\-\_\-\-Int\-Loop}}
+\index{E\-\_\-\-Int\-Loop@{E\-\_\-\-Int\-Loop}!loop_energies.h@{loop\-\_\-energies.\-h}}
+\subsubsection[{E\-\_\-\-Int\-Loop}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E int E\-\_\-\-Int\-Loop (
+\begin{DoxyParamCaption}
+\item[{int}]{n1, }
+\item[{int}]{n2, }
+\item[{int}]{type, }
+\item[{int}]{type\-\_\-2, }
+\item[{int}]{si1, }
+\item[{int}]{sj1, }
+\item[{int}]{sp1, }
+\item[{int}]{sq1, }
+\item[{{\bf param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}
+\subsubsection*{Compute the Energy of an interior-\/loop}
+
+This function computes the free energy $\Delta G$ of an interior-\/loop with the following structure\-: \par
+
+\begin{DoxyPre}
+ 3' 5'
+ | |
+ U - V
+ a\_n b\_1
+ . .
+ . .
+ . .
+ a\_1 b\_m
+ X - Y
+ | |
+ 5' 3'
+\end{DoxyPre}
+ This general structure depicts an interior-\/loop that is closed by the base pair (X,Y). The enclosed base pair is (V,U) which leaves the unpaired bases a\-\_\-1-\/a\-\_\-n and b\-\_\-1-\/b\-\_\-n that constitute the loop. In this example, the length of the interior-\/loop is $(n+m)$ where n or m may be 0 resulting in a bulge-\/loop or base pair stack. The mismatching nucleotides for the closing pair (X,Y) are\-:\par
+ 5'-\/mismatch\-: a\-\_\-1\par
+ 3'-\/mismatch\-: b\-\_\-m\par
+ and for the enclosed base pair (V,U)\-:\par
+ 5'-\/mismatch\-: b\-\_\-1\par
+ 3'-\/mismatch\-: a\-\_\-n\par
+ \begin{DoxyNote}{Note}
+Base pairs are always denoted in 5'-\/$>$3' direction. Thus the enclosed base pair must be 'turned arround' when evaluating the free energy of the interior-\/loop
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{scale\-\_\-parameters()}
+
+\hyperlink{structparamT}{param\-T}
+\end{DoxySeeAlso}
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+
+\begin{DoxyParams}{Parameters}
+{\em n1} & The size of the 'left'-\/loop (number of unpaired nucleotides) \\
+\hline
+{\em n2} & The size of the 'right'-\/loop (number of unpaired nucleotides) \\
+\hline
+{\em type} & The pair type of the base pair closing the interior loop \\
+\hline
+{\em type\-\_\-2} & The pair type of the enclosed base pair \\
+\hline
+{\em si1} & The 5'-\/mismatching nucleotide of the closing pair \\
+\hline
+{\em sj1} & The 3'-\/mismatching nucleotide of the closing pair \\
+\hline
+{\em sp1} & The 3'-\/mismatching nucleotide of the enclosed pair \\
+\hline
+{\em sq1} & The 5'-\/mismatching nucleotide of the enclosed pair \\
+\hline
+{\em P} & The datastructure containing scaled energy parameters \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Free energy of the Interior-\/loop in dcal/mol
+\end{DoxyReturn}
+\hypertarget{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{\index{loop\-\_\-energies.\-h@{loop\-\_\-energies.\-h}!E\-\_\-\-Hairpin@{E\-\_\-\-Hairpin}}
+\index{E\-\_\-\-Hairpin@{E\-\_\-\-Hairpin}!loop_energies.h@{loop\-\_\-energies.\-h}}
+\subsubsection[{E\-\_\-\-Hairpin}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E int E\-\_\-\-Hairpin (
+\begin{DoxyParamCaption}
+\item[{int}]{size, }
+\item[{int}]{type, }
+\item[{int}]{si1, }
+\item[{int}]{sj1, }
+\item[{const char $\ast$}]{string, }
+\item[{{\bf param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}
+\subsubsection*{Compute the Energy of a hairpin-\/loop}
+
+To evaluate the free energy of a hairpin-\/loop, several parameters have to be known. A general hairpin-\/loop has this structure\-:\par
+
+\begin{DoxyPre}
+ a3 a4
+ a2 a5
+ a1 a6
+ X - Y
+ | |
+ 5' 3'
+\end{DoxyPre}
+ where X-\/\-Y marks the closing pair \mbox{[}e.\-g. a {\bfseries (G,C)} pair\mbox{]}. The length of this loop is 6 as there are six unpaired nucleotides (a1-\/a6) enclosed by (X,Y). The 5' mismatching nucleotide is a1 while the 3' mismatch is a6. The nucleotide sequence of this loop is "a1.\-a2.\-a3.\-a4.\-a5.\-a6" \par
+ \begin{DoxyNote}{Note}
+The parameter sequence should contain the sequence of the loop in capital letters of the nucleic acid alphabet if the loop size is below 7. This is useful for unusually stable tri-\/, tetra-\/ and hexa-\/loops which are treated differently (based on experimental data) if they are tabulated.
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{scale\-\_\-parameters()}
+
+\hyperlink{structparamT}{param\-T}
+\end{DoxySeeAlso}
+\begin{DoxyWarning}{Warning}
+Not (really) thread safe! A threadsafe implementation will replace this function in a future release!\par
+ Energy evaluation may change due to updates in global variable \char`\"{}tetra\-\_\-loop\char`\"{}
+\end{DoxyWarning}
+
+\begin{DoxyParams}{Parameters}
+{\em size} & The size of the loop (number of unpaired nucleotides) \\
+\hline
+{\em type} & The pair type of the base pair closing the hairpin \\
+\hline
+{\em si1} & The 5'-\/mismatching nucleotide \\
+\hline
+{\em sj1} & The 3'-\/mismatching nucleotide \\
+\hline
+{\em string} & The sequence of the loop \\
+\hline
+{\em P} & The datastructure containing scaled energy parameters \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Free energy of the Hairpin-\/loop in dcal/mol
+\end{DoxyReturn}
+\hypertarget{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{\index{loop\-\_\-energies.\-h@{loop\-\_\-energies.\-h}!E\-\_\-\-Stem@{E\-\_\-\-Stem}}
+\index{E\-\_\-\-Stem@{E\-\_\-\-Stem}!loop_energies.h@{loop\-\_\-energies.\-h}}
+\subsubsection[{E\-\_\-\-Stem}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E int E\-\_\-\-Stem (
+\begin{DoxyParamCaption}
+\item[{int}]{type, }
+\item[{int}]{si1, }
+\item[{int}]{sj1, }
+\item[{int}]{ext\-Loop, }
+\item[{{\bf param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}
+\subsubsection*{Compute the energy contribution of a stem branching off a loop-\/region}
+
+This function computes the energy contribution of a stem that branches off a loop region. This can be the case in multiloops, when a stem branching off increases the degree of the loop but also {\itshape immediately interior base pairs} of an exterior loop contribute free energy. To switch the bahavior of the function according to the evaluation of a multiloop-\/ or exterior-\/loop-\/stem, you pass the flag 'ext\-Loop'. The returned energy contribution consists of a Terminal\-A\-U penalty if the pair type is greater than 2, dangling end contributions of mismatching nucleotides adjacent to the stem if only one of the si1, sj1 parameters is greater than 0 and mismatch energies if both mismatching nucleotides are positive values. Thus, to avoid incooperating dangling end or mismatch energies just pass a negative number, e.\-g. -\/1 to the mismatch argument.
+
+This is an illustration of how the energy contribution is assembled\-:
+\begin{DoxyPre}
+ 3' 5'
+ | |
+ X - Y
+5'-si1 sj1-3'
+\end{DoxyPre}
+
+
+Here, (X,Y) is the base pair that closes the stem that branches off a loop region. The nucleotides si1 and sj1 are the 5'-\/ and 3'-\/ mismatches, respectively. If the base pair type of (X,Y) is greater than 2 (i.\-e. an A-\/\-U or G-\/\-U pair, the Terminal\-A\-U penalty will be included in the energy contribution returned. If si1 and sj1 are both nonnegative numbers, mismatch energies will also be included. If one of sij or sj1 is a negtive value, only 5' or 3' dangling end contributions are taken into account. To prohibit any of these mismatch contributions to be incoorporated, just pass a negative number to both, si1 and sj1. In case the argument ext\-Loop is 0, the returned energy contribution also includes the {\itshape internal-\/loop-\/penalty} of a multiloop stem with closing pair type.
+
+\begin{DoxySeeAlso}{See Also}
+E\-\_\-\-M\-Lstem()
+
+E\-\_\-\-Ext\-Loop()
+\end{DoxySeeAlso}
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+
+\begin{DoxyParams}{Parameters}
+{\em type} & The pair type of the first base pair un the stem \\
+\hline
+{\em si1} & The 5'-\/mismatching nucleotide \\
+\hline
+{\em sj1} & The 3'-\/mismatching nucleotide \\
+\hline
+{\em ext\-Loop} & A flag that indicates whether the contribution reflects the one of an exterior loop or not \\
+\hline
+{\em P} & The datastructure containing scaled energy parameters \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Free energy of the branch off the loop in dcal/mol
+\end{DoxyReturn}
+\hypertarget{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}{\index{loop\-\_\-energies.\-h@{loop\-\_\-energies.\-h}!exp\-\_\-\-E\-\_\-\-Stem@{exp\-\_\-\-E\-\_\-\-Stem}}
+\index{exp\-\_\-\-E\-\_\-\-Stem@{exp\-\_\-\-E\-\_\-\-Stem}!loop_energies.h@{loop\-\_\-energies.\-h}}
+\subsubsection[{exp\-\_\-\-E\-\_\-\-Stem}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E double exp\-\_\-\-E\-\_\-\-Stem (
+\begin{DoxyParamCaption}
+\item[{int}]{type, }
+\item[{int}]{si1, }
+\item[{int}]{sj1, }
+\item[{int}]{ext\-Loop, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}
+\subsubsection*{Compute the Boltzmann weighted energy contribution of a stem branching off a loop-\/region}
+
+This is the partition function variant of \hyperlink{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{E\-\_\-\-Stem()} \begin{DoxySeeAlso}{See Also}
+\hyperlink{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{E\-\_\-\-Stem()}
+\end{DoxySeeAlso}
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+\begin{DoxyReturn}{Returns}
+The Boltzmann weighted energy contribution of the branch off the loop
+\end{DoxyReturn}
+\hypertarget{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{\index{loop\-\_\-energies.\-h@{loop\-\_\-energies.\-h}!exp\-\_\-\-E\-\_\-\-Hairpin@{exp\-\_\-\-E\-\_\-\-Hairpin}}
+\index{exp\-\_\-\-E\-\_\-\-Hairpin@{exp\-\_\-\-E\-\_\-\-Hairpin}!loop_energies.h@{loop\-\_\-energies.\-h}}
+\subsubsection[{exp\-\_\-\-E\-\_\-\-Hairpin}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E double exp\-\_\-\-E\-\_\-\-Hairpin (
+\begin{DoxyParamCaption}
+\item[{int}]{u, }
+\item[{int}]{type, }
+\item[{short}]{si1, }
+\item[{short}]{sj1, }
+\item[{const char $\ast$}]{string, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}
+\subsubsection*{Compute Boltzmann weight $e^{-\Delta G/kT} $ of a hairpin loop}
+
+multiply by scale\mbox{[}u+2\mbox{]} \begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters()}
+
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T}
+
+\hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\-\_\-\-Hairpin()}
+\end{DoxySeeAlso}
+\begin{DoxyWarning}{Warning}
+Not (really) thread safe! A threadsafe implementation will replace this function in a future release!\par
+ Energy evaluation may change due to updates in global variable \char`\"{}tetra\-\_\-loop\char`\"{}
+\end{DoxyWarning}
+
+\begin{DoxyParams}{Parameters}
+{\em u} & The size of the loop (number of unpaired nucleotides) \\
+\hline
+{\em type} & The pair type of the base pair closing the hairpin \\
+\hline
+{\em si1} & The 5'-\/mismatching nucleotide \\
+\hline
+{\em sj1} & The 3'-\/mismatching nucleotide \\
+\hline
+{\em string} & The sequence of the loop \\
+\hline
+{\em P} & The datastructure containing scaled Boltzmann weights of the energy parameters \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Boltzmann weight of the Hairpin-\/loop
+\end{DoxyReturn}
+\hypertarget{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{\index{loop\-\_\-energies.\-h@{loop\-\_\-energies.\-h}!exp\-\_\-\-E\-\_\-\-Int\-Loop@{exp\-\_\-\-E\-\_\-\-Int\-Loop}}
+\index{exp\-\_\-\-E\-\_\-\-Int\-Loop@{exp\-\_\-\-E\-\_\-\-Int\-Loop}!loop_energies.h@{loop\-\_\-energies.\-h}}
+\subsubsection[{exp\-\_\-\-E\-\_\-\-Int\-Loop}]{\setlength{\rightskip}{0pt plus 5cm}P\-R\-I\-V\-A\-T\-E double exp\-\_\-\-E\-\_\-\-Int\-Loop (
+\begin{DoxyParamCaption}
+\item[{int}]{u1, }
+\item[{int}]{u2, }
+\item[{int}]{type, }
+\item[{int}]{type2, }
+\item[{short}]{si1, }
+\item[{short}]{sj1, }
+\item[{short}]{sp1, }
+\item[{short}]{sq1, }
+\item[{{\bf pf\-\_\-param\-T} $\ast$}]{P}
+\end{DoxyParamCaption}
+)}}\label{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}
+\subsubsection*{Compute Boltzmann weight $e^{-\Delta G/kT} $ of interior loop}
+
+multiply by scale\mbox{[}u1+u2+2\mbox{]} for scaling \begin{DoxySeeAlso}{See Also}
+\hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters()}
+
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T}
+
+\hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\-\_\-\-Int\-Loop()}
+\end{DoxySeeAlso}
+\begin{DoxyNote}{Note}
+This function is threadsafe
+\end{DoxyNote}
+
+\begin{DoxyParams}{Parameters}
+{\em u1} & The size of the 'left'-\/loop (number of unpaired nucleotides) \\
+\hline
+{\em u2} & The size of the 'right'-\/loop (number of unpaired nucleotides) \\
+\hline
+{\em type} & The pair type of the base pair closing the interior loop \\
+\hline
+{\em type2} & The pair type of the enclosed base pair \\
+\hline
+{\em si1} & The 5'-\/mismatching nucleotide of the closing pair \\
+\hline
+{\em sj1} & The 3'-\/mismatching nucleotide of the closing pair \\
+\hline
+{\em sp1} & The 3'-\/mismatching nucleotide of the enclosed pair \\
+\hline
+{\em sq1} & The 5'-\/mismatching nucleotide of the enclosed pair \\
+\hline
+{\em P} & The datastructure containing scaled Boltzmann weights of the energy parameters \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The Boltzmann weight of the Interior-\/loop
+\end{DoxyReturn}
--- /dev/null
+8c3ea253ab8d97570ee976c5740e09f7
\ No newline at end of file
--- /dev/null
+\hypertarget{loop__energies_8h}{\section{loop\-\_\-energies.\-h}
+\label{loop__energies_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/loop\-\_\-energies.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/loop\-\_\-energies.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_LOOP\_ENERGIES\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_LOOP\_ENERGIES\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include <stdio.h>}
+00005 \textcolor{preprocessor}{#include <stdlib.h>}
+00006 \textcolor{preprocessor}{#include <math.h>}
+00007 \textcolor{preprocessor}{#include <ctype.h>}
+00008 \textcolor{preprocessor}{#include <string.h>}
+00009 \textcolor{preprocessor}{#include "\hyperlink{params_8h}{params.h}"}
+00010 \textcolor{preprocessor}{#include "\hyperlink{fold__vars_8h}{fold\_vars.h}"}
+00011 \textcolor{preprocessor}{#include "energy\_par.h"}
+00012
+00013 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00014 \textcolor{preprocessor}{}\textcolor{preprocessor}{# define INLINE inline}
+00015 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00016 \textcolor{preprocessor}{}\textcolor{preprocessor}{# define INLINE}
+00017 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00018 \textcolor{preprocessor}{}
+00054 INLINE PRIVATE \textcolor{keywordtype}{int} E\_MLstem( \textcolor{keywordtype}{int} type,
+00055 \textcolor{keywordtype}{int} si1,
+00056 \textcolor{keywordtype}{int} sj1,
+00057 \hyperlink{structparamT}{paramT} *P);
+00058
+00065 INLINE PRIVATE \textcolor{keywordtype}{double} exp\_E\_MLstem(\textcolor{keywordtype}{int} type,
+00066 \textcolor{keywordtype}{int} si1,
+00067 \textcolor{keywordtype}{int} sj1,
+00068 \hyperlink{structpf__paramT}{pf\_paramT} *P);
+00069
+00089 INLINE PRIVATE \textcolor{keywordtype}{int} E\_ExtLoop(\textcolor{keywordtype}{int} type,
+00090 \textcolor{keywordtype}{int} si1,
+00091 \textcolor{keywordtype}{int} sj1,
+00092 \hyperlink{structparamT}{paramT} *P);
+00093
+00100 INLINE PRIVATE \textcolor{keywordtype}{double} exp\_E\_ExtLoop( \textcolor{keywordtype}{int} type,
+00101 \textcolor{keywordtype}{int} si1,
+00102 \textcolor{keywordtype}{int} sj1,
+00103 \hyperlink{structpf__paramT}{pf\_paramT} *P);
+00104
+00149 INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\_IntLoop}(\textcolor{keywordtype}{int} n1,
+00150 \textcolor{keywordtype}{int} n2,
+00151 \textcolor{keywordtype}{int} type,
+00152 \textcolor{keywordtype}{int} type\_2,
+00153 \textcolor{keywordtype}{int} si1,
+00154 \textcolor{keywordtype}{int} sj1,
+00155 \textcolor{keywordtype}{int} sp1,
+00156 \textcolor{keywordtype}{int} sq1,
+00157 \hyperlink{structparamT}{paramT} *P);
+00158
+00159
+00191 INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\_Hairpin}(\textcolor{keywordtype}{int} size,
+00192 \textcolor{keywordtype}{int} type,
+00193 \textcolor{keywordtype}{int} si1,
+00194 \textcolor{keywordtype}{int} sj1,
+00195 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00196 \hyperlink{structparamT}{paramT} *P);
+00197
+00243 INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{E\_Stem}( \textcolor{keywordtype}{int} type,
+00244 \textcolor{keywordtype}{int} si1,
+00245 \textcolor{keywordtype}{int} sj1,
+00246 \textcolor{keywordtype}{int} extLoop,
+00247 \hyperlink{structparamT}{paramT} *P);
+00248
+00257 INLINE PRIVATE \textcolor{keywordtype}{double} \hyperlink{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}{exp\_E\_Stem}(\textcolor{keywordtype}{int} type,
+00258 \textcolor{keywordtype}{int} si1,
+00259 \textcolor{keywordtype}{int} sj1,
+00260 \textcolor{keywordtype}{int} extLoop,
+00261 \hyperlink{structpf__paramT}{pf\_paramT} *P);
+00262
+00280 INLINE PRIVATE \textcolor{keywordtype}{double} \hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{exp\_E\_Hairpin}( \textcolor{keywordtype}{int} u,
+00281 \textcolor{keywordtype}{int} type,
+00282 \textcolor{keywordtype}{short} si1,
+00283 \textcolor{keywordtype}{short} sj1,
+00284 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00285 \hyperlink{structpf__paramT}{pf\_paramT} *P);
+00286
+00306 INLINE PRIVATE \textcolor{keywordtype}{double} \hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{exp\_E\_IntLoop}(\textcolor{keywordtype}{int} u1,
+00307 \textcolor{keywordtype}{int} u2,
+00308 \textcolor{keywordtype}{int} type,
+00309 \textcolor{keywordtype}{int} type2,
+00310 \textcolor{keywordtype}{short} si1,
+00311 \textcolor{keywordtype}{short} sj1,
+00312 \textcolor{keywordtype}{short} sp1,
+00313 \textcolor{keywordtype}{short} sq1,
+00314 \hyperlink{structpf__paramT}{pf\_paramT} *P);
+00315
+00316
+00317 \textcolor{comment}{/*}
+00318 \textcolor{comment}{#################################}
+00319 \textcolor{comment}{# BEGIN OF FUNCTION DEFINITIONS #}
+00320 \textcolor{comment}{#################################}
+00321 \textcolor{comment}{*/}
+\hypertarget{loop__energies_8h_source_l00322}{}\hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{00322} INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{E\_Hairpin}(\textcolor{keywordtype}{int} size, \textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+ \hyperlink{structparamT}{paramT} *P)\{
+00323 \textcolor{keywordtype}{int} energy;
+00324
+00325 energy = (size <= 30) ? P->hairpin[size] : P->hairpin[30]+(\textcolor{keywordtype}{int})(P->lxc*log((size)/30.));
+00326 \textcolor{keywordflow}{if} (P->\hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\_details}.\hyperlink{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{special\_hp})\{
+00327 \textcolor{keywordflow}{if} (size == 4) \{ \textcolor{comment}{/* check for tetraloop bonus */}
+00328 \textcolor{keywordtype}{char} tl[7]=\{0\}, *ts;
+00329 strncpy(tl, \textcolor{keywordtype}{string}, 6);
+00330 \textcolor{keywordflow}{if} ((ts=strstr(P->Tetraloops, tl)))
+00331 \textcolor{keywordflow}{return} (P->Tetraloop\_E[(ts - P->Tetraloops)/7]);
+00332 \}
+00333 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (size == 6) \{
+00334 \textcolor{keywordtype}{char} tl[9]=\{0\}, *ts;
+00335 strncpy(tl, \textcolor{keywordtype}{string}, 8);
+00336 \textcolor{keywordflow}{if} ((ts=strstr(P->Hexaloops, tl)))
+00337 \textcolor{keywordflow}{return} (energy = P->Hexaloop\_E[(ts - P->Hexaloops)/9]);
+00338 \}
+00339 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (size == 3) \{
+00340 \textcolor{keywordtype}{char} tl[6]=\{0,0,0,0,0,0\}, *ts;
+00341 strncpy(tl, \textcolor{keywordtype}{string}, 5);
+00342 \textcolor{keywordflow}{if} ((ts=strstr(P->Triloops, tl))) \{
+00343 \textcolor{keywordflow}{return} (P->Triloop\_E[(ts - P->Triloops)/6]);
+00344 \}
+00345 \textcolor{keywordflow}{return} (energy + (type>2 ? P->TerminalAU : 0));
+00346 \}
+00347 \}
+00348 energy += P->mismatchH[type][si1][sj1];
+00349
+00350 \textcolor{keywordflow}{return} energy;
+00351 \}
+00352
+\hypertarget{loop__energies_8h_source_l00353}{}\hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{00353} INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{E\_IntLoop}(\textcolor{keywordtype}{int} n1, \textcolor{keywordtype}{int} n2, \textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} type\_2, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \textcolor{keywordtype}{int} sp1, \textcolor{keywordtype}{int}
+ sq1, \hyperlink{structparamT}{paramT} *P)\{
+00354 \textcolor{comment}{/* compute energy of degree 2 loop (stack bulge or interior) */}
+00355 \textcolor{keywordtype}{int} nl, ns, energy;
+00356 energy = \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF};
+00357
+00358 \textcolor{keywordflow}{if} (n1>n2) \{ nl=n1; ns=n2;\}
+00359 \textcolor{keywordflow}{else} \{nl=n2; ns=n1;\}
+00360
+00361 \textcolor{keywordflow}{if} (nl == 0)
+00362 \textcolor{keywordflow}{return} P->stack[type][type\_2]; \textcolor{comment}{/* stack */}
+00363
+00364 \textcolor{keywordflow}{if} (ns==0) \{ \textcolor{comment}{/* bulge */}
+00365 energy = (nl<=\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP})?P->bulge[nl]:
+00366 (P->bulge[30]+(\textcolor{keywordtype}{int})(P->lxc*log(nl/30.)));
+00367 \textcolor{keywordflow}{if} (nl==1) energy += P->stack[type][type\_2];
+00368 \textcolor{keywordflow}{else} \{
+00369 \textcolor{keywordflow}{if} (type>2) energy += P->TerminalAU;
+00370 \textcolor{keywordflow}{if} (type\_2>2) energy += P->TerminalAU;
+00371 \}
+00372 \textcolor{keywordflow}{return} energy;
+00373 \}
+00374 \textcolor{keywordflow}{else} \{ \textcolor{comment}{/* interior loop */}
+00375 \textcolor{keywordflow}{if} (ns==1) \{
+00376 \textcolor{keywordflow}{if} (nl==1) \textcolor{comment}{/* 1x1 loop */}
+00377 \textcolor{keywordflow}{return} P->int11[type][type\_2][si1][sj1];
+00378 \textcolor{keywordflow}{if} (nl==2) \{ \textcolor{comment}{/* 2x1 loop */}
+00379 \textcolor{keywordflow}{if} (n1==1)
+00380 energy = P->int21[type][type\_2][si1][sq1][sj1];
+00381 \textcolor{keywordflow}{else}
+00382 energy = P->int21[type\_2][type][sq1][si1][sp1];
+00383 \textcolor{keywordflow}{return} energy;
+00384 \}
+00385 \textcolor{keywordflow}{else} \{ \textcolor{comment}{/* 1xn loop */}
+00386 energy = (nl+1<=\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP})?(P->internal\_loop[nl+1]) : (P->internal\_loop[30]+(int)(P->lxc*log((
+ nl+1)/30.)));
+00387 energy += \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(MAX\_NINIO, (nl-ns)*P->ninio[2]);
+00388 energy += P->mismatch1nI[type][si1][sj1] + P->mismatch1nI[type\_2][sq1][sp1];
+00389 \textcolor{keywordflow}{return} energy;
+00390 \}
+00391 \}
+00392 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (ns==2) \{
+00393 \textcolor{keywordflow}{if}(nl==2) \{ \textcolor{comment}{/* 2x2 loop */}
+00394 \textcolor{keywordflow}{return} P->int22[type][type\_2][si1][sp1][sq1][sj1];\}
+00395 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (nl==3)\{ \textcolor{comment}{/* 2x3 loop */}
+00396 energy = P->internal\_loop[5]+P->ninio[2];
+00397 energy += P->mismatch23I[type][si1][sj1] + P->mismatch23I[type\_2][sq1][sp1];
+00398 \textcolor{keywordflow}{return} energy;
+00399 \}
+00400
+00401 \}
+00402 \{ \textcolor{comment}{/* generic interior loop (no else here!)*/}
+00403 energy = (n1+n2<=\hyperlink{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{MAXLOOP})?(P->internal\_loop[n1+n2]) : (P->internal\_loop[30]+(int)(P->lxc*log((
+ n1+n2)/30.)));
+00404
+00405 energy += \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(MAX\_NINIO, (nl-ns)*P->ninio[2]);
+00406
+00407 energy += P->mismatchI[type][si1][sj1] + P->mismatchI[type\_2][sq1][sp1];
+00408 \}
+00409 \}
+00410 \textcolor{keywordflow}{return} energy;
+00411 \}
+00412
+\hypertarget{loop__energies_8h_source_l00413}{}\hyperlink{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{00413} INLINE PRIVATE \textcolor{keywordtype}{int} \hyperlink{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{E\_Stem}(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \textcolor{keywordtype}{int} extLoop, \hyperlink{structparamT}{paramT} *P)\{
+00414 \textcolor{keywordtype}{int} energy = 0;
+00415 \textcolor{keywordtype}{int} d5 = (si1 >= 0) ? P->dangle5[type][si1] : 0;
+00416 \textcolor{keywordtype}{int} d3 = (sj1 >= 0) ? P->dangle3[type][sj1] : 0;
+00417
+00418 \textcolor{keywordflow}{if}(type > 2)
+00419 energy += P->TerminalAU;
+00420
+00421 \textcolor{keywordflow}{if}(si1 >= 0 && sj1 >= 0)
+00422 energy += (extLoop) ? P->mismatchExt[type][si1][sj1] : P->mismatchM[type][si1][sj1];
+00423 \textcolor{keywordflow}{else}
+00424 energy += d5 + d3;
+00425
+00426 \textcolor{keywordflow}{if}(!extLoop) energy += P->MLintern[type];
+00427 \textcolor{keywordflow}{return} energy;
+00428 \}
+00429
+00430 INLINE PRIVATE \textcolor{keywordtype}{int} E\_ExtLoop(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \hyperlink{structparamT}{paramT} *P)\{
+00431 \textcolor{keywordtype}{int} energy = 0;
+00432 \textcolor{keywordflow}{if}(si1 >= 0 && sj1 >= 0)\{
+00433 energy += P->mismatchExt[type][si1][sj1];
+00434 \}
+00435 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (si1 >= 0)\{
+00436 energy += P->dangle5[type][si1];
+00437 \}
+00438 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (sj1 >= 0)\{
+00439 energy += P->dangle3[type][sj1];
+00440 \}
+00441
+00442 \textcolor{keywordflow}{if}(type > 2)
+00443 energy += P->TerminalAU;
+00444
+00445 \textcolor{keywordflow}{return} energy;
+00446 \}
+00447
+00448 INLINE PRIVATE \textcolor{keywordtype}{int} E\_MLstem(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \hyperlink{structparamT}{paramT} *P)\{
+00449 \textcolor{keywordtype}{int} energy = 0;
+00450 \textcolor{keywordflow}{if}(si1 >= 0 && sj1 >= 0)\{
+00451 energy += P->mismatchM[type][si1][sj1];
+00452 \}
+00453 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (si1 >= 0)\{
+00454 energy += P->dangle5[type][si1];
+00455 \}
+00456 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (sj1 >= 0)\{
+00457 energy += P->dangle3[type][sj1];
+00458 \}
+00459
+00460 \textcolor{keywordflow}{if}(type > 2)
+00461 energy += P->TerminalAU;
+00462
+00463 energy += P->MLintern[type];
+00464
+00465 \textcolor{keywordflow}{return} energy;
+00466 \}
+00467
+\hypertarget{loop__energies_8h_source_l00468}{}\hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{00468} INLINE PRIVATE \textcolor{keywordtype}{double} \hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{exp\_E\_Hairpin}(\textcolor{keywordtype}{int} u, \textcolor{keywordtype}{int} type, \textcolor{keywordtype}{short} si1, \textcolor{keywordtype}{short} sj1, \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string}
+ , \hyperlink{structpf__paramT}{pf\_paramT} *P)\{
+00469 \textcolor{keywordtype}{double} q, kT;
+00470 kT = P->kT; \textcolor{comment}{/* kT in cal/mol */}
+00471
+00472 \textcolor{keywordflow}{if}(u <= 30)
+00473 q = P->exphairpin[u];
+00474 \textcolor{keywordflow}{else}
+00475 q = P->exphairpin[30] * exp( -(P->lxc*log( u/30.))*10./kT);
+00476
+00477 \textcolor{keywordflow}{if}(u < 3) \textcolor{keywordflow}{return} q; \textcolor{comment}{/* should only be the case when folding alignments */}
+00478
+00479 \textcolor{keywordflow}{if} ((P->\hyperlink{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}{model\_details}.\hyperlink{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{special\_hp})&&(u==4)) \{
+00480 \textcolor{keywordtype}{char} tl[7]=\{0,0,0,0,0,0,0\}, *ts;
+00481 strncpy(tl, \textcolor{keywordtype}{string}, 6);
+00482 \textcolor{keywordflow}{if} ((ts=strstr(P->Tetraloops, tl)))\{
+00483 \textcolor{keywordflow}{if}(type != 7)
+00484 \textcolor{keywordflow}{return} (P->exptetra[(ts-P->Tetraloops)/7]);
+00485 \textcolor{keywordflow}{else}
+00486 q *= P->exptetra[(ts-P->Tetraloops)/7];
+00487 \}
+00488 \}
+00489 \textcolor{keywordflow}{if} ((\hyperlink{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{tetra\_loop})&&(u==6)) \{
+00490 \textcolor{keywordtype}{char} tl[9]=\{0,0,0,0,0,0,0,0,0\}, *ts;
+00491 strncpy(tl, \textcolor{keywordtype}{string}, 6);
+00492 \textcolor{keywordflow}{if} ((ts=strstr(P->Hexaloops, tl)))
+00493 \textcolor{keywordflow}{return} (P->exphex[(ts-P->Hexaloops)/9]);
+00494 \}
+00495 \textcolor{keywordflow}{if} (u==3) \{
+00496 \textcolor{keywordtype}{char} tl[6]=\{0,0,0,0,0,0\}, *ts;
+00497 strncpy(tl, \textcolor{keywordtype}{string}, 5);
+00498 \textcolor{keywordflow}{if} ((ts=strstr(P->Triloops, tl)))
+00499 \textcolor{keywordflow}{return} (P->exptri[(ts-P->Triloops)/6]);
+00500 \textcolor{keywordflow}{if} (type>2)
+00501 q *= P->expTermAU;
+00502 \}
+00503 \textcolor{keywordflow}{else} \textcolor{comment}{/* no mismatches for tri-loops */}
+00504 q *= P->expmismatchH[type][si1][sj1];
+00505
+00506 \textcolor{keywordflow}{return} q;
+00507 \}
+00508
+\hypertarget{loop__energies_8h_source_l00509}{}\hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{00509} INLINE PRIVATE \textcolor{keywordtype}{double} \hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{exp\_E\_IntLoop}(\textcolor{keywordtype}{int} u1, \textcolor{keywordtype}{int} u2, \textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} type2, \textcolor{keywordtype}{short} si1, \textcolor{keywordtype}{short} sj1
+ , \textcolor{keywordtype}{short} sp1, \textcolor{keywordtype}{short} sq1, \hyperlink{structpf__paramT}{pf\_paramT} *P)\{
+00510 \textcolor{keywordtype}{int} ul, us, no\_close = 0;
+00511 \textcolor{keywordtype}{double} z = 0.;
+00512
+00513 \textcolor{keywordflow}{if} ((\hyperlink{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{no\_closingGU}) && ((type2==3)||(type2==4)||(type==3)||(type==4)))
+00514 no\_close = 1;
+00515
+00516 \textcolor{keywordflow}{if} (u1>u2) \{ ul=u1; us=u2;\}
+00517 \textcolor{keywordflow}{else} \{ul=u2; us=u1;\}
+00518
+00519 \textcolor{keywordflow}{if} (ul==0) \textcolor{comment}{/* stack */}
+00520 z = P->expstack[type][type2];
+00521 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(!no\_close)\{
+00522 \textcolor{keywordflow}{if} (us==0) \{ \textcolor{comment}{/* bulge */}
+00523 z = P->expbulge[ul];
+00524 \textcolor{keywordflow}{if} (ul==1) z *= P->expstack[type][type2];
+00525 \textcolor{keywordflow}{else} \{
+00526 \textcolor{keywordflow}{if} (type>2) z *= P->expTermAU;
+00527 \textcolor{keywordflow}{if} (type2>2) z *= P->expTermAU;
+00528 \}
+00529 \textcolor{keywordflow}{return} z;
+00530 \}
+00531 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (us==1) \{
+00532 \textcolor{keywordflow}{if} (ul==1)\{ \textcolor{comment}{/* 1x1 loop */}
+00533 \textcolor{keywordflow}{return} P->expint11[type][type2][si1][sj1];
+00534 \}
+00535 \textcolor{keywordflow}{if} (ul==2) \{ \textcolor{comment}{/* 2x1 loop */}
+00536 \textcolor{keywordflow}{if} (u1==1)
+00537 \textcolor{keywordflow}{return} P->expint21[type][type2][si1][sq1][sj1];
+00538 \textcolor{keywordflow}{else}
+00539 \textcolor{keywordflow}{return} P->expint21[type2][type][sq1][si1][sp1];
+00540 \}
+00541 \textcolor{keywordflow}{else} \{ \textcolor{comment}{/* 1xn loop */}
+00542 z = P->expinternal[ul+us] * P->expmismatch1nI[type][si1][sj1] * P->expmismatch1nI[type2][sq1][sp1];
+00543 \textcolor{keywordflow}{return} z * P->expninio[2][ul-us];
+00544 \}
+00545 \}
+00546 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (us==2) \{
+00547 \textcolor{keywordflow}{if}(ul==2) \textcolor{comment}{/* 2x2 loop */}
+00548 \textcolor{keywordflow}{return} P->expint22[type][type2][si1][sp1][sq1][sj1];
+00549 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(ul==3)\{ \textcolor{comment}{/* 2x3 loop */}
+00550 z = P->expinternal[5]*P->expmismatch23I[type][si1][sj1]*P->expmismatch23I[type2][sq1][sp1];
+00551 \textcolor{keywordflow}{return} z * P->expninio[2][1];
+00552 \}
+00553 \}
+00554 \textcolor{comment}{/* generic interior loop (no else here!)*/}
+00555 z = P->expinternal[ul+us] * P->expmismatchI[type][si1][sj1] * P->expmismatchI[type2][sq1][sp1];
+00556 \textcolor{keywordflow}{return} z * P->expninio[2][ul-us];
+00557
+00558 \}
+00559 \textcolor{keywordflow}{return} z;
+00560 \}
+00561
+\hypertarget{loop__energies_8h_source_l00562}{}\hyperlink{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}{00562} INLINE PRIVATE \textcolor{keywordtype}{double} \hyperlink{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}{exp\_E\_Stem}(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \textcolor{keywordtype}{int} extLoop,
+ \hyperlink{structpf__paramT}{pf\_paramT} *P)\{
+00563 \textcolor{keywordtype}{double} energy = 1.0;
+00564 \textcolor{keywordtype}{double} d5 = (si1 >= 0) ? P->expdangle5[type][si1] : 1.;
+00565 \textcolor{keywordtype}{double} d3 = (sj1 >= 0) ? P->expdangle3[type][sj1] : 1.;
+00566
+00567 \textcolor{keywordflow}{if}(type > 2)
+00568 energy *= P->expTermAU;
+00569
+00570 \textcolor{keywordflow}{if}(si1 >= 0 && sj1 >= 0)
+00571 energy *= (extLoop) ? P->expmismatchExt[type][si1][sj1] : P->expmismatchM[type][si1][sj1];
+00572 \textcolor{keywordflow}{else}
+00573 energy *= d5 * d3;
+00574
+00575 \textcolor{keywordflow}{if}(!extLoop) energy *= P->expMLintern[type];
+00576 \textcolor{keywordflow}{return} energy;
+00577 \}
+00578
+00579 INLINE PRIVATE \textcolor{keywordtype}{double} exp\_E\_MLstem(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \hyperlink{structpf__paramT}{pf\_paramT} *P)\{
+00580 \textcolor{keywordtype}{double} energy = 1.0;
+00581 \textcolor{keywordflow}{if}(si1 >= 0 && sj1 >= 0)\{
+00582 energy *= P->expmismatchM[type][si1][sj1];
+00583 \}
+00584 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(si1 >= 0)\{
+00585 energy *= P->expdangle5[type][si1];
+00586 \}
+00587 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(sj1 >= 0)\{
+00588 energy *= P->expdangle3[type][sj1];
+00589 \}
+00590
+00591 \textcolor{keywordflow}{if}(type > 2)
+00592 energy *= P->expTermAU;
+00593
+00594 energy *= P->expMLintern[type];
+00595 \textcolor{keywordflow}{return} energy;
+00596 \}
+00597
+00598 INLINE PRIVATE \textcolor{keywordtype}{double} exp\_E\_ExtLoop(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} si1, \textcolor{keywordtype}{int} sj1, \hyperlink{structpf__paramT}{pf\_paramT} *P)\{
+00599 \textcolor{keywordtype}{double} energy = 1.0;
+00600 \textcolor{keywordflow}{if}(si1 >= 0 && sj1 >= 0)\{
+00601 energy *= P->expmismatchExt[type][si1][sj1];
+00602 \}
+00603 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(si1 >= 0)\{
+00604 energy *= P->expdangle5[type][si1];
+00605 \}
+00606 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(sj1 >= 0)\{
+00607 energy *= P->expdangle3[type][sj1];
+00608 \}
+00609
+00610 \textcolor{keywordflow}{if}(type > 2)
+00611 energy *= P->expTermAU;
+00612
+00613 \textcolor{keywordflow}{return} energy;
+00614 \}
+00615
+00616 INLINE PRIVATE \textcolor{keywordtype}{int} E\_IntLoop\_Co(\textcolor{keywordtype}{int} type, \textcolor{keywordtype}{int} type\_2, \textcolor{keywordtype}{int} i, \textcolor{keywordtype}{int} j, \textcolor{keywordtype}{int} p, \textcolor{keywordtype}{int} q, \textcolor{keywordtype}{int} cutpoint, \textcolor{keywordtype}{short}
+ si1, \textcolor{keywordtype}{short} sj1, \textcolor{keywordtype}{short} sp1, \textcolor{keywordtype}{short} sq1, \textcolor{keywordtype}{int} dangles, \hyperlink{structparamT}{paramT} *P)\{
+00617 \textcolor{keywordtype}{int} energy = 0;
+00618 \textcolor{keywordflow}{if}(type > 2) energy += P->TerminalAU;
+00619 \textcolor{keywordflow}{if}(type\_2 > 2) energy += P->TerminalAU;
+00620
+00621 \textcolor{keywordflow}{if}(!dangles) \textcolor{keywordflow}{return} energy;
+00622
+00623 \textcolor{keywordtype}{int} ci = (i>=cutpoint)||((i+1)<cutpoint);
+00624 \textcolor{keywordtype}{int} cj = ((j-1)>=cutpoint)||(j<cutpoint);
+00625 \textcolor{keywordtype}{int} cp = ((p-1)>=cutpoint)||(p<cutpoint);
+00626 \textcolor{keywordtype}{int} cq = (q>=cutpoint)||((q+1)<cutpoint);
+00627
+00628 \textcolor{keywordtype}{int} d3 = ci ? P->dangle3[type][si1] : 0;
+00629 \textcolor{keywordtype}{int} d5 = cj ? P->dangle5[type][sj1] : 0;
+00630 \textcolor{keywordtype}{int} d5\_2 = cp ? P->dangle5[type\_2][sp1] : 0;
+00631 \textcolor{keywordtype}{int} d3\_2 = cq ? P->dangle3[type\_2][sq1] : 0;
+00632
+00633 \textcolor{keywordtype}{int} tmm = (cj && ci) ? P->mismatchExt[type][sj1][si1] : d5 + d3;
+00634 \textcolor{keywordtype}{int} tmm\_2 = (cp && cq) ? P->mismatchExt[type\_2][sp1][sq1] : d5\_2 + d3\_2;
+00635
+00636 \textcolor{keywordflow}{if}(dangles == 2) \textcolor{keywordflow}{return} energy + tmm + tmm\_2;
+00637
+00638 \textcolor{comment}{/* now we may have non-double dangles only */}
+00639 \textcolor{keywordflow}{if}(i+2 < p)\{
+00640 \textcolor{keywordflow}{if}(q+2 < j)\{ energy += tmm + tmm\_2;\}
+00641 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(q+2 == j)\{ energy += (cj && cq) ? \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(tmm + d5\_2, tmm\_2 + d3) : tmm + tmm\_2;\}
+00642 \textcolor{keywordflow}{else} energy += d3 + d5\_2;
+00643 \}
+00644 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(i+2 == p)\{
+00645 \textcolor{keywordflow}{if}(q+2 < j)\{ energy += (ci && cp) ? \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(tmm + d3\_2, tmm\_2 + d5) : tmm + tmm\_2;\}
+00646 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(q+2 == j)\{
+00647 energy += \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(tmm, \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(tmm\_2, \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(d5 + d5\_2, d3 + d3\_2)));
+00648 \}
+00649 \textcolor{keywordflow}{else} energy += \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(d3, d5\_2);
+00650 \}
+00651 \textcolor{keywordflow}{else}\{
+00652 \textcolor{keywordflow}{if}(q+2 < j)\{ energy += d5 + d3\_2;\}
+00653 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if}(q+2 == j)\{ energy += \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{MIN2}(d5, d3\_2);\}
+00654 \}
+00655 \textcolor{keywordflow}{return} energy;
+00656 \}
+00657
+00658 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{mainpage_8h_source}{\section{mainpage.\-h}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/*}
+00002 \textcolor{comment}{#############################################################}
+00003 \textcolor{comment}{# The next comment is used to order the modules correctly #}
+00004 \textcolor{comment}{#############################################################}
+00005 \textcolor{comment}{*/}
+00006
+00108 \textcolor{comment}{/*}
+00109 \textcolor{comment}{#############################################################}
+00110 \textcolor{comment}{# Now the mainpage text is following #}
+00111 \textcolor{comment}{#############################################################}
+00112 \textcolor{comment}{*/}
+00113
+00327 \{ 0, 2, 2, 2, 2, 1, 1\}, \textcolor{comment}{/* Null replaced */}
+00328 \{ 2, 0, 2, 2, 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* H replaced */}
+00329 \{ 2, 2, 0, 1, 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* B replaced */}
+00330 \{ 2, 2, 1, 0, 2, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* I replaced */}
+00331 \{ 2, 2, 2, 2, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* M replaced */}
+00332 \{ 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, INF\}, \textcolor{comment}{/* S replaced */}
+00333 \{ 1, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0\}, \textcolor{comment}{/* E replaced */}
+00334
+00335
+00336 \textcolor{comment}{/* Null, H, B, I, M, S, E */}
+00337 \{ 0, 100, 5, 5, 75, 5, 5\}, \textcolor{comment}{/* Null replaced */}
+00338 \{ 100, 0, 8, 8, 8, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* H replaced */}
+00339 \{ 5, 8, 0, 3, 8, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* B replaced */}
+00340 \{ 5, 8, 3, 0, 8, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* I replaced */}
+00341 \{ 75, 8, 8, 8, 0, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}\}, \textcolor{comment}{/* M replaced */}
+00342 \{ 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0, INF\}, \textcolor{comment}{/* S replaced */}
+00343 \{ 5, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{INF}, 0\}, \textcolor{comment}{/* E replaced */}
+00344 \(\backslash\)endverbatim
+00345
+00346 The lower matrix uses the costs given in \(\backslash\)cite shapiro:1990.
+00347 All distance functions use the following global variables:
+00348
+00349 \(\backslash\)verbatim
+00350 \textcolor{keywordtype}{int} \hyperlink{dist__vars_8h_ab65d8ff14c6937612212526a60f59b3c}{cost\_matrix};
+00351 \(\backslash\)endverbatim
+00352 \(\backslash\)copybrief cost\_matrix
+00353
+00354 \(\backslash\)verbatim
+00355 \textcolor{keywordtype}{int} \hyperlink{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{edit\_backtrack};
+00356 \(\backslash\)endverbatim
+00357 \(\backslash\)copybrief edit\_backtrack
+00358
+00359 \(\backslash\)verbatim
+00360 \textcolor{keywordtype}{char} *\hyperlink{dist__vars_8h_ac1605fe3448ad0a0b809c4fb8f6a854a}{aligned\_line}[4];
+00361 \(\backslash\)endverbatim
+00362 \(\backslash\)copybrief aligned\_line
+00363
+00364 \(\backslash\)see utils.h, dist\_vars.h and stringdist.h \textcolor{keywordflow}{for} more details
+00365
+00366 <h3>Functions \textcolor{keywordflow}{for} \hyperlink{structTree}{Tree} Edit Distances</h3>
+00367
+00368 \(\backslash\)verbatim
+00369 \hyperlink{structTree}{Tree} *\hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree} (\textcolor{keywordtype}{char} *struc)
+00370 \(\backslash\)endverbatim
+00371 \(\backslash\)copybrief \hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree}()
+00372
+00373 \(\backslash\)verbatim
+00374 \textcolor{keywordtype}{float} \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\_edit\_distance} (\hyperlink{structTree}{Tree} *T1,
+00375 \hyperlink{structTree}{Tree} *T2)
+00376 \(\backslash\)endverbatim
+00377 \(\backslash\)copybrief \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\_edit\_distance}()
+00378
+00379 \(\backslash\)verbatim
+00380 \textcolor{keywordtype}{void} \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}(\hyperlink{structTree}{Tree} *t)
+00381 \(\backslash\)endverbatim
+00382 \(\backslash\)copybrief \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}()
+00383
+00384 \(\backslash\)see dist\_vars.h and treedist.h \textcolor{keywordflow}{for} prototypes and more detailed descriptions
+00385
+00386 <h3>Functions \textcolor{keywordflow}{for} String Alignment</h3>
+00387
+00388 \(\backslash\)verbatim
+00389 \hyperlink{structswString}{swString} *\hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString} (\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string})
+00390 \(\backslash\)endverbatim
+00391 \(\backslash\)copybrief \hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString}()
+00392
+00393 \(\backslash\)verbatim
+00394 \textcolor{keywordtype}{float} \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\_edit\_distance} (\hyperlink{structswString}{swString} *T1,
+00395 \hyperlink{structswString}{swString} *T2)
+00396 \(\backslash\)endverbatim
+00397 \(\backslash\)copybrief \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\_edit\_distance}()
+00398
+00399 \(\backslash\)see dist\_vars.h and stringdist.h \textcolor{keywordflow}{for} prototypes and more detailed descriptions
+00400
+00401 <h3>Functions \textcolor{keywordflow}{for} Comparison of Base Pair Probabilities</h3>
+00402
+00403 For comparison of base pair probability matrices, the matrices are first
+00404 condensed into probability profiles which are the compared by alignment.
+00405
+00406 \(\backslash\)verbatim
+00407 \textcolor{keywordtype}{float} *\hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm} ( \textcolor{keywordtype}{double} *bppm,
+00408 \textcolor{keywordtype}{int} length)
+00409 \(\backslash\)endverbatim
+00410 \(\backslash\)copybrief \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm}()
+00411
+00412 \(\backslash\)verbatim
+00413 \textcolor{keywordtype}{float} \hyperlink{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{profile\_edit\_distance} ( \textcolor{keyword}{const} \textcolor{keywordtype}{float} *T1,
+00414 \textcolor{keyword}{const} \textcolor{keywordtype}{float} *T2)
+00415 \(\backslash\)endverbatim
+00416 \(\backslash\)copybrief \hyperlink{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{profile\_edit\_distance}()
+00417
+00418 \(\backslash\)see ProfileDist.h \textcolor{keywordflow}{for} prototypes and more details of the above functions
+00419
+00420 \(\backslash\)ref mp\_utils \textcolor{stringliteral}{"Next Page: Utilities"}
+00421
+00422 \(\backslash\)page mp\_utils Utilities - Odds and Ends
+00423
+00424 \(\backslash\)anchor toc
+00425
+00426 <h3>Table of Contents</h3>
+00427 <hr>
+00428
+00429 \(\backslash\)li \(\backslash\)ref utils\_ss
+00430 \(\backslash\)li \(\backslash\)ref utils\_dot
+00431 \(\backslash\)li \(\backslash\)ref utils\_aln
+00432 \(\backslash\)li \(\backslash\)ref utils\_seq
+00433 \(\backslash\)li \(\backslash\)ref utils\_struc
+00434 \(\backslash\)li \(\backslash\)ref utils\_misc
+00435
+00436 <hr>
+00437
+00438 \(\backslash\)section utils\_ss Producing secondary structure graphs
+00439
+00440 \(\backslash\)verbatim
+00441 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{PS\_rna\_plot} ( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00442 \textcolor{keywordtype}{char} *structure,
+00443 \textcolor{keywordtype}{char} *file)
+00444 \(\backslash\)endverbatim
+00445 \(\backslash\)copybrief \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{PS\_rna\_plot}()
+00446
+00447 \(\backslash\)verbatim
+00448 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{PS\_rna\_plot\_a} (
+00449 \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00450 \textcolor{keywordtype}{char} *structure,
+00451 \textcolor{keywordtype}{char} *file,
+00452 \textcolor{keywordtype}{char} *pre,
+00453 \textcolor{keywordtype}{char} *post)
+00454 \(\backslash\)endverbatim
+00455 \(\backslash\)copybrief \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{PS\_rna\_plot\_a}()
+00456
+00457 \(\backslash\)verbatim
+00458 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gmlRNA} (\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00459 \textcolor{keywordtype}{char} *structure,
+00460 \textcolor{keywordtype}{char} *ssfile,
+00461 \textcolor{keywordtype}{char} option)
+00462 \(\backslash\)endverbatim
+00463 \(\backslash\)copybrief \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gmlRNA}()
+00464
+00465 \(\backslash\)verbatim
+00466 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\_rna\_plot} (\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00467 \textcolor{keywordtype}{char} *structure,
+00468 \textcolor{keywordtype}{char} *ssfile)
+00469 \(\backslash\)endverbatim
+00470 \(\backslash\)copybrief \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\_rna\_plot}()
+00471
+00472 \(\backslash\)verbatim
+00473 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\_rna\_plot} (\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00474 \textcolor{keywordtype}{char} *structure,
+00475 \textcolor{keywordtype}{char} *ssfile)
+00476 \(\backslash\)endverbatim
+00477 \(\backslash\)copybrief \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\_rna\_plot}()
+00478
+00479 \(\backslash\)verbatim
+00480 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\_plot} ( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00481 \textcolor{keywordtype}{char} *structure,
+00482 \textcolor{keywordtype}{char} *ssfile)
+00483 \(\backslash\)endverbatim
+00484 \(\backslash\)copybrief \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\_plot}()
+00485
+00486 \(\backslash\)verbatim
+00487 \textcolor{keywordtype}{int} rna\_plot\_type
+00488 \(\backslash\)endverbatim
+00489 \(\backslash\)copybrief \hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\_plot\_type}
+00490
+00491 Two low-level functions provide direct access to the graph lauyouting
+00492 algorithms:
+00493
+00494 \(\backslash\)verbatim
+00495 \textcolor{keywordtype}{int} \hyperlink{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{simple\_xy\_coordinates} ( \textcolor{keywordtype}{short} *pair\_table,
+00496 \textcolor{keywordtype}{float} *X,
+00497 \textcolor{keywordtype}{float} *Y)
+00498 \(\backslash\)endverbatim
+00499 \(\backslash\)copybrief \hyperlink{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{simple\_xy\_coordinates}()
+00500
+00501 \(\backslash\)verbatim
+00502 \textcolor{keywordtype}{int} naview\_xy\_coordinates ( \textcolor{keywordtype}{short} *pair\_table,
+00503 \textcolor{keywordtype}{float} *X,
+00504 \textcolor{keywordtype}{float} *Y)
+00505 \(\backslash\)endverbatim
+00506 \(\backslash\)copybrief naview\_xy\_coordinates()
+00507
+00508 \(\backslash\)see PS\_dot.h and naview.h \textcolor{keywordflow}{for} more detailed descriptions.
+00509
+00510 \(\backslash\)htmlonly
+00511 <hr>
+00512 <a href=\textcolor{stringliteral}{"#toc"}>Table of Contents</a>
+00513 <hr>
+00514 \(\backslash\)endhtmlonly
+00515
+00516 \(\backslash\)section utils\_dot Producing (colored) dot plots for base pair probabilities
+00517
+00518 \(\backslash\)verbatim
+00519 \textcolor{keywordtype}{int} PS\_color\_dot\_plot ( \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00520 \hyperlink{structcpair}{cpair} *pi,
+00521 \textcolor{keywordtype}{char} *filename)
+00522 \(\backslash\)endverbatim
+00523 \(\backslash\)copybrief PS\_color\_dot\_plot()
+00524
+00525 \(\backslash\)verbatim
+00526 \textcolor{keywordtype}{int} PS\_color\_dot\_plot\_turn (\textcolor{keywordtype}{char} *seq,
+00527 \hyperlink{structcpair}{cpair} *pi,
+00528 \textcolor{keywordtype}{char} *filename,
+00529 \textcolor{keywordtype}{int} winSize)
+00530 \(\backslash\)endverbatim
+00531 \(\backslash\)copybrief PS\_color\_dot\_plot\_turn()
+00532
+00533 \(\backslash\)verbatim
+00534 \textcolor{keywordtype}{int} \hyperlink{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{PS\_dot\_plot\_list} (\textcolor{keywordtype}{char} *seq,
+00535 \textcolor{keywordtype}{char} *filename,
+00536 \hyperlink{structplist}{plist} *pl,
+00537 \hyperlink{structplist}{plist} *mf,
+00538 \textcolor{keywordtype}{char} *comment)
+00539 \(\backslash\)endverbatim
+00540 \(\backslash\)copybrief \hyperlink{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{PS\_dot\_plot\_list}()
+00541
+00542 \(\backslash\)verbatim
+00543 \textcolor{keywordtype}{int} PS\_dot\_plot\_turn (\textcolor{keywordtype}{char} *seq,
+00544 struct \hyperlink{structplist}{plist} *pl,
+00545 \textcolor{keywordtype}{char} *filename,
+00546 \textcolor{keywordtype}{int} winSize)
+00547 \(\backslash\)endverbatim
+00548 \(\backslash\)copybrief PS\_dot\_plot\_turn()
+00549
+00550 \(\backslash\)see PS\_dot.h for more detailed descriptions.
+00551
+00552 \(\backslash\)section utils\_aln Producing (colored) alignments
+00553
+00554 \(\backslash\)verbatim
+00555 \textcolor{keywordtype}{int} PS\_color\_aln (
+00556 const \textcolor{keywordtype}{char} *structure,
+00557 const \textcolor{keywordtype}{char} *filename,
+00558 const \textcolor{keywordtype}{char} *seqs[],
+00559 const \textcolor{keywordtype}{char} *names[])
+00560 \(\backslash\)endverbatim
+00561 \(\backslash\)copybrief PS\_color\_aln()
+00562
+00563 \(\backslash\)htmlonly
+00564 <hr>
+00565 <a href="\textcolor{preprocessor}{#toc">Table of Contents</a>}
+00566 \textcolor{preprocessor}{}<hr>
+00567 \(\backslash\)endhtmlonly
+00568
+00569 \(\backslash\)section utils\_seq RNA sequence related utilities
+00570
+00571 Several functions provide useful applications to RNA sequences
+00572
+00573 \(\backslash\)verbatim
+00574 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_a1b95eac365a021572e1c37e5993a89be}{random\_string} (\textcolor{keywordtype}{int} l,
+00575 \textcolor{keyword}{const} \textcolor{keywordtype}{char} symbols[])
+00576 \(\backslash\)endverbatim
+00577 \(\backslash\)copybrief \hyperlink{utils_8h_a1b95eac365a021572e1c37e5993a89be}{random\_string}()
+00578
+00579 \(\backslash\)verbatim
+00580 \textcolor{keywordtype}{int} \hyperlink{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{hamming} ( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00581 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2)
+00582 \(\backslash\)endverbatim
+00583 \(\backslash\)copybrief \hyperlink{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{hamming}()
+00584
+00585 \(\backslash\)verbatim
+00586 \textcolor{keywordtype}{void} \hyperlink{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}{str\_DNA2RNA}(\textcolor{keywordtype}{char} *sequence);
+00587 \(\backslash\)endverbatim
+00588 \(\backslash\)copybrief \hyperlink{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}{str\_DNA2RNA}()
+00589
+00590 \(\backslash\)verbatim
+00591 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a17b796b806f96b70382077fb5bc519bb}{str\_uppercase}(\textcolor{keywordtype}{char} *sequence);
+00592 \(\backslash\)endverbatim
+00593 \(\backslash\)copybrief \hyperlink{utils_8h_a17b796b806f96b70382077fb5bc519bb}{str\_uppercase}()
+00594
+00595 \(\backslash\)htmlonly
+00596 <hr>
+00597 <a href=\textcolor{stringliteral}{"#toc"}>Table of Contents</a>
+00598 <hr>
+00599 \(\backslash\)endhtmlonly
+00600
+00601 \(\backslash\)section utils\_struc RNA secondary structure related utilities
+00602
+00603 \(\backslash\)verbatim
+00604 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\_structure} (\textcolor{keyword}{const} \textcolor{keywordtype}{char} *struc)
+00605 \(\backslash\)endverbatim
+00606 \(\backslash\)copybrief \hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\_structure}()
+00607
+00608 \(\backslash\)verbatim
+00609 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}{unpack\_structure} (\textcolor{keyword}{const} \textcolor{keywordtype}{char} *packed)
+00610 \(\backslash\)endverbatim
+00611 \(\backslash\)copybrief \hyperlink{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}{unpack\_structure}()
+00612
+00613 \(\backslash\)verbatim
+00614 \textcolor{keywordtype}{short} *\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\_pair\_table} (\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure)
+00615 \(\backslash\)endverbatim
+00616 \(\backslash\)copybrief \hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\_pair\_table}()
+00617
+00618 \(\backslash\)verbatim
+00619 \textcolor{keywordtype}{short} *\hyperlink{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}{copy\_pair\_table} (\textcolor{keyword}{const} \textcolor{keywordtype}{short} *pt)
+00620 \(\backslash\)endverbatim
+00621 \(\backslash\)copybrief \hyperlink{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}{copy\_pair\_table}()
+00622
+00623 \(\backslash\)htmlonly
+00624 <hr>
+00625 <a href=\textcolor{stringliteral}{"#toc"}>Table of Contents</a>
+00626 <hr>
+00627 \(\backslash\)endhtmlonly
+00628
+00629 \(\backslash\)section utils\_misc Miscellaneous Utilities
+00630
+00631 \(\backslash\)verbatim
+00632 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a6bf778117d31b7fd90db435323f4ef74}{print\_tty\_input\_seq} (\textcolor{keywordtype}{void})
+00633 \(\backslash\)endverbatim
+00634 \(\backslash\)copybrief \hyperlink{utils_8h_a6bf778117d31b7fd90db435323f4ef74}{print\_tty\_input\_seq}()
+00635
+00636 \(\backslash\)verbatim
+00637 \textcolor{keywordtype}{void} \hyperlink{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}{print\_tty\_constraint\_full} (\textcolor{keywordtype}{void})
+00638 \(\backslash\)endverbatim
+00639 \(\backslash\)copybrief \hyperlink{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}{print\_tty\_constraint\_full}()
+00640
+00641 \(\backslash\)verbatim
+00642 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a4d167deb70bb51723e44374dc981deb2}{print\_tty\_constraint} (\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} option)
+00643 \(\backslash\)endverbatim
+00644 \(\backslash\)copybrief \hyperlink{utils_8h_a4d167deb70bb51723e44374dc981deb2}{print\_tty\_constraint}()
+00645
+00646 \(\backslash\)verbatim
+00647 \textcolor{keywordtype}{int} *\hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\_iindx} (\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length)
+00648 \(\backslash\)endverbatim
+00649 \(\backslash\)copybrief \hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\_iindx}()
+00650
+00651 \(\backslash\)verbatim
+00652 \textcolor{keywordtype}{int} *\hyperlink{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{get\_indx} (\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length)
+00653 \(\backslash\)endverbatim
+00654 \(\backslash\)copybrief \hyperlink{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{get\_indx}()
+00655
+00656 \(\backslash\)verbatim
+00657 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a36c3a6c3218b041f992052767bc74549}{constrain\_ptypes} (
+00658 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *constraint,
+00659 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length,
+00660 \textcolor{keywordtype}{char} *ptype,
+00661 \textcolor{keywordtype}{int} *BP,
+00662 \textcolor{keywordtype}{int} min\_loop\_size,
+00663 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} idx\_type)
+00664 \(\backslash\)endverbatim
+00665 \(\backslash\)copybrief \hyperlink{utils_8h_a36c3a6c3218b041f992052767bc74549}{constrain\_ptypes}()
+00666
+00667 \(\backslash\)verbatim
+00668 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}{get\_line}(FILE *fp);
+00669 \(\backslash\)endverbatim
+00670 \(\backslash\)copybrief \hyperlink{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}{get\_line}()
+00671
+00672 \(\backslash\)verbatim
+00673 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\_record}(
+00674 \textcolor{keywordtype}{char} **header,
+00675 \textcolor{keywordtype}{char} **sequence,
+00676 \textcolor{keywordtype}{char} ***rest,
+00677 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} options);
+00678 \(\backslash\)endverbatim
+00679 \(\backslash\)copybrief \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\_record}()
+00680
+00681 \(\backslash\)verbatim
+00682 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}{time\_stamp} (\textcolor{keywordtype}{void})
+00683 \(\backslash\)endverbatim
+00684 \(\backslash\)copybrief \hyperlink{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}{time\_stamp}()
+00685
+00686 \(\backslash\)verbatim
+00687 \textcolor{keywordtype}{void} \hyperlink{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{warn\_user} (\textcolor{keyword}{const} \textcolor{keywordtype}{char} message[])
+00688 \(\backslash\)endverbatim
+00689 \(\backslash\)copybrief \hyperlink{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{warn\_user}()
+00690
+00691 \(\backslash\)verbatim
+00692 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{nrerror} (\textcolor{keyword}{const} \textcolor{keywordtype}{char} message[])
+00693 \(\backslash\)endverbatim
+00694 \(\backslash\)copybrief \hyperlink{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{nrerror}()
+00695
+00696 \(\backslash\)verbatim
+00697 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}{init\_rand} (\textcolor{keywordtype}{void})
+00698 \(\backslash\)endverbatim
+00699 \(\backslash\)copybrief \hyperlink{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}{init\_rand}()
+00700
+00701 \(\backslash\)verbatim
+00702 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{short} \hyperlink{utils_8h_af9a866c8417afda7368bbac939ab3c47}{xsubi}[3];
+00703 \(\backslash\)endverbatim
+00704 \(\backslash\)copybrief xsubi
+00705
+00706 \(\backslash\)verbatim
+00707 \textcolor{keywordtype}{double} \hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn} (\textcolor{keywordtype}{void})
+00708 \(\backslash\)endverbatim
+00709 \(\backslash\)copybrief \hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn}()
+00710
+00711 \(\backslash\)verbatim
+00712 \textcolor{keywordtype}{int} \hyperlink{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}{int\_urn} (\textcolor{keywordtype}{int} from, \textcolor{keywordtype}{int} to)
+00713 \(\backslash\)endverbatim
+00714 \(\backslash\)copybrief \hyperlink{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}{int\_urn}()
+00715
+00716 \(\backslash\)verbatim
+00717 \textcolor{keywordtype}{void} *\hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space} (\textcolor{keywordtype}{unsigned} size)
+00718 \(\backslash\)endverbatim
+00719 \(\backslash\)copybrief \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}()
+00720
+00721 \(\backslash\)verbatim
+00722 \textcolor{keywordtype}{void} *\hyperlink{utils_8h_a9037ada838835b1b9db41581a021b0c8}{xrealloc} ( \textcolor{keywordtype}{void} *p,
+00723 \textcolor{keywordtype}{unsigned} size)
+00724 \(\backslash\)endverbatim
+00725 \(\backslash\)copybrief \hyperlink{utils_8h_a9037ada838835b1b9db41581a021b0c8}{xrealloc}()
+00726
+00727 \(\backslash\)see utils.h \textcolor{keywordflow}{for} a complete overview and detailed description of the utility functions
+00728
+00729 \(\backslash\)htmlonly
+00730 <hr>
+00731 <a href=\textcolor{stringliteral}{"#toc"}>Table of Contents</a>
+00732 <hr>
+00733 \(\backslash\)endhtmlonly
+00734
+00735 \(\backslash\)ref mp\_example \textcolor{stringliteral}{"Next Page: Examples"}
+00736
+00737 \(\backslash\)page mp\_example Example - A Small Example Program
+00738
+00739 The following program exercises most commonly used functions of the library.
+00740 The program folds two sequences \textcolor{keyword}{using} both the mfe and partition \textcolor{keyword}{function}
+00741 algorithms and calculates the tree edit and profile distance of the
+00742 resulting structures and base pairing probabilities.
+00743
+00744 \(\backslash\)code\{.c\}
+00745 \textcolor{preprocessor}{#include <stdio.h>}
+00746 \textcolor{preprocessor}{#include <stdlib.h>}
+00747 \textcolor{preprocessor}{#include <math.h>}
+00748 \textcolor{preprocessor}{#include <string.h>}
+00749 \textcolor{preprocessor}{#include "\hyperlink{utils_8h}{utils.h}"}
+00750 \textcolor{preprocessor}{#include "\hyperlink{fold__vars_8h}{fold\_vars.h}"}
+00751 \textcolor{preprocessor}{#include "\hyperlink{fold_8h}{fold.h}"}
+00752 \textcolor{preprocessor}{#include "\hyperlink{part__func_8h}{part\_func.h}"}
+00753 \textcolor{preprocessor}{#include "\hyperlink{inverse_8h}{inverse.h}"}
+00754 \textcolor{preprocessor}{#include "\hyperlink{RNAstruct_8h}{RNAstruct.h}"}
+00755 \textcolor{preprocessor}{#include "\hyperlink{treedist_8h}{treedist.h}"}
+00756 \textcolor{preprocessor}{#include "\hyperlink{stringdist_8h}{stringdist.h}"}
+00757 \textcolor{preprocessor}{#include "\hyperlink{profiledist_8h}{profiledist.h}"}
+00758
+00759 \textcolor{keywordtype}{void} main()
+00760 \{
+00761 \textcolor{keywordtype}{char} *seq1=\textcolor{stringliteral}{"CGCAGGGAUACCCGCG"}, *seq2=\textcolor{stringliteral}{"GCGCCCAUAGGGACGC"},
+00762 *struct1,* struct2,* xstruc;
+00763 \textcolor{keywordtype}{float} e1, e2, tree\_dist, string\_dist, profile\_dist, kT;
+00764 \hyperlink{structTree}{Tree} *T1, *T2;
+00765 \hyperlink{structswString}{swString} *S1, *S2;
+00766 \textcolor{keywordtype}{float} *pf1, *pf2;
+00767 FLT\_OR\_DBL *bppm;
+00768 \textcolor{comment}{/* fold at 30C instead of the default 37C */}
+00769 \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature} = 30.; \textcolor{comment}{/* must be set *before* initializing */}
+00770
+00771 \textcolor{comment}{/* allocate memory for structure and fold */}
+00772 struct1 = (\textcolor{keywordtype}{char}* ) \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}(\textcolor{keyword}{sizeof}(\textcolor{keywordtype}{char})*(strlen(seq1)+1));
+00773 e1 = \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold}(seq1, struct1);
+00774
+00775 struct2 = (\textcolor{keywordtype}{char}* ) \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}(\textcolor{keyword}{sizeof}(\textcolor{keywordtype}{char})*(strlen(seq2)+1));
+00776 e2 = \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold}(seq2, struct2);
+00777
+00778 \hyperlink{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{free\_arrays}(); \textcolor{comment}{/* free arrays used in fold() */}
+00779
+00780 \textcolor{comment}{/* produce tree and string representations for comparison */}
+00781 xstruc = \hyperlink{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{expand\_Full}(struct1);
+00782 T1 = \hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree}(xstruc);
+00783 S1 = \hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString}(xstruc);
+00784 free(xstruc);
+00785
+00786 xstruc = \hyperlink{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{expand\_Full}(struct2);
+00787 T2 = \hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree}(xstruc);
+00788 S2 = \hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString}(xstruc);
+00789 free(xstruc);
+00790
+00791 \textcolor{comment}{/* calculate tree edit distance and aligned structures with gaps */}
+00792 \hyperlink{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{edit\_backtrack} = 1;
+00793 tree\_dist = \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\_edit\_distance}(T1, T2);
+00794 \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}(T1); \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}(T2);
+00795 \hyperlink{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}{unexpand\_aligned\_F}(aligned\_line);
+00796 printf(\textcolor{stringliteral}{"%s\(\backslash\)n%s %3.2f\(\backslash\)n"}, aligned\_line[0], aligned\_line[1], tree\_dist);
+00797
+00798 \textcolor{comment}{/* same thing using string edit (alignment) distance */}
+00799 string\_dist = \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\_edit\_distance}(S1, S2);
+00800 free(S1); free(S2);
+00801 printf(\textcolor{stringliteral}{"%s mfe=%5.2f\(\backslash\)n%s mfe=%5.2f dist=%3.2f\(\backslash\)n"},
+00802 aligned\_line[0], e1, aligned\_line[1], e2, string\_dist);
+00803
+00804 \textcolor{comment}{/* for longer sequences one should also set a scaling factor for}
+00805 \textcolor{comment}{ partition function folding, e.g: */}
+00806 kT = (\hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}+273.15)*1.98717/1000.; \textcolor{comment}{/* kT in kcal/mol */}
+00807 \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\_scale} = exp(-e1/kT/strlen(seq1));
+00808
+00809 \textcolor{comment}{/* calculate partition function and base pair probabilities */}
+00810 e1 = \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\_fold}(seq1, struct1);
+00811 \textcolor{comment}{/* get the base pair probability matrix for the previous run of pf\_fold() */}
+00812 bppm = \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\_bppm}();
+00813 pf1 = \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm}(bppm, strlen(seq1));
+00814
+00815 e2 = \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\_fold}(seq2, struct2);
+00816 \textcolor{comment}{/* get the base pair probability matrix for the previous run of pf\_fold() */}
+00817 bppm = \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\_bppm}();
+00818 pf2 = \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm}(bppm, strlen(seq2));
+00819
+00820 \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\_pf\_arrays}(); \textcolor{comment}{/* free space allocated for pf\_fold() */}
+00821
+00822 profile\_dist = \hyperlink{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{profile\_edit\_distance}(pf1, pf2);
+00823 printf(\textcolor{stringliteral}{"%s free energy=%5.2f\(\backslash\)n%s free energy=%5.2f dist=%3.2f\(\backslash\)n"},
+00824 aligned\_line[0], e1, aligned\_line[1], e2, profile\_dist);
+00825
+00826 \hyperlink{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{free\_profile}(pf1); \hyperlink{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{free\_profile}(pf2);
+00827 \}
+00828 \(\backslash\)endcode
+00829
+00830 In a typical Unix environment you would compile \textcolor{keyword}{this} program \textcolor{keyword}{using}:
+00831 \(\backslash\)verbatim
+00832 cc $\{OPENMP\_CFLAGS\} -c example.c -I$\{hpath\}
+00833 \(\backslash\)endverbatim
+00834 and link using
+00835 \(\backslash\)verbatim
+00836 cc $\{OPENMP\_CFLAGS\} -o example -L$\{lpath\} -lRNA -lm
+00837 \(\backslash\)endverbatim
+00838 where \(\backslash\)e $\{hpath\} and \(\backslash\)e $\{lpath\} point to the location of the header
+00839 files and library, respectively.
+00840 \(\backslash\)note As \textcolor{keywordflow}{default}, the RNAlib is compiled with build-in \(\backslash\)e OpenMP multithreading
+00841 support. Thus, when linking your own \textcolor{keywordtype}{object} files to the library you have to pass
+00842 the compiler specific \(\backslash\)e $\{OPENMP\_CFLAGS\} (e.g. \textcolor{stringliteral}{'-fopenmp'} for \(\backslash\)b gcc) even \textcolor{keywordflow}{if} your code does not
+00843 use openmp specific code. However, in that \textcolor{keywordflow}{case} the \(\backslash\)e OpenMP flags may be ommited when compiling
+00844 example.c
+00845
+00846
+00847 **/
+00848
+\end{DoxyCode}
--- /dev/null
+\hypertarget{mm_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/mm.h File Reference}
+\label{mm_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/mm.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/mm.\-h}}
+}
+
+
+Several Maximum Matching implementations.
+
+
+
+
+\subsection{Detailed Description}
+Several Maximum Matching implementations. This file contains the declarations for several maximum matching implementations
\ No newline at end of file
--- /dev/null
+\hypertarget{mm_8h}{\section{mm.\-h}
+\label{mm_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/mm.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/mm.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_MM\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_MM\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00012 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} maximumMatching(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string});
+00013
+00014 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *maximumMatchingConstraint(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00015 \textcolor{keywordtype}{short} *ptable);
+00016
+00017 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *maximumMatching2Constraint( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string},
+00018 \textcolor{keywordtype}{short} *ptable,
+00019 \textcolor{keywordtype}{short} *ptable2);
+00020
+00021 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\section{Modules}
+Here is a list of all modules\-:\begin{DoxyCompactList}
+\item \contentsline{section}{R\-N\-A Secondary Structure Folding}{\pageref{group__folding__routines}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Calculating Minimum Free Energy (M\-F\-E) Structures}{\pageref{group__mfe__fold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{M\-F\-E Structures of two hybridized Sequences}{\pageref{group__mfe__cofold}}{}
+\item \contentsline{section}{M\-F\-E Consensus Structures for Sequence Alignment(s)}{\pageref{group__consensus__mfe__fold}}{}
+\item \contentsline{section}{Local M\-F\-E structure Prediction and Z-\/scores}{\pageref{group__local__mfe__fold}}{}
+\item \contentsline{section}{Calculating M\-F\-E representatives of a Distance Based Partitioning}{\pageref{group__kl__neighborhood__mfe}}{}
+\end{DoxyCompactList}
+\item \contentsline{section}{Calculating Partition Functions and Pair Probabilities}{\pageref{group__pf__fold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Compute the structure with maximum expected accuracy (M\-E\-A)}{\pageref{group__mea__fold}}{}
+\item \contentsline{section}{Compute the centroid structure}{\pageref{group__centroid__fold}}{}
+\item \contentsline{section}{Partition Function for two hybridized Sequences}{\pageref{group__pf__cofold}}{}
+\item \contentsline{section}{Partition Function for two hybridized Sequences as a stepwise Process}{\pageref{group__up__cofold}}{}
+\item \contentsline{section}{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}{\pageref{group__consensus__pf__fold}}{}
+\item \contentsline{section}{Partition functions for locally stable secondary structures}{\pageref{group__local__pf__fold}}{}
+\item \contentsline{section}{Calculate Partition Functions of a Distance Based Partitioning}{\pageref{group__kl__neighborhood__pf}}{}
+\end{DoxyCompactList}
+\item \contentsline{section}{Enumerating Suboptimal Structures}{\pageref{group__subopt__fold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Suboptimal structures according to Zuker et al. 1989}{\pageref{group__subopt__zuker}}{}
+\item \contentsline{section}{Suboptimal structures within an energy band arround the M\-F\-E}{\pageref{group__subopt__wuchty}}{}
+\item \contentsline{section}{Stochastic backtracking in the Ensemble}{\pageref{group__subopt__stochbt}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}{\pageref{group__consensus__stochbt}}{}
+\item \contentsline{section}{Stochastic Backtracking of Structures from Distance Based Partitioning}{\pageref{group__kl__neighborhood__stochbt}}{}
+\end{DoxyCompactList}
+\end{DoxyCompactList}
+\item \contentsline{section}{Calculate Secondary Structures of two R\-N\-As upon Dimerization}{\pageref{group__cofold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{M\-F\-E Structures of two hybridized Sequences}{\pageref{group__mfe__cofold}}{}
+\item \contentsline{section}{Partition Function for two hybridized Sequences}{\pageref{group__pf__cofold}}{}
+\item \contentsline{section}{Partition Function for two hybridized Sequences as a stepwise Process}{\pageref{group__up__cofold}}{}
+\end{DoxyCompactList}
+\item \contentsline{section}{Predicting Consensus Structures from Alignment(s)}{\pageref{group__consensus__fold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{M\-F\-E Consensus Structures for Sequence Alignment(s)}{\pageref{group__consensus__mfe__fold}}{}
+\item \contentsline{section}{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}{\pageref{group__consensus__pf__fold}}{}
+\item \contentsline{section}{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}{\pageref{group__consensus__stochbt}}{}
+\item \contentsline{section}{Local M\-F\-E consensus structures for Sequence Alignments}{\pageref{group__local__consensus__fold}}{}
+\end{DoxyCompactList}
+\item \contentsline{section}{Predicting Locally stable structures of large sequences}{\pageref{group__local__fold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Local M\-F\-E structure Prediction and Z-\/scores}{\pageref{group__local__mfe__fold}}{}
+\item \contentsline{section}{Partition functions for locally stable secondary structures}{\pageref{group__local__pf__fold}}{}
+\item \contentsline{section}{Local M\-F\-E consensus structures for Sequence Alignments}{\pageref{group__local__consensus__fold}}{}
+\end{DoxyCompactList}
+\item \contentsline{section}{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}{\pageref{group__energy__parameters}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Reading/\-Writing energy parameter sets from/to File}{\pageref{group__energy__parameters__rw}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Converting energy parameter files}{\pageref{group__energy__parameters__convert}}{}
+\end{DoxyCompactList}
+\end{DoxyCompactList}
+\item \contentsline{section}{Energy evaluation}{\pageref{group__eval}}{}
+\item \contentsline{section}{Searching Sequences for Predefined Structures}{\pageref{group__inverse__fold}}{}
+\item \contentsline{section}{Classified Dynamic Programming}{\pageref{group__class__fold}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Distance based partitioning of the Secondary Structure Space}{\pageref{group__kl__neighborhood}}{}
+\begin{DoxyCompactList}
+\item \contentsline{section}{Calculating M\-F\-E representatives of a Distance Based Partitioning}{\pageref{group__kl__neighborhood__mfe}}{}
+\item \contentsline{section}{Calculate Partition Functions of a Distance Based Partitioning}{\pageref{group__kl__neighborhood__pf}}{}
+\item \contentsline{section}{Stochastic Backtracking of Structures from Distance Based Partitioning}{\pageref{group__kl__neighborhood__stochbt}}{}
+\end{DoxyCompactList}
+\item \contentsline{section}{Compute the Density of States}{\pageref{group__dos}}{}
+\end{DoxyCompactList}
+\end{DoxyCompactList}
+\item \contentsline{section}{Parsing and Comparing -\/ Functions to Manipulate Structures}{\pageref{group__parse}}{}
+\end{DoxyCompactList}
--- /dev/null
+\hypertarget{move__set_8h}{\section{move\-\_\-set.\-h}
+\label{move__set_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/move\-\_\-set.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/move\-\_\-set.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_MOVE\_SET\_H}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_MOVE\_SET\_H}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{comment}{/* used data structure*/}
+\hypertarget{move__set_8h_source_l00005}{}\hyperlink{structstruct__en}{00005} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\_struct\_en\{
+00006 \textcolor{keywordtype}{int} energy; \textcolor{comment}{/* energy in 10kcal/mol*/}
+00007 \textcolor{keywordtype}{short} *structure; \textcolor{comment}{/* structure in energy\_of\_move format*/}
+00008 \} \hyperlink{structstruct__en}{struct\_en};
+00009
+00010 \textcolor{comment}{/* prints structure*/}
+00011 \textcolor{keywordtype}{void} print\_stren(FILE *out, \hyperlink{structstruct__en}{struct\_en} *str);
+00012 \textcolor{keywordtype}{void} print\_str(FILE *out, \textcolor{keywordtype}{short} *str);
+00013
+00014 \textcolor{comment}{/* copying functions*/}
+00015 \textcolor{keywordtype}{void} copy\_arr(\textcolor{keywordtype}{short} *dest, \textcolor{keywordtype}{short} *src); \textcolor{comment}{/*just copy*/}
+00016 \textcolor{keywordtype}{short} *allocopy(\textcolor{keywordtype}{short} *src); \textcolor{comment}{/*copy and make space*/}
+00017
+00018 \textcolor{comment}{/* walking methods (verbose\_lvl 0-2, shifts = use shift moves? noLP = no lone pairs? (not compatible with
+ shifts))}
+00019 \textcolor{comment}{ input: seq - sequence}
+00020 \textcolor{comment}{ ptable - structure encoded with make\_pair\_table() from pair\_mat.h}
+00021 \textcolor{comment}{ s, s1 - sequence encoded with encode\_sequence from pair\_mat.h}
+00022 \textcolor{comment}{ methods: deepest - lowest energy structure is used}
+00023 \textcolor{comment}{ first - first found lower energy structure is used}
+00024 \textcolor{comment}{ rand - random lower energy structure is used}
+00025 \textcolor{comment}{ returns local minima structure in ptable and its energy in 10kcal/mol as output */}
+00026
+00027 \textcolor{keywordtype}{int} move\_deepest( \textcolor{keywordtype}{char} *seq,
+00028 \textcolor{keywordtype}{short} *ptable,
+00029 \textcolor{keywordtype}{short} *s,
+00030 \textcolor{keywordtype}{short} *s1,
+00031 \textcolor{keywordtype}{int} verbosity\_level,
+00032 \textcolor{keywordtype}{int} shifts,
+00033 \textcolor{keywordtype}{int} noLP);
+00034 \textcolor{keywordtype}{int} move\_first( \textcolor{keywordtype}{char} *seq,
+00035 \textcolor{keywordtype}{short} *ptable,
+00036 \textcolor{keywordtype}{short} *s,
+00037 \textcolor{keywordtype}{short} *s1,
+00038 \textcolor{keywordtype}{int} verbosity\_level,
+00039 \textcolor{keywordtype}{int} shifts,
+00040 \textcolor{keywordtype}{int} noLP);
+00041 \textcolor{keywordtype}{int} move\_rand( \textcolor{keywordtype}{char} *seq,
+00042 \textcolor{keywordtype}{short} *ptable,
+00043 \textcolor{keywordtype}{short} *s,
+00044 \textcolor{keywordtype}{short} *s1,
+00045 \textcolor{keywordtype}{int} verbosity\_level);
+00046
+00047
+00048 \textcolor{comment}{/* browse\_neighbours and do funct function on each of them (used mainly for user specified flooding)}
+00049 \textcolor{comment}{ input: seq - sequence}
+00050 \textcolor{comment}{ ptable - structure encoded with make\_pair\_table() from pair\_mat.h}
+00051 \textcolor{comment}{ s, s1 - sequence encoded with encode\_sequence from pair\_mat.h}
+00052 \textcolor{comment}{ funct - function (moved structure, current structure (or altered by funct)) to do with every
+ structure in neigbourhood}
+00053 \textcolor{comment}{ returns energy of the structure funct sets as second argument*/}
+00054 \textcolor{keywordtype}{int} browse\_neighs( \textcolor{keywordtype}{char} *seq,
+00055 \textcolor{keywordtype}{short} *ptable,
+00056 \textcolor{keywordtype}{short} *s,
+00057 \textcolor{keywordtype}{short} *s1,
+00058 \textcolor{keywordtype}{int} verbosity\_level,
+00059 \textcolor{keywordtype}{int} shifts,
+00060 \textcolor{keywordtype}{int} noLP,
+00061 \textcolor{keywordtype}{int} (*funct) (\hyperlink{structstruct__en}{struct\_en}*, \hyperlink{structstruct__en}{struct\_en}*));
+00062
+00063 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+The following program exercises most commonly used functions of the library. The program folds two sequences using both the mfe and partition function algorithms and calculates the tree edit and profile distance of the resulting structures and base pairing probabilities.
+
+
+\begin{DoxyCode}
+\textcolor{preprocessor}{#include <stdio.h>}
+\textcolor{preprocessor}{#include <stdlib.h>}
+\textcolor{preprocessor}{#include <math.h>}
+\textcolor{preprocessor}{#include <string.h>}
+\textcolor{preprocessor}{#include "\hyperlink{utils_8h}{utils.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{fold__vars_8h}{fold\_vars.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{fold_8h}{fold.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{part__func_8h}{part\_func.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{inverse_8h}{inverse.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{RNAstruct_8h}{RNAstruct.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{treedist_8h}{treedist.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{stringdist_8h}{stringdist.h}"}
+\textcolor{preprocessor}{#include "\hyperlink{profiledist_8h}{profiledist.h}"}
+
+\textcolor{keywordtype}{void} main()
+\{
+ \textcolor{keywordtype}{char} *seq1=\textcolor{stringliteral}{"CGCAGGGAUACCCGCG"}, *seq2=\textcolor{stringliteral}{"GCGCCCAUAGGGACGC"},
+ *struct1,* struct2,* xstruc;
+ \textcolor{keywordtype}{float} e1, e2, tree\_dist, string\_dist, profile\_dist, kT;
+ \hyperlink{structTree}{Tree} *T1, *T2;
+ \hyperlink{structswString}{swString} *S1, *S2;
+ \textcolor{keywordtype}{float} *pf1, *pf2;
+ FLT\_OR\_DBL *bppm;
+ \textcolor{comment}{/* fold at 30C instead of the default 37C */}
+ \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature} = 30.; \textcolor{comment}{/* must be set *before* initializing */}
+
+ \textcolor{comment}{/* allocate memory for structure and fold */}
+ struct1 = (\textcolor{keywordtype}{char}* ) \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}(\textcolor{keyword}{sizeof}(\textcolor{keywordtype}{char})*(strlen(seq1)+1));
+ e1 = \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold}(seq1, struct1);
+
+ struct2 = (\textcolor{keywordtype}{char}* ) \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}(\textcolor{keyword}{sizeof}(\textcolor{keywordtype}{char})*(strlen(seq2)+1));
+ e2 = \hyperlink{group__mfe__fold_gaadafcb0f140795ae62e5ca027e335a9b}{fold}(seq2, struct2);
+
+ \hyperlink{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{free\_arrays}(); \textcolor{comment}{/* free arrays used in fold() */}
+
+ \textcolor{comment}{/* produce tree and string representations for comparison */}
+ xstruc = \hyperlink{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{expand\_Full}(struct1);
+ T1 = \hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree}(xstruc);
+ S1 = \hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString}(xstruc);
+ free(xstruc);
+
+ xstruc = \hyperlink{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{expand\_Full}(struct2);
+ T2 = \hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree}(xstruc);
+ S2 = \hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString}(xstruc);
+ free(xstruc);
+
+ \textcolor{comment}{/* calculate tree edit distance and aligned structures with gaps */}
+ \hyperlink{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{edit\_backtrack} = 1;
+ tree\_dist = \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\_edit\_distance}(T1, T2);
+ \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}(T1); \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}(T2);
+ \hyperlink{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}{unexpand\_aligned\_F}(aligned\_line);
+ printf(\textcolor{stringliteral}{"%s\(\backslash\)n%s %3.2f\(\backslash\)n"}, aligned\_line[0], aligned\_line[1], tree\_dist);
+
+ \textcolor{comment}{/* same thing using string edit (alignment) distance */}
+ string\_dist = \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\_edit\_distance}(S1, S2);
+ free(S1); free(S2);
+ printf(\textcolor{stringliteral}{"%s mfe=%5.2f\(\backslash\)n%s mfe=%5.2f dist=%3.2f\(\backslash\)n"},
+ aligned\_line[0], e1, aligned\_line[1], e2, string\_dist);
+
+ \textcolor{comment}{/* for longer sequences one should also set a scaling factor for}
+\textcolor{comment}{ partition function folding, e.g: */}
+ kT = (\hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}+273.15)*1.98717/1000.; \textcolor{comment}{/* kT in kcal/mol */}
+ \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\_scale} = exp(-e1/kT/strlen(seq1));
+
+ \textcolor{comment}{/* calculate partition function and base pair probabilities */}
+ e1 = \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\_fold}(seq1, struct1);
+ \textcolor{comment}{/* get the base pair probability matrix for the previous run of pf\_fold() */}
+ bppm = \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\_bppm}();
+ pf1 = \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm}(bppm, strlen(seq1));
+
+ e2 = \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\_fold}(seq2, struct2);
+ \textcolor{comment}{/* get the base pair probability matrix for the previous run of pf\_fold() */}
+ bppm = \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\_bppm}();
+ pf2 = \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm}(bppm, strlen(seq2));
+
+ \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\_pf\_arrays}(); \textcolor{comment}{/* free space allocated for pf\_fold() */}
+
+ profile\_dist = \hyperlink{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{profile\_edit\_distance}(pf1, pf2);
+ printf(\textcolor{stringliteral}{"%s free energy=%5.2f\(\backslash\)n%s free energy=%5.2f dist=%3.2f\(\backslash\)n"},
+ aligned\_line[0], e1, aligned\_line[1], e2, profile\_dist);
+
+ \hyperlink{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{free\_profile}(pf1); \hyperlink{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{free\_profile}(pf2);
+\}
+\end{DoxyCode}
+
+
+In a typical Unix environment you would compile this program using\-: \begin{DoxyVerb}cc ${OPENMP_CFLAGS} -c example.c -I${hpath}
+\end{DoxyVerb}
+ and link using \begin{DoxyVerb}cc ${OPENMP_CFLAGS} -o example -L${lpath} -lRNA -lm
+\end{DoxyVerb}
+ where {\itshape \$\{hpath\}} and {\itshape \$\{lpath\}} point to the location of the header files and library, respectively. \begin{DoxyNote}{Note}
+As default, the R\-N\-Alib is compiled with build-\/in {\itshape Open\-M\-P} multithreading support. Thus, when linking your own object files to the library you have to pass the compiler specific {\itshape \$\{O\-P\-E\-N\-M\-P\-\_\-\-C\-F\-L\-A\-G\-S\}} (e.\-g. '-\/fopenmp' for {\bfseries gcc}) even if your code does not use openmp specific code. However, in that case the {\itshape Open\-M\-P} flags may be ommited when compiling example.\-c
+\end{DoxyNote}
--- /dev/null
+\subsection*{Representations of Secondary Structures}
+
+The standard representation of a secondary structure is the {\itshape bracket notation}, where matching brackets symbolize base pairs and unpaired bases are shown as dots. Alternatively, one may use two types of node labels, 'P' for paired and 'U' for unpaired; a dot is then replaced by '(U)', and each closed bracket is assigned an additional identifier 'P'. We call this the expanded notation. In\cite{fontana:1993b} a condensed representation of the secondary structure is proposed, the so-\/called homeomorphically irreducible tree (H\-I\-T) representation. Here a stack is represented as a single pair of matching brackets labeled 'P' and weighted by the number of base pairs. Correspondingly, a contiguous strain of unpaired bases is shown as one pair of matching brackets labeled 'U' and weighted by its length. Generally any string consisting of matching brackets and identifiers is equivalent to a plane tree with as many different types of nodes as there are identifiers.
+
+Bruce Shapiro proposed a coarse grained representation\cite{shapiro:1988}, which, does not retain the full information of the secondary structure. He represents the different structure elements by single matching brackets and labels them as 'H' (hairpin loop), 'I' (interior loop), 'B' (bulge), 'M' (multi-\/loop), and 'S' (stack). We extend his alphabet by an extra letter for external elements 'E'. Again these identifiers may be followed by a weight corresponding to the number of unpaired bases or base pairs in the structure element. All tree representations (except for the dot-\/bracket form) can be encapsulated into a virtual root (labeled 'R'), see the example below.
+
+The following example illustrates the different linear tree representations used by the package. All lines show the same secondary structure.
+
+\begin{DoxyVerb}a) .((((..(((...)))..((..)))).)).
+ (U)(((((U)(U)((((U)(U)(U)P)P)P)(U)(U)(((U)(U)P)P)P)P)(U)P)P)(U)
+b) (U)(((U2)((U3)P3)(U2)((U2)P2)P2)(U)P2)(U)
+c) (((H)(H)M)B)
+ ((((((H)S)((H)S)M)S)B)S)
+ (((((((H)S)((H)S)M)S)B)S)E)
+d) ((((((((H3)S3)((H2)S2)M4)S2)B1)S2)E2)R)
+\end{DoxyVerb}
+
+
+Above\-: \hyperlink{structTree}{Tree} representations of secondary structures. a) Full structure\-: the first line shows the more convenient condensed notation which is used by our programs; the second line shows the rather clumsy expanded notation for completeness, b) H\-I\-T structure, c) different versions of coarse grained structures\-: the second line is exactly Shapiro's representation, the first line is obtained by neglecting the stems. Since each loop is closed by a unique stem, these two lines are equivalent. The third line is an extension taking into account also the external digits. d) weighted coarse structure, this time including the virtual root.
+
+For the output of aligned structures from string editing, different representations are needed, where we put the label on both sides. The above examples for tree representations would then look like\-:
+
+\begin{DoxyVerb}a) (UU)(P(P(P(P(UU)(UU)(P(P(P(UU)(UU)(UU)P)P)P)(UU)(UU)(P(P(UU)(U...
+b) (UU)(P2(P2(U2U2)(P2(U3U3)P3)(U2U2)(P2(U2U2)P2)P2)(UU)P2)(UU)
+c) (B(M(HH)(HH)M)B)
+ (S(B(S(M(S(HH)S)(S(HH)S)M)S)B)S)
+ (E(S(B(S(M(S(HH)S)(S(HH)S)M)S)B)S)E)
+d) (R(E2(S2(B1(S2(M4(S3(H3)S3)((H2)S2)M4)S2)B1)S2)E2)R)
+\end{DoxyVerb}
+
+
+Aligned structures additionally contain the gap character '\-\_\-'.
+
+\subsection*{Parsing and Coarse Graining of Structures}
+
+Several functions are provided for parsing structures and converting to different representations.
+
+\begin{DoxyVerb}char *expand_Full(const char *structure)
+\end{DoxyVerb}
+ Convert the full structure from bracket notation to the expanded notation including root.
\ No newline at end of file
--- /dev/null
+\label{mp_utils_toc}%
+\hypertarget{mp_utils_toc}{}%
+ \subsubsection*{Table of Contents}
+
+
+
+
+
+\begin{DoxyItemize}
+\item \hyperlink{mp_utils_utils_ss}{Producing secondary structure graphs} \item \hyperlink{mp_utils_utils_dot}{Producing (colored) dot plots for base pair probabilities} \item \hyperlink{mp_utils_utils_aln}{Producing (colored) alignments} \item \hyperlink{mp_utils_utils_seq}{R\-N\-A sequence related utilities} \item \hyperlink{mp_utils_utils_struc}{R\-N\-A secondary structure related utilities} \item \hyperlink{mp_utils_utils_misc}{Miscellaneous Utilities}\end{DoxyItemize}
+
+
+\hypertarget{mp_utils_utils_ss}{}\section{Producing secondary structure graphs}\label{mp_utils_utils_ss}
+\begin{DoxyVerb}int PS_rna_plot ( char *string,
+ char *structure,
+ char *file)
+\end{DoxyVerb}
+ Produce a secondary structure graph in Post\-Script and write it to 'filename'.
\ No newline at end of file
--- /dev/null
+\hypertarget{naview_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/naview.h File Reference}
+\label{naview_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/naview.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/naview.\-h}}
+}
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{naview_8h__dep__incl}
+\end{center}
+\end{figure}
--- /dev/null
+8c4fde541e27ca7989503b8438ee0b3c
\ No newline at end of file
--- /dev/null
+\hypertarget{naview_8h}{\section{naview.\-h}
+\label{naview_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/naview.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/naview.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_NAVIEW\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_NAVIEW\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00012 \textcolor{keywordtype}{int} naview\_xy\_coordinates(\textcolor{keywordtype}{short} *pair\_table,
+00013 \textcolor{keywordtype}{float} *X,
+00014 \textcolor{keywordtype}{float} *Y);
+00015
+00016 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{pair__mat_8h}{\section{pair\-\_\-mat.\-h}
+\label{pair__mat_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/pair\-\_\-mat.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/pair\-\_\-mat.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#include <ctype.h>}
+00002 \textcolor{preprocessor}{#include "\hyperlink{utils_8h}{utils.h}"}
+00003 \textcolor{preprocessor}{#include "\hyperlink{fold__vars_8h}{fold\_vars.h}"}
+00004
+00005 \textcolor{preprocessor}{#define NBASES 8}
+00006 \textcolor{preprocessor}{}\textcolor{comment}{/*@notnull@*/}
+00007
+00008 \textcolor{keyword}{static} \textcolor{keyword}{const} \textcolor{keywordtype}{char} Law\_and\_Order[] = \textcolor{stringliteral}{"\_ACGUTXKI"};
+00009 \textcolor{keyword}{static} \textcolor{keywordtype}{int} BP\_pair[NBASES][NBASES]=
+00010 \textcolor{comment}{/* \_ A C G U X K I */}
+00011 \{\{ 0, 0, 0, 0, 0, 0, 0, 0\},
+00012 \{ 0, 0, 0, 0, 5, 0, 0, 5\},
+00013 \{ 0, 0, 0, 1, 0, 0, 0, 0\},
+00014 \{ 0, 0, 2, 0, 3, 0, 0, 0\},
+00015 \{ 0, 6, 0, 4, 0, 0, 0, 6\},
+00016 \{ 0, 0, 0, 0, 0, 0, 2, 0\},
+00017 \{ 0, 0, 0, 0, 0, 1, 0, 0\},
+00018 \{ 0, 6, 0, 0, 5, 0, 0, 0\}\};
+00019
+00020 \textcolor{preprocessor}{#define MAXALPHA 20 }\textcolor{comment}{/* maximal length of alphabet */}\textcolor{preprocessor}{}
+00021 \textcolor{preprocessor}{}
+00022 \textcolor{keyword}{static} \textcolor{keywordtype}{short} alias[\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}+1];
+00023 \textcolor{keyword}{static} \textcolor{keywordtype}{int} pair[\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}+1][\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}+1];
+00024 \textcolor{comment}{/* rtype[pair[i][j]]:=pair[j][i] */}
+00025 \textcolor{keyword}{static} \textcolor{keywordtype}{int} rtype[8] = \{0, 2, 1, 4, 3, 6, 5, 7\};
+00026
+00027 \textcolor{preprocessor}{#ifdef \_OPENMP}
+00028 \textcolor{preprocessor}{}\textcolor{preprocessor}{#pragma omp threadprivate(Law\_and\_Order, BP\_pair, alias, pair, rtype)}
+00029 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00030 \textcolor{preprocessor}{}
+00031 \textcolor{comment}{/* for backward compatibility */}
+00032 \textcolor{preprocessor}{#define ENCODE(c) encode\_char(c)}
+00033 \textcolor{preprocessor}{}
+00034 \textcolor{keyword}{static} \textcolor{keywordtype}{int} encode\_char(\textcolor{keywordtype}{char} c) \{
+00035 \textcolor{comment}{/* return numerical representation of base used e.g. in pair[][] */}
+00036 \textcolor{keywordtype}{int} code;
+00037 \textcolor{keywordflow}{if} (energy\_set>0) code = (int) (c-\textcolor{charliteral}{'A'})+1;
+00038 \textcolor{keywordflow}{else} \{
+00039 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *pos;
+00040 pos = strchr(Law\_and\_Order, c);
+00041 \textcolor{keywordflow}{if} (pos==NULL) code=0;
+00042 \textcolor{keywordflow}{else} code = (int) (pos-Law\_and\_Order);
+00043 \textcolor{keywordflow}{if} (code>5) code = 0;
+00044 \textcolor{keywordflow}{if} (code>4) code--; \textcolor{comment}{/* make T and U equivalent */}
+00045 \}
+00046 \textcolor{keywordflow}{return} code;
+00047 \}
+00048
+00049 \textcolor{comment}{/*@+boolint +charint@*/}
+00050 \textcolor{comment}{/*@null@*/}
+00051 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *\hyperlink{fold__vars_8h_a2695d91cc535d09c2eae5c3884e2ec64}{nonstandards};
+00052 \textcolor{keyword}{extern} \textcolor{keywordtype}{void} \hyperlink{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{nrerror}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} message[]);
+00053 \textcolor{keyword}{static} \textcolor{keywordtype}{void} make\_pair\_matrix(\textcolor{keywordtype}{void})
+00054 \{
+00055 \textcolor{keywordtype}{int} i,j;
+00056
+00057 \textcolor{keywordflow}{if} (energy\_set==0) \{
+00058 \textcolor{keywordflow}{for} (i=0; i<5; i++) alias[i] = (\textcolor{keywordtype}{short}) i;
+00059 alias[5] = 3; \textcolor{comment}{/* X <-> G */}
+00060 alias[6] = 2; \textcolor{comment}{/* K <-> C */}
+00061 alias[7] = 0; \textcolor{comment}{/* I <-> default base '@' */}
+00062 \textcolor{keywordflow}{for} (i=0; i<NBASES; i++) \{
+00063 \textcolor{keywordflow}{for} (j=0; j<NBASES; j++)
+00064 pair[i][j] = BP\_pair[i][j];
+00065 \}
+00066 \textcolor{keywordflow}{if} (noGU) pair[3][4] = pair[4][3] =0;
+00067 \textcolor{keywordflow}{if} (nonstandards!=NULL) \{ \textcolor{comment}{/* allow nonstandard bp's */}
+00068 \textcolor{keywordflow}{for} (i=0; i<(int)strlen(nonstandards); i+=2)
+00069 pair[encode\_char(nonstandards[i])]
+00070 [encode\_char(nonstandards[i+1])]=7;
+00071 \}
+00072 \textcolor{keywordflow}{for} (i=0; i<NBASES; i++) \{
+00073 \textcolor{keywordflow}{for} (j=0; j<NBASES; j++)
+00074 rtype[pair[i][j]] = pair[j][i];
+00075 \}
+00076 \} \textcolor{keywordflow}{else} \{
+00077 \textcolor{keywordflow}{for} (i=0; i<=\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}; i++) \{
+00078 \textcolor{keywordflow}{for} (j=0; j<=\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}; j++)
+00079 pair[i][j] = 0;
+00080 \}
+00081 \textcolor{keywordflow}{if} (energy\_set==1) \{
+00082 \textcolor{keywordflow}{for} (i=1; i<\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA};) \{
+00083 alias[i++] = 3; \textcolor{comment}{/* A <-> G */}
+00084 alias[i++] = 2; \textcolor{comment}{/* B <-> C */}
+00085 \}
+00086 \textcolor{keywordflow}{for} (i=1; i<\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}; i++) \{
+00087 pair[i][i+1] = 2; \textcolor{comment}{/* AB <-> GC */}
+00088 i++;
+00089 pair[i][i-1] = 1; \textcolor{comment}{/* BA <-> CG */}
+00090 \}
+00091 \}
+00092 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (energy\_set==2) \{
+00093 \textcolor{keywordflow}{for} (i=1; i<\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA};) \{
+00094 alias[i++] = 1; \textcolor{comment}{/* A <-> A*/}
+00095 alias[i++] = 4; \textcolor{comment}{/* B <-> U */}
+00096 \}
+00097 \textcolor{keywordflow}{for} (i=1; i<\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}; i++) \{
+00098 pair[i][i+1] = 5; \textcolor{comment}{/* AB <-> AU */}
+00099 i++;
+00100 pair[i][i-1] = 6; \textcolor{comment}{/* BA <-> UA */}
+00101 \}
+00102 \}
+00103 \textcolor{keywordflow}{else} \textcolor{keywordflow}{if} (energy\_set==3) \{
+00104 \textcolor{keywordflow}{for} (i=1; i<MAXALPHA-2; ) \{
+00105 alias[i++] = 3; \textcolor{comment}{/* A <-> G */}
+00106 alias[i++] = 2; \textcolor{comment}{/* B <-> C */}
+00107 alias[i++] = 1; \textcolor{comment}{/* C <-> A */}
+00108 alias[i++] = 4; \textcolor{comment}{/* D <-> U */}
+00109 \}
+00110 \textcolor{keywordflow}{for} (i=1; i<MAXALPHA-2; i++) \{
+00111 pair[i][i+1] = 2; \textcolor{comment}{/* AB <-> GC */}
+00112 i++;
+00113 pair[i][i-1] = 1; \textcolor{comment}{/* BA <-> CG */}
+00114 i++;
+00115 pair[i][i+1] = 5; \textcolor{comment}{/* CD <-> AU */}
+00116 i++;
+00117 pair[i][i-1] = 6; \textcolor{comment}{/* DC <-> UA */}
+00118 \}
+00119 \}
+00120 \textcolor{keywordflow}{else} \hyperlink{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{nrerror}(\textcolor{stringliteral}{"What energy\_set are YOU using??"});
+00121 \textcolor{keywordflow}{for} (i=0; i<=\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}; i++) \{
+00122 \textcolor{keywordflow}{for} (j=0; j<=\hyperlink{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{MAXALPHA}; j++)
+00123 rtype[pair[i][j]] = pair[j][i];
+00124 \}
+00125 \}
+00126 \}
+00127
+00128 \textcolor{keyword}{static} \textcolor{keywordtype}{short} *encode\_sequence(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence, \textcolor{keywordtype}{short} how)\{
+00129 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} i,l = (\textcolor{keywordtype}{unsigned} int)strlen(sequence);
+00130 \textcolor{keywordtype}{short} *S = (\textcolor{keywordtype}{short} *) \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}(\textcolor{keyword}{sizeof}(\textcolor{keywordtype}{short})*(l+2));
+00131
+00132 \textcolor{keywordflow}{switch}(how)\{
+00133 \textcolor{comment}{/* standard encoding as always used for S */}
+00134 \textcolor{keywordflow}{case} 0: \textcolor{keywordflow}{for}(i=1; i<=l; i++) \textcolor{comment}{/* make numerical encoding of sequence */}
+00135 S[i]= (\textcolor{keywordtype}{short}) encode\_char(toupper(sequence[i-1]));
+00136 S[l+1] = S[1];
+00137 S[0] = (short) l;
+00138 \textcolor{keywordflow}{break};
+00139 \textcolor{comment}{/* encoding for mismatches of nostandard bases (normally used for S1) */}
+00140 \textcolor{keywordflow}{case} 1: \textcolor{keywordflow}{for}(i=1; i<=l; i++)
+00141 S[i] = alias[(\textcolor{keywordtype}{short}) encode\_char(toupper(sequence[i-1]))];
+00142 S[l+1] = S[1];
+00143 S[0] = S[l];
+00144 \textcolor{keywordflow}{break};
+00145 \}
+00146
+00147 \textcolor{keywordflow}{return} S;
+00148 \}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{params_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/params.h File Reference}
+\label{params_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/params.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/params.\-h}}
+}
+Include dependency graph for params.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{params_8h__incl}
+\end{center}
+\end{figure}
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{params_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structparamT}{param\-T} $\ast$ \hyperlink{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{scale\-\_\-parameters} (void)
+\begin{DoxyCompactList}\small\item\em Get precomputed energy contributions for all the known loop types. \end{DoxyCompactList}\item
+\hyperlink{structparamT}{param\-T} $\ast$ \hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\-\_\-scaled\-\_\-parameters} (double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} md)
+\begin{DoxyCompactList}\small\item\em Get precomputed energy contributions for all the known loop types. \end{DoxyCompactList}\item
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\-\_\-scaled\-\_\-pf\-\_\-parameters} (void)
+\item
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\-\_\-boltzmann\-\_\-factors} (double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, double beta\-Scale, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} md, double \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale})
+\begin{DoxyCompactList}\small\item\em Get precomputed Boltzmann factors of the loop type dependent energy contributions with independent thermodynamic temperature. \end{DoxyCompactList}\item
+\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gacba212326a051734797e65987260fdd0}{get\-\_\-boltzmann\-\_\-factor\-\_\-copy} (\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)
+\begin{DoxyCompactList}\small\item\em Get a copy of already precomputed Boltzmann factors. \end{DoxyCompactList}\item
+\hypertarget{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{\hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{get\-\_\-scaled\-\_\-alipf\-\_\-parameters} (unsigned int n\-\_\-seq)}\label{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}
+
+\begin{DoxyCompactList}\small\item\em Get precomputed Boltzmann factors of the loop type dependent energy contributions (alifold variant) \end{DoxyCompactList}\item
+\hypertarget{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{P\-U\-B\-L\-I\-C \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$ \hyperlink{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{get\-\_\-boltzmann\-\_\-factors\-\_\-ali} (unsigned int n\-\_\-seq, double \hyperlink{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{temperature}, double beta\-Scale, \hyperlink{structmodel__detailsT}{model\-\_\-details\-T} md, double \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale})}\label{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}
+
+\begin{DoxyCompactList}\small\item\em Get precomputed Boltzmann factors of the loop type dependent energy contributions (alifold variant) with independent thermodynamic temperature. \end{DoxyCompactList}\end{DoxyCompactItemize}
--- /dev/null
+61af4ec8b4b0441946fdca501adfd82e
\ No newline at end of file
--- /dev/null
+3bccc07eb0924a581f76d11ab57fbcd3
\ No newline at end of file
--- /dev/null
+\hypertarget{params_8h}{\section{params.\-h}
+\label{params_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/params.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/params.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PARAMS\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PARAMS\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{energy__const_8h}{energy\_const.h}"}
+00005 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00006
+00007 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00011 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00012 \textcolor{preprocessor}{}
+00036 \hyperlink{structparamT}{paramT} *\hyperlink{group__energy__parameters_ga527ef619cd8210b84d5d53be1e0e29b6}{scale\_parameters}(\textcolor{keywordtype}{void});
+00037
+00052 \hyperlink{structparamT}{paramT} *\hyperlink{group__energy__parameters_gac2f3ca440b7eaf4d999fb27da949fe72}{get\_scaled\_parameters}(\textcolor{keywordtype}{double} temperature,
+00053 \hyperlink{structmodel__detailsT}{model\_detailsT} md);
+00054
+00055 \hyperlink{structparamT}{paramT} *get\_parameter\_copy(\hyperlink{structparamT}{paramT} *par);
+00056
+00063 \hyperlink{structpf__paramT}{pf\_paramT} *\hyperlink{group__energy__parameters_gab85f6b6da051f380371deb0d8921bdba}{get\_scaled\_pf\_parameters}(\textcolor{keywordtype}{void});
+00064
+00088 \hyperlink{structpf__paramT}{pf\_paramT} *\hyperlink{group__energy__parameters_ga6fc2f3eef5a3024d44963ac59a42e39d}{get\_boltzmann\_factors}( \textcolor{keywordtype}{double} temperature,
+00089 \textcolor{keywordtype}{double} betaScale,
+00090 \hyperlink{structmodel__detailsT}{model\_detailsT} md,
+00091 \textcolor{keywordtype}{double} pf\_scale);
+00092
+00101 \hyperlink{structpf__paramT}{pf\_paramT} *\hyperlink{group__energy__parameters_gacba212326a051734797e65987260fdd0}{get\_boltzmann\_factor\_copy}(\hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00102
+00108 \hyperlink{structpf__paramT}{pf\_paramT} *\hyperlink{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{get\_scaled\_alipf\_parameters}(\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} n\_seq);
+00109
+00116 PUBLIC \hyperlink{structpf__paramT}{pf\_paramT} *\hyperlink{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{get\_boltzmann\_factors\_ali}(\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} n\_seq,
+00117 \textcolor{keywordtype}{double} temperature,
+00118 \textcolor{keywordtype}{double} betaScale,
+00119 \hyperlink{structmodel__detailsT}{model\_detailsT} md,
+00120 \textcolor{keywordtype}{double} pf\_scale);
+00121
+00126 DEPRECATED(\hyperlink{structparamT}{paramT} *copy\_parameters(\textcolor{keywordtype}{void}));
+00127 DEPRECATED(\hyperlink{structparamT}{paramT} *set\_parameters(\hyperlink{structparamT}{paramT} *dest));
+00128 DEPRECATED(\hyperlink{structpf__paramT}{pf\_paramT} *scale\_pf\_parameters(\textcolor{keywordtype}{void}));
+00129 DEPRECATED(\hyperlink{structpf__paramT}{pf\_paramT} *copy\_pf\_param(\textcolor{keywordtype}{void}));
+00130 DEPRECATED(\hyperlink{structpf__paramT}{pf\_paramT} *set\_pf\_param(\hyperlink{structparamT}{paramT} *dest));
+00131
+00132
+00133
+00134 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{part__func_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func.h File Reference}
+\label{part__func_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func.\-h}}
+}
+
+
+Partition function of single R\-N\-A sequences.
+
+
+Include dependency graph for part\-\_\-func.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{part__func_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\-\_\-fold\-\_\-par} (const char $\ast$sequence, char $\ast$structure, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters, int calculate\-\_\-bppm, int is\-\_\-constrained, int is\-\_\-circular)
+\begin{DoxyCompactList}\small\item\em Compute the partition function $Q$ for a given R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute the partition function $Q$ of an R\-N\-A sequence. \end{DoxyCompactList}\item
+float \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\-\_\-circ\-\_\-fold} (const char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Compute the partition function of a circular R\-N\-A sequence. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{pbacktrack} (char $\ast$sequence)
+\begin{DoxyCompactList}\small\item\em Sample a secondary structure from the Boltzmann ensemble according its probability\par
+. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}{pbacktrack\-\_\-circ} (char $\ast$sequence)
+\begin{DoxyCompactList}\small\item\em Sample a secondary structure of a circular R\-N\-A from the Boltzmann ensemble according its probability. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\-\_\-pf\-\_\-arrays} (void)
+\begin{DoxyCompactList}\small\item\em Free arrays for the partition function recursions. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}{update\-\_\-pf\-\_\-params} (int length)
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+\hypertarget{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{void \hyperlink{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{update\-\_\-pf\-\_\-params\-\_\-par} (int length, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)}\label{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}
+
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+double $\ast$ \hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\-\_\-bppm} (void)
+\begin{DoxyCompactList}\small\item\em Get a pointer to the base pair probability array
+
+Accessing the base pair probabilities for a pair (i,j) is achieved by. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr} (\hyperlink{structplist}{plist} $\ast$$\ast$pl, double $\ast$probs, int length, double cutoff)
+\begin{DoxyCompactList}\small\item\em Create a plist from a probability matrix. \end{DoxyCompactList}\item
+int \hyperlink{group__pf__fold_ga18607e79e106cad827f482eedd2f632e}{get\-\_\-pf\-\_\-arrays} (short $\ast$$\ast$S\-\_\-p, short $\ast$$\ast$S1\-\_\-p, char $\ast$$\ast$ptype\-\_\-p, double $\ast$$\ast$qb\-\_\-p, double $\ast$$\ast$qm\-\_\-p, double $\ast$$\ast$q1k\-\_\-p, double $\ast$$\ast$qln\-\_\-p)
+\begin{DoxyCompactList}\small\item\em Get the pointers to (almost) all relavant computation arrays used in partition function computation. \end{DoxyCompactList}\item
+\hypertarget{part__func_8h_a189e2a1ec6cc32c53ea72f7543b0441e}{double \hyperlink{part__func_8h_a189e2a1ec6cc32c53ea72f7543b0441e}{get\-\_\-subseq\-\_\-\-F} (int i, int j)}\label{part__func_8h_a189e2a1ec6cc32c53ea72f7543b0441e}
+
+\begin{DoxyCompactList}\small\item\em Get the free energy of a subsequence from the q\mbox{[}\mbox{]} array. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}{get\-\_\-centroid\-\_\-struct\-\_\-pl} (int length, double $\ast$dist, \hyperlink{structplist}{plist} $\ast$pl)
+\begin{DoxyCompactList}\small\item\em Get the centroid structure of the ensemble. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}{get\-\_\-centroid\-\_\-struct\-\_\-pr} (int length, double $\ast$dist, double $\ast$\hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr})
+\begin{DoxyCompactList}\small\item\em Get the centroid structure of the ensemble. \end{DoxyCompactList}\item
+double \hyperlink{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{mean\-\_\-bp\-\_\-distance} (int length)
+\begin{DoxyCompactList}\small\item\em Get the mean base pair distance of the last partition function computation. \end{DoxyCompactList}\item
+double \hyperlink{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{mean\-\_\-bp\-\_\-distance\-\_\-pr} (int length, double $\ast$\hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr})
+\begin{DoxyCompactList}\small\item\em Get the mean base pair distance in the thermodynamic ensemble. \end{DoxyCompactList}\item
+\hypertarget{part__func_8h_a1f562d463c14d4703d9656056200eb38}{void \hyperlink{part__func_8h_a1f562d463c14d4703d9656056200eb38}{bppm\-\_\-to\-\_\-structure} (char $\ast$structure, double $\ast$\hyperlink{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{pr}, unsigned int length)}\label{part__func_8h_a1f562d463c14d4703d9656056200eb38}
+
+\begin{DoxyCompactList}\small\item\em Create a dot-\/bracket like structure string from base pair probability matrix. \end{DoxyCompactList}\item
+\hypertarget{part__func_8h_a49962ad6242b8c628de6ca16bb831c1d}{char \hyperlink{part__func_8h_a49962ad6242b8c628de6ca16bb831c1d}{bppm\-\_\-symbol} (const float $\ast$x)}\label{part__func_8h_a49962ad6242b8c628de6ca16bb831c1d}
+
+\begin{DoxyCompactList}\small\item\em Get a pseudo dot bracket notation for a given probability information. \end{DoxyCompactList}\item
+void \hyperlink{part__func_8h_a15176e23eceeff8c7d14eabcfec8a2af}{init\-\_\-pf\-\_\-fold} (int length)
+\begin{DoxyCompactList}\small\item\em Allocate space for \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()} \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{centroid} (int length, double $\ast$dist)
+\item
+double \hyperlink{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}{mean\-\_\-bp\-\_\-dist} (int length)
+\item
+double \hyperlink{part__func_8h_a68ba6f3a48e08ca131ab54621ce3a2d7}{exp\-Loop\-Energy} (int u1, int u2, int type, int type2, short si1, short sj1, short sp1, short sq1)
+\item
+double \hyperlink{part__func_8h_a7b6ab474cc80accc48010ccfcc59f96b}{exp\-Hairpin\-Energy} (int u, int type, short si1, short sj1, const char $\ast$string)
+\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{group__subopt__stochbt_gacd79b1a570e6ad9be24cb11fe8cae30a}{st\-\_\-back}
+\begin{DoxyCompactList}\small\item\em Flag indicating that auxilary arrays are needed throughout the computations. This is essential for stochastic backtracking. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Partition function of single R\-N\-A sequences. This file includes (almost) all function declarations within the {\bfseries R\-N\-Alib} that are related to Partion function folding...
+
+\subsection{Function Documentation}
+\hypertarget{part__func_8h_a15176e23eceeff8c7d14eabcfec8a2af}{\index{part\-\_\-func.\-h@{part\-\_\-func.\-h}!init\-\_\-pf\-\_\-fold@{init\-\_\-pf\-\_\-fold}}
+\index{init\-\_\-pf\-\_\-fold@{init\-\_\-pf\-\_\-fold}!part_func.h@{part\-\_\-func.\-h}}
+\subsubsection[{init\-\_\-pf\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}void init\-\_\-pf\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{part__func_8h_a15176e23eceeff8c7d14eabcfec8a2af}
+
+
+Allocate space for \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\-\_\-fold()}
+
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000011}{Deprecated}]This function is obsolete and will be removed soon! \end{DoxyRefDesc}
+\hypertarget{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{\index{part\-\_\-func.\-h@{part\-\_\-func.\-h}!centroid@{centroid}}
+\index{centroid@{centroid}!part_func.h@{part\-\_\-func.\-h}}
+\subsubsection[{centroid}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ centroid (
+\begin{DoxyParamCaption}
+\item[{int}]{length, }
+\item[{double $\ast$}]{dist}
+\end{DoxyParamCaption}
+)}}\label{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000012}{Deprecated}]This function is deprecated and should not be used anymore as it is not threadsafe! \end{DoxyRefDesc}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}{get\-\_\-centroid\-\_\-struct\-\_\-pl()}, \hyperlink{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}{get\-\_\-centroid\-\_\-struct\-\_\-pr()}
+\end{DoxySeeAlso}
+\hypertarget{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}{\index{part\-\_\-func.\-h@{part\-\_\-func.\-h}!mean\-\_\-bp\-\_\-dist@{mean\-\_\-bp\-\_\-dist}}
+\index{mean\-\_\-bp\-\_\-dist@{mean\-\_\-bp\-\_\-dist}!part_func.h@{part\-\_\-func.\-h}}
+\subsubsection[{mean\-\_\-bp\-\_\-dist}]{\setlength{\rightskip}{0pt plus 5cm}double mean\-\_\-bp\-\_\-dist (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}
+get the mean pair distance of ensemble
+
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000013}{Deprecated}]This function is not threadsafe and should not be used anymore. Use \hyperlink{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{mean\-\_\-bp\-\_\-distance()} instead! \end{DoxyRefDesc}
+\hypertarget{part__func_8h_a68ba6f3a48e08ca131ab54621ce3a2d7}{\index{part\-\_\-func.\-h@{part\-\_\-func.\-h}!exp\-Loop\-Energy@{exp\-Loop\-Energy}}
+\index{exp\-Loop\-Energy@{exp\-Loop\-Energy}!part_func.h@{part\-\_\-func.\-h}}
+\subsubsection[{exp\-Loop\-Energy}]{\setlength{\rightskip}{0pt plus 5cm}double exp\-Loop\-Energy (
+\begin{DoxyParamCaption}
+\item[{int}]{u1, }
+\item[{int}]{u2, }
+\item[{int}]{type, }
+\item[{int}]{type2, }
+\item[{short}]{si1, }
+\item[{short}]{sj1, }
+\item[{short}]{sp1, }
+\item[{short}]{sq1}
+\end{DoxyParamCaption}
+)}}\label{part__func_8h_a68ba6f3a48e08ca131ab54621ce3a2d7}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000014}{Deprecated}]Use \hyperlink{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{exp\-\_\-\-E\-\_\-\-Int\-Loop()} from \hyperlink{loop__energies_8h}{loop\-\_\-energies.\-h} instead \end{DoxyRefDesc}
+\hypertarget{part__func_8h_a7b6ab474cc80accc48010ccfcc59f96b}{\index{part\-\_\-func.\-h@{part\-\_\-func.\-h}!exp\-Hairpin\-Energy@{exp\-Hairpin\-Energy}}
+\index{exp\-Hairpin\-Energy@{exp\-Hairpin\-Energy}!part_func.h@{part\-\_\-func.\-h}}
+\subsubsection[{exp\-Hairpin\-Energy}]{\setlength{\rightskip}{0pt plus 5cm}double exp\-Hairpin\-Energy (
+\begin{DoxyParamCaption}
+\item[{int}]{u, }
+\item[{int}]{type, }
+\item[{short}]{si1, }
+\item[{short}]{sj1, }
+\item[{const char $\ast$}]{string}
+\end{DoxyParamCaption}
+)}}\label{part__func_8h_a7b6ab474cc80accc48010ccfcc59f96b}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000015}{Deprecated}]Use \hyperlink{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{exp\-\_\-\-E\-\_\-\-Hairpin()} from \hyperlink{loop__energies_8h}{loop\-\_\-energies.\-h} instead \end{DoxyRefDesc}
--- /dev/null
+14fd0622c4991d16cc5e865f033d5f83
\ No newline at end of file
--- /dev/null
+\hypertarget{part__func_8h}{\section{part\-\_\-func.\-h}
+\label{part__func_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PART\_FUNC\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PART\_FUNC\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00011 \textcolor{preprocessor}{}
+00012
+00041 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__subopt__stochbt_gacd79b1a570e6ad9be24cb11fe8cae30a}{st\_back};
+00042
+00043 \textcolor{comment}{/*}
+00044 \textcolor{comment}{#################################################}
+00045 \textcolor{comment}{# PARTITION FUNCTION COMPUTATION #}
+00046 \textcolor{comment}{#################################################}
+00047 \textcolor{comment}{*/}
+00048
+00087 \textcolor{keywordtype}{float} \hyperlink{group__pf__fold_ga1839c61275760944b3a007c41d5c0823}{pf\_fold\_par}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00088 \textcolor{keywordtype}{char} *structure,
+00089 \hyperlink{structpf__paramT}{pf\_paramT} *parameters,
+00090 \textcolor{keywordtype}{int} calculate\_bppm,
+00091 \textcolor{keywordtype}{int} is\_constrained,
+00092 \textcolor{keywordtype}{int} is\_circular);
+00093
+00133 \textcolor{keywordtype}{float} \hyperlink{group__pf__fold_gadc3db3d98742427e7001a7fd36ef28c2}{pf\_fold}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00134 \textcolor{keywordtype}{char} *structure);
+00135
+00161 \textcolor{keywordtype}{float} \hyperlink{group__pf__fold_ga819ce5fca8984004ac81c4a3b04cb735}{pf\_circ\_fold}( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00162 \textcolor{keywordtype}{char} *structure);
+00163
+00173 \textcolor{keywordtype}{char} *\hyperlink{group__subopt__stochbt_gac03ca6db186bb3bf0a2a326d7fb3ba03}{pbacktrack}(\textcolor{keywordtype}{char} *sequence);
+00174
+00186 \textcolor{keywordtype}{char} *\hyperlink{group__subopt__stochbt_ga00474051204ac9ad576b3e45174d03ff}{pbacktrack\_circ}(\textcolor{keywordtype}{char} *sequence);
+00187
+00203 \textcolor{keywordtype}{void} \hyperlink{group__pf__fold_gae73db3f49a94f0f72e067ecd12681dbd}{free\_pf\_arrays}(\textcolor{keywordtype}{void});
+00204
+00214 \textcolor{keywordtype}{void} \hyperlink{group__pf__fold_ga384e927890f9c034ff09fa66da102d28}{update\_pf\_params}(\textcolor{keywordtype}{int} length);
+00215
+00222 \textcolor{keywordtype}{void} \hyperlink{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{update\_pf\_params\_par}(\textcolor{keywordtype}{int} length, \hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00223
+00240 FLT\_OR\_DBL *\hyperlink{group__pf__fold_ga6d463707d5f64bdc4d21515b7dd9b115}{export\_bppm}(\textcolor{keywordtype}{void});
+00241
+00242 \textcolor{comment}{/*}
+00243 \textcolor{comment}{#################################################}
+00244 \textcolor{comment}{# OTHER PARTITION FUNCTION RELATED DECLARATIONS #}
+00245 \textcolor{comment}{#################################################}
+00246 \textcolor{comment}{*/}
+00247
+00265 \textcolor{keywordtype}{void} \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\_plist\_from\_pr}( \hyperlink{structplist}{plist} **pl,
+00266 FLT\_OR\_DBL *probs,
+00267 \textcolor{keywordtype}{int} length,
+00268 \textcolor{keywordtype}{double} cutoff);
+00269
+00270 \textcolor{comment}{/* this doesn't work if free\_pf\_arrays() is called before */}
+00271 \textcolor{keywordtype}{void} assign\_plist\_gquad\_from\_pr(\hyperlink{structplist}{plist} **pl,
+00272 \textcolor{keywordtype}{int} length,
+00273 \textcolor{keywordtype}{double} cut\_off);
+00274
+00275 \textcolor{keywordtype}{char} *get\_centroid\_struct\_gquad\_pr(\textcolor{keywordtype}{int} length,
+00276 \textcolor{keywordtype}{double} *dist);
+00277
+00293 \textcolor{keywordtype}{int} \hyperlink{group__pf__fold_ga18607e79e106cad827f482eedd2f632e}{get\_pf\_arrays}(\textcolor{keywordtype}{short} **S\_p,
+00294 \textcolor{keywordtype}{short} **S1\_p,
+00295 \textcolor{keywordtype}{char} **ptype\_p,
+00296 FLT\_OR\_DBL **qb\_p,
+00297 FLT\_OR\_DBL **qm\_p,
+00298 FLT\_OR\_DBL **q1k\_p,
+00299 FLT\_OR\_DBL **qln\_p);
+00300
+00304 \textcolor{keywordtype}{double} \hyperlink{part__func_8h_a189e2a1ec6cc32c53ea72f7543b0441e}{get\_subseq\_F}(\textcolor{keywordtype}{int} i, \textcolor{keywordtype}{int} j);
+00305
+00322 \textcolor{keywordtype}{char} *\hyperlink{group__centroid__fold_ga9aba0ba1433a6d259331e0fe9fc4a9a6}{get\_centroid\_struct\_pl}(\textcolor{keywordtype}{int} length,
+00323 \textcolor{keywordtype}{double} *dist,
+00324 \hyperlink{structplist}{plist} *pl);
+00325
+00342 \textcolor{keywordtype}{char} *\hyperlink{group__centroid__fold_gacdabece4aa1e20c9eaa97acb4c4dcc38}{get\_centroid\_struct\_pr}(\textcolor{keywordtype}{int} length,
+00343 \textcolor{keywordtype}{double} *dist,
+00344 FLT\_OR\_DBL *pr);
+00345
+00358 \textcolor{keywordtype}{double} \hyperlink{group__pf__fold_ga79cbc375af65f11609feb6b055269e7d}{mean\_bp\_distance}(\textcolor{keywordtype}{int} length);
+00359
+00377 \textcolor{keywordtype}{double} \hyperlink{group__pf__fold_ga72d84525f0afd3a9d60d830a2f501fa5}{mean\_bp\_distance\_pr}(\textcolor{keywordtype}{int} length,
+00378 FLT\_OR\_DBL *pr);
+00379
+00383 \textcolor{keywordtype}{void} \hyperlink{part__func_8h_a1f562d463c14d4703d9656056200eb38}{bppm\_to\_structure}(\textcolor{keywordtype}{char} *structure,
+00384 FLT\_OR\_DBL *pr,
+00385 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length);
+00386
+00387 \hyperlink{structplist}{plist} *stackProb(\textcolor{keywordtype}{double} cutoff);
+00388
+00392 \textcolor{keywordtype}{char} \hyperlink{part__func_8h_a49962ad6242b8c628de6ca16bb831c1d}{bppm\_symbol}(\textcolor{keyword}{const} \textcolor{keywordtype}{float} *x);
+00393
+00394
+00395 \textcolor{comment}{/*}
+00396 \textcolor{comment}{#################################################}
+00397 \textcolor{comment}{# DEPRECATED FUNCTIONS #}
+00398 \textcolor{comment}{#################################################}
+00399 \textcolor{comment}{*/}
+00400
+00406 DEPRECATED(\textcolor{keywordtype}{void} \hyperlink{part__func_8h_a15176e23eceeff8c7d14eabcfec8a2af}{init\_pf\_fold}(\textcolor{keywordtype}{int} length));
+00407
+00412 DEPRECATED(\textcolor{keywordtype}{char} *\hyperlink{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{centroid}(\textcolor{keywordtype}{int} length,
+00413 \textcolor{keywordtype}{double} *dist)); \textcolor{comment}{/* mean pair distance of ensemble */}
+00414
+00420 DEPRECATED(\textcolor{keywordtype}{double} \hyperlink{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}{mean\_bp\_dist}(\textcolor{keywordtype}{int} length));
+00421
+00425 DEPRECATED(\textcolor{keywordtype}{double} \hyperlink{part__func_8h_a68ba6f3a48e08ca131ab54621ce3a2d7}{expLoopEnergy}(\textcolor{keywordtype}{int} u1,
+00426 \textcolor{keywordtype}{int} u2,
+00427 \textcolor{keywordtype}{int} type,
+00428 \textcolor{keywordtype}{int} type2,
+00429 \textcolor{keywordtype}{short} si1,
+00430 \textcolor{keywordtype}{short} sj1,
+00431 \textcolor{keywordtype}{short} sp1,
+00432 \textcolor{keywordtype}{short} sq1));
+00433
+00437 DEPRECATED(\textcolor{keywordtype}{double} \hyperlink{part__func_8h_a7b6ab474cc80accc48010ccfcc59f96b}{expHairpinEnergy}( \textcolor{keywordtype}{int} u,
+00438 \textcolor{keywordtype}{int} type,
+00439 \textcolor{keywordtype}{short} si1,
+00440 \textcolor{keywordtype}{short} sj1,
+00441 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *\textcolor{keywordtype}{string}));
+00442
+00443 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{part__func__co_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-co.h File Reference}
+\label{part__func__co_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-co.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-co.\-h}}
+}
+
+
+Partition function for two R\-N\-A sequences.
+
+
+Include dependency graph for part\-\_\-func\-\_\-co.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{part__func__co_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structcofoldF}{cofold\-F} \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\-\_\-pf\-\_\-fold} (char $\ast$sequence, char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Calculate partition function and base pair probabilities. \end{DoxyCompactList}\item
+\hyperlink{structcofoldF}{cofold\-F} \hyperlink{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{co\-\_\-pf\-\_\-fold\-\_\-par} (char $\ast$sequence, char $\ast$structure, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters, int calculate\-\_\-bppm, int is\-\_\-constrained)
+\begin{DoxyCompactList}\small\item\em Calculate partition function and base pair probabilities. \end{DoxyCompactList}\item
+double $\ast$ \hyperlink{group__pf__cofold_ga11f0252c1d2c4697253ff4b5bd392d3c}{export\-\_\-co\-\_\-bppm} (void)
+\begin{DoxyCompactList}\small\item\em Get a pointer to the base pair probability array. \end{DoxyCompactList}\item
+\hypertarget{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{void \hyperlink{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{free\-\_\-co\-\_\-pf\-\_\-arrays} (void)}\label{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}
+
+\begin{DoxyCompactList}\small\item\em Free the memory occupied by \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\-\_\-pf\-\_\-fold()} \end{DoxyCompactList}\item
+void \hyperlink{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}{update\-\_\-co\-\_\-pf\-\_\-params} (int length)
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{update\-\_\-co\-\_\-pf\-\_\-params\-\_\-par} (int length, \hyperlink{structpf__paramT}{pf\-\_\-param\-T} $\ast$parameters)
+\begin{DoxyCompactList}\small\item\em Recalculate energy parameters. \end{DoxyCompactList}\item
+void \hyperlink{group__pf__cofold_ga15ae04ac5ab84e876dcf0093120cb617}{compute\-\_\-probabilities} (double F\-A\-B, double F\-E\-A, double F\-E\-B, struct \hyperlink{structplist}{plist} $\ast$pr\-A\-B, struct \hyperlink{structplist}{plist} $\ast$pr\-A, struct \hyperlink{structplist}{plist} $\ast$pr\-B, int Alength)
+\begin{DoxyCompactList}\small\item\em Compute Boltzmann probabilities of dimerization without homodimers. \end{DoxyCompactList}\item
+\hyperlink{structConcEnt}{Conc\-Ent} $\ast$ \hyperlink{group__pf__cofold_ga5545cb936ac4ff93c7d699d46e72e8c7}{get\-\_\-concentrations} (double F\-E\-A\-B, double F\-E\-A\-A, double F\-E\-B\-B, double F\-E\-A, double F\-E\-B, double $\ast$startconc)
+\begin{DoxyCompactList}\small\item\em Given two start monomer concentrations a and b, compute the concentrations in thermodynamic equilibrium of all dimers and the monomers. \end{DoxyCompactList}\item
+\hyperlink{structplist}{plist} $\ast$ \hyperlink{part__func__co_8h_a334de3c96e2186abfbdc0eaea6d08b14}{get\-\_\-plist} (struct \hyperlink{structplist}{plist} $\ast$pl, int length, double cut\-\_\-off)
+\item
+void \hyperlink{part__func__co_8h_aa12dda9dd6179cdd22bcce87c0682c07}{init\-\_\-co\-\_\-pf\-\_\-fold} (int length)
+\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{int \hyperlink{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{mirnatog}}\label{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}
+
+\begin{DoxyCompactList}\small\item\em Toggles no intrabp in 2nd mol. \end{DoxyCompactList}\item
+\hypertarget{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{double \hyperlink{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{F\-\_\-monomer} \mbox{[}2\mbox{]}}\label{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}
+
+\begin{DoxyCompactList}\small\item\em Free energies of the two monomers. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Partition function for two R\-N\-A sequences. As for folding one R\-N\-A molecule, this computes the partition function of all possible structures and the base pair probabilities. Uses the same global \hyperlink{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{pf\-\_\-scale} variable to avoid overflows.
+
+To simplify the implementation the partition function computation is done internally in a null model that does not include the duplex initiation energy, i.\-e. the entropic penalty for producing a dimer from two monomers). The resulting free energies and pair probabilities are initially relative to that null model. In a second step the free energies can be corrected to include the dimerization penalty, and the pair probabilities can be divided into the conditional pair probabilities given that a re dimer is formed or not formed.
+
+After computing the partition functions of all possible dimeres one can compute the probabilities of base pairs, the concentrations out of start concentrations and sofar and soaway.
+
+Dimer formation is inherently concentration dependent. Given the free energies of the monomers A and B and dimers A\-B, A\-A, and B\-B one can compute the equilibrium concentrations, given input concentrations of A and B, see e.\-g. Dimitrov \& Zuker (2004)
+
+\subsection{Function Documentation}
+\hypertarget{part__func__co_8h_a334de3c96e2186abfbdc0eaea6d08b14}{\index{part\-\_\-func\-\_\-co.\-h@{part\-\_\-func\-\_\-co.\-h}!get\-\_\-plist@{get\-\_\-plist}}
+\index{get\-\_\-plist@{get\-\_\-plist}!part_func_co.h@{part\-\_\-func\-\_\-co.\-h}}
+\subsubsection[{get\-\_\-plist}]{\setlength{\rightskip}{0pt plus 5cm}{\bf plist}$\ast$ get\-\_\-plist (
+\begin{DoxyParamCaption}
+\item[{struct {\bf plist} $\ast$}]{pl, }
+\item[{int}]{length, }
+\item[{double}]{cut\-\_\-off}
+\end{DoxyParamCaption}
+)}}\label{part__func__co_8h_a334de3c96e2186abfbdc0eaea6d08b14}
+D\-O N\-O\-T U\-S\-E T\-H\-I\-S F\-U\-N\-C\-T\-I\-O\-N A\-N\-Y\-M\-O\-R\-E \begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000016}{Deprecated}]\{ This function is deprecated and will be removed soon!\} use \hyperlink{group__pf__fold_ga03e15e831a31b1154855ab47edbdb019}{assign\-\_\-plist\-\_\-from\-\_\-pr()} instead! \end{DoxyRefDesc}
+\hypertarget{part__func__co_8h_aa12dda9dd6179cdd22bcce87c0682c07}{\index{part\-\_\-func\-\_\-co.\-h@{part\-\_\-func\-\_\-co.\-h}!init\-\_\-co\-\_\-pf\-\_\-fold@{init\-\_\-co\-\_\-pf\-\_\-fold}}
+\index{init\-\_\-co\-\_\-pf\-\_\-fold@{init\-\_\-co\-\_\-pf\-\_\-fold}!part_func_co.h@{part\-\_\-func\-\_\-co.\-h}}
+\subsubsection[{init\-\_\-co\-\_\-pf\-\_\-fold}]{\setlength{\rightskip}{0pt plus 5cm}void init\-\_\-co\-\_\-pf\-\_\-fold (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{part__func__co_8h_aa12dda9dd6179cdd22bcce87c0682c07}
+D\-O N\-O\-T U\-S\-E T\-H\-I\-S F\-U\-N\-C\-T\-I\-O\-N A\-N\-Y\-M\-O\-R\-E \begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000017}{Deprecated}]\{ This function is deprecated and will be removed soon!\} \end{DoxyRefDesc}
--- /dev/null
+52b80c13a02d5fbe583c38e745d45d07
\ No newline at end of file
--- /dev/null
+\hypertarget{part__func__co_8h}{\section{part\-\_\-func\-\_\-co.\-h}
+\label{part__func__co_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-co.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-co.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PART\_FUNC\_CO\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PART\_FUNC\_CO\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00009 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00011 \textcolor{preprocessor}{}
+00055 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{mirnatog};
+00056
+00060 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{F\_monomer}[2];
+00061
+00080 \hyperlink{structcofoldF}{cofoldF} \hyperlink{group__pf__cofold_gaa86a5f998789ed71813d23d7307a791b}{co\_pf\_fold}( \textcolor{keywordtype}{char} *sequence,
+00081 \textcolor{keywordtype}{char} *structure);
+00082
+00100 \hyperlink{structcofoldF}{cofoldF} \hyperlink{group__pf__cofold_gabd873b450832ab5f21101fc5ab354d21}{co\_pf\_fold\_par}( \textcolor{keywordtype}{char} *sequence,
+00101 \textcolor{keywordtype}{char} *structure,
+00102 \hyperlink{structpf__paramT}{pf\_paramT} *parameters,
+00103 \textcolor{keywordtype}{int} calculate\_bppm,
+00104 \textcolor{keywordtype}{int} is\_constrained);
+00105
+00115 FLT\_OR\_DBL *\hyperlink{group__pf__cofold_ga11f0252c1d2c4697253ff4b5bd392d3c}{export\_co\_bppm}(\textcolor{keywordtype}{void});
+00116
+00120 \textcolor{keywordtype}{void} \hyperlink{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{free\_co\_pf\_arrays}(\textcolor{keywordtype}{void});
+00121
+00136 \textcolor{keywordtype}{void} \hyperlink{group__pf__cofold_ga6e0f36c1f9b7d9dd4bfbad914c1119e5}{update\_co\_pf\_params}(\textcolor{keywordtype}{int} length);
+00137
+00157 \textcolor{keywordtype}{void} \hyperlink{group__pf__cofold_ga117d880df45bef444d5e2785ffa40a53}{update\_co\_pf\_params\_par}(\textcolor{keywordtype}{int} length,
+00158 \hyperlink{structpf__paramT}{pf\_paramT} *parameters);
+00159
+00177 \textcolor{keywordtype}{void} \hyperlink{group__pf__cofold_ga15ae04ac5ab84e876dcf0093120cb617}{compute\_probabilities}(\textcolor{keywordtype}{double} FAB,
+00178 \textcolor{keywordtype}{double} FEA,
+00179 \textcolor{keywordtype}{double} FEB,
+00180 \textcolor{keyword}{struct} \hyperlink{structplist}{plist} *prAB,
+00181 \textcolor{keyword}{struct} \hyperlink{structplist}{plist} *prA,
+00182 \textcolor{keyword}{struct} \hyperlink{structplist}{plist} *prB,
+00183 \textcolor{keywordtype}{int} Alength);
+00184
+00203 \hyperlink{structConcEnt}{ConcEnt} *\hyperlink{group__pf__cofold_ga5545cb936ac4ff93c7d699d46e72e8c7}{get\_concentrations}(\textcolor{keywordtype}{double} FEAB,
+00204 \textcolor{keywordtype}{double} FEAA,
+00205 \textcolor{keywordtype}{double} FEBB,
+00206 \textcolor{keywordtype}{double} FEA,
+00207 \textcolor{keywordtype}{double} FEB,
+00208 \textcolor{keywordtype}{double} *startconc);
+00209
+00210
+00215 \textcolor{comment}{/*}
+00216 \textcolor{comment}{#################################################}
+00217 \textcolor{comment}{# DEPRECATED FUNCTIONS #}
+00218 \textcolor{comment}{#################################################}
+00219 \textcolor{comment}{*/}
+00220
+00226 DEPRECATED(\hyperlink{structplist}{plist} *\hyperlink{part__func__co_8h_a334de3c96e2186abfbdc0eaea6d08b14}{get\_plist}( \textcolor{keyword}{struct} \hyperlink{structplist}{plist} *pl,
+00227 \textcolor{keywordtype}{int} length,
+00228 \textcolor{keywordtype}{double} cut\_off));
+00233 DEPRECATED(\textcolor{keywordtype}{void} \hyperlink{part__func__co_8h_aa12dda9dd6179cdd22bcce87c0682c07}{init\_co\_pf\_fold}(\textcolor{keywordtype}{int} length));
+00234
+00235 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{part__func__up_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-up.h File Reference}
+\label{part__func__up_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-up.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-up.\-h}}
+}
+
+
+Partition Function Cofolding as stepwise process.
+
+
+Include dependency graph for part\-\_\-func\-\_\-up.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{part__func__up_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$ \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru} (char $\ast$sequence, int max\-\_\-w)
+\begin{DoxyCompactList}\small\item\em Calculate the partition function over all unpaired regions of a maximal length. \end{DoxyCompactList}\item
+\hyperlink{structinteract}{interact} $\ast$ \hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\-\_\-interact} (const char $\ast$s1, const char $\ast$s2, \hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$p\-\_\-c, \hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$p\-\_\-c2, int max\-\_\-w, char $\ast$cstruc, int incr3, int incr5)
+\begin{DoxyCompactList}\small\item\em Calculates the probability of a local interaction between two sequences. \end{DoxyCompactList}\item
+\hypertarget{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{void \hyperlink{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{free\-\_\-interact} (\hyperlink{structinteract}{interact} $\ast$pin)}\label{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}
+
+\begin{DoxyCompactList}\small\item\em Frees the output of function \hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\-\_\-interact()}. \end{DoxyCompactList}\item
+\hypertarget{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{void \hyperlink{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{free\-\_\-pu\-\_\-contrib\-\_\-struct} (\hyperlink{structpu__contrib}{pu\-\_\-contrib} $\ast$pu)}\label{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}
+
+\begin{DoxyCompactList}\small\item\em Frees the output of function \hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\-\_\-unstru()}. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Partition Function Cofolding as stepwise process. In this approach to cofolding the interaction between two R\-N\-A molecules is seen as a stepwise process. In a first step, the target molecule has to adopt a structure in which a binding site is accessible. In a second step, the ligand molecule will hybridize with a region accessible to an interaction. Consequently the algorithm is designed as a two step process\-: The first step is the calculation of the probability that a region within the target is unpaired, or equivalently, the calculation of the free energy needed to expose a region. In the second step we compute the free energy of an interaction for every possible binding site.
\ No newline at end of file
--- /dev/null
+8d3bbc6ec39cbc3b5670e873ce975c65
\ No newline at end of file
--- /dev/null
+\hypertarget{part__func__up_8h}{\section{part\-\_\-func\-\_\-up.\-h}
+\label{part__func__up_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-up.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-up.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PART\_FUNC\_UP\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PART\_FUNC\_UP\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006 \textcolor{preprocessor}{#define RNA\_UP\_MODE\_1 1U}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define RNA\_UP\_MODE\_2 2U}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define RNA\_UP\_MODE\_3 4U}
+00009 \textcolor{preprocessor}{}
+00055 \hyperlink{structpu__contrib}{pu\_contrib} *\hyperlink{group__up__cofold_ga5b4ee40e190d2f633cd01cf0d2fe93cf}{pf\_unstru}(\textcolor{keywordtype}{char} *sequence,
+00056 \textcolor{keywordtype}{int} max\_w);
+00057
+00100 \hyperlink{structinteract}{interact} *\hyperlink{group__up__cofold_ga1aa0aa02bc3a724f87360c03097afd00}{pf\_interact}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00101 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00102 \hyperlink{structpu__contrib}{pu\_contrib} *p\_c,
+00103 \hyperlink{structpu__contrib}{pu\_contrib} *p\_c2,
+00104 \textcolor{keywordtype}{int} max\_w,
+00105 \textcolor{keywordtype}{char} *cstruc,
+00106 \textcolor{keywordtype}{int} incr3,
+00107 \textcolor{keywordtype}{int} incr5);
+00108
+00112 \textcolor{keywordtype}{void} \hyperlink{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{free\_interact}(\hyperlink{structinteract}{interact} *pin);
+00113
+00117 \textcolor{keywordtype}{int} Up\_plot(\hyperlink{structpu__contrib}{pu\_contrib} *p\_c,
+00118 \hyperlink{structpu__contrib}{pu\_contrib} *p\_c\_sh,
+00119 \hyperlink{structinteract}{interact} *pint,
+00120 \textcolor{keywordtype}{char} *ofile,
+00121 \textcolor{keywordtype}{int} **unpaired\_values,
+00122 \textcolor{keywordtype}{char} *select\_contrib,
+00123 \textcolor{keywordtype}{char} *head,
+00124 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} mode);
+00125
+00129 \hyperlink{structpu__contrib}{pu\_contrib} *get\_pu\_contrib\_struct( \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} n,
+00130 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} w);
+00131
+00135 \textcolor{keywordtype}{void} \hyperlink{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{free\_pu\_contrib\_struct}(\hyperlink{structpu__contrib}{pu\_contrib} *pu);
+00136
+00141 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{plex_8h}{\section{plex.\-h}
+\label{plex_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plex.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plex.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PLEX\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PLEX\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00005
+00006
+00007 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{subopt\_sorted};
+00008
+00012 \hyperlink{structduplexT}{duplexT}** Lduplexfold(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00013 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00014 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00015 \textcolor{keyword}{const} \textcolor{keywordtype}{int} extension\_cost,
+00016 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00017 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta,
+00018 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fast,
+00019 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_a,
+00020 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_b,
+00021 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_a,
+00022 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_b);
+00023
+00027 \hyperlink{structduplexT}{duplexT}** Lduplexfold\_XS( \textcolor{keyword}{const} \textcolor{keywordtype}{char}*s1,
+00028 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* s2,
+00029 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s1,
+00030 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s2,
+00031 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00032 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta,
+00033 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00034 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fast,
+00035 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_a,
+00036 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_b,
+00037 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_a,
+00038 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_b);\textcolor{comment}{/* , const int target\_dead, const int query\_dead); */}
+00039
+00043 \hyperlink{structduplexT}{duplexT}** Lduplexfold\_C(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00044 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00045 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00046 \textcolor{keyword}{const} \textcolor{keywordtype}{int} extension\_cost,
+00047 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00048 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta,
+00049 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fast,
+00050 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* structure,
+00051 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_a,
+00052 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_b,
+00053 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_a,
+00054 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_b);
+00055
+00060 \hyperlink{structduplexT}{duplexT}** Lduplexfold\_CXS(\textcolor{keyword}{const} \textcolor{keywordtype}{char}*s1,
+00061 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* s2,
+00062 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s1,
+00063 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s2,
+00064 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00065 \textcolor{keyword}{const} \textcolor{keywordtype}{int} delta,
+00066 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00067 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fast,
+00068 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* structure,
+00069 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_a,
+00070 \textcolor{keyword}{const} \textcolor{keywordtype}{int} il\_b,
+00071 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_a,
+00072 \textcolor{keyword}{const} \textcolor{keywordtype}{int} b\_b); \textcolor{comment}{/*, const int target\_dead, const int query\_dead); */}
+00073
+00074
+00075
+00076
+00077 \textcolor{keywordtype}{int} arraySize(\hyperlink{structduplexT}{duplexT}** array);
+00078 \textcolor{keywordtype}{void} freeDuplexT(\hyperlink{structduplexT}{duplexT}** array);
+00079
+00080 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{plot__layouts_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plot\-\_\-layouts.h File Reference}
+\label{plot__layouts_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plot\-\_\-layouts.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plot\-\_\-layouts.\-h}}
+}
+
+
+Secondary structure plot layout algorithms.
+
+
+Include dependency graph for plot\-\_\-layouts.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=254pt]{plot__layouts_8h__incl}
+\end{center}
+\end{figure}
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{plot__layouts_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Macros}
+\begin{DoxyCompactItemize}
+\item
+\#define \hyperlink{plot__layouts_8h_ae6d17b9f0a53cf5205a9181e0f8422e9}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E}~0
+\begin{DoxyCompactList}\small\item\em Definition of Plot type {\itshape simple} \end{DoxyCompactList}\item
+\#define \hyperlink{plot__layouts_8h_a94d4c863ecac2f220f76658afb92f964}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W}~1
+\begin{DoxyCompactList}\small\item\em Definition of Plot type {\itshape Naview} \end{DoxyCompactList}\item
+\#define \hyperlink{plot__layouts_8h_a8c9eac631348da92136c8363ecdd9fb9}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R}~2
+\begin{DoxyCompactList}\small\item\em Definition of Plot type {\itshape Circular} \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{simple\-\_\-xy\-\_\-coordinates} (short $\ast$pair\-\_\-table, float $\ast$X, float $\ast$Y)
+\begin{DoxyCompactList}\small\item\em Calculate nucleotide coordinates for secondary structure plot the {\itshape Simple way} \end{DoxyCompactList}\item
+int \hyperlink{plot__layouts_8h_ac4ea13d35308f09940178d2b05a248c2}{simple\-\_\-circplot\-\_\-coordinates} (short $\ast$pair\-\_\-table, float $\ast$x, float $\ast$y)
+\begin{DoxyCompactList}\small\item\em Calculate nucleotide coordinates for {\itshape Circular Plot} \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\-\_\-plot\-\_\-type}
+\begin{DoxyCompactList}\small\item\em Switch for changing the secondary structure layout algorithm. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Secondary structure plot layout algorithms. c Ronny Lorenz The Vienna\-R\-N\-A Package
+
+\subsection{Macro Definition Documentation}
+\hypertarget{plot__layouts_8h_ae6d17b9f0a53cf5205a9181e0f8422e9}{\index{plot\-\_\-layouts.\-h@{plot\-\_\-layouts.\-h}!V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E@{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E}}
+\index{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E@{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E}!plot_layouts.h@{plot\-\_\-layouts.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E~0}}\label{plot__layouts_8h_ae6d17b9f0a53cf5205a9181e0f8422e9}
+
+
+Definition of Plot type {\itshape simple}
+
+This is the plot type definition for several R\-N\-A structure plotting functions telling them to use {\bfseries Simple} plotting algorithm
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\-\_\-plot\-\_\-type}, \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{P\-S\-\_\-rna\-\_\-plot\-\_\-a()}, \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gml\-R\-N\-A()}, \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\-\_\-plot()}
+\end{DoxySeeAlso}
+\hypertarget{plot__layouts_8h_a94d4c863ecac2f220f76658afb92f964}{\index{plot\-\_\-layouts.\-h@{plot\-\_\-layouts.\-h}!V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W@{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W}}
+\index{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W@{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W}!plot_layouts.h@{plot\-\_\-layouts.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W~1}}\label{plot__layouts_8h_a94d4c863ecac2f220f76658afb92f964}
+
+
+Definition of Plot type {\itshape Naview}
+
+This is the plot type definition for several R\-N\-A structure plotting functions telling them to use {\bfseries Naview} plotting algorithm
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\-\_\-plot\-\_\-type}, \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{P\-S\-\_\-rna\-\_\-plot\-\_\-a()}, \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gml\-R\-N\-A()}, \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\-\_\-plot()}
+\end{DoxySeeAlso}
+\hypertarget{plot__layouts_8h_a8c9eac631348da92136c8363ecdd9fb9}{\index{plot\-\_\-layouts.\-h@{plot\-\_\-layouts.\-h}!V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R@{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R}}
+\index{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R@{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R}!plot_layouts.h@{plot\-\_\-layouts.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R~2}}\label{plot__layouts_8h_a8c9eac631348da92136c8363ecdd9fb9}
+
+
+Definition of Plot type {\itshape Circular}
+
+This is the plot type definition for several R\-N\-A structure plotting functions telling them to produce a {\bfseries Circular plot}
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\-\_\-plot\-\_\-type}, \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{P\-S\-\_\-rna\-\_\-plot\-\_\-a()}, \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{gml\-R\-N\-A()}, \hyperlink{PS__dot_8h_add368528755f9a830727b680243541df}{ssv\-\_\-rna\-\_\-plot()}, \hyperlink{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{xrna\-\_\-plot()}
+\end{DoxySeeAlso}
+
+
+\subsection{Function Documentation}
+\hypertarget{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{\index{plot\-\_\-layouts.\-h@{plot\-\_\-layouts.\-h}!simple\-\_\-xy\-\_\-coordinates@{simple\-\_\-xy\-\_\-coordinates}}
+\index{simple\-\_\-xy\-\_\-coordinates@{simple\-\_\-xy\-\_\-coordinates}!plot_layouts.h@{plot\-\_\-layouts.\-h}}
+\subsubsection[{simple\-\_\-xy\-\_\-coordinates}]{\setlength{\rightskip}{0pt plus 5cm}int simple\-\_\-xy\-\_\-coordinates (
+\begin{DoxyParamCaption}
+\item[{short $\ast$}]{pair\-\_\-table, }
+\item[{float $\ast$}]{X, }
+\item[{float $\ast$}]{Y}
+\end{DoxyParamCaption}
+)}}\label{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}
+
+
+Calculate nucleotide coordinates for secondary structure plot the {\itshape Simple way}
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\-\_\-plot\-\_\-type}, \hyperlink{plot__layouts_8h_ac4ea13d35308f09940178d2b05a248c2}{simple\-\_\-circplot\-\_\-coordinates()}, naview\-\_\-xy\-\_\-coordinates(), \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{P\-S\-\_\-rna\-\_\-plot\-\_\-a()}, \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot}, \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\-\_\-rna\-\_\-plot()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em pair\-\_\-table} & The pair table of the secondary structure \\
+\hline
+{\em X} & a pointer to an array with enough allocated space to hold the x coordinates \\
+\hline
+{\em Y} & a pointer to an array with enough allocated space to hold the y coordinates \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+length of sequence on success, 0 otherwise
+\end{DoxyReturn}
+\hypertarget{plot__layouts_8h_ac4ea13d35308f09940178d2b05a248c2}{\index{plot\-\_\-layouts.\-h@{plot\-\_\-layouts.\-h}!simple\-\_\-circplot\-\_\-coordinates@{simple\-\_\-circplot\-\_\-coordinates}}
+\index{simple\-\_\-circplot\-\_\-coordinates@{simple\-\_\-circplot\-\_\-coordinates}!plot_layouts.h@{plot\-\_\-layouts.\-h}}
+\subsubsection[{simple\-\_\-circplot\-\_\-coordinates}]{\setlength{\rightskip}{0pt plus 5cm}int simple\-\_\-circplot\-\_\-coordinates (
+\begin{DoxyParamCaption}
+\item[{short $\ast$}]{pair\-\_\-table, }
+\item[{float $\ast$}]{x, }
+\item[{float $\ast$}]{y}
+\end{DoxyParamCaption}
+)}}\label{plot__layouts_8h_ac4ea13d35308f09940178d2b05a248c2}
+
+
+Calculate nucleotide coordinates for {\itshape Circular Plot}
+
+This function calculates the coordinates of nucleotides mapped in equal distancies onto a unit circle.
+
+\begin{DoxyNote}{Note}
+In order to draw nice arcs using quadratic bezier curves that connect base pairs one may calculate a second tangential point $P^t$ in addition to the actual R$^{\mbox{2}}$ coordinates. the simplest way to do so may be to compute a radius scaling factor $rs$ in the interval $[0,1]$ that weights the proportion of base pair span to the actual length of the sequence. This scaling factor can then be used to calculate the coordinates for $P^t$, i.\-e. $ P^{t}_x[i] = X[i] * rs$ and $P^{t}_y[i] = Y[i] * rs$.
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table()}, \hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\-\_\-plot\-\_\-type}, \hyperlink{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{simple\-\_\-xy\-\_\-coordinates()}, naview\-\_\-xy\-\_\-coordinates(), \hyperlink{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{P\-S\-\_\-rna\-\_\-plot\-\_\-a()}, \hyperlink{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{P\-S\-\_\-rna\-\_\-plot}, \hyperlink{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{svg\-\_\-rna\-\_\-plot()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em pair\-\_\-table} & The pair table of the secondary structure \\
+\hline
+{\em x} & a pointer to an array with enough allocated space to hold the x coordinates \\
+\hline
+{\em y} & a pointer to an array with enough allocated space to hold the y coordinates \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+length of sequence on success, 0 otherwise
+\end{DoxyReturn}
+
+
+\subsection{Variable Documentation}
+\hypertarget{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{\index{plot\-\_\-layouts.\-h@{plot\-\_\-layouts.\-h}!rna\-\_\-plot\-\_\-type@{rna\-\_\-plot\-\_\-type}}
+\index{rna\-\_\-plot\-\_\-type@{rna\-\_\-plot\-\_\-type}!plot_layouts.h@{plot\-\_\-layouts.\-h}}
+\subsubsection[{rna\-\_\-plot\-\_\-type}]{\setlength{\rightskip}{0pt plus 5cm}int rna\-\_\-plot\-\_\-type}}\label{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}
+
+
+Switch for changing the secondary structure layout algorithm.
+
+Current possibility are 0 for a simple radial drawing or 1 for the modified radial drawing taken from the {\itshape naview} program of Bruccoleri \& Heinrich (1988).
+
+\begin{DoxyNote}{Note}
+To provide thread safety please do not rely on this global variable in future implementations but pass a plot type flag directly to the function that decides which layout algorithm it may use!
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{plot__layouts_8h_ae6d17b9f0a53cf5205a9181e0f8422e9}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E}, \hyperlink{plot__layouts_8h_a94d4c863ecac2f220f76658afb92f964}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W}, \hyperlink{plot__layouts_8h_a8c9eac631348da92136c8363ecdd9fb9}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R}
+\end{DoxySeeAlso}
--- /dev/null
+27c8f6986b3e5ad6f57f67b7d22d8816
\ No newline at end of file
--- /dev/null
+c6c8218164195bfd67176908bd4f2bcf
\ No newline at end of file
--- /dev/null
+\hypertarget{plot__layouts_8h}{\section{plot\-\_\-layouts.\-h}
+\label{plot__layouts_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plot\-\_\-layouts.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plot\-\_\-layouts.\-h}}
+}
+
+\begin{DoxyCode}
+00001
+00009 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PLOT\_LAYOUTS\_H\_\_}
+00010 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PLOT\_LAYOUTS\_H\_\_}
+00011 \textcolor{preprocessor}{}
+00012 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00013 \textcolor{preprocessor}{#include "\hyperlink{naview_8h}{naview.h}"}
+00014
+00015 \textcolor{preprocessor}{#ifndef PI}
+00016 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define PI 3.141592654}
+00017 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00018 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define PIHALF PI/2.}
+00019 \textcolor{preprocessor}{}
+00020
+\hypertarget{plot__layouts_8h_source_l00029}{}\hyperlink{plot__layouts_8h_ae6d17b9f0a53cf5205a9181e0f8422e9}{00029} \textcolor{preprocessor}{#define VRNA\_PLOT\_TYPE\_SIMPLE 0}
+00030 \textcolor{preprocessor}{}
+\hypertarget{plot__layouts_8h_source_l00039}{}\hyperlink{plot__layouts_8h_a94d4c863ecac2f220f76658afb92f964}{00039} \textcolor{preprocessor}{#define VRNA\_PLOT\_TYPE\_NAVIEW 1}
+00040 \textcolor{preprocessor}{}
+\hypertarget{plot__layouts_8h_source_l00049}{}\hyperlink{plot__layouts_8h_a8c9eac631348da92136c8363ecdd9fb9}{00049} \textcolor{preprocessor}{#define VRNA\_PLOT\_TYPE\_CIRCULAR 2}
+00050 \textcolor{preprocessor}{}
+00051
+00064 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{rna\_plot\_type};
+00065
+00077 \textcolor{keywordtype}{int} \hyperlink{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{simple\_xy\_coordinates}(\textcolor{keywordtype}{short} *pair\_table,
+00078 \textcolor{keywordtype}{float} *X,
+00079 \textcolor{keywordtype}{float} *Y);
+00080
+00101 \textcolor{keywordtype}{int} \hyperlink{plot__layouts_8h_ac4ea13d35308f09940178d2b05a248c2}{simple\_circplot\_coordinates}(\textcolor{keywordtype}{short} *pair\_table,
+00102 \textcolor{keywordtype}{float} *x,
+00103 \textcolor{keywordtype}{float} *y);
+00104
+00105
+00106 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{profiledist_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/profiledist.h File Reference}
+\label{profiledist_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/profiledist.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/profiledist.\-h}}
+}
+Include dependency graph for profiledist.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{profiledist_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+float \hyperlink{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{profile\-\_\-edit\-\_\-distance} (const float $\ast$T1, const float $\ast$T2)
+\begin{DoxyCompactList}\small\item\em Align the 2 probability profiles T1, T2\par
+. \end{DoxyCompactList}\item
+float $\ast$ \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\-\_\-bp\-\_\-profile\-\_\-bppm} (double $\ast$bppm, int length)
+\begin{DoxyCompactList}\small\item\em condense pair probability matrix into a vector containing probabilities for unpaired, upstream paired and downstream paired. \end{DoxyCompactList}\item
+\hypertarget{profiledist_8h_a8e0b4fe3698b3502945116ecc0ba6160}{void \hyperlink{profiledist_8h_a8e0b4fe3698b3502945116ecc0ba6160}{print\-\_\-bppm} (const float $\ast$T)}\label{profiledist_8h_a8e0b4fe3698b3502945116ecc0ba6160}
+
+\begin{DoxyCompactList}\small\item\em print string representation of probability profile \end{DoxyCompactList}\item
+void \hyperlink{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{free\-\_\-profile} (float $\ast$T)
+\begin{DoxyCompactList}\small\item\em free space allocated in Make\-\_\-bp\-\_\-profile \end{DoxyCompactList}\item
+float $\ast$ \hyperlink{profiledist_8h_a904c7eaf4a2413567c00ac4891749d18}{Make\-\_\-bp\-\_\-profile} (int length)
+\end{DoxyCompactItemize}
+
+
+\subsection{Function Documentation}
+\hypertarget{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{\index{profiledist.\-h@{profiledist.\-h}!profile\-\_\-edit\-\_\-distance@{profile\-\_\-edit\-\_\-distance}}
+\index{profile\-\_\-edit\-\_\-distance@{profile\-\_\-edit\-\_\-distance}!profiledist.h@{profiledist.\-h}}
+\subsubsection[{profile\-\_\-edit\-\_\-distance}]{\setlength{\rightskip}{0pt plus 5cm}float profile\-\_\-edit\-\_\-distance (
+\begin{DoxyParamCaption}
+\item[{const float $\ast$}]{T1, }
+\item[{const float $\ast$}]{T2}
+\end{DoxyParamCaption}
+)}}\label{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}
+
+
+Align the 2 probability profiles T1, T2\par
+.
+
+This is like a Needleman-\/\-Wunsch alignment, we should really use affine gap-\/costs ala Gotoh \hypertarget{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{\index{profiledist.\-h@{profiledist.\-h}!Make\-\_\-bp\-\_\-profile\-\_\-bppm@{Make\-\_\-bp\-\_\-profile\-\_\-bppm}}
+\index{Make\-\_\-bp\-\_\-profile\-\_\-bppm@{Make\-\_\-bp\-\_\-profile\-\_\-bppm}!profiledist.h@{profiledist.\-h}}
+\subsubsection[{Make\-\_\-bp\-\_\-profile\-\_\-bppm}]{\setlength{\rightskip}{0pt plus 5cm}float$\ast$ Make\-\_\-bp\-\_\-profile\-\_\-bppm (
+\begin{DoxyParamCaption}
+\item[{double $\ast$}]{bppm, }
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}
+
+
+condense pair probability matrix into a vector containing probabilities for unpaired, upstream paired and downstream paired.
+
+This resulting probability profile is used as input for profile\-\_\-edit\-\_\-distance
+
+
+\begin{DoxyParams}{Parameters}
+{\em bppm} & A pointer to the base pair probability matrix \\
+\hline
+{\em length} & The length of the sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The bp profile
+\end{DoxyReturn}
+\hypertarget{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{\index{profiledist.\-h@{profiledist.\-h}!free\-\_\-profile@{free\-\_\-profile}}
+\index{free\-\_\-profile@{free\-\_\-profile}!profiledist.h@{profiledist.\-h}}
+\subsubsection[{free\-\_\-profile}]{\setlength{\rightskip}{0pt plus 5cm}void free\-\_\-profile (
+\begin{DoxyParamCaption}
+\item[{float $\ast$}]{T}
+\end{DoxyParamCaption}
+)}}\label{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}
+
+
+free space allocated in Make\-\_\-bp\-\_\-profile
+
+Backward compatibility only. You can just use plain free() \hypertarget{profiledist_8h_a904c7eaf4a2413567c00ac4891749d18}{\index{profiledist.\-h@{profiledist.\-h}!Make\-\_\-bp\-\_\-profile@{Make\-\_\-bp\-\_\-profile}}
+\index{Make\-\_\-bp\-\_\-profile@{Make\-\_\-bp\-\_\-profile}!profiledist.h@{profiledist.\-h}}
+\subsubsection[{Make\-\_\-bp\-\_\-profile}]{\setlength{\rightskip}{0pt plus 5cm}float$\ast$ Make\-\_\-bp\-\_\-profile (
+\begin{DoxyParamCaption}
+\item[{int}]{length}
+\end{DoxyParamCaption}
+)}}\label{profiledist_8h_a904c7eaf4a2413567c00ac4891749d18}
+\begin{DoxyNote}{Note}
+This function is N\-O\-T threadsafe
+\end{DoxyNote}
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\-\_\-bp\-\_\-profile\-\_\-bppm()}
+\end{DoxySeeAlso}
+\begin{DoxyRefDesc}{Deprecated}
+\item[\hyperlink{deprecated__deprecated000018}{Deprecated}]This function is deprecated and will be removed soon! See \hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\-\_\-bp\-\_\-profile\-\_\-bppm()} for a replacement\end{DoxyRefDesc}
--- /dev/null
+c8ba9c258244933692a24638752e9345
\ No newline at end of file
--- /dev/null
+\hypertarget{profiledist_8h}{\section{profiledist.\-h}
+\label{profiledist_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/profiledist.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/profiledist.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_PROFILEDIST\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_PROFILEDIST\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#ifdef \_\_GNUC\_\_}
+00005 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func \_\_attribute\_\_ ((deprecated))}
+00006 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00007 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define DEPRECATED(func) func}
+00008 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00009 \textcolor{preprocessor}{}
+00010 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00011
+00020 \textcolor{keywordtype}{float} \hyperlink{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{profile\_edit\_distance}(\textcolor{keyword}{const} \textcolor{keywordtype}{float} *T1,
+00021 \textcolor{keyword}{const} \textcolor{keywordtype}{float} *T2);
+00022
+00033 \textcolor{keywordtype}{float} *\hyperlink{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{Make\_bp\_profile\_bppm}(FLT\_OR\_DBL *bppm,
+00034 \textcolor{keywordtype}{int} length);
+00035
+00039 \textcolor{keywordtype}{void} \hyperlink{profiledist_8h_a8e0b4fe3698b3502945116ecc0ba6160}{print\_bppm}(\textcolor{keyword}{const} \textcolor{keywordtype}{float} *T);
+00040
+00046 \textcolor{keywordtype}{void} \hyperlink{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{free\_profile}(\textcolor{keywordtype}{float} *T);
+00047
+00056 DEPRECATED(\textcolor{keywordtype}{float} *\hyperlink{profiledist_8h_a904c7eaf4a2413567c00ac4891749d18}{Make\_bp\_profile}(\textcolor{keywordtype}{int} length));
+00057
+00058 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{read__epars_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/read\-\_\-epars.h File Reference}
+\label{read__epars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/read\-\_\-epars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/read\-\_\-epars.\-h}}
+}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void \hyperlink{group__energy__parameters__rw_ga165a142a3c68fb6655c69ef4ab7cd749}{read\-\_\-parameter\-\_\-file} (const char fname\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Read energy parameters from a file. \end{DoxyCompactList}\item
+void \hyperlink{group__energy__parameters__rw_ga8a43459be386a7489feeab68dc2c6c76}{write\-\_\-parameter\-\_\-file} (const char fname\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Write energy parameters to a file. \end{DoxyCompactList}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{read__epars_8h}{\section{read\-\_\-epars.\-h}
+\label{read__epars_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/read\-\_\-epars.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/read\-\_\-epars.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_READ\_EPARS\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_READ\_EPARS\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00020 \textcolor{keyword}{enum} parset \{
+00021 UNKNOWN= -1, QUIT,
+00022 S, S\_H, HP, HP\_H, B, B\_H, IL, IL\_H, MMH, MMH\_H, MMI, MMI\_H,
+00023 MMI1N, MMI1N\_H, MMI23, MMI23\_H, MMM, MMM\_H, MME, MME\_H, D5, D5\_H, D3, D3\_H,
+00024 INT11, INT11\_H, INT21, INT21\_H, INT22, INT22\_H, ML, TL,
+00025 TRI, HEX, NIN, MISC\};
+00026
+00032 \textcolor{keywordtype}{void} \hyperlink{group__energy__parameters__rw_ga165a142a3c68fb6655c69ef4ab7cd749}{read\_parameter\_file}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} fname[]);
+00033
+00039 \textcolor{keywordtype}{void} \hyperlink{group__energy__parameters__rw_ga8a43459be386a7489feeab68dc2c6c76}{write\_parameter\_file}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} fname[]);
+00040
+00045 \textcolor{keyword}{enum} parset gettype(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *ident);
+00046
+00051 \textcolor{keywordtype}{char} *settype(\textcolor{keyword}{enum} parset s);
+00052
+00057 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\relax
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\citation{lorenz:2011}
+\citation{hofacker:1994}
+\@writefile{toc}{\contentsline {chapter}{\numberline {1}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A Package core -\/ R\discretionary {-}{}{}N\discretionary {-}{}{}Alib}{1}{chapter.1}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\newlabel{index}{{1}{1}{Vienna\-R\-N\-A Package core -\/ R\-N\-Alib\relax }{chapter.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {1.1}Introduction}{1}{section.1.1}}
+\newlabel{index_mp_intro}{{1.1}{1}{Introduction\relax }{section.1.1}{}}
+\@writefile{brf}{\backcite{lorenz:2011}{{1}{1.1}{section.1.1}}}
+\@writefile{brf}{\backcite{hofacker:1994}{{1}{1.1}{section.1.1}}}
+\citation{fontana:1993b}
+\citation{shapiro:1988}
+\@writefile{toc}{\contentsline {chapter}{\numberline {2}Parsing and Comparing -\/ Functions to Manipulate Structures}{3}{chapter.2}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\newlabel{mp_parse}{{2}{3}{Parsing and Comparing -\/ Functions to Manipulate Structures\relax }{chapter.2}{}}
+\@writefile{brf}{\backcite{fontana:1993b}{{3}{2}{section*.4}}}
+\@writefile{brf}{\backcite{shapiro:1988}{{3}{2}{section*.4}}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {3}Utilities -\/ Odds and Ends}{5}{chapter.3}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\newlabel{mp_utils}{{3}{5}{Utilities -\/ Odds and Ends\relax }{chapter.3}{}}
+\newlabel{mp_utils_toc}{{3}{5}{Utilities -\/ Odds and Ends\relax }{chapter.3}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {3.1}Producing secondary structure graphs}{5}{section.3.1}}
+\newlabel{mp_utils_utils_ss}{{3.1}{5}{Producing secondary structure graphs\relax }{section.3.1}{}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {4}Example -\/ A Small Example Program}{7}{chapter.4}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\newlabel{mp_example}{{4}{7}{Example -\/ A Small Example Program\relax }{chapter.4}{}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {5}Deprecated List}{9}{chapter.5}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\newlabel{deprecated}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000008}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000012}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000007}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000005}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000006}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000015}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000014}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000016}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000003}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000010}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000017}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000011}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000001}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000004}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000002}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000018}{{5}{9}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000013}{{5}{10}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000009}{{5}{10}{Deprecated List\relax }{chapter.5}{}}
+\newlabel{deprecated__deprecated000019}{{5}{10}{Deprecated List\relax }{chapter.5}{}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {6}Module Index}{11}{chapter.6}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {6.1}Modules}{11}{section.6.1}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {7}Data Structure Index}{13}{chapter.7}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {7.1}Data Structures}{13}{section.7.1}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {8}File Index}{15}{chapter.8}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {8.1}File List}{15}{section.8.1}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {9}Module Documentation}{19}{chapter.9}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {9.1}R\discretionary {-}{}{}N\discretionary {-}{}{}A Secondary Structure Folding}{19}{section.9.1}}
+\newlabel{group__folding__routines}{{9.1}{19}{R\-N\-A Secondary Structure Folding\relax }{section.9.1}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.1}Detailed Description}{21}{subsection.9.1.1}}
+\@input{group__mfe__fold.aux}
+\@input{group__pf__fold.aux}
+\@input{group__mea__fold.aux}
+\@input{group__centroid__fold.aux}
+\@input{group__subopt__fold.aux}
+\@input{group__subopt__zuker.aux}
+\@input{group__subopt__wuchty.aux}
+\@input{group__subopt__stochbt.aux}
+\@input{group__cofold.aux}
+\@input{group__mfe__cofold.aux}
+\@input{group__pf__cofold.aux}
+\@input{group__up__cofold.aux}
+\@input{group__consensus__fold.aux}
+\@input{group__consensus__mfe__fold.aux}
+\@input{group__consensus__pf__fold.aux}
+\@input{group__consensus__stochbt.aux}
+\@input{group__local__fold.aux}
+\@input{group__local__mfe__fold.aux}
+\@input{group__local__pf__fold.aux}
+\@input{group__local__consensus__fold.aux}
+\@input{group__energy__parameters.aux}
+\@input{group__energy__parameters__rw.aux}
+\@input{group__energy__parameters__convert.aux}
+\@input{group__eval.aux}
+\@input{group__inverse__fold.aux}
+\@input{group__class__fold.aux}
+\@input{group__kl__neighborhood.aux}
+\@input{group__kl__neighborhood__mfe.aux}
+\@input{group__kl__neighborhood__pf.aux}
+\@input{group__kl__neighborhood__stochbt.aux}
+\@input{group__dos.aux}
+\@input{group__parse.aux}
+\@writefile{toc}{\contentsline {chapter}{\numberline {10}Data Structure Documentation}{91}{chapter.10}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {10.1}bond\discretionary {-}{}{}T Struct Reference}{91}{section.10.1}}
+\newlabel{structbondT}{{10.1}{91}{bond\-T Struct Reference\relax }{section.10.1}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.1.1}Detailed Description}{91}{subsection.10.1.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.2}bond\discretionary {-}{}{}T\discretionary {-}{}{}En Struct Reference}{91}{section.10.2}}
+\newlabel{structbondTEn}{{10.2}{91}{bond\-T\-En Struct Reference\relax }{section.10.2}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.2.1}Detailed Description}{91}{subsection.10.2.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.3}cofold\discretionary {-}{}{}F Struct Reference}{91}{section.10.3}}
+\newlabel{structcofoldF}{{10.3}{91}{cofold\-F Struct Reference\relax }{section.10.3}{}}
+\newlabel{structcofoldF_af6c496438321eb8bb907a21de1915c23}{{10.3}{91}{Data Fields\relax }{section*.65}{}}
+\newlabel{structcofoldF_a2ae1245ff4a93cd11f882f490f777cb7}{{10.3}{91}{Data Fields\relax }{section*.65}{}}
+\newlabel{structcofoldF_a4899a4f9b42e416baf46c5fe10751c45}{{10.3}{91}{Data Fields\relax }{section*.65}{}}
+\newlabel{structcofoldF_a460f3ba205c205e6f5ec27cc2e2eb2b2}{{10.3}{92}{Data Fields\relax }{section*.65}{}}
+\newlabel{structcofoldF_ad3e5466724f3987be9d6f388b8ee5129}{{10.3}{92}{Data Fields\relax }{section*.65}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.4}Conc\discretionary {-}{}{}Ent Struct Reference}{92}{section.10.4}}
+\newlabel{structConcEnt}{{10.4}{92}{Conc\-Ent Struct Reference\relax }{section.10.4}{}}
+\newlabel{structConcEnt_adcf4d93c7efeaa4e6c4154b64d367681}{{10.4}{92}{Data Fields\relax }{section*.66}{}}
+\newlabel{structConcEnt_add4c33b94b34e847fbf5838b04cce346}{{10.4}{92}{Data Fields\relax }{section*.66}{}}
+\newlabel{structConcEnt_ac59c07a31d844e7b05bcdc05c4413b19}{{10.4}{92}{Data Fields\relax }{section*.66}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.5}constrain Struct Reference}{92}{section.10.5}}
+\newlabel{structconstrain}{{10.5}{92}{constrain Struct Reference\relax }{section.10.5}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.5.1}Detailed Description}{92}{subsection.10.5.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.6}C\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}D\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}E Struct Reference}{92}{section.10.6}}
+\newlabel{structCOORDINATE}{{10.6}{92}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E Struct Reference\relax }{section.10.6}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.6.1}Detailed Description}{92}{subsection.10.6.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.7}cpair Struct Reference}{93}{section.10.7}}
+\newlabel{structcpair}{{10.7}{93}{cpair Struct Reference\relax }{section.10.7}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.7.1}Detailed Description}{93}{subsection.10.7.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.8}duplex\discretionary {-}{}{}T Struct Reference}{93}{section.10.8}}
+\newlabel{structduplexT}{{10.8}{93}{duplex\-T Struct Reference\relax }{section.10.8}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.9}dup\discretionary {-}{}{}Var Struct Reference}{93}{section.10.9}}
+\newlabel{structdupVar}{{10.9}{93}{dup\-Var Struct Reference\relax }{section.10.9}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.10}folden Struct Reference}{93}{section.10.10}}
+\newlabel{structfolden}{{10.10}{93}{folden Struct Reference\relax }{section.10.10}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.11}interact Struct Reference}{93}{section.10.11}}
+\newlabel{structinteract}{{10.11}{93}{interact Struct Reference\relax }{section.10.11}{}}
+\newlabel{structinteract_a1fc8b3860c083f164daa9712690a3a56}{{10.11}{93}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_a54f8183542fff4c32ab7ace49a16c02c}{{10.11}{93}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_ad58303190f9e085c3ab59890cbf61223}{{10.11}{93}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_a41793812abae560805414761fec398fe}{{10.11}{93}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_ab6d031a21388be8763b75ea74c937f17}{{10.11}{93}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_a61e457fbf943d57364be6ddf1b4e7b8a}{{10.11}{93}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_a7555cb6363d1479341eb72b9c087aa34}{{10.11}{94}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_a030ab45056342e12cb3955e4defd3904}{{10.11}{94}{Data Fields\relax }{section*.67}{}}
+\newlabel{structinteract_ac9fcb5dca54ec5faa76e02b6488b9524}{{10.11}{94}{Data Fields\relax }{section*.67}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.12}intermediate\discretionary {-}{}{}\_\discretionary {-}{}{}t Struct Reference}{94}{section.10.12}}
+\newlabel{structintermediate__t}{{10.12}{94}{intermediate\-\_\-t Struct Reference\relax }{section.10.12}{}}
+\newlabel{structintermediate__t_a9a2b6258aa1af06ea3504631de8dadba}{{10.12}{94}{Data Fields\relax }{section*.68}{}}
+\newlabel{structintermediate__t_ac44e091915da58927978d54ef59234c7}{{10.12}{94}{Data Fields\relax }{section*.68}{}}
+\newlabel{structintermediate__t_af84d640df33aea99e959b2e4f61a7367}{{10.12}{94}{Data Fields\relax }{section*.68}{}}
+\newlabel{structintermediate__t_a94e947f18273bbfe3dd544085b025a7b}{{10.12}{94}{Data Fields\relax }{section*.68}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.13}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}L Struct Reference}{94}{section.10.13}}
+\newlabel{structINTERVAL}{{10.13}{94}{I\-N\-T\-E\-R\-V\-A\-L Struct Reference\relax }{section.10.13}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.13.1}Detailed Description}{95}{subsection.10.13.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.14}L\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}T Struct Reference}{95}{section.10.14}}
+\newlabel{structLIST}{{10.14}{95}{L\-I\-S\-T Struct Reference\relax }{section.10.14}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.15}L\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}C\discretionary {-}{}{}K\discretionary {-}{}{}E\discretionary {-}{}{}T Struct Reference}{95}{section.10.15}}
+\newlabel{structLST__BUCKET}{{10.15}{95}{L\-S\-T\-\_\-\-B\-U\-C\-K\-E\-T Struct Reference\relax }{section.10.15}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.16}model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T Struct Reference}{96}{section.10.16}}
+\newlabel{structmodel__detailsT}{{10.16}{96}{model\-\_\-details\-T Struct Reference\relax }{section.10.16}{}}
+\newlabel{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\newlabel{structmodel__detailsT_a6fb076173d2cbc4259606ce23eedf17d}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\newlabel{structmodel__detailsT_a0f982e6904d012e4fe41e99daa797f5d}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\newlabel{structmodel__detailsT_ae9cedf375cd904e5fb8e56cf3f64bcd9}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\newlabel{structmodel__detailsT_a415556dc150e02d108be81ecc5c48e85}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\newlabel{structmodel__detailsT_a55f083dad18c216505805a8062e63074}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\newlabel{structmodel__detailsT_aa1ecdce7bc3f375bd8a9a7b738abc0ea}{{10.16}{96}{Data Fields\relax }{section*.69}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.16.1}Detailed Description}{96}{subsection.10.16.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.16.2}Field Documentation}{96}{subsection.10.16.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {10.16.2.1}dangles}{96}{subsubsection.10.16.2.1}}
+\newlabel{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{{10.16.2.1}{96}{dangles\relax }{subsubsection.10.16.2.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.17}move\discretionary {-}{}{}\_\discretionary {-}{}{}t Struct Reference}{96}{section.10.17}}
+\newlabel{structmove__t}{{10.17}{96}{move\-\_\-t Struct Reference\relax }{section.10.17}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.18}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R Struct Reference}{97}{section.10.18}}
+\newlabel{structPAIR}{{10.18}{97}{P\-A\-I\-R Struct Reference\relax }{section.10.18}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.18.1}Detailed Description}{97}{subsection.10.18.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.19}pair\discretionary {-}{}{}\_\discretionary {-}{}{}info Struct Reference}{97}{section.10.19}}
+\newlabel{structpair__info}{{10.19}{97}{pair\-\_\-info Struct Reference\relax }{section.10.19}{}}
+\newlabel{structpair__info_a7905e17da6a6cc48230ee6205628ed7f}{{10.19}{97}{Data Fields\relax }{section*.70}{}}
+\newlabel{structpair__info_a35665817b5792703ff4325e1bcbe5e21}{{10.19}{97}{Data Fields\relax }{section*.70}{}}
+\newlabel{structpair__info_af0895ea40ec0c23bfe8aa2c3babf0e80}{{10.19}{97}{Data Fields\relax }{section*.70}{}}
+\newlabel{structpair__info_ab3aa7a54e6976f46e69c6ffcddd0e782}{{10.19}{97}{Data Fields\relax }{section*.70}{}}
+\newlabel{structpair__info_a23fc316453d179474bed7f6ed2489723}{{10.19}{97}{Data Fields\relax }{section*.70}{}}
+\newlabel{structpair__info_a4da3d6c9042500c16c4b06e0bbc48190}{{10.19}{97}{Data Fields\relax }{section*.70}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.19.1}Detailed Description}{97}{subsection.10.19.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.20}pairpro Struct Reference}{98}{section.10.20}}
+\newlabel{structpairpro}{{10.20}{98}{pairpro Struct Reference\relax }{section.10.20}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.21}param\discretionary {-}{}{}T Struct Reference}{98}{section.10.21}}
+\newlabel{structparamT}{{10.21}{98}{param\-T Struct Reference\relax }{section.10.21}{}}
+\newlabel{structparamT_a8ed207b95868d1085bd9c197fbc6924f}{{10.21}{98}{Data Fields\relax }{section*.71}{}}
+\newlabel{structparamT_aeb912822ef912705bc202b14f9d71ad9}{{10.21}{99}{Data Fields\relax }{section*.71}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.21.1}Detailed Description}{99}{subsection.10.21.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.22}path\discretionary {-}{}{}\_\discretionary {-}{}{}t Struct Reference}{99}{section.10.22}}
+\newlabel{structpath__t}{{10.22}{99}{path\-\_\-t Struct Reference\relax }{section.10.22}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.23}pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T Struct Reference}{99}{section.10.23}}
+\newlabel{structpf__paramT}{{10.23}{99}{pf\-\_\-param\-T Struct Reference\relax }{section.10.23}{}}
+\newlabel{structpf__paramT_aef40322e7ca1adbd9b438aeda0352e8f}{{10.23}{99}{Data Fields\relax }{section*.72}{}}
+\newlabel{structpf__paramT_aa0e11e9f1f6e212640baf40d7195a014}{{10.23}{99}{Data Fields\relax }{section*.72}{}}
+\newlabel{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}{{10.23}{99}{Data Fields\relax }{section*.72}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.23.1}Detailed Description}{100}{subsection.10.23.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.23.2}Field Documentation}{100}{subsection.10.23.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {10.23.2.1}alpha}{100}{subsubsection.10.23.2.1}}
+\newlabel{structpf__paramT_a3d2af9040acfa08295efb50f0219149d}{{10.23.2.1}{100}{alpha\relax }{subsubsection.10.23.2.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.24}plist Struct Reference}{100}{section.10.24}}
+\newlabel{structplist}{{10.24}{100}{plist Struct Reference\relax }{section.10.24}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.24.1}Detailed Description}{100}{subsection.10.24.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.25}Postorder\discretionary {-}{}{}\_\discretionary {-}{}{}list Struct Reference}{100}{section.10.25}}
+\newlabel{structPostorder__list}{{10.25}{100}{Postorder\-\_\-list Struct Reference\relax }{section.10.25}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.26}pu\discretionary {-}{}{}\_\discretionary {-}{}{}contrib Struct Reference}{100}{section.10.26}}
+\newlabel{structpu__contrib}{{10.26}{100}{pu\-\_\-contrib Struct Reference\relax }{section.10.26}{}}
+\newlabel{structpu__contrib_ac9034ac9a84ed0647587659d6e9be1e8}{{10.26}{100}{Data Fields\relax }{section*.73}{}}
+\newlabel{structpu__contrib_a8ca0da20536780589fb3e3472ca0581f}{{10.26}{100}{Data Fields\relax }{section*.73}{}}
+\newlabel{structpu__contrib_a1222ebf74f426bbcd843dcc325da207b}{{10.26}{100}{Data Fields\relax }{section*.73}{}}
+\newlabel{structpu__contrib_accb192ba6b4b91a1cb2f8080934fd428}{{10.26}{100}{Data Fields\relax }{section*.73}{}}
+\newlabel{structpu__contrib_a33d5ada6e861db0c81aa3d5b2989262e}{{10.26}{101}{Data Fields\relax }{section*.73}{}}
+\newlabel{structpu__contrib_a403c1c7f20beeeffba7632fac0cfcbff}{{10.26}{101}{Data Fields\relax }{section*.73}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.26.1}Detailed Description}{101}{subsection.10.26.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.27}pu\discretionary {-}{}{}\_\discretionary {-}{}{}out Struct Reference}{101}{section.10.27}}
+\newlabel{structpu__out}{{10.27}{101}{pu\-\_\-out Struct Reference\relax }{section.10.27}{}}
+\newlabel{structpu__out_a314b8f43c3ee0bf6060afbeced5dbe6c}{{10.27}{101}{Data Fields\relax }{section*.74}{}}
+\newlabel{structpu__out_a7697bc7a46cd1b8e37e337e708cb6023}{{10.27}{101}{Data Fields\relax }{section*.74}{}}
+\newlabel{structpu__out_a638b0de1837cfd441871d005d3ab2938}{{10.27}{101}{Data Fields\relax }{section*.74}{}}
+\newlabel{structpu__out_ac9e9e30b16e7d04c770460b8487fb09d}{{10.27}{101}{Data Fields\relax }{section*.74}{}}
+\newlabel{structpu__out_a366edbc4170d5c177908e178ff340828}{{10.27}{101}{Data Fields\relax }{section*.74}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.27.1}Detailed Description}{101}{subsection.10.27.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.28}sect Struct Reference}{101}{section.10.28}}
+\newlabel{structsect}{{10.28}{101}{sect Struct Reference\relax }{section.10.28}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.28.1}Detailed Description}{101}{subsection.10.28.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.29}snoop\discretionary {-}{}{}T Struct Reference}{102}{section.10.29}}
+\newlabel{structsnoopT}{{10.29}{102}{snoop\-T Struct Reference\relax }{section.10.29}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.30}S\discretionary {-}{}{}O\discretionary {-}{}{}L\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N Struct Reference}{102}{section.10.30}}
+\newlabel{structSOLUTION}{{10.30}{102}{S\-O\-L\-U\-T\-I\-O\-N Struct Reference\relax }{section.10.30}{}}
+\newlabel{structSOLUTION_a4fe8e9027171f2dc4031587d7fab6b87}{{10.30}{102}{Data Fields\relax }{section*.75}{}}
+\newlabel{structSOLUTION_a89ae453dfad0509468c39a62c303a63b}{{10.30}{102}{Data Fields\relax }{section*.75}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.30.1}Detailed Description}{102}{subsection.10.30.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.31}struct\discretionary {-}{}{}\_\discretionary {-}{}{}en Struct Reference}{102}{section.10.31}}
+\newlabel{structstruct__en}{{10.31}{102}{struct\-\_\-en Struct Reference\relax }{section.10.31}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.32}svm\discretionary {-}{}{}\_\discretionary {-}{}{}model Struct Reference}{102}{section.10.32}}
+\newlabel{structsvm__model}{{10.32}{102}{svm\-\_\-model Struct Reference\relax }{section.10.32}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.33}sw\discretionary {-}{}{}String Struct Reference}{102}{section.10.33}}
+\newlabel{structswString}{{10.33}{102}{sw\-String Struct Reference\relax }{section.10.33}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.34}Tree Struct Reference}{103}{section.10.34}}
+\newlabel{structTree}{{10.34}{103}{Tree Struct Reference\relax }{section.10.34}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.35}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution Struct Reference}{103}{section.10.35}}
+\newlabel{structTwoDfold__solution}{{10.35}{103}{Two\-Dfold\-\_\-solution Struct Reference\relax }{section.10.35}{}}
+\newlabel{structTwoDfold__solution_a298767110e07490d361bf7da920fd153}{{10.35}{103}{Data Fields\relax }{section*.76}{}}
+\newlabel{structTwoDfold__solution_a64fb28259cf925c3bba7b8d14592363a}{{10.35}{103}{Data Fields\relax }{section*.76}{}}
+\newlabel{structTwoDfold__solution_a3f65891d0c931f88440150bb32bcf753}{{10.35}{103}{Data Fields\relax }{section*.76}{}}
+\newlabel{structTwoDfold__solution_ac87e00bbdb13e0b6ef45c4f65608b416}{{10.35}{103}{Data Fields\relax }{section*.76}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.35.1}Detailed Description}{103}{subsection.10.35.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.36}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars Struct Reference}{104}{section.10.36}}
+\newlabel{structTwoDfold__vars}{{10.36}{104}{Two\-Dfold\-\_\-vars Struct Reference\relax }{section.10.36}{}}
+\newlabel{structTwoDfold__vars_ada74adef5f24b4b35c0b25da8223fe26}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_ade5c7e9337a458ae20bac75abdc52d64}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_aedf60b8b26dae05ad266d3e098d18208}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_a3596f3d4d320318c4b8428e2abc7ab56}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_ab9ee459ffbfb5d2c138a033516056cdc}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_a621ed2ab02116f3f8f5e7120dec429eb}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_a03f198a4abdb3b784486d2ba5c533aa4}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_aa11f5bcd8c4fe70a91c155c877c855d5}{{10.36}{104}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_a2eaa93316b6beb17531f0c078806036c}{{10.36}{105}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_a1a20cb06b58b75d1a3dbdbc8bc60d0a7}{{10.36}{105}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_a536525b98c1b633d4c5f2da4f8d78c18}{{10.36}{105}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_aa7abf73c3114cb5f0dc90e702fa9dd0f}{{10.36}{105}{Data Fields\relax }{section*.77}{}}
+\newlabel{structTwoDfold__vars_af1106e1a592e2dccc92b3452340549e0}{{10.36}{105}{Data Fields\relax }{section*.77}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.36.1}Detailed Description}{105}{subsection.10.36.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.37}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution Struct Reference}{105}{section.10.37}}
+\newlabel{structTwoDpfold__solution}{{10.37}{105}{Two\-Dpfold\-\_\-solution Struct Reference\relax }{section.10.37}{}}
+\newlabel{structTwoDpfold__solution_a40ad24e311b193866111623dd1331567}{{10.37}{105}{Data Fields\relax }{section*.78}{}}
+\newlabel{structTwoDpfold__solution_aeaad6adc35413c76a2e2f18d96a6508c}{{10.37}{105}{Data Fields\relax }{section*.78}{}}
+\newlabel{structTwoDpfold__solution_af0bf3071502b4a4fa81eeb6dfacef94c}{{10.37}{105}{Data Fields\relax }{section*.78}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.37.1}Detailed Description}{105}{subsection.10.37.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {10.38}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars Struct Reference}{106}{section.10.38}}
+\newlabel{structTwoDpfold__vars}{{10.38}{106}{Two\-Dpfold\-\_\-vars Struct Reference\relax }{section.10.38}{}}
+\newlabel{structTwoDpfold__vars_a67f37b8901b8d0a049c216d4c6241b07}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a32c15a1e31856588259556c9020f32c6}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a240311ae1e8e121441651d6101e187ac}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a7292b6cbc1ee5bacf55e842f316c4bef}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a8900622d91454d2d037242e290e42834}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_ac2d3e6abf0cb0e1df363904fc938076e}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a0699e194a797532c91b284ab10272384}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_aea15706d27b6b0fc19f5773919f43a8a}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a1221396d712bf76b7f35297f2ab35a9f}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_accef8eaa05fa57ca33aa22cbc7b7aaff}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_a7c9e9af6224d4696118e05835441863d}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\newlabel{structTwoDpfold__vars_affb913470783f9edb12a0bfc22466269}{{10.38}{106}{Data Fields\relax }{section*.79}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {10.38.1}Detailed Description}{107}{subsection.10.38.1}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {11}File Documentation}{109}{chapter.11}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {11.1}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dfold.h File Reference}{109}{section.11.1}}
+\newlabel{2Dfold_8h}{{11.1}{109}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dfold.h File Reference\relax }{section.11.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.2}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dpfold.h File Reference}{110}{section.11.2}}
+\newlabel{2Dpfold_8h}{{11.2}{110}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/2\-Dpfold.h File Reference\relax }{section.11.2}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.3}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/alifold.h File Reference}{111}{section.11.3}}
+\newlabel{alifold_8h}{{11.3}{111}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/alifold.h File Reference\relax }{section.11.3}{}}
+\newlabel{group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}{{11.3}{111}{Functions\relax }{section*.82}{}}
+\newlabel{group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}{{11.3}{111}{Functions\relax }{section*.82}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.1}Detailed Description}{112}{subsection.11.3.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.2}Function Documentation}{112}{subsection.11.3.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.2.1}update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params}{112}{subsubsection.11.3.2.1}}
+\newlabel{alifold_8h_ac484c6bd429bafbd353b91044508d8e9}{{11.3.2.1}{112}{update\-\_\-alifold\-\_\-params\relax }{subsubsection.11.3.2.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.4}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/cofold.h File Reference}{113}{section.11.4}}
+\newlabel{cofold_8h}{{11.4}{113}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/cofold.h File Reference\relax }{section.11.4}{}}
+\newlabel{group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f}{{11.4}{113}{Functions\relax }{section*.84}{}}
+\newlabel{group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a}{{11.4}{113}{Functions\relax }{section*.84}{}}
+\newlabel{group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}{{11.4}{113}{Functions\relax }{section*.84}{}}
+\newlabel{group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c}{{11.4}{113}{Functions\relax }{section*.84}{}}
+\gdef \LT@lxxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.4.1}Detailed Description}{114}{subsection.11.4.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.4.2}Function Documentation}{114}{subsection.11.4.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes}{114}{subsubsection.11.4.2.1}}
+\newlabel{cofold_8h_a4958b517c613e4d2afd5bce6c1060a79}{{11.4.2.1}{114}{get\-\_\-monomere\-\_\-mfes\relax }{subsubsection.11.4.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.2.2}initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold}{114}{subsubsection.11.4.2.2}}
+\newlabel{cofold_8h_afee0c32208aa2ac97338b6e3fbad7fa5}{{11.4.2.2}{114}{initialize\-\_\-cofold\relax }{subsubsection.11.4.2.2}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.5}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/convert\discretionary {-}{}{}\_\discretionary {-}{}{}epars.h File Reference}{114}{section.11.5}}
+\newlabel{convert__epars_8h}{{11.5}{114}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/convert\-\_\-epars.h File Reference\relax }{section.11.5}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.5.1}Detailed Description}{115}{subsection.11.5.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.6}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/data\discretionary {-}{}{}\_\discretionary {-}{}{}structures.h File Reference}{115}{section.11.6}}
+\newlabel{data__structures_8h}{{11.6}{115}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/data\-\_\-structures.h File Reference\relax }{section.11.6}{}}
+\newlabel{data__structures_8h_a05a5ffe718aa431d97419a12fb082379}{{11.6}{117}{Macros\relax }{section*.88}{}}
+\newlabel{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{{11.6}{117}{Macros\relax }{section*.88}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.6.1}Detailed Description}{117}{subsection.11.6.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.7}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.h File Reference}{117}{section.11.7}}
+\newlabel{dist__vars_8h}{{11.7}{117}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/dist\-\_\-vars.h File Reference\relax }{section.11.7}{}}
+\newlabel{dist__vars_8h_ac1605fe3448ad0a0b809c4fb8f6a854a}{{11.7}{117}{Variables\relax }{section*.90}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.7.1}Detailed Description}{118}{subsection.11.7.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.7.2}Variable Documentation}{118}{subsection.11.7.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.7.2.1}edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}{118}{subsubsection.11.7.2.1}}
+\newlabel{dist__vars_8h_aa03194c513af6b860e7b33e370b82bdb}{{11.7.2.1}{118}{edit\-\_\-backtrack\relax }{subsubsection.11.7.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.7.2.2}cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}{118}{subsubsection.11.7.2.2}}
+\newlabel{dist__vars_8h_ab65d8ff14c6937612212526a60f59b3c}{{11.7.2.2}{118}{cost\-\_\-matrix\relax }{subsubsection.11.7.2.2}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.8}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/duplex.h File Reference}{118}{section.11.8}}
+\newlabel{duplex_8h}{{11.8}{118}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/duplex.h File Reference\relax }{section.11.8}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.8.1}Detailed Description}{119}{subsection.11.8.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.9}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/edit\discretionary {-}{}{}\_\discretionary {-}{}{}cost.h File Reference}{119}{section.11.9}}
+\newlabel{edit__cost_8h}{{11.9}{119}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/edit\-\_\-cost.h File Reference\relax }{section.11.9}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.9.1}Detailed Description}{119}{subsection.11.9.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.10}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.h File Reference}{119}{section.11.10}}
+\newlabel{energy__const_8h}{{11.10}{119}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/energy\-\_\-const.h File Reference\relax }{section.11.10}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.10.1}Detailed Description}{120}{subsection.11.10.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.10.2}Macro Definition Documentation}{120}{subsection.11.10.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.1}G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T}{120}{subsubsection.11.10.2.1}}
+\newlabel{energy__const_8h_ab1e4a8d82f24ed5db01dde5f25269cf1}{{11.10.2.1}{120}{G\-A\-S\-C\-O\-N\-S\-T\relax }{subsubsection.11.10.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.2}K0}{120}{subsubsection.11.10.2.2}}
+\newlabel{energy__const_8h_a307c72605e3713972b4f4fb2d53ea20e}{{11.10.2.2}{120}{K0\relax }{subsubsection.11.10.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.3}I\discretionary {-}{}{}N\discretionary {-}{}{}F}{120}{subsubsection.11.10.2.3}}
+\newlabel{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{{11.10.2.3}{120}{I\-N\-F\relax }{subsubsection.11.10.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.4}F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N}{120}{subsubsection.11.10.2.4}}
+\newlabel{energy__const_8h_a5064c29ab2d1e20c2304b3c67562774d}{{11.10.2.4}{120}{F\-O\-R\-B\-I\-D\-D\-E\-N\relax }{subsubsection.11.10.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.5}B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S}{120}{subsubsection.11.10.2.5}}
+\newlabel{energy__const_8h_a96a9822fa134450197dd454b1478a193}{{11.10.2.5}{120}{B\-O\-N\-U\-S\relax }{subsubsection.11.10.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.6}N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S}{120}{subsubsection.11.10.2.6}}
+\newlabel{energy__const_8h_a5e75221c779d618eab81e096f37e32ce}{{11.10.2.6}{120}{N\-B\-P\-A\-I\-R\-S\relax }{subsubsection.11.10.2.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.7}T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N}{120}{subsubsection.11.10.2.7}}
+\newlabel{energy__const_8h_ae646250fd59311356c7e5722a81c3a96}{{11.10.2.7}{120}{T\-U\-R\-N\relax }{subsubsection.11.10.2.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.10.2.8}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P}{120}{subsubsection.11.10.2.8}}
+\newlabel{energy__const_8h_ad1bd6eabac419670ddd3c9ed82145988}{{11.10.2.8}{120}{M\-A\-X\-L\-O\-O\-P\relax }{subsubsection.11.10.2.8}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.11}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/findpath.h File Reference}{120}{section.11.11}}
+\newlabel{findpath_8h}{{11.11}{120}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/findpath.h File Reference\relax }{section.11.11}{}}
+\gdef \LT@lxxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.11.1}Detailed Description}{121}{subsection.11.11.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.11.2}Function Documentation}{121}{subsection.11.11.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.11.2.1}find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle}{121}{subsubsection.11.11.2.1}}
+\newlabel{findpath_8h_ad0e14268e309af773ecd1fce6244ee50}{{11.11.2.1}{121}{find\-\_\-saddle\relax }{subsubsection.11.11.2.1}{}}
+\gdef \LT@lxxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.11.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}path}{122}{subsubsection.11.11.2.2}}
+\newlabel{findpath_8h_a0ff35d65c892a3403af937c00a867ef9}{{11.11.2.2}{122}{get\-\_\-path\relax }{subsubsection.11.11.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.11.2.3}free\discretionary {-}{}{}\_\discretionary {-}{}{}path}{122}{subsubsection.11.11.2.3}}
+\newlabel{findpath_8h_a326e6d1640bbfd035e3869f5f4c188f7}{{11.11.2.3}{122}{free\-\_\-path\relax }{subsubsection.11.11.2.3}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.12}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold.h File Reference}{122}{section.11.12}}
+\newlabel{fold_8h}{{11.12}{122}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold.h File Reference\relax }{section.11.12}{}}
+\newlabel{group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7}{{11.12}{123}{Functions\relax }{section*.93}{}}
+\newlabel{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}{{11.12}{124}{Functions\relax }{section*.93}{}}
+\newlabel{fold_8h_a80c3c5fd35e7479704cc91d2d0367743}{{11.12}{124}{Variables\relax }{section*.94}{}}
+\newlabel{fold_8h_a6c5655c8b272e3e6cab74dd0f540294f}{{11.12}{124}{Variables\relax }{section*.94}{}}
+\newlabel{fold_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{{11.12}{124}{Variables\relax }{section*.94}{}}
+\newlabel{group__eval_ga567530678f6260a1a649a5beca5da4c5}{{11.12}{124}{Variables\relax }{section*.94}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.12.1}Detailed Description}{124}{subsection.11.12.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.12.2}Function Documentation}{124}{subsection.11.12.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.1}parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{124}{subsubsection.11.12.2.1}}
+\newlabel{fold_8h_a87b7869bd1d8dc79c60775c74e009e9b}{{11.12.2.1}{124}{parenthesis\-\_\-structure\relax }{subsubsection.11.12.2.1}{}}
+\gdef \LT@lxxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.2}parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker}{125}{subsubsection.11.12.2.2}}
+\newlabel{fold_8h_a325f3835c68f34fe833b2b7a5828857f}{{11.12.2.2}{125}{parenthesis\-\_\-zuker\relax }{subsubsection.11.12.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.3}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move}{125}{subsubsection.11.12.2.3}}
+\newlabel{fold_8h_a539ecaed89730f7644c202f304d7529b}{{11.12.2.3}{125}{energy\-\_\-of\-\_\-move\relax }{subsubsection.11.12.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.4}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{125}{subsubsection.11.12.2.4}}
+\newlabel{fold_8h_a49e0ee561be69faf0568213546f6a53f}{{11.12.2.4}{125}{energy\-\_\-of\-\_\-move\-\_\-pt\relax }{subsubsection.11.12.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.5}loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy}{125}{subsubsection.11.12.2.5}}
+\newlabel{fold_8h_a507d4fd93f4b398d793ba2402731388d}{{11.12.2.5}{125}{loop\-\_\-energy\relax }{subsubsection.11.12.2.5}{}}
+\gdef \LT@lxxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.6}assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db}{126}{subsubsection.11.12.2.6}}
+\newlabel{fold_8h_adaa59b81664e2e36cb9932e891558fae}{{11.12.2.6}{126}{assign\-\_\-plist\-\_\-from\-\_\-db\relax }{subsubsection.11.12.2.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.7}Loop\discretionary {-}{}{}Energy}{126}{subsubsection.11.12.2.7}}
+\newlabel{fold_8h_a2163034a25c6115d894b199e97e03f6c}{{11.12.2.7}{126}{Loop\-Energy\relax }{subsubsection.11.12.2.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.8}Hairpin\discretionary {-}{}{}E}{126}{subsubsection.11.12.2.8}}
+\newlabel{fold_8h_ab327ce11972f5ac069d52c8dedfdb700}{{11.12.2.8}{126}{Hairpin\-E\relax }{subsubsection.11.12.2.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.9}initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{126}{subsubsection.11.12.2.9}}
+\newlabel{fold_8h_ac3f0a28d9cb609d388b155445073fd20}{{11.12.2.9}{126}{initialize\-\_\-fold\relax }{subsubsection.11.12.2.9}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.10}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct}{126}{subsubsection.11.12.2.10}}
+\newlabel{fold_8h_ac2b37fea2145c94d925a3f33378ef87b}{{11.12.2.10}{126}{energy\-\_\-of\-\_\-struct\relax }{subsubsection.11.12.2.10}{}}
+\gdef \LT@lxxx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxxxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.11}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{127}{subsubsection.11.12.2.11}}
+\newlabel{fold_8h_a27ce6f68512d43bf1fe14a06c9d76d5c}{{11.12.2.11}{127}{energy\-\_\-of\-\_\-struct\-\_\-pt\relax }{subsubsection.11.12.2.11}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.12.2.12}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct}{127}{subsubsection.11.12.2.12}}
+\newlabel{fold_8h_a657222e2758c46bf13b416ef3032e417}{{11.12.2.12}{127}{energy\-\_\-of\-\_\-circ\-\_\-struct\relax }{subsubsection.11.12.2.12}{}}
+\gdef \LT@lxxxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.13}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.h File Reference}{128}{section.11.13}}
+\newlabel{fold__vars_8h}{{11.13}{128}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/fold\-\_\-vars.h File Reference\relax }{section.11.13}{}}
+\newlabel{fold__vars_8h_a0afc287c2464866d94858c39175154af}{{11.13}{129}{Variables\relax }{section*.96}{}}
+\newlabel{fold__vars_8h_abf380d09e4f1ab94fc6af57cf0ad5d32}{{11.13}{129}{Variables\relax }{section*.96}{}}
+\newlabel{fold__vars_8h_aa8d1c7b92489179e1eafa562b7bdd259}{{11.13}{129}{Variables\relax }{section*.96}{}}
+\newlabel{fold__vars_8h_af9202a1a09f5828dc731e2d9a10fa111}{{11.13}{129}{Variables\relax }{section*.96}{}}
+\newlabel{fold__vars_8h_af2763d55a74663a5e60652b8880baa5b}{{11.13}{129}{Variables\relax }{section*.96}{}}
+\gdef \LT@lxxxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\newlabel{fold__vars_8h_a25f2bdcdf56e813d288845484a13d704}{{11.13}{130}{Variables\relax }{section*.96}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.13.1}Detailed Description}{130}{subsection.11.13.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.13.2}Function Documentation}{130}{subsection.11.13.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.2.1}set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details}{130}{subsubsection.11.13.2.1}}
+\newlabel{fold__vars_8h_a4c3257186a796182462f18a5480ac8b3}{{11.13.2.1}{130}{set\-\_\-model\-\_\-details\relax }{subsubsection.11.13.2.1}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.13.3}Variable Documentation}{130}{subsection.11.13.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.1}no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs}{130}{subsubsection.11.13.3.1}}
+\newlabel{fold__vars_8h_a097eccaabd6ae8b4fef83cccff85bb5d}{{11.13.3.1}{130}{no\-Lonely\-Pairs\relax }{subsubsection.11.13.3.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.2}dangles}{130}{subsubsection.11.13.3.2}}
+\newlabel{fold__vars_8h_a72b511ed1201f7e23ec437e468790d74}{{11.13.3.2}{130}{dangles\relax }{subsubsection.11.13.3.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.3}tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop}{131}{subsubsection.11.13.3.3}}
+\newlabel{fold__vars_8h_a4f6265bdf0ead7ff4628a360adbfd77e}{{11.13.3.3}{131}{tetra\-\_\-loop\relax }{subsubsection.11.13.3.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.4}energy\discretionary {-}{}{}\_\discretionary {-}{}{}set}{131}{subsubsection.11.13.3.4}}
+\newlabel{fold__vars_8h_afb1ef1166da85092ae8a325e02dcae71}{{11.13.3.4}{131}{energy\-\_\-set\relax }{subsubsection.11.13.3.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.5}old\discretionary {-}{}{}Ali\discretionary {-}{}{}En}{131}{subsubsection.11.13.3.5}}
+\newlabel{fold__vars_8h_ac408868ba00671cbc7d1d535105af045}{{11.13.3.5}{131}{old\-Ali\-En\relax }{subsubsection.11.13.3.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.6}ribo}{131}{subsubsection.11.13.3.6}}
+\newlabel{fold__vars_8h_a0656afca1d2853f9ee6591172f5638de}{{11.13.3.6}{131}{ribo\relax }{subsubsection.11.13.3.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.7}Ribosum\discretionary {-}{}{}File}{131}{subsubsection.11.13.3.7}}
+\newlabel{fold__vars_8h_a5dbaa0cca2c8c82048a0f0e38e164944}{{11.13.3.7}{131}{Ribosum\-File\relax }{subsubsection.11.13.3.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.8}nonstandards}{131}{subsubsection.11.13.3.8}}
+\newlabel{fold__vars_8h_a2695d91cc535d09c2eae5c3884e2ec64}{{11.13.3.8}{131}{nonstandards\relax }{subsubsection.11.13.3.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.9}temperature}{131}{subsubsection.11.13.3.9}}
+\newlabel{fold__vars_8h_ab4b11c8d9c758430960896bc3fe82ead}{{11.13.3.9}{131}{temperature\relax }{subsubsection.11.13.3.9}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.10}james\discretionary {-}{}{}\_\discretionary {-}{}{}rule}{131}{subsubsection.11.13.3.10}}
+\newlabel{fold__vars_8h_af349001ad3b4d008d0051d935b1b6261}{{11.13.3.10}{131}{james\-\_\-rule\relax }{subsubsection.11.13.3.10}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.11}log\discretionary {-}{}{}M\discretionary {-}{}{}L}{132}{subsubsection.11.13.3.11}}
+\newlabel{fold__vars_8h_a80c3c5fd35e7479704cc91d2d0367743}{{11.13.3.11}{132}{log\-M\-L\relax }{subsubsection.11.13.3.11}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.12}cut\discretionary {-}{}{}\_\discretionary {-}{}{}point}{132}{subsubsection.11.13.3.12}}
+\newlabel{fold__vars_8h_ab9b2c3a37a5516614c06d0ab54b97cda}{{11.13.3.12}{132}{cut\-\_\-point\relax }{subsubsection.11.13.3.12}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.13}base\discretionary {-}{}{}\_\discretionary {-}{}{}pair}{132}{subsubsection.11.13.3.13}}
+\newlabel{fold__vars_8h_a0244a629b5ab4f58b77590c3dfd130dc}{{11.13.3.13}{132}{base\-\_\-pair\relax }{subsubsection.11.13.3.13}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.14}pr}{132}{subsubsection.11.13.3.14}}
+\newlabel{fold__vars_8h_a0f5757427fd5f2f79d6fca0081cd5a52}{{11.13.3.14}{132}{pr\relax }{subsubsection.11.13.3.14}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.15}iindx}{132}{subsubsection.11.13.3.15}}
+\newlabel{fold__vars_8h_a92089ae3a51b5d75a14ce9cc29cc8317}{{11.13.3.15}{132}{iindx\relax }{subsubsection.11.13.3.15}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.16}pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale}{132}{subsubsection.11.13.3.16}}
+\newlabel{fold__vars_8h_ad3b22044065acc6dee0af68931b52cfd}{{11.13.3.16}{132}{pf\-\_\-scale\relax }{subsubsection.11.13.3.16}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.17}do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}{132}{subsubsection.11.13.3.17}}
+\newlabel{fold__vars_8h_ad512b5dd4dbec60faccfe137bb474489}{{11.13.3.17}{132}{do\-\_\-backtrack\relax }{subsubsection.11.13.3.17}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.13.3.18}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type}{133}{subsubsection.11.13.3.18}}
+\newlabel{fold__vars_8h_a83bdb43472a259c71e69fa9f70f420c3}{{11.13.3.18}{133}{backtrack\-\_\-type\relax }{subsubsection.11.13.3.18}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.14}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/gquad.h File Reference}{133}{section.11.14}}
+\newlabel{gquad_8h}{{11.14}{133}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/gquad.h File Reference\relax }{section.11.14}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.14.1}Detailed Description}{133}{subsection.11.14.1}}
+\gdef \LT@lxxxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@lxxxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.14.2}Function Documentation}{134}{subsection.11.14.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.14.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}{134}{subsubsection.11.14.2.1}}
+\newlabel{gquad_8h_a8b0784c14fa1208d0aebbebdc1318b7a}{{11.14.2.1}{134}{get\-\_\-gquad\-\_\-matrix\relax }{subsubsection.11.14.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.14.2.2}parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad}{134}{subsubsection.11.14.2.2}}
+\newlabel{gquad_8h_ae41763215b9c64d2a7b67f0df8a28078}{{11.14.2.2}{134}{parse\-\_\-gquad\relax }{subsubsection.11.14.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.14.2.3}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}{134}{subsubsection.11.14.2.3}}
+\newlabel{gquad_8h_a54475a8eb898fa1e8af8ab5f5375f3be}{{11.14.2.3}{134}{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\relax }{subsubsection.11.14.2.3}{}}
+\gdef \LT@lxxxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.14.2.4}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L}{135}{subsubsection.11.14.2.4}}
+\newlabel{gquad_8h_a118ec7289f1936bd810be7fe50b98212}{{11.14.2.4}{135}{backtrack\-\_\-\-G\-Quad\-\_\-\-Int\-Loop\-\_\-\-L\relax }{subsubsection.11.14.2.4}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.15}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/inverse.h File Reference}{135}{section.11.15}}
+\newlabel{inverse_8h}{{11.15}{135}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/inverse.h File Reference\relax }{section.11.15}{}}
+\newlabel{group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}{{11.15}{135}{Variables\relax }{section*.99}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.15.1}Detailed Description}{135}{subsection.11.15.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.16}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}Lfold.h File Reference}{135}{section.11.16}}
+\newlabel{Lfold_8h}{{11.16}{135}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-Lfold.h File Reference\relax }{section.11.16}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.16.1}Detailed Description}{136}{subsection.11.16.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.17}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.h File Reference}{136}{section.11.17}}
+\newlabel{loop__energies_8h}{{11.17}{136}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/loop\-\_\-energies.h File Reference\relax }{section.11.17}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.17.1}Detailed Description}{136}{subsection.11.17.1}}
+\gdef \LT@lxxxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.17.2}Function Documentation}{137}{subsection.11.17.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.17.2.1}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}{137}{subsubsection.11.17.2.1}}
+\newlabel{loop__energies_8h_a3e5ad89f451254b1fe366d77aa8ff7bd}{{11.17.2.1}{137}{E\-\_\-\-Int\-Loop\relax }{subsubsection.11.17.2.1}{}}
+\gdef \LT@lxxxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.17.2.2}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}{138}{subsubsection.11.17.2.2}}
+\newlabel{loop__energies_8h_aa362183cf6db89a10cdb0f5c4bd180c6}{{11.17.2.2}{138}{E\-\_\-\-Hairpin\relax }{subsubsection.11.17.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.17.2.3}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}{138}{subsubsection.11.17.2.3}}
+\newlabel{loop__energies_8h_af5a6594eba9b2622cb47076650c69819}{{11.17.2.3}{138}{E\-\_\-\-Stem\relax }{subsubsection.11.17.2.3}{}}
+\gdef \LT@lxxxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.17.2.4}exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}{139}{subsubsection.11.17.2.4}}
+\newlabel{loop__energies_8h_a76cc24ec96199e04beddad13e7891e21}{{11.17.2.4}{139}{exp\-\_\-\-E\-\_\-\-Stem\relax }{subsubsection.11.17.2.4}{}}
+\gdef \LT@xc {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.17.2.5}exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}{140}{subsubsection.11.17.2.5}}
+\newlabel{loop__energies_8h_a0e128184bb097dc2da33706f33b555a6}{{11.17.2.5}{140}{exp\-\_\-\-E\-\_\-\-Hairpin\relax }{subsubsection.11.17.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.17.2.6}exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}{140}{subsubsection.11.17.2.6}}
+\newlabel{loop__energies_8h_aa5e98e524e2a41e290b942b09544bc9e}{{11.17.2.6}{140}{exp\-\_\-\-E\-\_\-\-Int\-Loop\relax }{subsubsection.11.17.2.6}{}}
+\gdef \LT@xci {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.18}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}L\discretionary {-}{}{}Pfold.h File Reference}{141}{section.11.18}}
+\newlabel{LPfold_8h}{{11.18}{141}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-L\-Pfold.h File Reference\relax }{section.11.18}{}}
+\newlabel{group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}{{11.18}{142}{Functions\relax }{section*.108}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.18.1}Detailed Description}{142}{subsection.11.18.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.18.2}Function Documentation}{142}{subsection.11.18.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.18.2.1}init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P}{142}{subsubsection.11.18.2.1}}
+\newlabel{LPfold_8h_ae85bf55053e9fb295208be322e0fa07a}{{11.18.2.1}{142}{init\-\_\-pf\-\_\-fold\-L\-P\relax }{subsubsection.11.18.2.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.19}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A.h File Reference}{142}{section.11.19}}
+\newlabel{MEA_8h}{{11.19}{142}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-M\-E\-A.h File Reference\relax }{section.11.19}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.19.1}Detailed Description}{143}{subsection.11.19.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.19.2}Function Documentation}{143}{subsection.11.19.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.19.2.1}M\discretionary {-}{}{}E\discretionary {-}{}{}A}{143}{subsubsection.11.19.2.1}}
+\newlabel{MEA_8h_a396ec6144c6a74fcbab4cea6b42d76c3}{{11.19.2.1}{143}{M\-E\-A\relax }{subsubsection.11.19.2.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.20}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/mm.h File Reference}{144}{section.11.20}}
+\newlabel{mm_8h}{{11.20}{144}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/mm.h File Reference\relax }{section.11.20}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.20.1}Detailed Description}{144}{subsection.11.20.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.21}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/naview.h File Reference}{144}{section.11.21}}
+\newlabel{naview_8h}{{11.21}{144}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/naview.h File Reference\relax }{section.11.21}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.22}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/params.h File Reference}{145}{section.11.22}}
+\newlabel{params_8h}{{11.22}{145}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/params.h File Reference\relax }{section.11.22}{}}
+\newlabel{group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}{{11.22}{146}{Functions\relax }{section*.110}{}}
+\newlabel{group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}{{11.22}{146}{Functions\relax }{section*.110}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.23}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func.h File Reference}{146}{section.11.23}}
+\newlabel{part__func_8h}{{11.23}{146}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func.h File Reference\relax }{section.11.23}{}}
+\newlabel{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}{{11.23}{147}{Functions\relax }{section*.111}{}}
+\newlabel{part__func_8h_a189e2a1ec6cc32c53ea72f7543b0441e}{{11.23}{147}{Functions\relax }{section*.111}{}}
+\newlabel{part__func_8h_a1f562d463c14d4703d9656056200eb38}{{11.23}{147}{Functions\relax }{section*.111}{}}
+\newlabel{part__func_8h_a49962ad6242b8c628de6ca16bb831c1d}{{11.23}{147}{Functions\relax }{section*.111}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.23.1}Detailed Description}{148}{subsection.11.23.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.23.2}Function Documentation}{148}{subsection.11.23.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.23.2.1}init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{148}{subsubsection.11.23.2.1}}
+\newlabel{part__func_8h_a15176e23eceeff8c7d14eabcfec8a2af}{{11.23.2.1}{148}{init\-\_\-pf\-\_\-fold\relax }{subsubsection.11.23.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.23.2.2}centroid}{148}{subsubsection.11.23.2.2}}
+\newlabel{part__func_8h_ae89a63bd83e75a80b2ba36d20b31ce81}{{11.23.2.2}{148}{centroid\relax }{subsubsection.11.23.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.23.2.3}mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist}{148}{subsubsection.11.23.2.3}}
+\newlabel{part__func_8h_ae9556ba7ded44fe2321b6f67c3fc02a3}{{11.23.2.3}{148}{mean\-\_\-bp\-\_\-dist\relax }{subsubsection.11.23.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.23.2.4}exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy}{148}{subsubsection.11.23.2.4}}
+\newlabel{part__func_8h_a68ba6f3a48e08ca131ab54621ce3a2d7}{{11.23.2.4}{148}{exp\-Loop\-Energy\relax }{subsubsection.11.23.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.23.2.5}exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy}{148}{subsubsection.11.23.2.5}}
+\newlabel{part__func_8h_a7b6ab474cc80accc48010ccfcc59f96b}{{11.23.2.5}{148}{exp\-Hairpin\-Energy\relax }{subsubsection.11.23.2.5}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.24}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.h File Reference}{148}{section.11.24}}
+\newlabel{part__func__co_8h}{{11.24}{148}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-co.h File Reference\relax }{section.11.24}{}}
+\newlabel{group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247}{{11.24}{149}{Functions\relax }{section*.113}{}}
+\newlabel{group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c}{{11.24}{150}{Variables\relax }{section*.114}{}}
+\newlabel{group__pf__cofold_gac2d1851a710a8561390861155ca988fe}{{11.24}{150}{Variables\relax }{section*.114}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.24.1}Detailed Description}{150}{subsection.11.24.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.24.2}Function Documentation}{150}{subsection.11.24.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.24.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}plist}{150}{subsubsection.11.24.2.1}}
+\newlabel{part__func__co_8h_a334de3c96e2186abfbdc0eaea6d08b14}{{11.24.2.1}{150}{get\-\_\-plist\relax }{subsubsection.11.24.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.24.2.2}init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{150}{subsubsection.11.24.2.2}}
+\newlabel{part__func__co_8h_aa12dda9dd6179cdd22bcce87c0682c07}{{11.24.2.2}{150}{init\-\_\-co\-\_\-pf\-\_\-fold\relax }{subsubsection.11.24.2.2}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.25}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}up.h File Reference}{150}{section.11.25}}
+\newlabel{part__func__up_8h}{{11.25}{150}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/part\-\_\-func\-\_\-up.h File Reference\relax }{section.11.25}{}}
+\newlabel{group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f}{{11.25}{151}{Functions\relax }{section*.115}{}}
+\newlabel{group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8}{{11.25}{151}{Functions\relax }{section*.115}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.25.1}Detailed Description}{151}{subsection.11.25.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.26}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.h File Reference}{152}{section.11.26}}
+\newlabel{plot__layouts_8h}{{11.26}{152}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/plot\-\_\-layouts.h File Reference\relax }{section.11.26}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.26.1}Detailed Description}{153}{subsection.11.26.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.26.2}Macro Definition Documentation}{153}{subsection.11.26.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.26.2.1}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}I\discretionary {-}{}{}M\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}E}{153}{subsubsection.11.26.2.1}}
+\newlabel{plot__layouts_8h_ae6d17b9f0a53cf5205a9181e0f8422e9}{{11.26.2.1}{153}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-S\-I\-M\-P\-L\-E\relax }{subsubsection.11.26.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.26.2.2}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}V\discretionary {-}{}{}I\discretionary {-}{}{}E\discretionary {-}{}{}W}{153}{subsubsection.11.26.2.2}}
+\newlabel{plot__layouts_8h_a94d4c863ecac2f220f76658afb92f964}{{11.26.2.2}{153}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-N\-A\-V\-I\-E\-W\relax }{subsubsection.11.26.2.2}{}}
+\gdef \LT@xcii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xciii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.26.2.3}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}C\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}R}{154}{subsubsection.11.26.2.3}}
+\newlabel{plot__layouts_8h_a8c9eac631348da92136c8363ecdd9fb9}{{11.26.2.3}{154}{V\-R\-N\-A\-\_\-\-P\-L\-O\-T\-\_\-\-T\-Y\-P\-E\-\_\-\-C\-I\-R\-C\-U\-L\-A\-R\relax }{subsubsection.11.26.2.3}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.26.3}Function Documentation}{154}{subsection.11.26.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.26.3.1}simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}{154}{subsubsection.11.26.3.1}}
+\newlabel{plot__layouts_8h_af4b9173e7d3fd361c3c85e6def194123}{{11.26.3.1}{154}{simple\-\_\-xy\-\_\-coordinates\relax }{subsubsection.11.26.3.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.26.3.2}simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}{154}{subsubsection.11.26.3.2}}
+\newlabel{plot__layouts_8h_ac4ea13d35308f09940178d2b05a248c2}{{11.26.3.2}{154}{simple\-\_\-circplot\-\_\-coordinates\relax }{subsubsection.11.26.3.2}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.26.4}Variable Documentation}{155}{subsection.11.26.4}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.26.4.1}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type}{155}{subsubsection.11.26.4.1}}
+\newlabel{plot__layouts_8h_a5964c4581431b098b80027d6e14dcdd4}{{11.26.4.1}{155}{rna\-\_\-plot\-\_\-type\relax }{subsubsection.11.26.4.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.27}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/profiledist.h File Reference}{155}{section.11.27}}
+\newlabel{profiledist_8h}{{11.27}{155}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/profiledist.h File Reference\relax }{section.11.27}{}}
+\gdef \LT@xciv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\newlabel{profiledist_8h_a8e0b4fe3698b3502945116ecc0ba6160}{{11.27}{156}{Functions\relax }{section*.119}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.27.1}Function Documentation}{156}{subsection.11.27.1}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.27.1.1}profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{156}{subsubsection.11.27.1.1}}
+\newlabel{profiledist_8h_abe75e90e00a1e5dd8862944ed53dad5d}{{11.27.1.1}{156}{profile\-\_\-edit\-\_\-distance\relax }{subsubsection.11.27.1.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.27.1.2}Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{156}{subsubsection.11.27.1.2}}
+\newlabel{profiledist_8h_a8822fd5268be115c6e6cdc92009436cc}{{11.27.1.2}{156}{Make\-\_\-bp\-\_\-profile\-\_\-bppm\relax }{subsubsection.11.27.1.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.27.1.3}free\discretionary {-}{}{}\_\discretionary {-}{}{}profile}{156}{subsubsection.11.27.1.3}}
+\newlabel{profiledist_8h_a9b0b84a5a45761bf42d7c835dcdb3b85}{{11.27.1.3}{156}{free\-\_\-profile\relax }{subsubsection.11.27.1.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.27.1.4}Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile}{156}{subsubsection.11.27.1.4}}
+\newlabel{profiledist_8h_a904c7eaf4a2413567c00ac4891749d18}{{11.27.1.4}{156}{Make\-\_\-bp\-\_\-profile\relax }{subsubsection.11.27.1.4}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.28}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.h File Reference}{157}{section.11.28}}
+\newlabel{PS__dot_8h}{{11.28}{157}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-P\-S\-\_\-dot.h File Reference\relax }{section.11.28}{}}
+\gdef \LT@xcv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xcvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.28.1}Detailed Description}{158}{subsection.11.28.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.28.2}Function Documentation}{158}{subsection.11.28.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.1}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{158}{subsubsection.11.28.2.1}}
+\newlabel{PS__dot_8h_a0873c7cc4cd7a11c9a2cea19dde7e9c9}{{11.28.2.1}{158}{P\-S\-\_\-rna\-\_\-plot\relax }{subsubsection.11.28.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.2}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a}{158}{subsubsection.11.28.2.2}}
+\newlabel{PS__dot_8h_a47856b2504b566588785597b6ebb8271}{{11.28.2.2}{158}{P\-S\-\_\-rna\-\_\-plot\-\_\-a\relax }{subsubsection.11.28.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.3}gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}{158}{subsubsection.11.28.2.3}}
+\newlabel{PS__dot_8h_a70834bc8c0aad4fe6824ff76ccb8f329}{{11.28.2.3}{158}{gml\-R\-N\-A\relax }{subsubsection.11.28.2.3}{}}
+\gdef \LT@xcvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xcviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@xcix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@c {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.4}ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{159}{subsubsection.11.28.2.4}}
+\newlabel{PS__dot_8h_add368528755f9a830727b680243541df}{{11.28.2.4}{159}{ssv\-\_\-rna\-\_\-plot\relax }{subsubsection.11.28.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.5}svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{159}{subsubsection.11.28.2.5}}
+\newlabel{PS__dot_8h_ae7853539b5df98f294b4af434e979304}{{11.28.2.5}{159}{svg\-\_\-rna\-\_\-plot\relax }{subsubsection.11.28.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.6}xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{159}{subsubsection.11.28.2.6}}
+\newlabel{PS__dot_8h_a2f6d5953e6a323df898896b8d6614483}{{11.28.2.6}{159}{xrna\-\_\-plot\relax }{subsubsection.11.28.2.6}{}}
+\gdef \LT@ci {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.7}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list}{160}{subsubsection.11.28.2.7}}
+\newlabel{PS__dot_8h_a00ea223b5cf02eb2faae5ff29f0d5e12}{{11.28.2.7}{160}{P\-S\-\_\-dot\-\_\-plot\-\_\-list\relax }{subsubsection.11.28.2.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.8}ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln}{160}{subsubsection.11.28.2.8}}
+\newlabel{PS__dot_8h_aab48d4dac655d688abe921389ac2847c}{{11.28.2.8}{160}{ali\-P\-S\-\_\-color\-\_\-aln\relax }{subsubsection.11.28.2.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.28.2.9}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{160}{subsubsection.11.28.2.9}}
+\newlabel{PS__dot_8h_a689a97a7e3b8a2df14728b8204d9d57b}{{11.28.2.9}{160}{P\-S\-\_\-dot\-\_\-plot\relax }{subsubsection.11.28.2.9}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.29}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/read\discretionary {-}{}{}\_\discretionary {-}{}{}epars.h File Reference}{160}{section.11.29}}
+\newlabel{read__epars_8h}{{11.29}{160}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/read\-\_\-epars.h File Reference\relax }{section.11.29}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.30}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.h File Reference}{161}{section.11.30}}
+\newlabel{RNAstruct_8h}{{11.30}{161}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\-R\-N\-Astruct.h File Reference\relax }{section.11.30}{}}
+\newlabel{RNAstruct_8h_a3f31e0e48125601bfa57b52f8b038e8e}{{11.30}{161}{Variables\relax }{section*.123}{}}
+\newlabel{RNAstruct_8h_a8218c0d581a3fba2a1a56a196abe19a5}{{11.30}{161}{Variables\relax }{section*.123}{}}
+\newlabel{RNAstruct_8h_aef14e2f8ab3f61e8e659ba6b9003b08a}{{11.30}{161}{Variables\relax }{section*.123}{}}
+\newlabel{RNAstruct_8h_a439fcb9f8d4f9f4d2227fde5fbfecb30}{{11.30}{161}{Variables\relax }{section*.123}{}}
+\newlabel{RNAstruct_8h_add2f952597e02d66e1116a9d11d252d6}{{11.30}{161}{Variables\relax }{section*.123}{}}
+\newlabel{RNAstruct_8h_a6341cbb704924824e0236c1dce791032}{{11.30}{161}{Variables\relax }{section*.123}{}}
+\gdef \LT@cii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@ciii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@civ {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.30.1}Detailed Description}{162}{subsection.11.30.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.30.2}Function Documentation}{162}{subsection.11.30.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.1}b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T}{162}{subsubsection.11.30.2.1}}
+\newlabel{RNAstruct_8h_a07b7e90e712559a1992fba3ac6d21bbd}{{11.30.2.1}{162}{b2\-H\-I\-T\relax }{subsubsection.11.30.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.2}b2\discretionary {-}{}{}C}{162}{subsubsection.11.30.2.2}}
+\newlabel{RNAstruct_8h_a9c80d92391f2833549a8b6dac92233f0}{{11.30.2.2}{162}{b2\-C\relax }{subsubsection.11.30.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.3}b2\discretionary {-}{}{}Shapiro}{162}{subsubsection.11.30.2.3}}
+\newlabel{RNAstruct_8h_a5cd2feb367feeacad0c03cb7ddba5f10}{{11.30.2.3}{162}{b2\-Shapiro\relax }{subsubsection.11.30.2.3}{}}
+\gdef \LT@cv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.4}add\discretionary {-}{}{}\_\discretionary {-}{}{}root}{163}{subsubsection.11.30.2.4}}
+\newlabel{RNAstruct_8h_a880d33066dd95441e5fbb73c57ed1c3e}{{11.30.2.4}{163}{add\-\_\-root\relax }{subsubsection.11.30.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.5}expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro}{163}{subsubsection.11.30.2.5}}
+\newlabel{RNAstruct_8h_abe3d815b420dc4553bfb23511198b4c6}{{11.30.2.5}{163}{expand\-\_\-\-Shapiro\relax }{subsubsection.11.30.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.6}expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}{163}{subsubsection.11.30.2.6}}
+\newlabel{RNAstruct_8h_a78d73cd54a068ef2812812771cdddc6f}{{11.30.2.6}{163}{expand\-\_\-\-Full\relax }{subsubsection.11.30.2.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.7}unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}{163}{subsubsection.11.30.2.7}}
+\newlabel{RNAstruct_8h_a260c4b622093b76a883bf96628280de1}{{11.30.2.7}{163}{unexpand\-\_\-\-Full\relax }{subsubsection.11.30.2.7}{}}
+\gdef \LT@cix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.8}unweight}{164}{subsubsection.11.30.2.8}}
+\newlabel{RNAstruct_8h_a09a80253ac7b6bae606871ba7c6e5136}{{11.30.2.8}{164}{unweight\relax }{subsubsection.11.30.2.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.9}unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F}{164}{subsubsection.11.30.2.9}}
+\newlabel{RNAstruct_8h_a1054c4477d53b31d79d4cb132100e87a}{{11.30.2.9}{164}{unexpand\-\_\-aligned\-\_\-\-F\relax }{subsubsection.11.30.2.9}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.30.2.10}parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{164}{subsubsection.11.30.2.10}}
+\newlabel{RNAstruct_8h_a3c79042e6bf6f01706bf30ec9e69e8ac}{{11.30.2.10}{164}{parse\-\_\-structure\relax }{subsubsection.11.30.2.10}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.31}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/stringdist.h File Reference}{164}{section.11.31}}
+\newlabel{stringdist_8h}{{11.31}{164}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/stringdist.h File Reference\relax }{section.11.31}{}}
+\gdef \LT@cxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.31.1}Detailed Description}{165}{subsection.11.31.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.31.2}Function Documentation}{165}{subsection.11.31.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.31.2.1}Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String}{165}{subsubsection.11.31.2.1}}
+\newlabel{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{{11.31.2.1}{165}{Make\-\_\-sw\-String\relax }{subsubsection.11.31.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.31.2.2}string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{165}{subsubsection.11.31.2.2}}
+\newlabel{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{{11.31.2.2}{165}{string\-\_\-edit\-\_\-distance\relax }{subsubsection.11.31.2.2}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.32}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/subopt.h File Reference}{166}{section.11.32}}
+\newlabel{subopt_8h}{{11.32}{166}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/subopt.h File Reference\relax }{section.11.32}{}}
+\newlabel{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{{11.32}{166}{Functions\relax }{section*.125}{}}
+\newlabel{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{{11.32}{166}{Variables\relax }{section*.126}{}}
+\newlabel{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{{11.32}{166}{Variables\relax }{section*.126}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.32.1}Detailed Description}{167}{subsection.11.32.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.33}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/treedist.h File Reference}{167}{section.11.33}}
+\newlabel{treedist_8h}{{11.33}{167}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/treedist.h File Reference\relax }{section.11.33}{}}
+\newlabel{treedist_8h_a21ad4de3ba4055aeef08b28c9ad48894}{{11.33}{167}{Functions\relax }{section*.127}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.33.1}Detailed Description}{167}{subsection.11.33.1}}
+\gdef \LT@cxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.33.2}Function Documentation}{168}{subsection.11.33.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.33.2.1}make\discretionary {-}{}{}\_\discretionary {-}{}{}tree}{168}{subsubsection.11.33.2.1}}
+\newlabel{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{{11.33.2.1}{168}{make\-\_\-tree\relax }{subsubsection.11.33.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.33.2.2}tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{168}{subsubsection.11.33.2.2}}
+\newlabel{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{{11.33.2.2}{168}{tree\-\_\-edit\-\_\-distance\relax }{subsubsection.11.33.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.33.2.3}free\discretionary {-}{}{}\_\discretionary {-}{}{}tree}{168}{subsubsection.11.33.2.3}}
+\newlabel{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{{11.33.2.3}{168}{free\-\_\-tree\relax }{subsubsection.11.33.2.3}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.34}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/utils.h File Reference}{168}{section.11.34}}
+\newlabel{utils_8h}{{11.34}{168}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/utils.h File Reference\relax }{section.11.34}{}}
+\newlabel{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}{{11.34}{170}{Functions\relax }{section*.129}{}}
+\newlabel{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}{{11.34}{170}{Functions\relax }{section*.129}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.34.1}Detailed Description}{171}{subsection.11.34.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.34.2}Macro Definition Documentation}{171}{subsection.11.34.2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.1}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R}{171}{subsubsection.11.34.2.1}}
+\newlabel{utils_8h_ad403c9ea58f1836689404c2931419c8c}{{11.34.2.1}{171}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R\relax }{subsubsection.11.34.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.2}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T}{171}{subsubsection.11.34.2.2}}
+\newlabel{utils_8h_a72f3c6ca5c83d2b9baed2922d19c403d}{{11.34.2.2}{171}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T\relax }{subsubsection.11.34.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.3}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}{171}{subsubsection.11.34.2.3}}
+\newlabel{utils_8h_a8e3241b321c9c1a78a69e59e2e019a71}{{11.34.2.3}{171}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C\relax }{subsubsection.11.34.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.4}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}{171}{subsubsection.11.34.2.4}}
+\newlabel{utils_8h_a2f0d8069e93d3ac54d9320d6bdb8e7e7}{{11.34.2.4}{171}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R\relax }{subsubsection.11.34.2.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.5}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E}{171}{subsubsection.11.34.2.5}}
+\newlabel{utils_8h_a8566d6787972100e68b5a2a159b4cf45}{{11.34.2.5}{171}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E\relax }{subsubsection.11.34.2.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.6}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.6}}
+\newlabel{utils_8h_ac08a9df45b9721b97a47dbfe7a6e5f85}{{11.34.2.6}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\relax }{subsubsection.11.34.2.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.7}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}U\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N}{172}{subsubsection.11.34.2.7}}
+\newlabel{utils_8h_a086742158293217a46ae2f71bb296937}{{11.34.2.7}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N\relax }{subsubsection.11.34.2.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.8}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.8}}
+\newlabel{utils_8h_a7a2e8c50a0c7ce82e60da1016e1367fd}{{11.34.2.8}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T\relax }{subsubsection.11.34.2.8}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.9}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N}{172}{subsubsection.11.34.2.9}}
+\newlabel{utils_8h_a0de536599b881c787b0943a2671da476}{{11.34.2.9}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N\relax }{subsubsection.11.34.2.9}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.10}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E\discretionary {-}{}{}S}{172}{subsubsection.11.34.2.10}}
+\newlabel{utils_8h_ab4db885222b3b69608310d7c7e63e286}{{11.34.2.10}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S\relax }{subsubsection.11.34.2.10}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.11}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}{172}{subsubsection.11.34.2.11}}
+\newlabel{utils_8h_a305474b93ccb79ae4c7754016a8ddd84}{{11.34.2.11}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\relax }{subsubsection.11.34.2.11}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.12}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}S}{172}{subsubsection.11.34.2.12}}
+\newlabel{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}{{11.34.2.12}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S\relax }{subsubsection.11.34.2.12}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.13}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.13}}
+\newlabel{utils_8h_af2062e0eeefffd3ed639af460b3d4fab}{{11.34.2.13}{172}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T\relax }{subsubsection.11.34.2.13}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.14}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E}{172}{subsubsection.11.34.2.14}}
+\newlabel{utils_8h_a4e8d7120619b21df0309af425acbc9a2}{{11.34.2.14}{172}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E\relax }{subsubsection.11.34.2.14}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.15}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.15}}
+\newlabel{utils_8h_a55e1d16fd693ae9ec8e987b0750da804}{{11.34.2.15}{172}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T\relax }{subsubsection.11.34.2.15}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.16}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X}{172}{subsubsection.11.34.2.16}}
+\newlabel{utils_8h_a077c56550c915d4516d84a5ed8d051f4}{{11.34.2.16}{172}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X\relax }{subsubsection.11.34.2.16}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.17}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}{172}{subsubsection.11.34.2.17}}
+\newlabel{utils_8h_a0512d790f738742cbdcf3f7c87b46f48}{{11.34.2.17}{172}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K\relax }{subsubsection.11.34.2.17}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.18}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}{173}{subsubsection.11.34.2.18}}
+\newlabel{utils_8h_aa20bfca4bb2903c8548000a33d7bbb53}{{11.34.2.18}{173}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K\relax }{subsubsection.11.34.2.18}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.19}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}{173}{subsubsection.11.34.2.19}}
+\newlabel{utils_8h_a7d725ef525b29891abef3f1ed42599a4}{{11.34.2.19}{173}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E\relax }{subsubsection.11.34.2.19}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.20}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}{173}{subsubsection.11.34.2.20}}
+\newlabel{utils_8h_a08d12a9a846ea593b7171d277c9f033f}{{11.34.2.20}{173}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R\relax }{subsubsection.11.34.2.20}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.21}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}{173}{subsubsection.11.34.2.21}}
+\newlabel{utils_8h_a0a697f77a6fbb10f34e16fa68ed9e655}{{11.34.2.21}{173}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L\relax }{subsubsection.11.34.2.21}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.22}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G}{173}{subsubsection.11.34.2.22}}
+\newlabel{utils_8h_a99dc6b23dc4080a76e2ed1a81c20e94d}{{11.34.2.22}{173}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G\relax }{subsubsection.11.34.2.22}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.23}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}P\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}{173}{subsubsection.11.34.2.23}}
+\newlabel{utils_8h_abec89c09874528c6cb73140a4c3d86d7}{{11.34.2.23}{173}{V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E\relax }{subsubsection.11.34.2.23}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.24}M\discretionary {-}{}{}I\discretionary {-}{}{}N2}{173}{subsubsection.11.34.2.24}}
+\newlabel{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{{11.34.2.24}{173}{M\-I\-N2\relax }{subsubsection.11.34.2.24}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.25}M\discretionary {-}{}{}A\discretionary {-}{}{}X2}{173}{subsubsection.11.34.2.25}}
+\newlabel{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{{11.34.2.25}{173}{M\-A\-X2\relax }{subsubsection.11.34.2.25}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.26}M\discretionary {-}{}{}I\discretionary {-}{}{}N3}{173}{subsubsection.11.34.2.26}}
+\newlabel{utils_8h_a721b8d5f3abef17f10293f1f7f8c958e}{{11.34.2.26}{173}{M\-I\-N3\relax }{subsubsection.11.34.2.26}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.27}M\discretionary {-}{}{}A\discretionary {-}{}{}X3}{173}{subsubsection.11.34.2.27}}
+\newlabel{utils_8h_a8d577123d2e66d2b7d0bf9af6e172b93}{{11.34.2.27}{173}{M\-A\-X3\relax }{subsubsection.11.34.2.27}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.28}X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R}{173}{subsubsection.11.34.2.28}}
+\newlabel{utils_8h_a03943706e48069237cd57f2d35ca987e}{{11.34.2.28}{173}{X\-S\-T\-R\relax }{subsubsection.11.34.2.28}{}}
+\gdef \LT@cxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.29}S\discretionary {-}{}{}T\discretionary {-}{}{}R}{174}{subsubsection.11.34.2.29}}
+\newlabel{utils_8h_a6388870e639eee9c0a69446876f1f8cc}{{11.34.2.29}{174}{S\-T\-R\relax }{subsubsection.11.34.2.29}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.30}F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}{174}{subsubsection.11.34.2.30}}
+\newlabel{utils_8h_afb228174279df9486a5cb56ac0bc79a3}{{11.34.2.30}{174}{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H\relax }{subsubsection.11.34.2.30}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.2.31}F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}{174}{subsubsection.11.34.2.31}}
+\newlabel{utils_8h_a33c3b1826b8e2739f09f111ec719ded5}{{11.34.2.31}{174}{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H\relax }{subsubsection.11.34.2.31}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.34.3}Function Documentation}{174}{subsection.11.34.3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.1}space}{174}{subsubsection.11.34.3.1}}
+\newlabel{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{{11.34.3.1}{174}{space\relax }{subsubsection.11.34.3.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.2}xrealloc}{174}{subsubsection.11.34.3.2}}
+\newlabel{utils_8h_a9037ada838835b1b9db41581a021b0c8}{{11.34.3.2}{174}{xrealloc\relax }{subsubsection.11.34.3.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.3}nrerror}{174}{subsubsection.11.34.3.3}}
+\newlabel{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{{11.34.3.3}{174}{nrerror\relax }{subsubsection.11.34.3.3}{}}
+\gdef \LT@cxx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.4}warn\discretionary {-}{}{}\_\discretionary {-}{}{}user}{175}{subsubsection.11.34.3.4}}
+\newlabel{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{{11.34.3.4}{175}{warn\-\_\-user\relax }{subsubsection.11.34.3.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.5}urn}{175}{subsubsection.11.34.3.5}}
+\newlabel{utils_8h_aaa328491c84996e445d027fde9800f2e}{{11.34.3.5}{175}{urn\relax }{subsubsection.11.34.3.5}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.6}int\discretionary {-}{}{}\_\discretionary {-}{}{}urn}{175}{subsubsection.11.34.3.6}}
+\newlabel{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}{{11.34.3.6}{175}{int\-\_\-urn\relax }{subsubsection.11.34.3.6}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.7}time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp}{175}{subsubsection.11.34.3.7}}
+\newlabel{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}{{11.34.3.7}{175}{time\-\_\-stamp\relax }{subsubsection.11.34.3.7}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.8}random\discretionary {-}{}{}\_\discretionary {-}{}{}string}{175}{subsubsection.11.34.3.8}}
+\newlabel{utils_8h_a1b95eac365a021572e1c37e5993a89be}{{11.34.3.8}{175}{random\-\_\-string\relax }{subsubsection.11.34.3.8}{}}
+\gdef \LT@cxxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.9}hamming}{176}{subsubsection.11.34.3.9}}
+\newlabel{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{{11.34.3.9}{176}{hamming\relax }{subsubsection.11.34.3.9}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.10}hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound}{176}{subsubsection.11.34.3.10}}
+\newlabel{utils_8h_a96d3c36717d624514055ce201cab1542}{{11.34.3.10}{176}{hamming\-\_\-bound\relax }{subsubsection.11.34.3.10}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.11}get\discretionary {-}{}{}\_\discretionary {-}{}{}line}{176}{subsubsection.11.34.3.11}}
+\newlabel{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}{{11.34.3.11}{176}{get\-\_\-line\relax }{subsubsection.11.34.3.11}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.12}get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line}{176}{subsubsection.11.34.3.12}}
+\newlabel{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{{11.34.3.12}{176}{get\-\_\-input\-\_\-line\relax }{subsubsection.11.34.3.12}{}}
+\gdef \LT@cxxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.13}read\discretionary {-}{}{}\_\discretionary {-}{}{}record}{177}{subsubsection.11.34.3.13}}
+\newlabel{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{{11.34.3.13}{177}{read\-\_\-record\relax }{subsubsection.11.34.3.13}{}}
+\gdef \LT@cxxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.14}pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{178}{subsubsection.11.34.3.14}}
+\newlabel{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{{11.34.3.14}{178}{pack\-\_\-structure\relax }{subsubsection.11.34.3.14}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.15}unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{178}{subsubsection.11.34.3.15}}
+\newlabel{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}{{11.34.3.15}{178}{unpack\-\_\-structure\relax }{subsubsection.11.34.3.15}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.16}make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}{178}{subsubsection.11.34.3.16}}
+\newlabel{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{{11.34.3.16}{178}{make\-\_\-pair\-\_\-table\relax }{subsubsection.11.34.3.16}{}}
+\gdef \LT@cxxx {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.17}copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}{179}{subsubsection.11.34.3.17}}
+\newlabel{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}{{11.34.3.17}{179}{copy\-\_\-pair\-\_\-table\relax }{subsubsection.11.34.3.17}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.18}alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}{179}{subsubsection.11.34.3.18}}
+\newlabel{utils_8h_a3c81b3967056c3888b8472b65fbb16f5}{{11.34.3.18}{179}{alimake\-\_\-pair\-\_\-table\relax }{subsubsection.11.34.3.18}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.19}make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop}{179}{subsubsection.11.34.3.19}}
+\newlabel{utils_8h_a9aa3bf3b4346bb7fb88efc154dd07a79}{{11.34.3.19}{179}{make\-\_\-pair\-\_\-table\-\_\-snoop\relax }{subsubsection.11.34.3.19}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.20}make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{179}{subsubsection.11.34.3.20}}
+\newlabel{utils_8h_a4358e89f64cc87a563b7ef3855f75bed}{{11.34.3.20}{179}{make\-\_\-loop\-\_\-index\-\_\-pt\relax }{subsubsection.11.34.3.20}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.21}print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq}{179}{subsubsection.11.34.3.21}}
+\newlabel{utils_8h_a6bf778117d31b7fd90db435323f4ef74}{{11.34.3.21}{179}{print\-\_\-tty\-\_\-input\-\_\-seq\relax }{subsubsection.11.34.3.21}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.22}print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str}{179}{subsubsection.11.34.3.22}}
+\newlabel{utils_8h_ae4ef89b662a3e9b5b5f0781d9757aba0}{{11.34.3.22}{179}{print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str\relax }{subsubsection.11.34.3.22}{}}
+\gdef \LT@cxxxiii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxiv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxv {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxvi {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.23}print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint}{180}{subsubsection.11.34.3.23}}
+\newlabel{utils_8h_a4d167deb70bb51723e44374dc981deb2}{{11.34.3.23}{180}{print\-\_\-tty\-\_\-constraint\relax }{subsubsection.11.34.3.23}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.24}str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}{180}{subsubsection.11.34.3.24}}
+\newlabel{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}{{11.34.3.24}{180}{str\-\_\-\-D\-N\-A2\-R\-N\-A\relax }{subsubsection.11.34.3.24}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.25}str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase}{180}{subsubsection.11.34.3.25}}
+\newlabel{utils_8h_a17b796b806f96b70382077fb5bc519bb}{{11.34.3.25}{180}{str\-\_\-uppercase\relax }{subsubsection.11.34.3.25}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.26}get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx}{180}{subsubsection.11.34.3.26}}
+\newlabel{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{{11.34.3.26}{180}{get\-\_\-iindx\relax }{subsubsection.11.34.3.26}{}}
+\gdef \LT@cxxxvii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxviii {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\gdef \LT@cxxxix {\LT@entry
+ {1}{78.18367pt}\LT@entry
+ {1}{380.5249pt}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.27}get\discretionary {-}{}{}\_\discretionary {-}{}{}indx}{181}{subsubsection.11.34.3.27}}
+\newlabel{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{{11.34.3.27}{181}{get\-\_\-indx\relax }{subsubsection.11.34.3.27}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.3.28}constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes}{181}{subsubsection.11.34.3.28}}
+\newlabel{utils_8h_a36c3a6c3218b041f992052767bc74549}{{11.34.3.28}{181}{constrain\-\_\-ptypes\relax }{subsubsection.11.34.3.28}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.34.4}Variable Documentation}{182}{subsection.11.34.4}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.34.4.1}xsubi}{182}{subsubsection.11.34.4.1}}
+\newlabel{utils_8h_af9a866c8417afda7368bbac939ab3c47}{{11.34.4.1}{182}{xsubi\relax }{subsubsection.11.34.4.1}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.35}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.8.4\discretionary {-}{}{}\_\discretionary {-}{}{}epars.h File Reference}{182}{section.11.35}}
+\newlabel{1_88_84__epars_8h}{{11.35}{182}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.8.4\-\_\-epars.h File Reference\relax }{section.11.35}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.35.1}Detailed Description}{182}{subsection.11.35.1}}
+\@writefile{toc}{\contentsline {section}{\numberline {11.36}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.8.4\discretionary {-}{}{}\_\discretionary {-}{}{}intloops.h File Reference}{182}{section.11.36}}
+\newlabel{1_88_84__intloops_8h}{{11.36}{182}{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/1.8.4\-\_\-intloops.h File Reference\relax }{section.11.36}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {11.36.1}Detailed Description}{182}{subsection.11.36.1}}
+\bibstyle{plain}
+\bibdata{viennarna}
+\bibcite{bernhart:2008}{{1}{}{{}}{{}}}
+\bibcite{bernhart:2006}{{2}{}{{}}{{}}}
+\bibcite{fontana:1993b}{{3}{}{{}}{{}}}
+\bibcite{hofacker:2002}{{4}{}{{}}{{}}}
+\bibcite{hofacker:1994}{{5}{}{{}}{{}}}
+\bibcite{hofacker:2006}{{6}{}{{}}{{}}}
+\bibcite{lorenz:2011}{{7}{}{{}}{{}}}
+\bibcite{lorenz:2009}{{8}{}{{}}{{}}}
+\bibcite{mathews:2004}{{9}{}{{}}{{}}}
+\bibcite{mccaskill:1990}{{10}{}{{}}{{}}}
+\bibcite{shapiro:1988}{{11}{}{{}}{{}}}
+\bibcite{turner:2010}{{12}{}{{}}{{}}}
+\bibcite{zuker:1981}{{13}{}{{}}{{}}}
+\@writefile{toc}{\contentsline {part}{Index}{183}{chapter*.131}}
+\providecommand\NAT@force@numbers{}\NAT@force@numbers
--- /dev/null
+\begin{thebibliography}{10}
+
+\bibitem{bernhart:2008}
+S.H. Bernhart, I.L. Hofacker, S.~Will, A.R. Gruber, and P.F. Stadler.
+\newblock {RNAalifold}: Improved consensus structure prediction for {RNA}
+ alignments.
+\newblock {\em BMC bioinformatics}, 9(1):474, 2008.
+
+\bibitem{bernhart:2006}
+S.H. Bernhart, H.~Tafer, U.~M{\"u}ckstein, C.~Flamm, P.F. Stadler, and I.L.
+ Hofacker.
+\newblock Partition function and base pairing probabilities of {RNA}
+ heterodimers.
+\newblock {\em Algorithms for Molecular Biology}, 1(1):3, 2006.
+
+\bibitem{fontana:1993b}
+W.~Fontana, P.F. Stadler, E.G. Bornberg-Bauer, T.~Griesmacher, I.L. Hofacker,
+ M.~Tacker, P.~Tarazona, E.D. Weinberger, and P.~Schuster.
+\newblock {RNA} folding and combinatory landscapes.
+\newblock {\em Physical review E}, 47(3):2083, 1993.
+
+\bibitem{hofacker:2002}
+I.L. Hofacker, M.~Fekete, and P.F. Stadler.
+\newblock Secondary structure prediction for aligned {RNA} sequences.
+\newblock {\em Journal of molecular biology}, 319(5):1059--1066, 2002.
+
+\bibitem{hofacker:1994}
+I.L. Hofacker, W.~Fontana, P.F. Stadler, L.S. Bonhoeffer, M.~Tacker, and
+ P.~Schuster.
+\newblock Fast folding and comparison of {RNA} secondary structures.
+\newblock {\em Monatshefte f{\"u}r Chemie/Chemical Monthly}, 125(2):167--188,
+ 1994.
+
+\bibitem{hofacker:2006}
+I.L. Hofacker and P.F. Stadler.
+\newblock Memory efficient folding algorithms for circular {RNA} secondary
+ structures.
+\newblock {\em Bioinformatics}, 22(10):1172--1176, 2006.
+
+\bibitem{lorenz:2011}
+Ronny Lorenz, Stephan~H. Bernhart, Christian H{\"o}ner~zu Siederdissen, Hakim
+ Tafer, Christoph Flamm, Peter~F. Stadler, and Ivo~L. Hofacker.
+\newblock {ViennaRNA} package 2.0.
+\newblock {\em Algorithms for Molecular Biology}, 6(1):26, 2011.
+
+\bibitem{lorenz:2009}
+Ronny Lorenz, Christoph Flamm, and Ivo~L. Hofacker.
+\newblock 2d projections of {RNA} folding landscapes.
+\newblock In Ivo Grosse, Steffen Neumann, Stefan Posch, Falk Schreiber, and
+ Peter~F. Stadler, editors, {\em German Conference on Bioinformatics 2009},
+ volume 157 of {\em Lecture Notes in Informatics}, pages 11--20, Bonn,
+ September 2009. Gesellschaft f.\ Informatik.
+
+\bibitem{mathews:2004}
+D.H. Mathews, M.D. Disney, J.L. Childs, S.J. Schroeder, M.~Zuker, and D.H.
+ Turner.
+\newblock Incorporating chemical modification constraints into a dynamic
+ programming algorithm for prediction of {RNA} secondary structure.
+\newblock {\em Proceedings of the National Academy of Sciences of the United
+ States of America}, 101(19):7287, 2004.
+
+\bibitem{mccaskill:1990}
+J.S. McCaskill.
+\newblock The equilibrium partition function and base pair binding
+ probabilities for {RNA} secondary structure.
+\newblock {\em Biopolymers}, 29(6-7):1105--1119, 1990.
+
+\bibitem{shapiro:1988}
+B.A. Shapiro.
+\newblock An algorithm for comparing multiple {RNA} secondary structures.
+\newblock {\em Computer applications in the biosciences: CABIOS},
+ 4(3):387--393, 1988.
+
+\bibitem{turner:2010}
+D.H. Turner and D.H. Mathews.
+\newblock {NNDB}: The nearest neighbor parameter database for predicting
+ stability of nucleic acid secondary structure.
+\newblock {\em Nucleic Acids Research}, 38(suppl 1):D280--D282, 2010.
+
+\bibitem{zuker:1981}
+M.~Zuker and P.~Stiegler.
+\newblock Optimal computer folding of large {RNA} sequences using
+ thermodynamics and auxiliary information.
+\newblock {\em Nucleic acids research}, 9(1):133--148, 1981.
+
+\end{thebibliography}
--- /dev/null
+This is BibTeX, Version 0.99d (TeX Live 2012/Debian)
+Capacity: max_strings=35307, hash_size=35307, hash_prime=30011
+The top-level auxiliary file: refman.aux
+A level-1 auxiliary file: group__mfe__fold.aux
+A level-1 auxiliary file: group__pf__fold.aux
+A level-1 auxiliary file: group__mea__fold.aux
+A level-1 auxiliary file: group__centroid__fold.aux
+A level-1 auxiliary file: group__subopt__fold.aux
+A level-1 auxiliary file: group__subopt__zuker.aux
+A level-1 auxiliary file: group__subopt__wuchty.aux
+A level-1 auxiliary file: group__subopt__stochbt.aux
+A level-1 auxiliary file: group__cofold.aux
+A level-1 auxiliary file: group__mfe__cofold.aux
+A level-1 auxiliary file: group__pf__cofold.aux
+A level-1 auxiliary file: group__up__cofold.aux
+A level-1 auxiliary file: group__consensus__fold.aux
+A level-1 auxiliary file: group__consensus__mfe__fold.aux
+A level-1 auxiliary file: group__consensus__pf__fold.aux
+A level-1 auxiliary file: group__consensus__stochbt.aux
+A level-1 auxiliary file: group__local__fold.aux
+A level-1 auxiliary file: group__local__mfe__fold.aux
+A level-1 auxiliary file: group__local__pf__fold.aux
+A level-1 auxiliary file: group__local__consensus__fold.aux
+A level-1 auxiliary file: group__energy__parameters.aux
+A level-1 auxiliary file: group__energy__parameters__rw.aux
+A level-1 auxiliary file: group__energy__parameters__convert.aux
+A level-1 auxiliary file: group__eval.aux
+A level-1 auxiliary file: group__inverse__fold.aux
+A level-1 auxiliary file: group__class__fold.aux
+A level-1 auxiliary file: group__kl__neighborhood.aux
+A level-1 auxiliary file: group__kl__neighborhood__mfe.aux
+A level-1 auxiliary file: group__kl__neighborhood__pf.aux
+A level-1 auxiliary file: group__kl__neighborhood__stochbt.aux
+A level-1 auxiliary file: group__dos.aux
+A level-1 auxiliary file: group__parse.aux
+The style file: plain.bst
+Database file #1: viennarna.bib
+You've used 13 entries,
+ 2118 wiz_defined-function locations,
+ 630 strings with 7602 characters,
+and the built_in function-call counts, 5194 in all, are:
+= -- 489
+> -- 319
+< -- 2
++ -- 126
+- -- 111
+* -- 457
+:= -- 897
+add.period$ -- 40
+call.type$ -- 13
+change.case$ -- 92
+chr.to.int$ -- 0
+cite$ -- 13
+duplicate$ -- 154
+empty$ -- 350
+format.name$ -- 111
+if$ -- 1028
+int.to.chr$ -- 0
+int.to.str$ -- 13
+missing$ -- 13
+newline$ -- 68
+num.names$ -- 28
+pop$ -- 69
+preamble$ -- 1
+purify$ -- 79
+quote$ -- 0
+skip$ -- 101
+stack$ -- 0
+substring$ -- 332
+swap$ -- 22
+text.length$ -- 2
+text.prefix$ -- 0
+top$ -- 0
+type$ -- 52
+warning$ -- 0
+while$ -- 49
+width$ -- 15
+write$ -- 148
--- /dev/null
+\backcite {lorenz:2011}{{1}{1.1}{section.1.1}}
+\backcite {hofacker:1994}{{1}{1.1}{section.1.1}}
+\backcite {fontana:1993b}{{3}{2}{section*.4}}
+\backcite {shapiro:1988}{{3}{2}{section*.4}}
+\backcite {zuker:1981}{{23}{9.2.1}{subsection.9.2.1}}
+\backcite {hofacker:2006}{{23}{9.2.1}{subsection.9.2.1}}
+\backcite {mccaskill:1990}{{26}{9.3.1}{subsection.9.3.1}}
+\backcite {bernhart:2006}{{45}{9.12.1}{subsection.9.12.1}}
+\backcite {hofacker:2002}{{51}{9.14.1}{subsection.9.14.1}}
+\backcite {bernhart:2008}{{51}{9.14.1}{subsection.9.14.1}}
+\backcite {mathews:2004}{{67}{9.23.1}{subsection.9.23.1}}
+\backcite {turner:2010}{{67}{9.23.1}{subsection.9.23.1}}
+\backcite {lorenz:2009}{{80}{9.28.1}{subsection.9.28.1}}
--- /dev/null
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}A Secondary Structure Folding@{R\discretionary {-}{}{}N\discretionary {-}{}{}A Secondary Structure Folding}|hyperpage}{19}
+\indexentry{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}|hyperpage}{22}
+\indexentry{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}!fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{23}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Calculating Minimum Free Energy (MFE) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}|hyperpage}{23}
+\indexentry{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}!fold@{fold}|hyperpage}{23}
+\indexentry{fold@{fold}!Calculating Minimum Free Energy (MFE) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}|hyperpage}{23}
+\indexentry{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}!circfold@{circfold}|hyperpage}{24}
+\indexentry{circfold@{circfold}!Calculating Minimum Free Energy (MFE) Structures@{Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}|hyperpage}{24}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{25}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{26}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{26}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{27}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{27}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{28}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{28}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}|hyperpage}{29}
+\indexentry{free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{29}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params@{update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}|hyperpage}{29}
+\indexentry{update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params@{update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{29}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}|hyperpage}{29}
+\indexentry{export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{29}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr@{assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr}|hyperpage}{29}
+\indexentry{assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr@{assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{29}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}|hyperpage}{30}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{30}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance}|hyperpage}{30}
+\indexentry{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{30}
+\indexentry{Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}!mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr@{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr}|hyperpage}{31}
+\indexentry{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr@{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr}!Calculating Partition Functions and Pair Probabilities@{Calculating Partition Functions and Pair Probabilities}|hyperpage}{31}
+\indexentry{Compute the structure with maximum expected accuracy (\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A)@{Compute the structure with maximum expected accuracy (\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A)}|hyperpage}{32}
+\indexentry{Compute the centroid structure@{Compute the centroid structure}|hyperpage}{33}
+\indexentry{Compute the centroid structure@{Compute the centroid structure}!get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl@{get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl}|hyperpage}{33}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl@{get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl}!Compute the centroid structure@{Compute the centroid structure}|hyperpage}{33}
+\indexentry{Compute the centroid structure@{Compute the centroid structure}!get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr@{get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr}|hyperpage}{33}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr@{get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr}!Compute the centroid structure@{Compute the centroid structure}|hyperpage}{33}
+\indexentry{Enumerating Suboptimal Structures@{Enumerating Suboptimal Structures}|hyperpage}{35}
+\indexentry{Suboptimal structures according to Zuker et al. 1989@{Suboptimal structures according to Zuker et al. 1989}|hyperpage}{36}
+\indexentry{Suboptimal structures according to Zuker et al. 1989@{Suboptimal structures according to Zuker et al. 1989}!zukersubopt@{zukersubopt}|hyperpage}{36}
+\indexentry{zukersubopt@{zukersubopt}!Suboptimal structures according to Zuker et al. 1989@{Suboptimal structures according to Zuker et al. 1989}|hyperpage}{36}
+\indexentry{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E@{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}|hyperpage}{37}
+\indexentry{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E@{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}!subopt@{subopt}|hyperpage}{37}
+\indexentry{subopt@{subopt}!Suboptimal structures within an energy band arround the MFE@{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}|hyperpage}{37}
+\indexentry{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E@{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}!subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ@{subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ}|hyperpage}{38}
+\indexentry{subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ@{subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ}!Suboptimal structures within an energy band arround the MFE@{Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}|hyperpage}{38}
+\indexentry{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}|hyperpage}{39}
+\indexentry{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}!pbacktrack@{pbacktrack}|hyperpage}{39}
+\indexentry{pbacktrack@{pbacktrack}!Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}|hyperpage}{39}
+\indexentry{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}!pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ@{pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ}|hyperpage}{40}
+\indexentry{pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ@{pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ}!Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}|hyperpage}{40}
+\indexentry{Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}!st\discretionary {-}{}{}\_\discretionary {-}{}{}back@{st\discretionary {-}{}{}\_\discretionary {-}{}{}back}|hyperpage}{40}
+\indexentry{st\discretionary {-}{}{}\_\discretionary {-}{}{}back@{st\discretionary {-}{}{}\_\discretionary {-}{}{}back}!Stochastic backtracking in the Ensemble@{Stochastic backtracking in the Ensemble}|hyperpage}{40}
+\indexentry{Calculate Secondary Structures of two R\discretionary {-}{}{}N\discretionary {-}{}{}As upon Dimerization@{Calculate Secondary Structures of two R\discretionary {-}{}{}N\discretionary {-}{}{}As upon Dimerization}|hyperpage}{41}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}|hyperpage}{42}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}!cofold@{cofold}|hyperpage}{42}
+\indexentry{cofold@{cofold}!MFE Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}|hyperpage}{42}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}!export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq@{export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq}|hyperpage}{43}
+\indexentry{export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq@{export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq}!MFE Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}|hyperpage}{43}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}!export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}|hyperpage}{43}
+\indexentry{export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}!MFE Structures of two hybridized Sequences@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}|hyperpage}{43}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{44}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{45}
+\indexentry{co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{45}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{45}
+\indexentry{co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{45}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}|hyperpage}{46}
+\indexentry{export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{46}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params@{update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}|hyperpage}{46}
+\indexentry{update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params@{update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{46}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par@{update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{46}
+\indexentry{update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par@{update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{46}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities@{compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities}|hyperpage}{47}
+\indexentry{compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities@{compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{47}
+\indexentry{Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}!get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations@{get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations}|hyperpage}{47}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations@{get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations}!Partition Function for two hybridized Sequences@{Partition Function for two hybridized Sequences}|hyperpage}{47}
+\indexentry{Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}|hyperpage}{48}
+\indexentry{Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}!pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru}|hyperpage}{48}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru}!Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}|hyperpage}{48}
+\indexentry{Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}!pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact}|hyperpage}{49}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact}!Partition Function for two hybridized Sequences as a stepwise Process@{Partition Function for two hybridized Sequences as a stepwise Process}|hyperpage}{49}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{50}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi@{get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi}|hyperpage}{51}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi@{get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{51}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct}|hyperpage}{51}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{51}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence@{encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence}|hyperpage}{51}
+\indexentry{encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence@{encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{51}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}|hyperpage}{52}
+\indexentry{alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{52}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}|hyperpage}{52}
+\indexentry{free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{52}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}|hyperpage}{53}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays@{get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{53}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact@{cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact}|hyperpage}{53}
+\indexentry{cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact@{cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{53}
+\indexentry{Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}!nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact@{nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact}|hyperpage}{53}
+\indexentry{nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact@{nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact}!Predicting Consensus Structures from Alignment(s)@{Predicting Consensus Structures from Alignment(s)}|hyperpage}{53}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}|hyperpage}{54}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}!alifold@{alifold}|hyperpage}{54}
+\indexentry{alifold@{alifold}!MFE Consensus Structures for Sequence Alignment(s)@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}|hyperpage}{54}
+\indexentry{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}!circalifold@{circalifold}|hyperpage}{54}
+\indexentry{circalifold@{circalifold}!MFE Consensus Structures for Sequence Alignment(s)@{M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}|hyperpage}{54}
+\indexentry{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}|hyperpage}{56}
+\indexentry{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{56}
+\indexentry{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par@{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}|hyperpage}{56}
+\indexentry{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{56}
+\indexentry{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}|hyperpage}{56}
+\indexentry{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{57}
+\indexentry{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}|hyperpage}{57}
+\indexentry{Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}!export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}|hyperpage}{57}
+\indexentry{export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}!Partition Function and Base Pair Probabilities for Sequence Alignment(s)@{Partition Function and Base Pair Probabilities for Sequence Alignment(s)}|hyperpage}{57}
+\indexentry{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)@{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}|hyperpage}{58}
+\indexentry{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)@{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}!alipbacktrack@{alipbacktrack}|hyperpage}{58}
+\indexentry{alipbacktrack@{alipbacktrack}!Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)@{Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}|hyperpage}{58}
+\indexentry{Predicting Locally stable structures of large sequences@{Predicting Locally stable structures of large sequences}|hyperpage}{59}
+\indexentry{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}|hyperpage}{60}
+\indexentry{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}!Lfold@{Lfold}|hyperpage}{60}
+\indexentry{Lfold@{Lfold}!Local MFE structure Prediction and Z-scores@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}|hyperpage}{60}
+\indexentry{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}!Lfoldz@{Lfoldz}|hyperpage}{60}
+\indexentry{Lfoldz@{Lfoldz}!Local MFE structure Prediction and Z-scores@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}|hyperpage}{60}
+\indexentry{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}|hyperpage}{61}
+\indexentry{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P@{update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P}|hyperpage}{61}
+\indexentry{update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P@{update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}|hyperpage}{61}
+\indexentry{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{61}
+\indexentry{pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}|hyperpage}{61}
+\indexentry{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob@{putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob}|hyperpage}{62}
+\indexentry{putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob@{putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}|hyperpage}{62}
+\indexentry{Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}!putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin@{putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin}|hyperpage}{62}
+\indexentry{putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin@{putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin}!Partition functions for locally stable secondary structures@{Partition functions for locally stable secondary structures}|hyperpage}{62}
+\indexentry{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments}|hyperpage}{63}
+\indexentry{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments}!ali\discretionary {-}{}{}Lfold@{ali\discretionary {-}{}{}Lfold}|hyperpage}{63}
+\indexentry{ali\discretionary {-}{}{}Lfold@{ali\discretionary {-}{}{}Lfold}!Local MFE consensus structures for Sequence Alignments@{Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments}|hyperpage}{63}
+\indexentry{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}|hyperpage}{64}
+\indexentry{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters@{scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}|hyperpage}{65}
+\indexentry{scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters@{scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}|hyperpage}{65}
+\indexentry{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters@{get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}|hyperpage}{65}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters@{get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}|hyperpage}{65}
+\indexentry{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters@{get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}|hyperpage}{65}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters@{get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}|hyperpage}{65}
+\indexentry{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors@{get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors}|hyperpage}{65}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors@{get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}|hyperpage}{65}
+\indexentry{Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}!get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy@{get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy}|hyperpage}{66}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy@{get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy}!Change and Precalculate Energy Parameter Sets and Boltzmann Factors@{Change and Precalculate Energy Parameter Sets and Boltzmann Factors}|hyperpage}{66}
+\indexentry{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File@{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}|hyperpage}{67}
+\indexentry{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File@{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}!read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file@{read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}|hyperpage}{67}
+\indexentry{read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file@{read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}!Reading/Writing energy parameter sets from/to File@{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}|hyperpage}{67}
+\indexentry{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File@{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}!write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file@{write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}|hyperpage}{67}
+\indexentry{write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file@{write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}!Reading/Writing energy parameter sets from/to File@{Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}|hyperpage}{67}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}|hyperpage}{69}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}1\discretionary {-}{}{}N@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}1\discretionary {-}{}{}N}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}1\discretionary {-}{}{}N@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}1\discretionary {-}{}{}N}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}23@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}23}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}23@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}23}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}X\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}X\discretionary {-}{}{}T}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}X\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}X\discretionary {-}{}{}T}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E5@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E5}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E5@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E5}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E3@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E3}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E3@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E3}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}11@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}11}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}11@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}11}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}21@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}21}|hyperpage}{70}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}21@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}21}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{70}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}22@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}22}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}22@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}22}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}G\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}G\discretionary {-}{}{}E}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}G\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}G\discretionary {-}{}{}E}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}L@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}L}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}L@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}L}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}L\discretionary {-}{}{}A@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}L\discretionary {-}{}{}A}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}L\discretionary {-}{}{}A@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}L\discretionary {-}{}{}A}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}O@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}O}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}O@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}O}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}U\discretionary {-}{}{}M\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}U\discretionary {-}{}{}M\discretionary {-}{}{}P}|hyperpage}{71}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}U\discretionary {-}{}{}M\discretionary {-}{}{}P@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}U\discretionary {-}{}{}M\discretionary {-}{}{}P}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Converting energy parameter files@{Converting energy parameter files}!convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file@{convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}|hyperpage}{71}
+\indexentry{convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file@{convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}!Converting energy parameter files@{Converting energy parameter files}|hyperpage}{71}
+\indexentry{Energy evaluation@{Energy evaluation}|hyperpage}{73}
+\indexentry{Energy evaluation@{Energy evaluation}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure}|hyperpage}{73}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure}!Energy evaluation@{Energy evaluation}|hyperpage}{73}
+\indexentry{Energy evaluation@{Energy evaluation}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{74}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Energy evaluation@{Energy evaluation}|hyperpage}{74}
+\indexentry{Energy evaluation@{Energy evaluation}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure}|hyperpage}{74}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure}!Energy evaluation@{Energy evaluation}|hyperpage}{74}
+\indexentry{Energy evaluation@{Energy evaluation}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{75}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Energy evaluation@{Energy evaluation}|hyperpage}{75}
+\indexentry{Energy evaluation@{Energy evaluation}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt}|hyperpage}{75}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt}!Energy evaluation@{Energy evaluation}|hyperpage}{75}
+\indexentry{Energy evaluation@{Energy evaluation}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par}|hyperpage}{76}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par}!Energy evaluation@{Energy evaluation}|hyperpage}{76}
+\indexentry{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}|hyperpage}{77}
+\indexentry{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{77}
+\indexentry{inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}|hyperpage}{77}
+\indexentry{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{78}
+\indexentry{inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}|hyperpage}{78}
+\indexentry{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!final\discretionary {-}{}{}\_\discretionary {-}{}{}cost@{final\discretionary {-}{}{}\_\discretionary {-}{}{}cost}|hyperpage}{78}
+\indexentry{final\discretionary {-}{}{}\_\discretionary {-}{}{}cost@{final\discretionary {-}{}{}\_\discretionary {-}{}{}cost}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}|hyperpage}{78}
+\indexentry{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!give\discretionary {-}{}{}\_\discretionary {-}{}{}up@{give\discretionary {-}{}{}\_\discretionary {-}{}{}up}|hyperpage}{78}
+\indexentry{give\discretionary {-}{}{}\_\discretionary {-}{}{}up@{give\discretionary {-}{}{}\_\discretionary {-}{}{}up}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}|hyperpage}{78}
+\indexentry{Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}!inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose@{inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose}|hyperpage}{78}
+\indexentry{inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose@{inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose}!Searching Sequences for Predefined Structures@{Searching Sequences for Predefined Structures}|hyperpage}{78}
+\indexentry{Classified Dynamic Programming@{Classified Dynamic Programming}|hyperpage}{79}
+\indexentry{Distance based partitioning of the Secondary Structure Space@{Distance based partitioning of the Secondary Structure Space}|hyperpage}{80}
+\indexentry{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}|hyperpage}{81}
+\indexentry{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}!get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}|hyperpage}{81}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}|hyperpage}{81}
+\indexentry{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}!destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}|hyperpage}{82}
+\indexentry{destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}|hyperpage}{82}
+\indexentry{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}!Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List@{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List}|hyperpage}{82}
+\indexentry{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List@{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}|hyperpage}{82}
+\indexentry{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}!Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5@{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5}|hyperpage}{83}
+\indexentry{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5@{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5}!Calculating MFE representatives of a Distance Based Partitioning@{Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}|hyperpage}{83}
+\indexentry{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}|hyperpage}{84}
+\indexentry{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}|hyperpage}{84}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}|hyperpage}{84}
+\indexentry{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E@{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E}|hyperpage}{85}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E@{get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}|hyperpage}{85}
+\indexentry{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}|hyperpage}{85}
+\indexentry{destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables@{destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}|hyperpage}{85}
+\indexentry{Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}!Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List}|hyperpage}{85}
+\indexentry{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List}!Calculate Partition Functions of a Distance Based Partitioning@{Calculate Partition Functions of a Distance Based Partitioning}|hyperpage}{85}
+\indexentry{Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}|hyperpage}{87}
+\indexentry{Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}!Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack}|hyperpage}{87}
+\indexentry{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack}!Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}|hyperpage}{87}
+\indexentry{Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}!Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5}|hyperpage}{88}
+\indexentry{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5}!Stochastic Backtracking of Structures from Distance Based Partitioning@{Stochastic Backtracking of Structures from Distance Based Partitioning}|hyperpage}{88}
+\indexentry{Compute the Density of States@{Compute the Density of States}|hyperpage}{89}
+\indexentry{Compute the Density of States@{Compute the Density of States}!density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states@{density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states}|hyperpage}{89}
+\indexentry{density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states@{density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states}!Compute the Density of States@{Compute the Density of States}|hyperpage}{89}
+\indexentry{Parsing and Comparing -\/ Functions to Manipulate Structures@{Parsing and Comparing -\/ Functions to Manipulate Structures}|hyperpage}{90}
+\indexentry{bond\discretionary {-}{}{}T@{bond\discretionary {-}{}{}T}|hyperpage}{91}
+\indexentry{bond\discretionary {-}{}{}T\discretionary {-}{}{}En@{bond\discretionary {-}{}{}T\discretionary {-}{}{}En}|hyperpage}{91}
+\indexentry{cofold\discretionary {-}{}{}F@{cofold\discretionary {-}{}{}F}|hyperpage}{91}
+\indexentry{Conc\discretionary {-}{}{}Ent@{Conc\discretionary {-}{}{}Ent}|hyperpage}{92}
+\indexentry{constrain@{constrain}|hyperpage}{92}
+\indexentry{C\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}D\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}E@{C\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}D\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}E}|hyperpage}{92}
+\indexentry{cpair@{cpair}|hyperpage}{93}
+\indexentry{duplex\discretionary {-}{}{}T@{duplex\discretionary {-}{}{}T}|hyperpage}{93}
+\indexentry{dup\discretionary {-}{}{}Var@{dup\discretionary {-}{}{}Var}|hyperpage}{93}
+\indexentry{folden@{folden}|hyperpage}{93}
+\indexentry{interact@{interact}|hyperpage}{93}
+\indexentry{intermediate\discretionary {-}{}{}\_\discretionary {-}{}{}t@{intermediate\discretionary {-}{}{}\_\discretionary {-}{}{}t}|hyperpage}{94}
+\indexentry{I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}L@{I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}L}|hyperpage}{94}
+\indexentry{L\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}T@{L\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}T}|hyperpage}{95}
+\indexentry{L\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}C\discretionary {-}{}{}K\discretionary {-}{}{}E\discretionary {-}{}{}T@{L\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}C\discretionary {-}{}{}K\discretionary {-}{}{}E\discretionary {-}{}{}T}|hyperpage}{95}
+\indexentry{model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T@{model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T}|hyperpage}{96}
+\indexentry{model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T@{model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T}!dangles@{dangles}|hyperpage}{96}
+\indexentry{dangles@{dangles}!model_detailsT@{model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T}|hyperpage}{96}
+\indexentry{move\discretionary {-}{}{}\_\discretionary {-}{}{}t@{move\discretionary {-}{}{}\_\discretionary {-}{}{}t}|hyperpage}{96}
+\indexentry{P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R@{P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R}|hyperpage}{97}
+\indexentry{pair\discretionary {-}{}{}\_\discretionary {-}{}{}info@{pair\discretionary {-}{}{}\_\discretionary {-}{}{}info}|hyperpage}{97}
+\indexentry{pairpro@{pairpro}|hyperpage}{98}
+\indexentry{param\discretionary {-}{}{}T@{param\discretionary {-}{}{}T}|hyperpage}{98}
+\indexentry{path\discretionary {-}{}{}\_\discretionary {-}{}{}t@{path\discretionary {-}{}{}\_\discretionary {-}{}{}t}|hyperpage}{99}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T}|hyperpage}{99}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T}!alpha@{alpha}|hyperpage}{100}
+\indexentry{alpha@{alpha}!pf_paramT@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T}|hyperpage}{100}
+\indexentry{plist@{plist}|hyperpage}{100}
+\indexentry{Postorder\discretionary {-}{}{}\_\discretionary {-}{}{}list@{Postorder\discretionary {-}{}{}\_\discretionary {-}{}{}list}|hyperpage}{100}
+\indexentry{pu\discretionary {-}{}{}\_\discretionary {-}{}{}contrib@{pu\discretionary {-}{}{}\_\discretionary {-}{}{}contrib}|hyperpage}{100}
+\indexentry{pu\discretionary {-}{}{}\_\discretionary {-}{}{}out@{pu\discretionary {-}{}{}\_\discretionary {-}{}{}out}|hyperpage}{101}
+\indexentry{sect@{sect}|hyperpage}{101}
+\indexentry{snoop\discretionary {-}{}{}T@{snoop\discretionary {-}{}{}T}|hyperpage}{102}
+\indexentry{S\discretionary {-}{}{}O\discretionary {-}{}{}L\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N@{S\discretionary {-}{}{}O\discretionary {-}{}{}L\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N}|hyperpage}{102}
+\indexentry{struct\discretionary {-}{}{}\_\discretionary {-}{}{}en@{struct\discretionary {-}{}{}\_\discretionary {-}{}{}en}|hyperpage}{102}
+\indexentry{svm\discretionary {-}{}{}\_\discretionary {-}{}{}model@{svm\discretionary {-}{}{}\_\discretionary {-}{}{}model}|hyperpage}{102}
+\indexentry{sw\discretionary {-}{}{}String@{sw\discretionary {-}{}{}String}|hyperpage}{102}
+\indexentry{Tree@{Tree}|hyperpage}{103}
+\indexentry{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution@{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution}|hyperpage}{103}
+\indexentry{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars@{Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars}|hyperpage}{104}
+\indexentry{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution}|hyperpage}{105}
+\indexentry{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars@{Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars}|hyperpage}{106}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dfold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dfold.\discretionary {-}{}{}h}|hyperpage}{109}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dpfold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dpfold.\discretionary {-}{}{}h}|hyperpage}{110}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/alifold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/alifold.\discretionary {-}{}{}h}|hyperpage}{111}
+\indexentry{alifold.\discretionary {-}{}{}h@{alifold.\discretionary {-}{}{}h}!update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params@{update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params}|hyperpage}{112}
+\indexentry{update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params@{update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params}!alifold.h@{alifold.\discretionary {-}{}{}h}|hyperpage}{112}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/cofold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/cofold.\discretionary {-}{}{}h}|hyperpage}{113}
+\indexentry{cofold.\discretionary {-}{}{}h@{cofold.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes@{get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes}|hyperpage}{114}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes@{get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes}!cofold.h@{cofold.\discretionary {-}{}{}h}|hyperpage}{114}
+\indexentry{cofold.\discretionary {-}{}{}h@{cofold.\discretionary {-}{}{}h}!initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold@{initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold}|hyperpage}{114}
+\indexentry{initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold@{initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold}!cofold.h@{cofold.\discretionary {-}{}{}h}|hyperpage}{114}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/convert\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/convert\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h}|hyperpage}{114}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/data\discretionary {-}{}{}\_\discretionary {-}{}{}structures.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/data\discretionary {-}{}{}\_\discretionary {-}{}{}structures.\discretionary {-}{}{}h}|hyperpage}{115}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{117}
+\indexentry{dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack@{edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}|hyperpage}{118}
+\indexentry{edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack@{edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}!dist_vars.h@{dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{118}
+\indexentry{dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix@{cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}|hyperpage}{118}
+\indexentry{cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix@{cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}!dist_vars.h@{dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{118}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/duplex.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/duplex.\discretionary {-}{}{}h}|hyperpage}{118}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/edit\discretionary {-}{}{}\_\discretionary {-}{}{}cost.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/edit\discretionary {-}{}{}\_\discretionary {-}{}{}cost.\discretionary {-}{}{}h}|hyperpage}{119}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{119}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T@{G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T}|hyperpage}{120}
+\indexentry{G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T@{G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!K0@{K0}|hyperpage}{120}
+\indexentry{K0@{K0}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!I\discretionary {-}{}{}N\discretionary {-}{}{}F@{I\discretionary {-}{}{}N\discretionary {-}{}{}F}|hyperpage}{120}
+\indexentry{I\discretionary {-}{}{}N\discretionary {-}{}{}F@{I\discretionary {-}{}{}N\discretionary {-}{}{}F}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N@{F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N}|hyperpage}{120}
+\indexentry{F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N@{F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S@{B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S}|hyperpage}{120}
+\indexentry{B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S@{B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S@{N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S}|hyperpage}{120}
+\indexentry{N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S@{N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N@{T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N}|hyperpage}{120}
+\indexentry{T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N@{T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}!M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P@{M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P}|hyperpage}{120}
+\indexentry{M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P@{M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P}!energy_const.h@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/findpath.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/findpath.\discretionary {-}{}{}h}|hyperpage}{120}
+\indexentry{findpath.\discretionary {-}{}{}h@{findpath.\discretionary {-}{}{}h}!find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle@{find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle}|hyperpage}{121}
+\indexentry{find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle@{find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle}!findpath.h@{findpath.\discretionary {-}{}{}h}|hyperpage}{121}
+\indexentry{findpath.\discretionary {-}{}{}h@{findpath.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}path@{get\discretionary {-}{}{}\_\discretionary {-}{}{}path}|hyperpage}{122}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}path@{get\discretionary {-}{}{}\_\discretionary {-}{}{}path}!findpath.h@{findpath.\discretionary {-}{}{}h}|hyperpage}{122}
+\indexentry{findpath.\discretionary {-}{}{}h@{findpath.\discretionary {-}{}{}h}!free\discretionary {-}{}{}\_\discretionary {-}{}{}path@{free\discretionary {-}{}{}\_\discretionary {-}{}{}path}|hyperpage}{122}
+\indexentry{free\discretionary {-}{}{}\_\discretionary {-}{}{}path@{free\discretionary {-}{}{}\_\discretionary {-}{}{}path}!findpath.h@{findpath.\discretionary {-}{}{}h}|hyperpage}{122}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold.\discretionary {-}{}{}h}|hyperpage}{122}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure}|hyperpage}{124}
+\indexentry{parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{124}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker@{parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker}|hyperpage}{124}
+\indexentry{parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker@{parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{124}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move}|hyperpage}{125}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{125}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt}|hyperpage}{125}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{125}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy}|hyperpage}{125}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{125}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db@{assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db}|hyperpage}{126}
+\indexentry{assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db@{assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{126}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!Loop\discretionary {-}{}{}Energy@{Loop\discretionary {-}{}{}Energy}|hyperpage}{126}
+\indexentry{Loop\discretionary {-}{}{}Energy@{Loop\discretionary {-}{}{}Energy}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{126}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!Hairpin\discretionary {-}{}{}E@{Hairpin\discretionary {-}{}{}E}|hyperpage}{126}
+\indexentry{Hairpin\discretionary {-}{}{}E@{Hairpin\discretionary {-}{}{}E}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{126}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{126}
+\indexentry{initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{126}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct}|hyperpage}{126}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{126}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt}|hyperpage}{127}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{127}
+\indexentry{fold.\discretionary {-}{}{}h@{fold.\discretionary {-}{}{}h}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct}|hyperpage}{127}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct}!fold.h@{fold.\discretionary {-}{}{}h}|hyperpage}{127}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{128}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details@{set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details}|hyperpage}{130}
+\indexentry{set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details@{set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{130}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs@{no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs}|hyperpage}{130}
+\indexentry{no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs@{no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{130}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!dangles@{dangles}|hyperpage}{130}
+\indexentry{dangles@{dangles}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{130}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop@{tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop}|hyperpage}{131}
+\indexentry{tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop@{tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!energy\discretionary {-}{}{}\_\discretionary {-}{}{}set@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}set}|hyperpage}{131}
+\indexentry{energy\discretionary {-}{}{}\_\discretionary {-}{}{}set@{energy\discretionary {-}{}{}\_\discretionary {-}{}{}set}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!old\discretionary {-}{}{}Ali\discretionary {-}{}{}En@{old\discretionary {-}{}{}Ali\discretionary {-}{}{}En}|hyperpage}{131}
+\indexentry{old\discretionary {-}{}{}Ali\discretionary {-}{}{}En@{old\discretionary {-}{}{}Ali\discretionary {-}{}{}En}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!ribo@{ribo}|hyperpage}{131}
+\indexentry{ribo@{ribo}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!Ribosum\discretionary {-}{}{}File@{Ribosum\discretionary {-}{}{}File}|hyperpage}{131}
+\indexentry{Ribosum\discretionary {-}{}{}File@{Ribosum\discretionary {-}{}{}File}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!nonstandards@{nonstandards}|hyperpage}{131}
+\indexentry{nonstandards@{nonstandards}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!temperature@{temperature}|hyperpage}{131}
+\indexentry{temperature@{temperature}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!james\discretionary {-}{}{}\_\discretionary {-}{}{}rule@{james\discretionary {-}{}{}\_\discretionary {-}{}{}rule}|hyperpage}{131}
+\indexentry{james\discretionary {-}{}{}\_\discretionary {-}{}{}rule@{james\discretionary {-}{}{}\_\discretionary {-}{}{}rule}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!log\discretionary {-}{}{}M\discretionary {-}{}{}L@{log\discretionary {-}{}{}M\discretionary {-}{}{}L}|hyperpage}{131}
+\indexentry{log\discretionary {-}{}{}M\discretionary {-}{}{}L@{log\discretionary {-}{}{}M\discretionary {-}{}{}L}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{131}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!cut\discretionary {-}{}{}\_\discretionary {-}{}{}point@{cut\discretionary {-}{}{}\_\discretionary {-}{}{}point}|hyperpage}{132}
+\indexentry{cut\discretionary {-}{}{}\_\discretionary {-}{}{}point@{cut\discretionary {-}{}{}\_\discretionary {-}{}{}point}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!base\discretionary {-}{}{}\_\discretionary {-}{}{}pair@{base\discretionary {-}{}{}\_\discretionary {-}{}{}pair}|hyperpage}{132}
+\indexentry{base\discretionary {-}{}{}\_\discretionary {-}{}{}pair@{base\discretionary {-}{}{}\_\discretionary {-}{}{}pair}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!pr@{pr}|hyperpage}{132}
+\indexentry{pr@{pr}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!iindx@{iindx}|hyperpage}{132}
+\indexentry{iindx@{iindx}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale}|hyperpage}{132}
+\indexentry{pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale@{pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack@{do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}|hyperpage}{132}
+\indexentry{do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack@{do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}!backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type@{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type}|hyperpage}{132}
+\indexentry{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type@{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type}!fold_vars.h@{fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}|hyperpage}{132}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/gquad.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/gquad.\discretionary {-}{}{}h}|hyperpage}{133}
+\indexentry{gquad.\discretionary {-}{}{}h@{gquad.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix@{get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}|hyperpage}{134}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix@{get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}!gquad.h@{gquad.\discretionary {-}{}{}h}|hyperpage}{134}
+\indexentry{gquad.\discretionary {-}{}{}h@{gquad.\discretionary {-}{}{}h}!parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad@{parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad}|hyperpage}{134}
+\indexentry{parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad@{parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad}!gquad.h@{gquad.\discretionary {-}{}{}h}|hyperpage}{134}
+\indexentry{gquad.\discretionary {-}{}{}h@{gquad.\discretionary {-}{}{}h}!backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop@{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}|hyperpage}{134}
+\indexentry{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop@{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}!gquad.h@{gquad.\discretionary {-}{}{}h}|hyperpage}{134}
+\indexentry{gquad.\discretionary {-}{}{}h@{gquad.\discretionary {-}{}{}h}!backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L@{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L}|hyperpage}{134}
+\indexentry{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L@{backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L}!gquad.h@{gquad.\discretionary {-}{}{}h}|hyperpage}{134}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/inverse.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/inverse.\discretionary {-}{}{}h}|hyperpage}{135}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}Lfold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}Lfold.\discretionary {-}{}{}h}|hyperpage}{135}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{136}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}!E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop@{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}|hyperpage}{137}
+\indexentry{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop@{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}!loop_energies.h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{137}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}!E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin@{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}|hyperpage}{138}
+\indexentry{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin@{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}!loop_energies.h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{138}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}!E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem@{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}|hyperpage}{138}
+\indexentry{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem@{E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}!loop_energies.h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{138}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}!exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem@{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}|hyperpage}{139}
+\indexentry{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem@{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}!loop_energies.h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{139}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}!exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin@{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}|hyperpage}{140}
+\indexentry{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin@{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}!loop_energies.h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{140}
+\indexentry{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}!exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop@{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}|hyperpage}{140}
+\indexentry{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop@{exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}!loop_energies.h@{loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}|hyperpage}{140}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h}|hyperpage}{141}
+\indexentry{L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h@{L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h}!init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P@{init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P}|hyperpage}{142}
+\indexentry{init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P@{init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P}!LPfold.h@{L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h}|hyperpage}{142}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h}|hyperpage}{142}
+\indexentry{M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h@{M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h}!M\discretionary {-}{}{}E\discretionary {-}{}{}A@{M\discretionary {-}{}{}E\discretionary {-}{}{}A}|hyperpage}{143}
+\indexentry{M\discretionary {-}{}{}E\discretionary {-}{}{}A@{M\discretionary {-}{}{}E\discretionary {-}{}{}A}!MEA.h@{M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h}|hyperpage}{143}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/mm.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/mm.\discretionary {-}{}{}h}|hyperpage}{144}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/naview.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/naview.\discretionary {-}{}{}h}|hyperpage}{144}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/params.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/params.\discretionary {-}{}{}h}|hyperpage}{145}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}|hyperpage}{146}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}!init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{148}
+\indexentry{init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!part_func.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}|hyperpage}{148}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}!centroid@{centroid}|hyperpage}{148}
+\indexentry{centroid@{centroid}!part_func.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}|hyperpage}{148}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}!mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist@{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist}|hyperpage}{148}
+\indexentry{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist@{mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist}!part_func.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}|hyperpage}{148}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}!exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy@{exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy}|hyperpage}{148}
+\indexentry{exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy@{exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy}!part_func.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}|hyperpage}{148}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}!exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy@{exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy}|hyperpage}{148}
+\indexentry{exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy@{exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy}!part_func.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}|hyperpage}{148}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h}|hyperpage}{148}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}plist@{get\discretionary {-}{}{}\_\discretionary {-}{}{}plist}|hyperpage}{150}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}plist@{get\discretionary {-}{}{}\_\discretionary {-}{}{}plist}!part_func_co.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h}|hyperpage}{150}
+\indexentry{part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h}!init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}|hyperpage}{150}
+\indexentry{init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold@{init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}!part_func_co.h@{part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h}|hyperpage}{150}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}up.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}up.\discretionary {-}{}{}h}|hyperpage}{150}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{152}
+\indexentry{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}I\discretionary {-}{}{}M\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}I\discretionary {-}{}{}M\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}E}|hyperpage}{153}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}I\discretionary {-}{}{}M\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}I\discretionary {-}{}{}M\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}E}!plot_layouts.h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{153}
+\indexentry{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}V\discretionary {-}{}{}I\discretionary {-}{}{}E\discretionary {-}{}{}W@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}V\discretionary {-}{}{}I\discretionary {-}{}{}E\discretionary {-}{}{}W}|hyperpage}{153}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}V\discretionary {-}{}{}I\discretionary {-}{}{}E\discretionary {-}{}{}W@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}V\discretionary {-}{}{}I\discretionary {-}{}{}E\discretionary {-}{}{}W}!plot_layouts.h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{153}
+\indexentry{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}C\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}C\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}R}|hyperpage}{153}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}C\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}C\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}R}!plot_layouts.h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{153}
+\indexentry{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}!simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates@{simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}|hyperpage}{154}
+\indexentry{simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates@{simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}!plot_layouts.h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{154}
+\indexentry{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}!simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates@{simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}|hyperpage}{154}
+\indexentry{simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates@{simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}!plot_layouts.h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{154}
+\indexentry{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}!rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type@{rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type}|hyperpage}{155}
+\indexentry{rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type@{rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type}!plot_layouts.h@{plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}|hyperpage}{155}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/profiledist.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/profiledist.\discretionary {-}{}{}h}|hyperpage}{155}
+\indexentry{profiledist.\discretionary {-}{}{}h@{profiledist.\discretionary {-}{}{}h}!profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}|hyperpage}{156}
+\indexentry{profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}!profiledist.h@{profiledist.\discretionary {-}{}{}h}|hyperpage}{156}
+\indexentry{profiledist.\discretionary {-}{}{}h@{profiledist.\discretionary {-}{}{}h}!Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}|hyperpage}{156}
+\indexentry{Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm@{Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}!profiledist.h@{profiledist.\discretionary {-}{}{}h}|hyperpage}{156}
+\indexentry{profiledist.\discretionary {-}{}{}h@{profiledist.\discretionary {-}{}{}h}!free\discretionary {-}{}{}\_\discretionary {-}{}{}profile@{free\discretionary {-}{}{}\_\discretionary {-}{}{}profile}|hyperpage}{156}
+\indexentry{free\discretionary {-}{}{}\_\discretionary {-}{}{}profile@{free\discretionary {-}{}{}\_\discretionary {-}{}{}profile}!profiledist.h@{profiledist.\discretionary {-}{}{}h}|hyperpage}{156}
+\indexentry{profiledist.\discretionary {-}{}{}h@{profiledist.\discretionary {-}{}{}h}!Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile@{Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile}|hyperpage}{156}
+\indexentry{Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile@{Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile}!profiledist.h@{profiledist.\discretionary {-}{}{}h}|hyperpage}{156}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{157}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}|hyperpage}{158}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{158}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a}|hyperpage}{158}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{158}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A@{gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}|hyperpage}{158}
+\indexentry{gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A@{gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{158}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}|hyperpage}{159}
+\indexentry{ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{159}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}|hyperpage}{159}
+\indexentry{svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{159}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}|hyperpage}{159}
+\indexentry{xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{159}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list}|hyperpage}{159}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{159}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln@{ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln}|hyperpage}{160}
+\indexentry{ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln@{ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{160}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}!P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot}|hyperpage}{160}
+\indexentry{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot}!PS_dot.h@{P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}|hyperpage}{160}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/read\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/read\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h}|hyperpage}{160}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{161}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T@{b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T}|hyperpage}{162}
+\indexentry{b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T@{b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{162}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!b2\discretionary {-}{}{}C@{b2\discretionary {-}{}{}C}|hyperpage}{162}
+\indexentry{b2\discretionary {-}{}{}C@{b2\discretionary {-}{}{}C}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{162}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!b2\discretionary {-}{}{}Shapiro@{b2\discretionary {-}{}{}Shapiro}|hyperpage}{162}
+\indexentry{b2\discretionary {-}{}{}Shapiro@{b2\discretionary {-}{}{}Shapiro}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{162}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!add\discretionary {-}{}{}\_\discretionary {-}{}{}root@{add\discretionary {-}{}{}\_\discretionary {-}{}{}root}|hyperpage}{163}
+\indexentry{add\discretionary {-}{}{}\_\discretionary {-}{}{}root@{add\discretionary {-}{}{}\_\discretionary {-}{}{}root}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{163}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro@{expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro}|hyperpage}{163}
+\indexentry{expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro@{expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{163}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full@{expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}|hyperpage}{163}
+\indexentry{expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full@{expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{163}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full@{unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}|hyperpage}{163}
+\indexentry{unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full@{unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{163}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!unweight@{unweight}|hyperpage}{163}
+\indexentry{unweight@{unweight}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{163}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F@{unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F}|hyperpage}{164}
+\indexentry{unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F@{unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{164}
+\indexentry{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}!parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure}|hyperpage}{164}
+\indexentry{parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure}!RNAstruct.h@{R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}|hyperpage}{164}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/stringdist.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/stringdist.\discretionary {-}{}{}h}|hyperpage}{164}
+\indexentry{stringdist.\discretionary {-}{}{}h@{stringdist.\discretionary {-}{}{}h}!Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String@{Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String}|hyperpage}{165}
+\indexentry{Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String@{Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String}!stringdist.h@{stringdist.\discretionary {-}{}{}h}|hyperpage}{165}
+\indexentry{stringdist.\discretionary {-}{}{}h@{stringdist.\discretionary {-}{}{}h}!string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}|hyperpage}{165}
+\indexentry{string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}!stringdist.h@{stringdist.\discretionary {-}{}{}h}|hyperpage}{165}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/subopt.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/subopt.\discretionary {-}{}{}h}|hyperpage}{166}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/treedist.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/treedist.\discretionary {-}{}{}h}|hyperpage}{167}
+\indexentry{treedist.\discretionary {-}{}{}h@{treedist.\discretionary {-}{}{}h}!make\discretionary {-}{}{}\_\discretionary {-}{}{}tree@{make\discretionary {-}{}{}\_\discretionary {-}{}{}tree}|hyperpage}{168}
+\indexentry{make\discretionary {-}{}{}\_\discretionary {-}{}{}tree@{make\discretionary {-}{}{}\_\discretionary {-}{}{}tree}!treedist.h@{treedist.\discretionary {-}{}{}h}|hyperpage}{168}
+\indexentry{treedist.\discretionary {-}{}{}h@{treedist.\discretionary {-}{}{}h}!tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}|hyperpage}{168}
+\indexentry{tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance@{tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}!treedist.h@{treedist.\discretionary {-}{}{}h}|hyperpage}{168}
+\indexentry{treedist.\discretionary {-}{}{}h@{treedist.\discretionary {-}{}{}h}!free\discretionary {-}{}{}\_\discretionary {-}{}{}tree@{free\discretionary {-}{}{}\_\discretionary {-}{}{}tree}|hyperpage}{168}
+\indexentry{free\discretionary {-}{}{}\_\discretionary {-}{}{}tree@{free\discretionary {-}{}{}\_\discretionary {-}{}{}tree}!treedist.h@{treedist.\discretionary {-}{}{}h}|hyperpage}{168}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/utils.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/utils.\discretionary {-}{}{}h}|hyperpage}{168}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R}|hyperpage}{171}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{171}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T}|hyperpage}{171}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{171}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}|hyperpage}{171}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{171}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}|hyperpage}{171}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{171}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E}|hyperpage}{171}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{171}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}|hyperpage}{171}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{171}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}U\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}U\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}U\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}U\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E\discretionary {-}{}{}S@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E\discretionary {-}{}{}S}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E\discretionary {-}{}{}S@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E\discretionary {-}{}{}S}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}S@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}S}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}S@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}S}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}|hyperpage}{172}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{172}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}|hyperpage}{173}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}|hyperpage}{173}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}|hyperpage}{173}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G}|hyperpage}{173}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}P\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}P\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}|hyperpage}{173}
+\indexentry{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}P\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E@{V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}P\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!M\discretionary {-}{}{}I\discretionary {-}{}{}N2@{M\discretionary {-}{}{}I\discretionary {-}{}{}N2}|hyperpage}{173}
+\indexentry{M\discretionary {-}{}{}I\discretionary {-}{}{}N2@{M\discretionary {-}{}{}I\discretionary {-}{}{}N2}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!M\discretionary {-}{}{}A\discretionary {-}{}{}X2@{M\discretionary {-}{}{}A\discretionary {-}{}{}X2}|hyperpage}{173}
+\indexentry{M\discretionary {-}{}{}A\discretionary {-}{}{}X2@{M\discretionary {-}{}{}A\discretionary {-}{}{}X2}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!M\discretionary {-}{}{}I\discretionary {-}{}{}N3@{M\discretionary {-}{}{}I\discretionary {-}{}{}N3}|hyperpage}{173}
+\indexentry{M\discretionary {-}{}{}I\discretionary {-}{}{}N3@{M\discretionary {-}{}{}I\discretionary {-}{}{}N3}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!M\discretionary {-}{}{}A\discretionary {-}{}{}X3@{M\discretionary {-}{}{}A\discretionary {-}{}{}X3}|hyperpage}{173}
+\indexentry{M\discretionary {-}{}{}A\discretionary {-}{}{}X3@{M\discretionary {-}{}{}A\discretionary {-}{}{}X3}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R@{X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R}|hyperpage}{173}
+\indexentry{X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R@{X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!S\discretionary {-}{}{}T\discretionary {-}{}{}R@{S\discretionary {-}{}{}T\discretionary {-}{}{}R}|hyperpage}{173}
+\indexentry{S\discretionary {-}{}{}T\discretionary {-}{}{}R@{S\discretionary {-}{}{}T\discretionary {-}{}{}R}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{173}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H@{F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}|hyperpage}{174}
+\indexentry{F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H@{F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{174}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H@{F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}|hyperpage}{174}
+\indexentry{F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H@{F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{174}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!space@{space}|hyperpage}{174}
+\indexentry{space@{space}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{174}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!xrealloc@{xrealloc}|hyperpage}{174}
+\indexentry{xrealloc@{xrealloc}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{174}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!nrerror@{nrerror}|hyperpage}{174}
+\indexentry{nrerror@{nrerror}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{174}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!warn\discretionary {-}{}{}\_\discretionary {-}{}{}user@{warn\discretionary {-}{}{}\_\discretionary {-}{}{}user}|hyperpage}{175}
+\indexentry{warn\discretionary {-}{}{}\_\discretionary {-}{}{}user@{warn\discretionary {-}{}{}\_\discretionary {-}{}{}user}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{175}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!urn@{urn}|hyperpage}{175}
+\indexentry{urn@{urn}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{175}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!int\discretionary {-}{}{}\_\discretionary {-}{}{}urn@{int\discretionary {-}{}{}\_\discretionary {-}{}{}urn}|hyperpage}{175}
+\indexentry{int\discretionary {-}{}{}\_\discretionary {-}{}{}urn@{int\discretionary {-}{}{}\_\discretionary {-}{}{}urn}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{175}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp@{time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp}|hyperpage}{175}
+\indexentry{time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp@{time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{175}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!random\discretionary {-}{}{}\_\discretionary {-}{}{}string@{random\discretionary {-}{}{}\_\discretionary {-}{}{}string}|hyperpage}{175}
+\indexentry{random\discretionary {-}{}{}\_\discretionary {-}{}{}string@{random\discretionary {-}{}{}\_\discretionary {-}{}{}string}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{175}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!hamming@{hamming}|hyperpage}{176}
+\indexentry{hamming@{hamming}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{176}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound@{hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound}|hyperpage}{176}
+\indexentry{hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound@{hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{176}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}line@{get\discretionary {-}{}{}\_\discretionary {-}{}{}line}|hyperpage}{176}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}line@{get\discretionary {-}{}{}\_\discretionary {-}{}{}line}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{176}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line@{get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line}|hyperpage}{176}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line@{get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{176}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!read\discretionary {-}{}{}\_\discretionary {-}{}{}record@{read\discretionary {-}{}{}\_\discretionary {-}{}{}record}|hyperpage}{177}
+\indexentry{read\discretionary {-}{}{}\_\discretionary {-}{}{}record@{read\discretionary {-}{}{}\_\discretionary {-}{}{}record}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{177}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}|hyperpage}{178}
+\indexentry{pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{178}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}|hyperpage}{178}
+\indexentry{unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure@{unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{178}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table@{make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}|hyperpage}{178}
+\indexentry{make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table@{make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{178}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table@{copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}|hyperpage}{179}
+\indexentry{copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table@{copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{179}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table@{alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}|hyperpage}{179}
+\indexentry{alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table@{alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{179}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop@{make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop}|hyperpage}{179}
+\indexentry{make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop@{make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{179}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt}|hyperpage}{179}
+\indexentry{make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt@{make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{179}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq@{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq}|hyperpage}{179}
+\indexentry{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq@{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{179}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str@{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str}|hyperpage}{179}
+\indexentry{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str@{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{179}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint@{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint}|hyperpage}{180}
+\indexentry{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint@{print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{180}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A@{str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}|hyperpage}{180}
+\indexentry{str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A@{str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{180}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase@{str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase}|hyperpage}{180}
+\indexentry{str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase@{str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{180}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx@{get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx}|hyperpage}{180}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx@{get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{180}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!get\discretionary {-}{}{}\_\discretionary {-}{}{}indx@{get\discretionary {-}{}{}\_\discretionary {-}{}{}indx}|hyperpage}{181}
+\indexentry{get\discretionary {-}{}{}\_\discretionary {-}{}{}indx@{get\discretionary {-}{}{}\_\discretionary {-}{}{}indx}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{181}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes@{constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes}|hyperpage}{181}
+\indexentry{constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes@{constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{181}
+\indexentry{utils.\discretionary {-}{}{}h@{utils.\discretionary {-}{}{}h}!xsubi@{xsubi}|hyperpage}{182}
+\indexentry{xsubi@{xsubi}!utils.h@{utils.\discretionary {-}{}{}h}|hyperpage}{182}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.\discretionary {-}{}{}8.\discretionary {-}{}{}4\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.\discretionary {-}{}{}8.\discretionary {-}{}{}4\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h}|hyperpage}{182}
+\indexentry{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.\discretionary {-}{}{}8.\discretionary {-}{}{}4\discretionary {-}{}{}\_\discretionary {-}{}{}intloops.\discretionary {-}{}{}h@{/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.\discretionary {-}{}{}8.\discretionary {-}{}{}4\discretionary {-}{}{}\_\discretionary {-}{}{}intloops.\discretionary {-}{}{}h}|hyperpage}{182}
--- /dev/null
+This is makeindex, version 2.15 [TeX Live 2012] (kpathsea + Thai support).
+Scanning input file refman.idx....
+!! Input index error (file = refman.idx, line = 149):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 150):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 151):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 152):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 153):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 154):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 155):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 156):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 157):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 158):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 159):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 160):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 161):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 162):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 163):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 164):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 165):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 166):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 167):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 168):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 169):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 170):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 171):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 172):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 173):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 174):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 175):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 176):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 177):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 178):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 179):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 180):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 181):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 182):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 183):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 184):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 185):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 186):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 187):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 188):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 189):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 190):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 191):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 192):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 448):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 449):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 450):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 451):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 452):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 453):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 530):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 531):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 534):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 535):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 536):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 537):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 542):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 543):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 544):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 545):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 546):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 547):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 550):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 556):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 557):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 558):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 559):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 560):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 561):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 562):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 563):
+ -- First argument too long (max 1024).
+
+!! Input index error (file = refman.idx, line = 568):
+ -- First argument too long (max 1024).
+!! Input index error (file = refman.idx, line = 569):
+ -- First argument too long (max 1024).
+done (572 entries accepted, 73 rejected).
+Sorting entries.......done (5600 comparisons).
+Generating output file refman.ind....done (1321 lines written, 0 warnings).
+Output written in refman.ind.
+Transcript written in refman.ilg.
--- /dev/null
+\begin{theindex}
+
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dfold.\discretionary {-}{}{}h},
+ \hyperpage{109}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dpfold.\discretionary {-}{}{}h},
+ \hyperpage{110}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h},
+ \hyperpage{141}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}Lfold.\discretionary {-}{}{}h},
+ \hyperpage{135}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h},
+ \hyperpage{142}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{157}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{161}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/alifold.\discretionary {-}{}{}h},
+ \hyperpage{111}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/cofold.\discretionary {-}{}{}h},
+ \hyperpage{113}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/convert\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h},
+ \hyperpage{114}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/data\discretionary {-}{}{}\_\discretionary {-}{}{}structures.\discretionary {-}{}{}h},
+ \hyperpage{115}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{117}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/duplex.\discretionary {-}{}{}h},
+ \hyperpage{118}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/edit\discretionary {-}{}{}\_\discretionary {-}{}{}cost.\discretionary {-}{}{}h},
+ \hyperpage{119}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{119}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/findpath.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold.\discretionary {-}{}{}h},
+ \hyperpage{122}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{128}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/gquad.\discretionary {-}{}{}h},
+ \hyperpage{133}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/inverse.\discretionary {-}{}{}h},
+ \hyperpage{135}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{136}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/mm.\discretionary {-}{}{}h},
+ \hyperpage{144}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/naview.\discretionary {-}{}{}h},
+ \hyperpage{144}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/params.\discretionary {-}{}{}h},
+ \hyperpage{145}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h},
+ \hyperpage{146}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h},
+ \hyperpage{148}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}up.\discretionary {-}{}{}h},
+ \hyperpage{150}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h},
+ \hyperpage{152}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/profiledist.\discretionary {-}{}{}h},
+ \hyperpage{155}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/read\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h},
+ \hyperpage{160}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/stringdist.\discretionary {-}{}{}h},
+ \hyperpage{164}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/subopt.\discretionary {-}{}{}h},
+ \hyperpage{166}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/treedist.\discretionary {-}{}{}h},
+ \hyperpage{167}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/utils.\discretionary {-}{}{}h},
+ \hyperpage{168}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.\discretionary {-}{}{}8.\discretionary {-}{}{}4\discretionary {-}{}{}\_\discretionary {-}{}{}epars.\discretionary {-}{}{}h},
+ \hyperpage{182}
+ \item {/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.\discretionary {-}{}{}projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.\discretionary {-}{}{}8.\discretionary {-}{}{}4\discretionary {-}{}{}\_\discretionary {-}{}{}intloops.\discretionary {-}{}{}h},
+ \hyperpage{182}
+
+ \indexspace
+
+ \item {add\discretionary {-}{}{}\_\discretionary {-}{}{}root}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{163}
+ \item {ali\discretionary {-}{}{}Lfold}
+ \subitem {Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments},
+ \hyperpage{63}
+ \item {ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{160}
+ \item {alifold}
+ \subitem {M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)},
+ \hyperpage{54}
+ \item {alifold.\discretionary {-}{}{}h}
+ \subitem {update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params},
+ \hyperpage{112}
+ \item {alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{179}
+ \item {alipbacktrack}
+ \subitem {Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)},
+ \hyperpage{58}
+ \item {alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Partition Function and Base Pair Probabilities for Sequence Alignment(s)},
+ \hyperpage{57}
+ \item {alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Partition Function and Base Pair Probabilities for Sequence Alignment(s)},
+ \hyperpage{56}
+ \item {alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Partition Function and Base Pair Probabilities for Sequence Alignment(s)},
+ \hyperpage{56}
+ \item {alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{52}
+ \item {alpha}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T},
+ \hyperpage{100}
+ \item {assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{126}
+ \item {assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{29}
+
+ \indexspace
+
+ \item {b2\discretionary {-}{}{}C}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{162}
+ \item {b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{162}
+ \item {b2\discretionary {-}{}{}Shapiro}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{162}
+ \item {B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}
+ \subitem {gquad.\discretionary {-}{}{}h}, \hyperpage{134}
+ \item {backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L}
+ \subitem {gquad.\discretionary {-}{}{}h}, \hyperpage{134}
+ \item {backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {base\discretionary {-}{}{}\_\discretionary {-}{}{}pair}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {bond\discretionary {-}{}{}T}, \hyperpage{91}
+ \item {bond\discretionary {-}{}{}T\discretionary {-}{}{}En},
+ \hyperpage{91}
+
+ \indexspace
+
+ \item {C\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}D\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}E},
+ \hyperpage{92}
+ \item {Calculate Partition Functions of a Distance Based Partitioning},
+ \hyperpage{84}
+ \subitem {destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables},
+ \hyperpage{85}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables},
+ \hyperpage{84}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E},
+ \hyperpage{85}
+ \subitem {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List},
+ \hyperpage{85}
+ \item {Calculate Secondary Structures of two R\discretionary {-}{}{}N\discretionary {-}{}{}As upon Dimerization},
+ \hyperpage{41}
+ \item {Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning},
+ \hyperpage{81}
+ \subitem {destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables},
+ \hyperpage{82}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables},
+ \hyperpage{81}
+ \subitem {Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5},
+ \hyperpage{83}
+ \subitem {Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List},
+ \hyperpage{82}
+ \item {Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures},
+ \hyperpage{22}
+ \subitem {circfold}, \hyperpage{24}
+ \subitem {fold}, \hyperpage{23}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{23}
+ \item {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{25}
+ \subitem {assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr},
+ \hyperpage{29}
+ \subitem {export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm},
+ \hyperpage{29}
+ \subitem {free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays},
+ \hyperpage{29}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays},
+ \hyperpage{30}
+ \subitem {mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance},
+ \hyperpage{30}
+ \subitem {mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr},
+ \hyperpage{31}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{28}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{27}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{26}
+ \subitem {update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params},
+ \hyperpage{29}
+ \item {centroid}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h},
+ \hyperpage{148}
+ \item {Change and Precalculate Energy Parameter Sets and Boltzmann Factors},
+ \hyperpage{64}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy},
+ \hyperpage{66}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors},
+ \hyperpage{65}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters},
+ \hyperpage{65}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters},
+ \hyperpage{65}
+ \subitem {scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters},
+ \hyperpage{65}
+ \item {circalifold}
+ \subitem {M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)},
+ \hyperpage{54}
+ \item {circfold}
+ \subitem {Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures},
+ \hyperpage{24}
+ \item {Classified Dynamic Programming}, \hyperpage{79}
+ \item {co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{45}
+ \item {co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{45}
+ \item {cofold}
+ \subitem {M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences},
+ \hyperpage{42}
+ \item {cofold.\discretionary {-}{}{}h}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes},
+ \hyperpage{114}
+ \subitem {initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold},
+ \hyperpage{114}
+ \item {cofold\discretionary {-}{}{}F}, \hyperpage{91}
+ \item {Compute the centroid structure}, \hyperpage{33}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl},
+ \hyperpage{33}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr},
+ \hyperpage{33}
+ \item {Compute the Density of States}, \hyperpage{89}
+ \subitem {density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states},
+ \hyperpage{89}
+ \item {Compute the structure with maximum expected accuracy (\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A)},
+ \hyperpage{32}
+ \item {compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{47}
+ \item {Conc\discretionary {-}{}{}Ent}, \hyperpage{92}
+ \item {constrain}, \hyperpage{92}
+ \item {constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{181}
+ \item {convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}
+ \subitem {Converting energy parameter files}, \hyperpage{71}
+ \item {Converting energy parameter files}, \hyperpage{69}
+ \subitem {convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file},
+ \hyperpage{71}
+ \item {copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{179}
+ \item {cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}
+ \subitem {dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{118}
+ \item {cpair}, \hyperpage{93}
+ \item {cut\discretionary {-}{}{}\_\discretionary {-}{}{}point}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{53}
+
+ \indexspace
+
+ \item {dangles}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{130}
+ \subitem {model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T},
+ \hyperpage{96}
+ \item {density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states}
+ \subitem {Compute the Density of States}, \hyperpage{89}
+ \item {destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}
+ \subitem {Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning},
+ \hyperpage{82}
+ \item {destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}
+ \subitem {Calculate Partition Functions of a Distance Based Partitioning},
+ \hyperpage{85}
+ \item {dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}
+ \subitem {cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix},
+ \hyperpage{118}
+ \subitem {edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack},
+ \hyperpage{118}
+ \item {Distance based partitioning of the Secondary Structure Space},
+ \hyperpage{80}
+ \item {do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {dup\discretionary {-}{}{}Var}, \hyperpage{93}
+ \item {duplex\discretionary {-}{}{}T}, \hyperpage{93}
+
+ \indexspace
+
+ \item {E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{138}
+ \item {E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{137}
+ \item {E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{138}
+ \item {edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}
+ \subitem {dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{118}
+ \item {encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{51}
+ \item {Energy evaluation}, \hyperpage{73}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{75}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure},
+ \hyperpage{74}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{74}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{76}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure},
+ \hyperpage{73}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt},
+ \hyperpage{75}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h}
+ \subitem {B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S},
+ \hyperpage{120}
+ \subitem {F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N},
+ \hyperpage{120}
+ \subitem {G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T},
+ \hyperpage{120}
+ \subitem {I\discretionary {-}{}{}N\discretionary {-}{}{}F},
+ \hyperpage{120}
+ \subitem {K0}, \hyperpage{120}
+ \subitem {M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P},
+ \hyperpage{120}
+ \subitem {N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S},
+ \hyperpage{120}
+ \subitem {T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N},
+ \hyperpage{120}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{51}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{127}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Energy evaluation}, \hyperpage{75}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure}
+ \subitem {Energy evaluation}, \hyperpage{74}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{125}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{125}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{126}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Energy evaluation}, \hyperpage{74}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{127}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Energy evaluation}, \hyperpage{76}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure}
+ \subitem {Energy evaluation}, \hyperpage{73}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt}
+ \subitem {Energy evaluation}, \hyperpage{75}
+ \item {energy\discretionary {-}{}{}\_\discretionary {-}{}{}set}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {Enumerating Suboptimal Structures}, \hyperpage{35}
+ \item {exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{140}
+ \item {exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{140}
+ \item {exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h},
+ \hyperpage{139}
+ \item {exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h},
+ \hyperpage{148}
+ \item {exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h},
+ \hyperpage{148}
+ \item {expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{163}
+ \item {expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{163}
+ \item {export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}
+ \subitem {Partition Function and Base Pair Probabilities for Sequence Alignment(s)},
+ \hyperpage{57}
+ \item {export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{29}
+ \item {export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{46}
+ \item {export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}
+ \subitem {M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences},
+ \hyperpage{43}
+ \item {export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq}
+ \subitem {M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences},
+ \hyperpage{43}
+
+ \indexspace
+
+ \item {F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{174}
+ \item {F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{174}
+ \item {F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {final\discretionary {-}{}{}\_\discretionary {-}{}{}cost}
+ \subitem {Searching Sequences for Predefined Structures},
+ \hyperpage{78}
+ \item {find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle}
+ \subitem {findpath.\discretionary {-}{}{}h}, \hyperpage{121}
+ \item {findpath.\discretionary {-}{}{}h}
+ \subitem {find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle},
+ \hyperpage{121}
+ \subitem {free\discretionary {-}{}{}\_\discretionary {-}{}{}path},
+ \hyperpage{122}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}path},
+ \hyperpage{122}
+ \item {fold}
+ \subitem {Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures},
+ \hyperpage{23}
+ \item {fold.\discretionary {-}{}{}h}
+ \subitem {assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db},
+ \hyperpage{126}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct},
+ \hyperpage{127}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move},
+ \hyperpage{125}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt},
+ \hyperpage{125}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct},
+ \hyperpage{126}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt},
+ \hyperpage{127}
+ \subitem {Hairpin\discretionary {-}{}{}E}, \hyperpage{126}
+ \subitem {initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{126}
+ \subitem {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy},
+ \hyperpage{125}
+ \subitem {Loop\discretionary {-}{}{}Energy}, \hyperpage{126}
+ \subitem {parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure},
+ \hyperpage{124}
+ \subitem {parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker},
+ \hyperpage{124}
+ \item {fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Calculating Minimum Free Energy (\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures},
+ \hyperpage{23}
+ \item {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h}
+ \subitem {backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type},
+ \hyperpage{132}
+ \subitem {base\discretionary {-}{}{}\_\discretionary {-}{}{}pair},
+ \hyperpage{132}
+ \subitem {cut\discretionary {-}{}{}\_\discretionary {-}{}{}point},
+ \hyperpage{132}
+ \subitem {dangles}, \hyperpage{130}
+ \subitem {do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack},
+ \hyperpage{132}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}set},
+ \hyperpage{131}
+ \subitem {iindx}, \hyperpage{132}
+ \subitem {james\discretionary {-}{}{}\_\discretionary {-}{}{}rule},
+ \hyperpage{131}
+ \subitem {log\discretionary {-}{}{}M\discretionary {-}{}{}L},
+ \hyperpage{131}
+ \subitem {no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs},
+ \hyperpage{130}
+ \subitem {nonstandards}, \hyperpage{131}
+ \subitem {old\discretionary {-}{}{}Ali\discretionary {-}{}{}En},
+ \hyperpage{131}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale},
+ \hyperpage{132}
+ \subitem {pr}, \hyperpage{132}
+ \subitem {ribo}, \hyperpage{131}
+ \subitem {Ribosum\discretionary {-}{}{}File}, \hyperpage{131}
+ \subitem {set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details},
+ \hyperpage{130}
+ \subitem {temperature}, \hyperpage{131}
+ \subitem {tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop},
+ \hyperpage{131}
+ \item {folden}, \hyperpage{93}
+ \item {free\discretionary {-}{}{}\_\discretionary {-}{}{}path}
+ \subitem {findpath.\discretionary {-}{}{}h}, \hyperpage{122}
+ \item {free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{29}
+ \item {free\discretionary {-}{}{}\_\discretionary {-}{}{}profile}
+ \subitem {profiledist.\discretionary {-}{}{}h}, \hyperpage{156}
+ \item {free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{52}
+ \item {free\discretionary {-}{}{}\_\discretionary {-}{}{}tree}
+ \subitem {treedist.\discretionary {-}{}{}h}, \hyperpage{168}
+
+ \indexspace
+
+ \item {G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}
+ \subitem {Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning},
+ \hyperpage{81}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}
+ \subitem {Calculate Partition Functions of a Distance Based Partitioning},
+ \hyperpage{84}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E}
+ \subitem {Calculate Partition Functions of a Distance Based Partitioning},
+ \hyperpage{85}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{53}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy}
+ \subitem {Change and Precalculate Energy Parameter Sets and Boltzmann Factors},
+ \hyperpage{66}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors}
+ \subitem {Change and Precalculate Energy Parameter Sets and Boltzmann Factors},
+ \hyperpage{65}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl}
+ \subitem {Compute the centroid structure}, \hyperpage{33}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr}
+ \subitem {Compute the centroid structure}, \hyperpage{33}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{47}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}
+ \subitem {gquad.\discretionary {-}{}{}h}, \hyperpage{134}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{180}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}indx}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{181}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{176}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}line}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{176}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes}
+ \subitem {cofold.\discretionary {-}{}{}h}, \hyperpage{114}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{51}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}path}
+ \subitem {findpath.\discretionary {-}{}{}h}, \hyperpage{122}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{30}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}plist}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h},
+ \hyperpage{150}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}
+ \subitem {Change and Precalculate Energy Parameter Sets and Boltzmann Factors},
+ \hyperpage{65}
+ \item {get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}
+ \subitem {Change and Precalculate Energy Parameter Sets and Boltzmann Factors},
+ \hyperpage{65}
+ \item {give\discretionary {-}{}{}\_\discretionary {-}{}{}up}
+ \subitem {Searching Sequences for Predefined Structures},
+ \hyperpage{78}
+ \item {gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{158}
+ \item {gquad.\discretionary {-}{}{}h}
+ \subitem {backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop},
+ \hyperpage{134}
+ \subitem {backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L},
+ \hyperpage{134}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix},
+ \hyperpage{134}
+ \subitem {parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad},
+ \hyperpage{134}
+
+ \indexspace
+
+ \item {Hairpin\discretionary {-}{}{}E}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{126}
+ \item {hamming}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{176}
+ \item {hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{176}
+
+ \indexspace
+
+ \item {I\discretionary {-}{}{}N\discretionary {-}{}{}F}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}L},
+ \hyperpage{94}
+ \item {iindx}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h},
+ \hyperpage{150}
+ \item {init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h},
+ \hyperpage{148}
+ \item {init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P}
+ \subitem {L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h},
+ \hyperpage{142}
+ \item {initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold}
+ \subitem {cofold.\discretionary {-}{}{}h}, \hyperpage{114}
+ \item {initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{126}
+ \item {int\discretionary {-}{}{}\_\discretionary {-}{}{}urn}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{175}
+ \item {interact}, \hyperpage{93}
+ \item {intermediate\discretionary {-}{}{}\_\discretionary {-}{}{}t},
+ \hyperpage{94}
+ \item {inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose}
+ \subitem {Searching Sequences for Predefined Structures},
+ \hyperpage{78}
+ \item {inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Searching Sequences for Predefined Structures},
+ \hyperpage{77}
+ \item {inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Searching Sequences for Predefined Structures},
+ \hyperpage{78}
+
+ \indexspace
+
+ \item {james\discretionary {-}{}{}\_\discretionary {-}{}{}rule}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+
+ \indexspace
+
+ \item {K0}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+
+ \indexspace
+
+ \item {L\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}T},
+ \hyperpage{95}
+ \item {L\discretionary {-}{}{}Pfold.\discretionary {-}{}{}h}
+ \subitem {init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P},
+ \hyperpage{142}
+ \item {L\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}C\discretionary {-}{}{}K\discretionary {-}{}{}E\discretionary {-}{}{}T},
+ \hyperpage{95}
+ \item {Lfold}
+ \subitem {Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores},
+ \hyperpage{60}
+ \item {Lfoldz}
+ \subitem {Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores},
+ \hyperpage{60}
+ \item {Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments},
+ \hyperpage{63}
+ \subitem {ali\discretionary {-}{}{}Lfold}, \hyperpage{63}
+ \item {Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores},
+ \hyperpage{60}
+ \subitem {Lfold}, \hyperpage{60}
+ \subitem {Lfoldz}, \hyperpage{60}
+ \item {log\discretionary {-}{}{}M\discretionary {-}{}{}L}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.\discretionary {-}{}{}h}
+ \subitem {E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin},
+ \hyperpage{138}
+ \subitem {E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop},
+ \hyperpage{137}
+ \subitem {E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem},
+ \hyperpage{138}
+ \subitem {exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin},
+ \hyperpage{140}
+ \subitem {exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop},
+ \hyperpage{140}
+ \subitem {exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem},
+ \hyperpage{139}
+ \item {loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{125}
+ \item {Loop\discretionary {-}{}{}Energy}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{126}
+
+ \indexspace
+
+ \item {M\discretionary {-}{}{}A\discretionary {-}{}{}X2}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {M\discretionary {-}{}{}A\discretionary {-}{}{}X3}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {M\discretionary {-}{}{}E\discretionary {-}{}{}A}
+ \subitem {M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h},
+ \hyperpage{143}
+ \item {M\discretionary {-}{}{}E\discretionary {-}{}{}A.\discretionary {-}{}{}h}
+ \subitem {M\discretionary {-}{}{}E\discretionary {-}{}{}A},
+ \hyperpage{143}
+ \item {M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)},
+ \hyperpage{54}
+ \subitem {alifold}, \hyperpage{54}
+ \subitem {circalifold}, \hyperpage{54}
+ \item {M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences},
+ \hyperpage{42}
+ \subitem {cofold}, \hyperpage{42}
+ \subitem {export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays},
+ \hyperpage{43}
+ \subitem {export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq},
+ \hyperpage{43}
+ \item {M\discretionary {-}{}{}I\discretionary {-}{}{}N2}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {M\discretionary {-}{}{}I\discretionary {-}{}{}N3}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile}
+ \subitem {profiledist.\discretionary {-}{}{}h}, \hyperpage{156}
+ \item {Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}
+ \subitem {profiledist.\discretionary {-}{}{}h}, \hyperpage{156}
+ \item {make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{179}
+ \item {make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{178}
+ \item {make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{179}
+ \item {Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String}
+ \subitem {stringdist.\discretionary {-}{}{}h}, \hyperpage{165}
+ \item {make\discretionary {-}{}{}\_\discretionary {-}{}{}tree}
+ \subitem {treedist.\discretionary {-}{}{}h}, \hyperpage{168}
+ \item {mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist}
+ \subitem {part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h},
+ \hyperpage{148}
+ \item {mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{30}
+ \item {mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{31}
+ \item {model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T},
+ \hyperpage{96}
+ \subitem {dangles}, \hyperpage{96}
+ \item {move\discretionary {-}{}{}\_\discretionary {-}{}{}t},
+ \hyperpage{96}
+
+ \indexspace
+
+ \item {N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact}
+ \subitem {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{53}
+ \item {no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{130}
+ \item {nonstandards}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {nrerror}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{174}
+
+ \indexspace
+
+ \item {old\discretionary {-}{}{}Ali\discretionary {-}{}{}En}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+
+ \indexspace
+
+ \item {P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R},
+ \hyperpage{97}
+ \item {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h}
+ \subitem {ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln},
+ \hyperpage{160}
+ \subitem {gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A},
+ \hyperpage{158}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot},
+ \hyperpage{160}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list},
+ \hyperpage{159}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot},
+ \hyperpage{158}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a},
+ \hyperpage{158}
+ \subitem {ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot},
+ \hyperpage{159}
+ \subitem {svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot},
+ \hyperpage{159}
+ \subitem {xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot},
+ \hyperpage{159}
+ \item {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{160}
+ \item {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{159}
+ \item {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{158}
+ \item {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{158}
+ \item {pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{178}
+ \item {pair\discretionary {-}{}{}\_\discretionary {-}{}{}info},
+ \hyperpage{97}
+ \item {pairpro}, \hyperpage{98}
+ \item {param\discretionary {-}{}{}T}, \hyperpage{98}
+ \item {parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{124}
+ \item {parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker}
+ \subitem {fold.\discretionary {-}{}{}h}, \hyperpage{124}
+ \item {parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad}
+ \subitem {gquad.\discretionary {-}{}{}h}, \hyperpage{134}
+ \item {parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{164}
+ \item {Parsing and Comparing -\/ Functions to Manipulate Structures},
+ \hyperpage{90}
+ \item {part\discretionary {-}{}{}\_\discretionary {-}{}{}func.\discretionary {-}{}{}h}
+ \subitem {centroid}, \hyperpage{148}
+ \subitem {exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy},
+ \hyperpage{148}
+ \subitem {exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy},
+ \hyperpage{148}
+ \subitem {init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{148}
+ \subitem {mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist},
+ \hyperpage{148}
+ \item {part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.\discretionary {-}{}{}h}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}plist},
+ \hyperpage{150}
+ \subitem {init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{150}
+ \item {Partition Function and Base Pair Probabilities for Sequence Alignment(s)},
+ \hyperpage{56}
+ \subitem {alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{57}
+ \subitem {alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{56}
+ \subitem {alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{56}
+ \subitem {export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm},
+ \hyperpage{57}
+ \item {Partition Function for two hybridized Sequences},
+ \hyperpage{44}
+ \subitem {co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{45}
+ \subitem {co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{45}
+ \subitem {compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities},
+ \hyperpage{47}
+ \subitem {export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm},
+ \hyperpage{46}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations},
+ \hyperpage{47}
+ \subitem {update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params},
+ \hyperpage{46}
+ \subitem {update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par},
+ \hyperpage{46}
+ \item {Partition Function for two hybridized Sequences as a stepwise Process},
+ \hyperpage{48}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact},
+ \hyperpage{49}
+ \subitem {pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru},
+ \hyperpage{48}
+ \item {Partition functions for locally stable secondary structures},
+ \hyperpage{61}
+ \subitem {pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{61}
+ \subitem {putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob},
+ \hyperpage{62}
+ \subitem {putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin},
+ \hyperpage{62}
+ \subitem {update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P},
+ \hyperpage{61}
+ \item {path\discretionary {-}{}{}\_\discretionary {-}{}{}t},
+ \hyperpage{99}
+ \item {pbacktrack}
+ \subitem {Stochastic backtracking in the Ensemble}, \hyperpage{39}
+ \item {pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ}
+ \subitem {Stochastic backtracking in the Ensemble}, \hyperpage{40}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{28}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{27}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{26}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact}
+ \subitem {Partition Function for two hybridized Sequences as a stepwise Process},
+ \hyperpage{49}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T},
+ \hyperpage{99}
+ \subitem {alpha}, \hyperpage{100}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru}
+ \subitem {Partition Function for two hybridized Sequences as a stepwise Process},
+ \hyperpage{48}
+ \item {pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold}
+ \subitem {Partition functions for locally stable secondary structures},
+ \hyperpage{61}
+ \item {plist}, \hyperpage{100}
+ \item {plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h}
+ \subitem {rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type},
+ \hyperpage{155}
+ \subitem {simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates},
+ \hyperpage{154}
+ \subitem {simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates},
+ \hyperpage{154}
+ \item {Postorder\discretionary {-}{}{}\_\discretionary {-}{}{}list},
+ \hyperpage{100}
+ \item {pr}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{132}
+ \item {Predicting Consensus Structures from Alignment(s)},
+ \hyperpage{50}
+ \subitem {alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays},
+ \hyperpage{52}
+ \subitem {cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact},
+ \hyperpage{53}
+ \subitem {encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence},
+ \hyperpage{51}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct},
+ \hyperpage{51}
+ \subitem {free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays},
+ \hyperpage{52}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays},
+ \hyperpage{53}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi},
+ \hyperpage{51}
+ \subitem {nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact},
+ \hyperpage{53}
+ \item {Predicting Locally stable structures of large sequences},
+ \hyperpage{59}
+ \item {print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{180}
+ \item {print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{179}
+ \item {print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{179}
+ \item {profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}
+ \subitem {profiledist.\discretionary {-}{}{}h}, \hyperpage{156}
+ \item {profiledist.\discretionary {-}{}{}h}
+ \subitem {free\discretionary {-}{}{}\_\discretionary {-}{}{}profile},
+ \hyperpage{156}
+ \subitem {Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile},
+ \hyperpage{156}
+ \subitem {Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm},
+ \hyperpage{156}
+ \subitem {profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance},
+ \hyperpage{156}
+ \item {pu\discretionary {-}{}{}\_\discretionary {-}{}{}contrib},
+ \hyperpage{100}
+ \item {pu\discretionary {-}{}{}\_\discretionary {-}{}{}out},
+ \hyperpage{101}
+ \item {putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob}
+ \subitem {Partition functions for locally stable secondary structures},
+ \hyperpage{62}
+ \item {putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin}
+ \subitem {Partition functions for locally stable secondary structures},
+ \hyperpage{62}
+
+ \indexspace
+
+ \item {R\discretionary {-}{}{}N\discretionary {-}{}{}A Secondary Structure Folding},
+ \hyperpage{19}
+ \item {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h}
+ \subitem {add\discretionary {-}{}{}\_\discretionary {-}{}{}root},
+ \hyperpage{163}
+ \subitem {b2\discretionary {-}{}{}C}, \hyperpage{162}
+ \subitem {b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T},
+ \hyperpage{162}
+ \subitem {b2\discretionary {-}{}{}Shapiro}, \hyperpage{162}
+ \subitem {expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full},
+ \hyperpage{163}
+ \subitem {expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro},
+ \hyperpage{163}
+ \subitem {parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure},
+ \hyperpage{164}
+ \subitem {unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full},
+ \hyperpage{163}
+ \subitem {unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F},
+ \hyperpage{164}
+ \subitem {unweight}, \hyperpage{163}
+ \item {random\discretionary {-}{}{}\_\discretionary {-}{}{}string}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{175}
+ \item {read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}
+ \subitem {Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File},
+ \hyperpage{67}
+ \item {read\discretionary {-}{}{}\_\discretionary {-}{}{}record}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{177}
+ \item {Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File},
+ \hyperpage{67}
+ \subitem {read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file},
+ \hyperpage{67}
+ \subitem {write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file},
+ \hyperpage{67}
+ \item {ribo}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {Ribosum\discretionary {-}{}{}File}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type}
+ \subitem {plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h},
+ \hyperpage{155}
+
+ \indexspace
+
+ \item {S\discretionary {-}{}{}O\discretionary {-}{}{}L\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N},
+ \hyperpage{102}
+ \item {S\discretionary {-}{}{}T\discretionary {-}{}{}R}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}
+ \subitem {Change and Precalculate Energy Parameter Sets and Boltzmann Factors},
+ \hyperpage{65}
+ \item {Searching Sequences for Predefined Structures}, \hyperpage{77}
+ \subitem {final\discretionary {-}{}{}\_\discretionary {-}{}{}cost},
+ \hyperpage{78}
+ \subitem {give\discretionary {-}{}{}\_\discretionary {-}{}{}up},
+ \hyperpage{78}
+ \subitem {inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose},
+ \hyperpage{78}
+ \subitem {inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{77}
+ \subitem {inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold},
+ \hyperpage{78}
+ \item {sect}, \hyperpage{101}
+ \item {set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{130}
+ \item {simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}
+ \subitem {plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h},
+ \hyperpage{154}
+ \item {simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}
+ \subitem {plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.\discretionary {-}{}{}h},
+ \hyperpage{154}
+ \item {snoop\discretionary {-}{}{}T}, \hyperpage{102}
+ \item {space}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{174}
+ \item {ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{159}
+ \item {st\discretionary {-}{}{}\_\discretionary {-}{}{}back}
+ \subitem {Stochastic backtracking in the Ensemble}, \hyperpage{40}
+ \item {Stochastic backtracking in the Ensemble}, \hyperpage{39}
+ \subitem {pbacktrack}, \hyperpage{39}
+ \subitem {pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ},
+ \hyperpage{40}
+ \subitem {st\discretionary {-}{}{}\_\discretionary {-}{}{}back},
+ \hyperpage{40}
+ \item {Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)},
+ \hyperpage{58}
+ \subitem {alipbacktrack}, \hyperpage{58}
+ \item {Stochastic Backtracking of Structures from Distance Based Partitioning},
+ \hyperpage{87}
+ \subitem {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack},
+ \hyperpage{87}
+ \subitem {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5},
+ \hyperpage{88}
+ \item {str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{180}
+ \item {str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{180}
+ \item {string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}
+ \subitem {stringdist.\discretionary {-}{}{}h}, \hyperpage{165}
+ \item {stringdist.\discretionary {-}{}{}h}
+ \subitem {Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String},
+ \hyperpage{165}
+ \subitem {string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance},
+ \hyperpage{165}
+ \item {struct\discretionary {-}{}{}\_\discretionary {-}{}{}en},
+ \hyperpage{102}
+ \item {subopt}
+ \subitem {Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E},
+ \hyperpage{37}
+ \item {subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ}
+ \subitem {Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E},
+ \hyperpage{38}
+ \item {Suboptimal structures according to Zuker et al. 1989},
+ \hyperpage{36}
+ \subitem {zukersubopt}, \hyperpage{36}
+ \item {Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E},
+ \hyperpage{37}
+ \subitem {subopt}, \hyperpage{37}
+ \subitem {subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ},
+ \hyperpage{38}
+ \item {svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{159}
+ \item {svm\discretionary {-}{}{}\_\discretionary {-}{}{}model},
+ \hyperpage{102}
+ \item {sw\discretionary {-}{}{}String}, \hyperpage{102}
+
+ \indexspace
+
+ \item {T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N}
+ \subitem {energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.\discretionary {-}{}{}h},
+ \hyperpage{120}
+ \item {temperature}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop}
+ \subitem {fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.\discretionary {-}{}{}h},
+ \hyperpage{131}
+ \item {time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{175}
+ \item {Tree}, \hyperpage{103}
+ \item {tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}
+ \subitem {treedist.\discretionary {-}{}{}h}, \hyperpage{168}
+ \item {treedist.\discretionary {-}{}{}h}
+ \subitem {free\discretionary {-}{}{}\_\discretionary {-}{}{}tree},
+ \hyperpage{168}
+ \subitem {make\discretionary {-}{}{}\_\discretionary {-}{}{}tree},
+ \hyperpage{168}
+ \subitem {tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance},
+ \hyperpage{168}
+ \item {Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5}
+ \subitem {Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning},
+ \hyperpage{83}
+ \item {Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution},
+ \hyperpage{103}
+ \item {Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars},
+ \hyperpage{104}
+ \item {Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List}
+ \subitem {Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning},
+ \hyperpage{82}
+ \item {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack}
+ \subitem {Stochastic Backtracking of Structures from Distance Based Partitioning},
+ \hyperpage{87}
+ \item {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5}
+ \subitem {Stochastic Backtracking of Structures from Distance Based Partitioning},
+ \hyperpage{88}
+ \item {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution},
+ \hyperpage{105}
+ \item {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars},
+ \hyperpage{106}
+ \item {Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List}
+ \subitem {Calculate Partition Functions of a Distance Based Partitioning},
+ \hyperpage{85}
+
+ \indexspace
+
+ \item {unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{163}
+ \item {unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{164}
+ \item {unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{178}
+ \item {unweight}
+ \subitem {R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.\discretionary {-}{}{}h},
+ \hyperpage{163}
+ \item {update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params}
+ \subitem {alifold.\discretionary {-}{}{}h}, \hyperpage{112}
+ \item {update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{46}
+ \item {update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par}
+ \subitem {Partition Function for two hybridized Sequences},
+ \hyperpage{46}
+ \item {update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}
+ \subitem {Calculating Partition Functions and Pair Probabilities},
+ \hyperpage{29}
+ \item {update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P}
+ \subitem {Partition functions for locally stable secondary structures},
+ \hyperpage{61}
+ \item {urn}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{175}
+ \item {utils.\discretionary {-}{}{}h}
+ \subitem {alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table},
+ \hyperpage{179}
+ \subitem {constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes},
+ \hyperpage{181}
+ \subitem {copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table},
+ \hyperpage{179}
+ \subitem {F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H},
+ \hyperpage{174}
+ \subitem {F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H},
+ \hyperpage{174}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx},
+ \hyperpage{180}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}indx},
+ \hyperpage{181}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line},
+ \hyperpage{176}
+ \subitem {get\discretionary {-}{}{}\_\discretionary {-}{}{}line},
+ \hyperpage{176}
+ \subitem {hamming}, \hyperpage{176}
+ \subitem {hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound},
+ \hyperpage{176}
+ \subitem {int\discretionary {-}{}{}\_\discretionary {-}{}{}urn},
+ \hyperpage{175}
+ \subitem {M\discretionary {-}{}{}A\discretionary {-}{}{}X2},
+ \hyperpage{173}
+ \subitem {M\discretionary {-}{}{}A\discretionary {-}{}{}X3},
+ \hyperpage{173}
+ \subitem {M\discretionary {-}{}{}I\discretionary {-}{}{}N2},
+ \hyperpage{173}
+ \subitem {M\discretionary {-}{}{}I\discretionary {-}{}{}N3},
+ \hyperpage{173}
+ \subitem {make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt},
+ \hyperpage{179}
+ \subitem {make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table},
+ \hyperpage{178}
+ \subitem {make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop},
+ \hyperpage{179}
+ \subitem {nrerror}, \hyperpage{174}
+ \subitem {pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure},
+ \hyperpage{178}
+ \subitem {print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint},
+ \hyperpage{180}
+ \subitem {print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq},
+ \hyperpage{179}
+ \subitem {print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str},
+ \hyperpage{179}
+ \subitem {random\discretionary {-}{}{}\_\discretionary {-}{}{}string},
+ \hyperpage{175}
+ \subitem {read\discretionary {-}{}{}\_\discretionary {-}{}{}record},
+ \hyperpage{177}
+ \subitem {S\discretionary {-}{}{}T\discretionary {-}{}{}R},
+ \hyperpage{173}
+ \subitem {space}, \hyperpage{174}
+ \subitem {str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A},
+ \hyperpage{180}
+ \subitem {str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase},
+ \hyperpage{180}
+ \subitem {time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp},
+ \hyperpage{175}
+ \subitem {unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure},
+ \hyperpage{178}
+ \subitem {urn}, \hyperpage{175}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L},
+ \hyperpage{173}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T},
+ \hyperpage{172}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G},
+ \hyperpage{173}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X},
+ \hyperpage{172}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T},
+ \hyperpage{172}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R},
+ \hyperpage{171}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C},
+ \hyperpage{171}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T},
+ \hyperpage{172}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N},
+ \hyperpage{172}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T},
+ \hyperpage{171}
+ \subitem {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E},
+ \hyperpage{171}
+ \subitem {warn\discretionary {-}{}{}\_\discretionary {-}{}{}user},
+ \hyperpage{175}
+ \subitem {X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R},
+ \hyperpage{173}
+ \subitem {xrealloc}, \hyperpage{174}
+ \subitem {xsubi}, \hyperpage{182}
+
+ \indexspace
+
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{172}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{172}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{172}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{172}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{171}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{171}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{172}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{172}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{171}
+ \item {V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{171}
+
+ \indexspace
+
+ \item {warn\discretionary {-}{}{}\_\discretionary {-}{}{}user}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{175}
+ \item {write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}
+ \subitem {Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File},
+ \hyperpage{67}
+
+ \indexspace
+
+ \item {X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{173}
+ \item {xrealloc}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{174}
+ \item {xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}
+ \subitem {P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.\discretionary {-}{}{}h},
+ \hyperpage{159}
+ \item {xsubi}
+ \subitem {utils.\discretionary {-}{}{}h}, \hyperpage{182}
+
+ \indexspace
+
+ \item {zukersubopt}
+ \subitem {Suboptimal structures according to Zuker et al. 1989},
+ \hyperpage{36}
+
+\end{theindex}
--- /dev/null
+This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/Debian) (format=pdflatex 2013.6.7) 5 SEP 2013 11:51
+entering extended mode
+ restricted \write18 enabled.
+ %&-line parsing enabled.
+**refman
+(./refman.tex
+LaTeX2e <2011/06/27>
+Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, lo
+aded.
+
+(/usr/share/texlive/texmf-dist/tex/latex/base/book.cls
+Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
+(/usr/share/texlive/texmf-dist/tex/latex/base/bk10.clo
+File: bk10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
+)
+\c@part=\count79
+\c@chapter=\count80
+\c@section=\count81
+\c@subsection=\count82
+\c@subsubsection=\count83
+\c@paragraph=\count84
+\c@subparagraph=\count85
+\c@figure=\count86
+\c@table=\count87
+\abovecaptionskip=\skip41
+\belowcaptionskip=\skip42
+\bibindent=\dimen102
+) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
+Package: geometry 2010/09/12 v5.6 Page Geometry
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
+Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
+\KV@toks@=\toks14
+) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
+Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
+Package ifpdf Info: pdfTeX in PDF mode is detected.
+) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty
+Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
+Package ifvtex Info: VTeX not detected.
+) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
+Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
+)
+\Gm@cnth=\count88
+\Gm@cntv=\count89
+\c@Gm@tempcnt=\count90
+\Gm@bindingoffset=\dimen103
+\Gm@wd@mp=\dimen104
+\Gm@odd@mp=\dimen105
+\Gm@even@mp=\dimen106
+\Gm@layoutwidth=\dimen107
+\Gm@layoutheight=\dimen108
+\Gm@layouthoffset=\dimen109
+\Gm@layoutvoffset=\dimen110
+\Gm@dimlist=\toks15
+) (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty
+Package: makeidx 2000/03/29 v1.0m Standard LaTeX package
+) (/usr/share/texlive/texmf-dist/tex/latex/natbib/natbib.sty
+Package: natbib 2010/09/13 8.31b (PWD, AO)
+\bibhang=\skip43
+\bibsep=\skip44
+LaTeX Info: Redefining \cite on input line 694.
+\c@NAT@ctr=\count91
+) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
+Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
+Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
+Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
+) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
+File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
+)
+Package graphics Info: Driver file: pdftex.def on input line 91.
+(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
+File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
+Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
+) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
+Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
+)
+\Gread@gobject=\count92
+))
+\Gin@req@height=\dimen111
+\Gin@req@width=\dimen112
+) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty
+Package: multicol 2011/06/27 v1.7a multicolumn formatting (FMi)
+\c@tracingmulticols=\count93
+\mult@box=\box26
+\multicol@leftmargin=\dimen113
+\c@unbalance=\count94
+\c@collectmore=\count95
+\doublecol@number=\count96
+\multicoltolerance=\count97
+\multicolpretolerance=\count98
+\full@width=\dimen114
+\page@free=\dimen115
+\premulticols=\dimen116
+\postmulticols=\dimen117
+\multicolsep=\skip45
+\multicolbaselineskip=\skip46
+\partial@page=\box27
+\last@line=\box28
+\mult@rightbox=\box29
+\mult@grightbox=\box30
+\mult@gfirstbox=\box31
+\mult@firstbox=\box32
+\@tempa=\box33
+\@tempa=\box34
+\@tempa=\box35
+\@tempa=\box36
+\@tempa=\box37
+\@tempa=\box38
+\@tempa=\box39
+\@tempa=\box40
+\@tempa=\box41
+\@tempa=\box42
+\@tempa=\box43
+\@tempa=\box44
+\@tempa=\box45
+\@tempa=\box46
+\@tempa=\box47
+\@tempa=\box48
+\@tempa=\box49
+\c@columnbadness=\count99
+\c@finalcolumnbadness=\count100
+\last@try=\dimen118
+\multicolovershoot=\dimen119
+\multicolundershoot=\dimen120
+\mult@nat@firstbox=\box50
+\colbreak@box=\box51
+\multicol@sort@counter=\count101
+) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty
+Package: float 2001/11/08 v1.3d Float enhancements (AL)
+\c@float@type=\count102
+\float@exts=\toks16
+\float@box=\box52
+\@float@everytoks=\toks17
+\@floatcapt=\box53
+) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
+\lst@mode=\count103
+\lst@gtempboxa=\box54
+\lst@token=\toks18
+\lst@length=\count104
+\lst@currlwidth=\dimen121
+\lst@column=\count105
+\lst@pos=\count106
+\lst@lostspace=\dimen122
+\lst@width=\dimen123
+\lst@newlines=\count107
+\lst@lineno=\count108
+\lst@maxwidth=\dimen124
+(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
+File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz)
+\c@lstnumber=\count109
+\lst@skipnumbers=\count110
+\lst@framebox=\box55
+) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg
+File: listings.cfg 2007/02/22 1.4 listings configuration
+))
+Package: listings 2007/02/22 1.4 (Carsten Heinz)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
+Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
+File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
+)
+Package color Info: Driver file: pdftex.def on input line 130.
+) (/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
+Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
+) (/usr/share/texmf/tex/latex/xcolor/xcolor.sty
+Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
+File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty
+Package: colortbl 2012/02/13 v1.0a Color table columns (DPC)
+(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
+Package: array 2008/09/09 v2.4c Tabular extension package (FMi)
+\col@sep=\dimen125
+\extrarowheight=\dimen126
+\NC@list=\toks19
+\extratabsurround=\skip47
+\backup@length=\skip48
+)
+\everycr=\toks20
+\minrowclearance=\skip49
+)
+LaTeX Info: Redefining \color on input line 702.
+\rownum=\count111
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
+Package xcolor Info: Model `RGB' extended on input line 1353.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
+) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
+Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
+Package textcomp Info: Sub-encoding information:
+(textcomp) 5 = only ISO-Adobe without \textcurrency
+(textcomp) 4 = 5 + \texteuro
+(textcomp) 3 = 4 + \textohm
+(textcomp) 2 = 3 + \textestimated + \textcurrency
+(textcomp) 1 = TS1 - \textcircled - \t
+(textcomp) 0 = TS1 (full)
+(textcomp) Font families with sub-encoding setting implement
+(textcomp) only a restricted character set as indicated.
+(textcomp) Family '?' is the default used for unknown fonts.
+(textcomp) See the documentation for details.
+Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
+(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.def
+File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
+)
+LaTeX Info: Redefining \oldstylenums on input line 266.
+Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
+Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
+Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
+Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
+Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
+Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
+Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
+Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
+Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
+Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
+Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
+Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
+Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
+Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
+Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
+Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
+Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
+Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
+Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
+Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
+Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
+Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
+Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
+Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
+
+Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
+Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
+Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
+Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
+Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
+Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
+Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 311.
+Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 312.
+Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 313.
+Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 314.
+Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 315.
+Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 316.
+Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 317.
+Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 318.
+Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 319.
+Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 320.
+Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 321.
+Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 322.
+Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 323.
+Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 324.
+Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 325.
+Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 326.
+Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 327.
+Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 328.
+Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 329.
+Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 330.
+Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 331.
+Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 332.
+Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 333.
+Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 334.
+Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 335.
+Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 336.
+Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 337.
+Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 338.
+Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 339.
+Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 340.
+) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty
+Package: alltt 1997/06/16 v2.0g defines alltt environment
+) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2012/05/13 v6.82q Hypertext links for LaTeX
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
+Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
+
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
+Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
+Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
+Package hobsub Info: Skipping package `infwarerr' (already loaded).
+Package hobsub Info: Skipping package `ltxcmds' (already loaded).
+Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
+Package ifluatex Info: LuaTeX not detected.
+Package hobsub Info: Skipping package `ifvtex' (already loaded).
+Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
+Package hobsub Info: Skipping package `ifpdf' (already loaded).
+Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
+Package etexcmds Info: Could not find \expanded.
+(etexcmds) That can mean that you are not using pdfTeX 1.50 or
+(etexcmds) that some package has redefined \expanded.
+(etexcmds) In the latter case, load this package earlier.
+Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
+Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
+Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
+)
+Package pdftexcmds Info: LuaTeX not detected.
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
+Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
+)
+Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
+Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
+)
+Package hobsub Info: Skipping package `hobsub' (already loaded).
+Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
+Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
+Package: xcolor-patch 2011/01/30 xcolor patch
+Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
+Package atveryend Info: \enddocument detected (standard20110627).
+Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
+Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
+Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
+) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
+Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
+)
+\@linkdim=\dimen127
+\Hy@linkcounter=\count112
+\Hy@pagecounter=\count113
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2012/05/13 v6.82q Hyperref: PDFDocEncoding definition (HO)
+)
+\Hy@SavedSpaceFactor=\count114
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg
+File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
+)
+Package hyperref Info: Option `colorlinks' set `true' on input line 3941.
+Package hyperref Info: Option `unicode' set `true' on input line 3941.
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
+File: puenc.def 2012/05/13 v6.82q Hyperref: PDF Unicode definition (HO)
+)
+Package hyperref Info: Hyper figures OFF on input line 4062.
+Package hyperref Info: Link nesting OFF on input line 4067.
+Package hyperref Info: Hyper index ON on input line 4070.
+Package hyperref Info: Plain pages OFF on input line 4077.
+Package hyperref Info: Backreferencing ON on input line 4080.
+Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
+Package hyperref Info: Bookmarks ON on input line 4300.
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/backref.sty
+Package: backref 2010/08/30 v1.36 Bibliographical back referencing
+(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
+Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+82.
+))
+\c@Hy@tempcnt=\count115
+(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
+\Urlmuskip=\muskip10
+Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4653.
+\Fld@menulength=\count116
+\Field@Width=\dimen128
+\Fld@charsize=\dimen129
+Package hyperref Info: Hyper figures OFF on input line 5773.
+Package hyperref Info: Link nesting OFF on input line 5778.
+Package hyperref Info: Hyper index ON on input line 5781.
+Package hyperref Info: backreferencing ON on input line 5786.
+Package hyperref Info: Link coloring ON on input line 5791.
+Package hyperref Info: Link coloring with OCG OFF on input line 5798.
+Package hyperref Info: PDF/A mode OFF on input line 5803.
+LaTeX Info: Redefining \ref on input line 5843.
+LaTeX Info: Redefining \pageref on input line 5847.
+\Hy@abspage=\count117
+\c@Item=\count118
+\c@Hfootnote=\count119
+)
+
+Package hyperref Message: Driver: hpdftex.
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
+File: hpdftex.def 2012/05/13 v6.82q Hyperref driver for pdfTeX
+\Fld@listcount=\count120
+\c@bookmark@seq@number=\count121
+\Hy@SectionHShift=\skip50
+) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
+Package: inputenc 2008/03/30 v1.1d Input encoding file
+\inpenc@prehook=\toks21
+\inpenc@posthook=\toks22
+(/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def
+File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
+Now handling font encoding OML ...
+... no UTF-8 mapping file for font encoding OML
+Now handling font encoding T1 ...
+... processing UTF-8 mapping file for font encoding T1
+(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu
+File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+ defining Unicode char U+00A1 (decimal 161)
+ defining Unicode char U+00A3 (decimal 163)
+ defining Unicode char U+00AB (decimal 171)
+ defining Unicode char U+00BB (decimal 187)
+ defining Unicode char U+00BF (decimal 191)
+ defining Unicode char U+00C0 (decimal 192)
+ defining Unicode char U+00C1 (decimal 193)
+ defining Unicode char U+00C2 (decimal 194)
+ defining Unicode char U+00C3 (decimal 195)
+ defining Unicode char U+00C4 (decimal 196)
+ defining Unicode char U+00C5 (decimal 197)
+ defining Unicode char U+00C6 (decimal 198)
+ defining Unicode char U+00C7 (decimal 199)
+ defining Unicode char U+00C8 (decimal 200)
+ defining Unicode char U+00C9 (decimal 201)
+ defining Unicode char U+00CA (decimal 202)
+ defining Unicode char U+00CB (decimal 203)
+ defining Unicode char U+00CC (decimal 204)
+ defining Unicode char U+00CD (decimal 205)
+ defining Unicode char U+00CE (decimal 206)
+ defining Unicode char U+00CF (decimal 207)
+ defining Unicode char U+00D0 (decimal 208)
+ defining Unicode char U+00D1 (decimal 209)
+ defining Unicode char U+00D2 (decimal 210)
+ defining Unicode char U+00D3 (decimal 211)
+ defining Unicode char U+00D4 (decimal 212)
+ defining Unicode char U+00D5 (decimal 213)
+ defining Unicode char U+00D6 (decimal 214)
+ defining Unicode char U+00D8 (decimal 216)
+ defining Unicode char U+00D9 (decimal 217)
+ defining Unicode char U+00DA (decimal 218)
+ defining Unicode char U+00DB (decimal 219)
+ defining Unicode char U+00DC (decimal 220)
+ defining Unicode char U+00DD (decimal 221)
+ defining Unicode char U+00DE (decimal 222)
+ defining Unicode char U+00DF (decimal 223)
+ defining Unicode char U+00E0 (decimal 224)
+ defining Unicode char U+00E1 (decimal 225)
+ defining Unicode char U+00E2 (decimal 226)
+ defining Unicode char U+00E3 (decimal 227)
+ defining Unicode char U+00E4 (decimal 228)
+ defining Unicode char U+00E5 (decimal 229)
+ defining Unicode char U+00E6 (decimal 230)
+ defining Unicode char U+00E7 (decimal 231)
+ defining Unicode char U+00E8 (decimal 232)
+ defining Unicode char U+00E9 (decimal 233)
+ defining Unicode char U+00EA (decimal 234)
+ defining Unicode char U+00EB (decimal 235)
+ defining Unicode char U+00EC (decimal 236)
+ defining Unicode char U+00ED (decimal 237)
+ defining Unicode char U+00EE (decimal 238)
+ defining Unicode char U+00EF (decimal 239)
+ defining Unicode char U+00F0 (decimal 240)
+ defining Unicode char U+00F1 (decimal 241)
+ defining Unicode char U+00F2 (decimal 242)
+ defining Unicode char U+00F3 (decimal 243)
+ defining Unicode char U+00F4 (decimal 244)
+ defining Unicode char U+00F5 (decimal 245)
+ defining Unicode char U+00F6 (decimal 246)
+ defining Unicode char U+00F8 (decimal 248)
+ defining Unicode char U+00F9 (decimal 249)
+ defining Unicode char U+00FA (decimal 250)
+ defining Unicode char U+00FB (decimal 251)
+ defining Unicode char U+00FC (decimal 252)
+ defining Unicode char U+00FD (decimal 253)
+ defining Unicode char U+00FE (decimal 254)
+ defining Unicode char U+00FF (decimal 255)
+ defining Unicode char U+0102 (decimal 258)
+ defining Unicode char U+0103 (decimal 259)
+ defining Unicode char U+0104 (decimal 260)
+ defining Unicode char U+0105 (decimal 261)
+ defining Unicode char U+0106 (decimal 262)
+ defining Unicode char U+0107 (decimal 263)
+ defining Unicode char U+010C (decimal 268)
+ defining Unicode char U+010D (decimal 269)
+ defining Unicode char U+010E (decimal 270)
+ defining Unicode char U+010F (decimal 271)
+ defining Unicode char U+0110 (decimal 272)
+ defining Unicode char U+0111 (decimal 273)
+ defining Unicode char U+0118 (decimal 280)
+ defining Unicode char U+0119 (decimal 281)
+ defining Unicode char U+011A (decimal 282)
+ defining Unicode char U+011B (decimal 283)
+ defining Unicode char U+011E (decimal 286)
+ defining Unicode char U+011F (decimal 287)
+ defining Unicode char U+0130 (decimal 304)
+ defining Unicode char U+0131 (decimal 305)
+ defining Unicode char U+0132 (decimal 306)
+ defining Unicode char U+0133 (decimal 307)
+ defining Unicode char U+0139 (decimal 313)
+ defining Unicode char U+013A (decimal 314)
+ defining Unicode char U+013D (decimal 317)
+ defining Unicode char U+013E (decimal 318)
+ defining Unicode char U+0141 (decimal 321)
+ defining Unicode char U+0142 (decimal 322)
+ defining Unicode char U+0143 (decimal 323)
+ defining Unicode char U+0144 (decimal 324)
+ defining Unicode char U+0147 (decimal 327)
+ defining Unicode char U+0148 (decimal 328)
+ defining Unicode char U+014A (decimal 330)
+ defining Unicode char U+014B (decimal 331)
+ defining Unicode char U+0150 (decimal 336)
+ defining Unicode char U+0151 (decimal 337)
+ defining Unicode char U+0152 (decimal 338)
+ defining Unicode char U+0153 (decimal 339)
+ defining Unicode char U+0154 (decimal 340)
+ defining Unicode char U+0155 (decimal 341)
+ defining Unicode char U+0158 (decimal 344)
+ defining Unicode char U+0159 (decimal 345)
+ defining Unicode char U+015A (decimal 346)
+ defining Unicode char U+015B (decimal 347)
+ defining Unicode char U+015E (decimal 350)
+ defining Unicode char U+015F (decimal 351)
+ defining Unicode char U+0160 (decimal 352)
+ defining Unicode char U+0161 (decimal 353)
+ defining Unicode char U+0162 (decimal 354)
+ defining Unicode char U+0163 (decimal 355)
+ defining Unicode char U+0164 (decimal 356)
+ defining Unicode char U+0165 (decimal 357)
+ defining Unicode char U+016E (decimal 366)
+ defining Unicode char U+016F (decimal 367)
+ defining Unicode char U+0170 (decimal 368)
+ defining Unicode char U+0171 (decimal 369)
+ defining Unicode char U+0178 (decimal 376)
+ defining Unicode char U+0179 (decimal 377)
+ defining Unicode char U+017A (decimal 378)
+ defining Unicode char U+017B (decimal 379)
+ defining Unicode char U+017C (decimal 380)
+ defining Unicode char U+017D (decimal 381)
+ defining Unicode char U+017E (decimal 382)
+ defining Unicode char U+200C (decimal 8204)
+ defining Unicode char U+2013 (decimal 8211)
+ defining Unicode char U+2014 (decimal 8212)
+ defining Unicode char U+2018 (decimal 8216)
+ defining Unicode char U+2019 (decimal 8217)
+ defining Unicode char U+201A (decimal 8218)
+ defining Unicode char U+201C (decimal 8220)
+ defining Unicode char U+201D (decimal 8221)
+ defining Unicode char U+201E (decimal 8222)
+ defining Unicode char U+2030 (decimal 8240)
+ defining Unicode char U+2031 (decimal 8241)
+ defining Unicode char U+2039 (decimal 8249)
+ defining Unicode char U+203A (decimal 8250)
+ defining Unicode char U+2423 (decimal 9251)
+)
+Now handling font encoding OT1 ...
+... processing UTF-8 mapping file for font encoding OT1
+(/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu
+File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+ defining Unicode char U+00A1 (decimal 161)
+ defining Unicode char U+00A3 (decimal 163)
+ defining Unicode char U+00B8 (decimal 184)
+ defining Unicode char U+00BF (decimal 191)
+ defining Unicode char U+00C5 (decimal 197)
+ defining Unicode char U+00C6 (decimal 198)
+ defining Unicode char U+00D8 (decimal 216)
+ defining Unicode char U+00DF (decimal 223)
+ defining Unicode char U+00E6 (decimal 230)
+ defining Unicode char U+00EC (decimal 236)
+ defining Unicode char U+00ED (decimal 237)
+ defining Unicode char U+00EE (decimal 238)
+ defining Unicode char U+00EF (decimal 239)
+ defining Unicode char U+00F8 (decimal 248)
+ defining Unicode char U+0131 (decimal 305)
+ defining Unicode char U+0141 (decimal 321)
+ defining Unicode char U+0142 (decimal 322)
+ defining Unicode char U+0152 (decimal 338)
+ defining Unicode char U+0153 (decimal 339)
+ defining Unicode char U+2013 (decimal 8211)
+ defining Unicode char U+2014 (decimal 8212)
+ defining Unicode char U+2018 (decimal 8216)
+ defining Unicode char U+2019 (decimal 8217)
+ defining Unicode char U+201C (decimal 8220)
+ defining Unicode char U+201D (decimal 8221)
+)
+Now handling font encoding OMS ...
+... processing UTF-8 mapping file for font encoding OMS
+(/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu
+File: omsenc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+ defining Unicode char U+00A7 (decimal 167)
+ defining Unicode char U+00B6 (decimal 182)
+ defining Unicode char U+00B7 (decimal 183)
+ defining Unicode char U+2020 (decimal 8224)
+ defining Unicode char U+2021 (decimal 8225)
+ defining Unicode char U+2022 (decimal 8226)
+)
+Now handling font encoding OMX ...
+... no UTF-8 mapping file for font encoding OMX
+Now handling font encoding U ...
+... no UTF-8 mapping file for font encoding U
+Now handling font encoding TS1 ...
+... processing UTF-8 mapping file for font encoding TS1
+(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.dfu
+File: ts1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+ defining Unicode char U+00A2 (decimal 162)
+ defining Unicode char U+00A3 (decimal 163)
+ defining Unicode char U+00A4 (decimal 164)
+ defining Unicode char U+00A5 (decimal 165)
+ defining Unicode char U+00A6 (decimal 166)
+ defining Unicode char U+00A7 (decimal 167)
+ defining Unicode char U+00A8 (decimal 168)
+ defining Unicode char U+00A9 (decimal 169)
+ defining Unicode char U+00AA (decimal 170)
+ defining Unicode char U+00AC (decimal 172)
+ defining Unicode char U+00AE (decimal 174)
+ defining Unicode char U+00AF (decimal 175)
+ defining Unicode char U+00B0 (decimal 176)
+ defining Unicode char U+00B1 (decimal 177)
+ defining Unicode char U+00B2 (decimal 178)
+ defining Unicode char U+00B3 (decimal 179)
+ defining Unicode char U+00B4 (decimal 180)
+ defining Unicode char U+00B5 (decimal 181)
+ defining Unicode char U+00B6 (decimal 182)
+ defining Unicode char U+00B7 (decimal 183)
+ defining Unicode char U+00B9 (decimal 185)
+ defining Unicode char U+00BA (decimal 186)
+ defining Unicode char U+00BC (decimal 188)
+ defining Unicode char U+00BD (decimal 189)
+ defining Unicode char U+00BE (decimal 190)
+ defining Unicode char U+00D7 (decimal 215)
+ defining Unicode char U+00F7 (decimal 247)
+ defining Unicode char U+0192 (decimal 402)
+ defining Unicode char U+02C7 (decimal 711)
+ defining Unicode char U+02D8 (decimal 728)
+ defining Unicode char U+02DD (decimal 733)
+ defining Unicode char U+0E3F (decimal 3647)
+ defining Unicode char U+2016 (decimal 8214)
+ defining Unicode char U+2020 (decimal 8224)
+ defining Unicode char U+2021 (decimal 8225)
+ defining Unicode char U+2022 (decimal 8226)
+ defining Unicode char U+2030 (decimal 8240)
+ defining Unicode char U+2031 (decimal 8241)
+ defining Unicode char U+203B (decimal 8251)
+ defining Unicode char U+203D (decimal 8253)
+ defining Unicode char U+2044 (decimal 8260)
+ defining Unicode char U+204E (decimal 8270)
+ defining Unicode char U+2052 (decimal 8274)
+ defining Unicode char U+20A1 (decimal 8353)
+ defining Unicode char U+20A4 (decimal 8356)
+ defining Unicode char U+20A6 (decimal 8358)
+ defining Unicode char U+20A9 (decimal 8361)
+ defining Unicode char U+20AB (decimal 8363)
+ defining Unicode char U+20AC (decimal 8364)
+ defining Unicode char U+20B1 (decimal 8369)
+ defining Unicode char U+2103 (decimal 8451)
+ defining Unicode char U+2116 (decimal 8470)
+ defining Unicode char U+2117 (decimal 8471)
+ defining Unicode char U+211E (decimal 8478)
+ defining Unicode char U+2120 (decimal 8480)
+ defining Unicode char U+2122 (decimal 8482)
+ defining Unicode char U+2126 (decimal 8486)
+ defining Unicode char U+2127 (decimal 8487)
+ defining Unicode char U+212E (decimal 8494)
+ defining Unicode char U+2190 (decimal 8592)
+ defining Unicode char U+2191 (decimal 8593)
+ defining Unicode char U+2192 (decimal 8594)
+ defining Unicode char U+2193 (decimal 8595)
+ defining Unicode char U+2329 (decimal 9001)
+ defining Unicode char U+232A (decimal 9002)
+ defining Unicode char U+2422 (decimal 9250)
+ defining Unicode char U+25E6 (decimal 9702)
+ defining Unicode char U+25EF (decimal 9711)
+ defining Unicode char U+266A (decimal 9834)
+)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+ defining Unicode char U+00A9 (decimal 169)
+ defining Unicode char U+00AA (decimal 170)
+ defining Unicode char U+00AE (decimal 174)
+ defining Unicode char U+00BA (decimal 186)
+ defining Unicode char U+02C6 (decimal 710)
+ defining Unicode char U+02DC (decimal 732)
+ defining Unicode char U+200C (decimal 8204)
+ defining Unicode char U+2026 (decimal 8230)
+ defining Unicode char U+2122 (decimal 8482)
+ defining Unicode char U+2423 (decimal 9251)
+)) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathptmx.sty
+Package: mathptmx 2005/04/12 PSNFSS-v9.2a Times w/ Math, improved (SPQR, WaS)
+LaTeX Font Info: Redeclaring symbol font `operators' on input line 28.
+LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
+(Font) OT1/cmr/m/n --> OT1/ztmcm/m/n on input line 28.
+LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
+(Font) OT1/cmr/bx/n --> OT1/ztmcm/m/n on input line 28.
+LaTeX Font Info: Redeclaring symbol font `letters' on input line 29.
+LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
+(Font) OML/cmm/m/it --> OML/ztmcm/m/it on input line 29.
+LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
+(Font) OML/cmm/b/it --> OML/ztmcm/m/it on input line 29.
+LaTeX Font Info: Redeclaring symbol font `symbols' on input line 30.
+LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
+(Font) OMS/cmsy/m/n --> OMS/ztmcm/m/n on input line 30.
+LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
+(Font) OMS/cmsy/b/n --> OMS/ztmcm/m/n on input line 30.
+LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 31.
+LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
+(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
+LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
+(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
+\symbold=\mathgroup4
+\symitalic=\mathgroup5
+LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 34.
+LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
+(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
+LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
+(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
+LaTeX Font Info: Redeclaring math alphabet \mathit on input line 35.
+LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
+(Font) OT1/cmr/m/it --> OT1/ptm/m/it on input line 35.
+LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
+(Font) OT1/cmr/bx/it --> OT1/ptm/m/it on input line 35.
+LaTeX Info: Redefining \hbar on input line 50.
+) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty
+Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
+) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/courier.sty
+Package: courier 2005/04/12 PSNFSS-v9.2a (WaS)
+) (/usr/share/texlive/texmf-dist/tex/latex/sectsty/sectsty.sty
+Package: sectsty 2002/02/25 v2.0.2 Commands to change all sectional heading sty
+les
+) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
+Package: amssymb 2009/06/22 v3.00
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
+Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
+\@emptytoks=\toks23
+\symAMSa=\mathgroup6
+\symAMSb=\mathgroup7
+LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
+(Font) U/euf/m/n --> U/euf/b/n on input line 96.
+)) (/usr/share/texlive/texmf-dist/tex/latex/tocloft/tocloft.sty
+Package: tocloft 2010/10/13 v2.3e parameterised ToC, etc., typesetting
+Package tocloft Info: The document has chapter divisions on input line 43.
+\cftparskip=\skip51
+\cftbeforetoctitleskip=\skip52
+\cftaftertoctitleskip=\skip53
+\cftbeforepartskip=\skip54
+\cftpartnumwidth=\skip55
+\cftpartindent=\skip56
+\cftbeforechapskip=\skip57
+\cftchapindent=\skip58
+\cftchapnumwidth=\skip59
+\cftbeforesecskip=\skip60
+\cftsecindent=\skip61
+\cftsecnumwidth=\skip62
+\cftbeforesubsecskip=\skip63
+\cftsubsecindent=\skip64
+\cftsubsecnumwidth=\skip65
+\cftbeforesubsubsecskip=\skip66
+\cftsubsubsecindent=\skip67
+\cftsubsubsecnumwidth=\skip68
+\cftbeforeparaskip=\skip69
+\cftparaindent=\skip70
+\cftparanumwidth=\skip71
+\cftbeforesubparaskip=\skip72
+\cftsubparaindent=\skip73
+\cftsubparanumwidth=\skip74
+\cftbeforeloftitleskip=\skip75
+\cftafterloftitleskip=\skip76
+\cftbeforefigskip=\skip77
+\cftfigindent=\skip78
+\cftfignumwidth=\skip79
+\c@lofdepth=\count122
+\c@lotdepth=\count123
+\cftbeforelottitleskip=\skip80
+\cftafterlottitleskip=\skip81
+\cftbeforetabskip=\skip82
+\cfttabindent=\skip83
+\cfttabnumwidth=\skip84
+) (./doxygen.sty
+Package: doxygen
+(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty
+Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count124
+\calc@Bcount=\count125
+\calc@Adimen=\dimen130
+\calc@Bdimen=\dimen131
+\calc@Askip=\skip85
+\calc@Bskip=\skip86
+LaTeX Info: Redefining \setlength on input line 76.
+LaTeX Info: Redefining \addtolength on input line 77.
+\calc@Ccount=\count126
+\calc@Cskip=\skip87
+) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
+\fancy@headwidth=\skip88
+\f@ncyO@elh=\skip89
+\f@ncyO@erh=\skip90
+\f@ncyO@olh=\skip91
+\f@ncyO@orh=\skip92
+\f@ncyO@elf=\skip93
+\f@ncyO@erf=\skip94
+\f@ncyO@olf=\skip95
+\f@ncyO@orf=\skip96
+) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty
+Package: longtable 2004/02/01 v4.11 Multi-page Table package (DPC)
+\LTleft=\skip97
+\LTright=\skip98
+\LTpre=\skip99
+\LTpost=\skip100
+\LTchunksize=\count127
+\LTcapwidth=\dimen132
+\LT@head=\box56
+\LT@firsthead=\box57
+\LT@foot=\box58
+\LT@lastfoot=\box59
+\LT@cols=\count128
+\LT@rows=\count129
+\c@LT@tables=\count130
+\c@LT@chunks=\count131
+\LT@p@ftn=\toks24
+) (/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty
+Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
+\every@verbatim=\toks25
+\verbatim@line=\toks26
+\verbatim@in@stream=\read1
+) (/usr/share/texlive/texmf-dist/tex/latex/xtab/xtab.sty
+Package: xtab 2011/07/31 v2.3f Extended supertabular package
+\c@tracingst=\count132
+\PWSTcapht=\dimen133
+\ST@wd=\dimen134
+\ST@rightskip=\skip101
+\ST@leftskip=\skip102
+\ST@parfillskip=\skip103
+\c@PWSTtable=\count133
+\PWSTlastpage=\count134
+\PWSTpenultimate=\count135
+\PWSTcurpage=\count136
+\PWSTtempc=\count137
+\PWSTlines=\count138
+\PWST@lastht=\dimen135
+\PWST@generalht=\dimen136
+\PWST@ht=\dimen137
+\ST@pageleft=\dimen138
+\ST@headht=\dimen139
+\ST@tailht=\dimen140
+\ST@pagesofar=\dimen141
+\ST@pboxht=\dimen142
+\ST@lineht=\dimen143
+\ST@stretchht=\dimen144
+\ST@prevht=\dimen145
+\ST@toadd=\dimen146
+\ST@dimen=\dimen147
+\ST@pbox=\box60
+) (/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
+\bigstrutjot=\dimen148
+)
+\tmplength=\skip104
+\xrefbox=\box61
+\xreflength=\skip105
+(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
+Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
+(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def
+File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
+LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
+))) (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty
+File: lstlang1.sty 2004/09/05 1.3 listings language file
+) (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty
+File: lstlang1.sty 2004/09/05 1.3 listings language file
+) (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
+File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz)
+)
+\@indexfile=\write3
+\openout3 = `refman.idx'.
+
+Writing index file refman.idx
+(./refman.aux (./group__mfe__fold.aux) (./group__pf__fold.aux) (./group__mea__f
+old.aux) (./group__centroid__fold.aux) (./group__subopt__fold.aux) (./group__su
+bopt__zuker.aux) (./group__subopt__wuchty.aux) (./group__subopt__stochbt.aux) (
+./group__cofold.aux) (./group__mfe__cofold.aux) (./group__pf__cofold.aux) (./gr
+oup__up__cofold.aux) (./group__consensus__fold.aux) (./group__consensus__mfe__f
+old.aux) (./group__consensus__pf__fold.aux) (./group__consensus__stochbt.aux) (
+./group__local__fold.aux) (./group__local__mfe__fold.aux) (./group__local__pf__
+fold.aux) (./group__local__consensus__fold.aux) (./group__energy__parameters.au
+x) (./group__energy__parameters__rw.aux) (./group__energy__parameters__convert.
+aux) (./group__eval.aux) (./group__inverse__fold.aux) (./group__class__fold.aux
+) (./group__kl__neighborhood.aux) (./group__kl__neighborhood__mfe.aux) (./group
+__kl__neighborhood__pf.aux) (./group__kl__neighborhood__stochbt.aux) (./group__
+dos.aux) (./group__parse.aux)
+
+LaTeX Warning: Label `group__consensus__mfe__fold_ga72095e4554b5d577250ea14c42a
+cc49e' multiply defined.
+
+
+LaTeX Warning: Label `group__consensus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc
+' multiply defined.
+
+
+LaTeX Warning: Label `group__mfe__cofold_gafe430060533f14b11fc611f60b3f1f6f' mu
+ltiply defined.
+
+
+LaTeX Warning: Label `group__mfe__cofold_gaafb33d7473eb9af9d1b168ca8761c41a' mu
+ltiply defined.
+
+
+LaTeX Warning: Label `group__mfe__cofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57' mu
+ltiply defined.
+
+
+LaTeX Warning: Label `group__subopt__zuker_ga6d98a9450d1affadf144ac79f543da8c'
+multiply defined.
+
+
+LaTeX Warning: Label `group__mfe__fold_ga107fdfe5fd641868156bfd849f6866c7' mult
+iply defined.
+
+
+LaTeX Warning: Label `group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3' mult
+iply defined.
+
+
+LaTeX Warning: Label `group__eval_ga567530678f6260a1a649a5beca5da4c5' multiply
+defined.
+
+
+LaTeX Warning: Label `group__inverse__fold_ga8f791e7740a5a28b9f6fafb4e60301d9'
+multiply defined.
+
+
+LaTeX Warning: Label `group__local__pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8
+' multiply defined.
+
+
+LaTeX Warning: Label `group__energy__parameters_gaa6a4297a2b91d6f7ae47dd61ca186
+2a0' multiply defined.
+
+
+LaTeX Warning: Label `group__energy__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65
+a66' multiply defined.
+
+
+LaTeX Warning: Label `group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc' multi
+ply defined.
+
+
+LaTeX Warning: Label `group__pf__cofold_gade3ce34ae8214811374b1d28a40dc247' mul
+tiply defined.
+
+
+LaTeX Warning: Label `group__pf__cofold_gaff27888c4088cc1f60fd59cbd589474c' mul
+tiply defined.
+
+
+LaTeX Warning: Label `group__pf__cofold_gac2d1851a710a8561390861155ca988fe' mul
+tiply defined.
+
+
+LaTeX Warning: Label `group__up__cofold_gadde308fd5f696dc271b1532aa96fd12f' mul
+tiply defined.
+
+
+LaTeX Warning: Label `group__up__cofold_gac20bd61824981d45ce0dc9934aa56df8' mul
+tiply defined.
+
+
+LaTeX Warning: Label `group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d'
+ multiply defined.
+
+
+LaTeX Warning: Label `group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e'
+ multiply defined.
+
+
+LaTeX Warning: Label `group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe'
+ multiply defined.
+
+)
+\openout1 = `refman.aux'.
+
+LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 49.
+LaTeX Font Info: Try loading font information for TS1+cmr on input line 49.
+(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd
+File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
+)
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 49.
+LaTeX Font Info: ... okay on input line 49.
+LaTeX Font Info: Try loading font information for T1+phv on input line 49.
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1phv.fd
+File: t1phv.fd 2001/06/04 scalable font definitions for T1/phv.
+)
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 8.99994pt on input line 49.
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+*geometry* verbose mode - [ preamble ] result:
+* driver: pdftex
+* paper: a4paper
+* layout: <same size as paper>
+* layoutoffset:(h,v)=(0.0pt,0.0pt)
+* modes: twoside
+* h-part:(L,W,R)=(71.13188pt, 455.24411pt, 71.13188pt)
+* v-part:(T,H,B)=(71.13188pt, 702.78308pt, 71.13188pt)
+* \paperwidth=597.50787pt
+* \paperheight=845.04684pt
+* \textwidth=455.24411pt
+* \textheight=702.78308pt
+* \oddsidemargin=-1.1381pt
+* \evensidemargin=-1.1381pt
+* \topmargin=-31.2056pt
+* \headheight=12.0pt
+* \headsep=18.06749pt
+* \topskip=10.0pt
+* \footskip=25.29494pt
+* \marginparwidth=125.0pt
+* \marginparsep=7.0pt
+* \columnsep=10.0pt
+* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
+* \hoffset=0.0pt
+* \voffset=0.0pt
+* \mag=1000
+* \@twocolumnfalse
+* \@twosidetrue
+* \@mparswitchtrue
+* \@reversemarginfalse
+* (1in=72.27pt=25.4mm, 1cm=28.453pt)
+
+(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count139
+\scratchdimen=\dimen149
+\scratchbox=\box62
+\nofMPsegments=\count140
+\nofMParguments=\count141
+\everyMPshowfont=\toks27
+\MPscratchCnt=\count142
+\MPscratchDim=\dimen150
+\MPnumerator=\count143
+\makeMPintoPDFobject=\count144
+\everyMPtoPDFconversion=\toks28
+) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
+Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
+(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
+Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
+)
+Package grfext Info: Graphics extension search list:
+(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
+G,.JBIG2,.JB2,.eps]
+(grfext) \AppendGraphicsExtensions on input line 452.
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
+File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
+e
+))
+\c@lstlisting=\count145
+\AtBeginShipoutBox=\box63
+Package backref Info: ** backref set up for natbib ** on input line 49.
+Package hyperref Info: Link coloring ON on input line 49.
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
+Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
+Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
+)
+\c@section@level=\count146
+)
+LaTeX Info: Redefining \ref on input line 49.
+LaTeX Info: Redefining \pageref on input line 49.
+LaTeX Info: Redefining \nameref on input line 49.
+(./refman.out) (./refman.out)
+\@outlinefile=\write4
+\openout4 = `refman.out'.
+
+\big@size=\dimen151
+Package hyperref Info: Option `pageanchor' set `false' on input line 50.
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 12.9599pt on input line 54.
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 10.79993pt on input line 56.
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 8.09995pt on input line 58.
+[1
+
+
+{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2
+
+]
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 22.39185pt on input line 63.
+LaTeX Font Info: Font shape `T1/phv/bx/n' in size <24.88> not available
+(Font) Font shape `T1/phv/b/n' tried instead on input line 63.
+LaTeX Font Info: Font shape `T1/phv/b/n' will be
+(Font) scaled to size 22.39185pt on input line 63.
+LaTeX Font Info: Try loading font information for OT1+phv on input line 63.
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd
+File: ot1phv.fd 2001/06/04 scalable font definitions for OT1/phv.
+)
+LaTeX Font Info: Font shape `OT1/phv/bc/n' will be
+(Font) scaled to size 22.39185pt on input line 63.
+(./refman.toc
+LaTeX Font Info: Font shape `T1/phv/bx/n' in size <10> not available
+(Font) Font shape `T1/phv/b/n' tried instead on input line 1.
+LaTeX Font Info: Font shape `T1/phv/b/n' will be
+(Font) scaled to size 8.99994pt on input line 1.
+LaTeX Font Info: Try loading font information for OT1+ztmcm on input line 1.
+
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ztmcm.fd
+File: ot1ztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OT1/ztmcm.
+)
+LaTeX Font Info: Try loading font information for OML+ztmcm on input line 1.
+
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlztmcm.fd
+File: omlztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OML/ztmcm.
+)
+LaTeX Font Info: Try loading font information for OMS+ztmcm on input line 1.
+
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsztmcm.fd
+File: omsztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OMS/ztmcm.
+)
+LaTeX Font Info: Try loading font information for OMX+ztmcm on input line 1.
+
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxztmcm.fd
+File: omxztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OMX/ztmcm.
+)
+LaTeX Font Info: Try loading font information for OT1+ptm on input line 1.
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd
+File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm.
+)
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1.
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7.4> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1.
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1.
+[1
+
+]
+LaTeX Font Info: Font shape `T1/phv/bx/n' in size <7> not available
+(Font) Font shape `T1/phv/b/n' tried instead on input line 68.
+LaTeX Font Info: Font shape `T1/phv/b/n' will be
+(Font) scaled to size 6.29996pt on input line 68.
+[2] [3] [4] [5] [6] [7]
+Underfull \hbox (badness 10000) in paragraph at lines 279--279
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/2-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 280--280
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/2-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 281--281
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 285--285
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 290--290
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 292--292
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 294--294
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/dist-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 299--299
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+[8]
+Underfull \hbox (badness 10000) in paragraph at lines 301--301
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/edit-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 303--303
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 314--314
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 320--320
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 335--335
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/fold-
+ []
+
+[9]
+Underfull \hbox (badness 10000) in paragraph at lines 358--358
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 365--365
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 367--367
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 369--369
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+[10]
+Underfull \hbox (badness 10000) in paragraph at lines 378--378
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/-L-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 382--382
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/-M-E-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 386--386
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 388--388
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 389--389
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 390--390
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 398--398
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 403--403
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 405--405
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/plot-
+ []
+
+[11]
+Underfull \hbox (badness 10000) in paragraph at lines 416--416
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 422--422
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/-P-S-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 434--434
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 435--435
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-H/-R-N-
+ []
+
+[12]
+Underfull \hbox (badness 10000) in paragraph at lines 448--448
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 453--453
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 455--455
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 461--461
+ [][] [][][]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.projects/jabaws/sec
+ure-git/develop/binaries/src/-Vienna-R-N-A/-
+ []
+
+[13] [14]
+LaTeX Font Info: Font shape `T1/phv/bx/n' in size <12> not available
+(Font) Font shape `T1/phv/b/n' tried instead on input line 530.
+LaTeX Font Info: Font shape `T1/phv/b/n' will be
+(Font) scaled to size 10.79993pt on input line 530.
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 530.
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 530.
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 530.
+)
+\tf@toc=\write5
+\openout5 = `refman.toc'.
+
+[15] [16
+
+]
+Package hyperref Info: Option `pageanchor' set `true' on input line 66.
+Chapter 1.
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 18.66588pt on input line 67.
+LaTeX Font Info: Font shape `T1/phv/bx/n' in size <20.74> not available
+(Font) Font shape `T1/phv/b/n' tried instead on input line 67.
+LaTeX Font Info: Font shape `T1/phv/b/n' will be
+(Font) scaled to size 18.66588pt on input line 67.
+LaTeX Font Info: Font shape `OT1/phv/bc/n' will be
+(Font) scaled to size 18.66588pt on input line 67.
+(./index.tex
+LaTeX Font Info: Font shape `OT1/phv/bc/n' will be
+(Font) scaled to size 10.79993pt on input line 6.
+LaTeX Font Info: Font shape `OT1/phv/bc/n' will be
+(Font) scaled to size 8.99994pt on input line 13.
+LaTeX Font Info: Try loading font information for TS1+phv on input line 26.
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ts1phv.fd
+File: ts1phv.fd 2001/06/04 scalable font definitions for TS1/phv.
+)
+LaTeX Font Info: Font shape `TS1/phv/m/n' will be
+(Font) scaled to size 8.99994pt on input line 26.
+LaTeX Font Info: Font shape `T1/phv/bx/n' in size <14.4> not available
+(Font) Font shape `T1/phv/b/n' tried instead on input line 29.
+LaTeX Font Info: Font shape `T1/phv/b/n' will be
+(Font) scaled to size 12.9599pt on input line 29.
+LaTeX Font Info: Font shape `OT1/phv/bc/n' will be
+(Font) scaled to size 12.9599pt on input line 29.
+LaTeX Font Info: Try loading font information for T1+pcr on input line 34.
+(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pcr.fd
+File: t1pcr.fd 2001/06/04 font definitions for T1/pcr.
+)) [1
+
+] [2
+
+]
+Chapter 2.
+(./mp_parse.tex
+LaTeX Font Info: Font shape `T1/phv/m/it' in size <10> not available
+(Font) Font shape `T1/phv/m/sl' tried instead on input line 3.
+LaTeX Font Info: Font shape `T1/phv/m/sl' will be
+(Font) scaled to size 8.99994pt on input line 3.
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 7.19995pt on input line 9.
+[3]) [4]
+Chapter 3.
+(./mp_utils.tex) [5
+
+] [6
+
+]
+Chapter 4.
+(./mp_example.tex
+LaTeX Font Info: Font shape `T1/phv/m/n' will be
+(Font) scaled to size 6.29996pt on input line 4.
+LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <5> not available
+(Font) Font shape `OT1/ptm/b/n' tried instead on input line 56.
+[7]) [8]
+Chapter 5.
+(./deprecated.tex [9
+
+]) [10]
+Chapter 6.
+(./modules.tex [11
+
+]) [12]
+Chapter 7.
+(./annotated.tex [13
+
+]) [14]
+Chapter 8.
+(./files.tex
+
+LaTeX Warning: Reference `mainpage_8h' on page 15 undefined on input line 3.
+
+
+LaTeX Warning: Reference `ali__plex_8h' on page 15 undefined on input line 6.
+
+
+LaTeX Warning: Reference `aln__util_8h' on page 15 undefined on input line 8.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 10--10
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]convert-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 11--11
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 12--12
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]dist-_-vars.-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 14--14
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]edit-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 15--15
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]energy-_-
+ []
+
+
+LaTeX Warning: Reference `energy__par_8h' on page 15 undefined on input line 16
+.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/\T1/phv/b/n/10 energy-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 19--19
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]fold-_-
+ []
+
+
+Underfull \vbox (badness 3250) has occurred while \output is active []
+
+[15
+
+]
+Underfull \hbox (badness 10000) in paragraph at lines 23--23
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]loop-_-
+ []
+
+
+LaTeX Warning: Reference `move__set_8h' on page 16 undefined on input line 27.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 27--27
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/\T1/phv/b/n/10 move-_-
+ []
+
+
+LaTeX Warning: Reference `pair__mat_8h' on page 16 undefined on input line 29.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 29--29
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/\T1/phv/b/n/10 pair-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 31--31
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]part-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 32--32
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]part-_-func-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 33--33
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]part-_-func-
+ []
+
+
+LaTeX Warning: Reference `PKplex_8h' on page 16 undefined on input line 34.
+
+
+LaTeX Warning: Reference `plex_8h' on page 16 undefined on input line 35.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 36--36
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]plot-_-
+ []
+
+
+LaTeX Warning: Reference `ProfileAln_8h' on page 16 undefined on input line 37.
+
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 37--37
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/\T1/phv/b/n/10 Profile-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 40--40
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]read-_-
+ []
+
+
+LaTeX Warning: Reference `ribo_8h' on page 16 undefined on input line 41.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 42--42
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/[][]R-N-
+ []
+
+
+LaTeX Warning: Reference `snofold_8h' on page 16 undefined on input line 43.
+
+
+LaTeX Warning: Reference `snoop_8h' on page 16 undefined on input line 44.
+
+
+LaTeX Warning: Reference `svm__utils_8h' on page 16 undefined on input line 47.
+
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 47--47
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/-H/\T1/phv/b/n/10 svm-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 50--50
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/lib/[][]1.-8.-4-_-
+ []
+
+[16]
+Underfull \hbox (badness 10000) in paragraph at lines 51--51
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/lib/[][]1.-8.-4-_-
+ []
+
+
+LaTeX Warning: Reference `intl11_8h' on page 17 undefined on input line 52.
+
+
+LaTeX Warning: Reference `intl11dH_8h' on page 17 undefined on input line 53.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 53--53
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/lib/\T1/phv/b/n/10 intl11d-
+ []
+
+
+LaTeX Warning: Reference `intl21_8h' on page 17 undefined on input line 54.
+
+
+LaTeX Warning: Reference `intl21dH_8h' on page 17 undefined on input line 55.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 55--55
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/lib/\T1/phv/b/n/10 intl21d-
+ []
+
+
+LaTeX Warning: Reference `intl22_8h' on page 17 undefined on input line 56.
+
+
+LaTeX Warning: Reference `intl22dH_8h' on page 17 undefined on input line 57.
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 57--57
+ [][] \T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-g
+it/develop/binaries/src/-Vienna-R-N-A/lib/\T1/phv/b/n/10 intl22d-
+ []
+
+
+LaTeX Warning: Reference `list_8h' on page 17 undefined on input line 58.
+
+) [17] [18
+
+]
+Chapter 9.
+(./group__folding__routines.tex <group__folding__routines.pdf, id=3335, 399.492
+5pt x 588.1975pt>
+File: group__folding__routines.pdf Graphic file (type pdf)
+<use group__folding__routines.pdf>
+Package pdftex.def Info: group__folding__routines.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 515.35365pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[19]
+LaTeX Font Info: Font shape `T1/phv/m/it' in size <9> not available
+(Font) Font shape `T1/phv/m/sl' tried instead on input line 21.
+LaTeX Font Info: Font shape `T1/phv/m/sl' will be
+(Font) scaled to size 8.09995pt on input line 21.
+[20 <./group__folding__routines.pdf>]) [21]
+\openout2 = `group__mfe__fold.aux'.
+
+(./group__mfe__fold.tex <group__mfe__fold.pdf, id=3386, 584.1825pt x 262.9825pt
+>
+File: group__mfe__fold.pdf Graphic file (type pdf)
+<use group__mfe__fold.pdf>
+Package pdftex.def Info: group__mfe__fold.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 157.566pt.
+[22
+
+ <./group__mfe__fold.pdf>]
+LaTeX Font Info: Font shape `OT1/phv/bc/it' in size <10> not available
+(Font) Font shape `OT1/phv/bc/sl' tried instead on input line 67.
+LaTeX Font Info: Font shape `OT1/phv/bc/sl' will be
+(Font) scaled to size 8.99994pt on input line 67.
+
+Underfull \vbox (badness 10000) detected at line 104
+ []
+
+[23]
+Underfull \vbox (badness 10000) detected at line 133
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 162
+ []
+
+) [24]
+\openout2 = `group__pf__fold.aux'.
+
+(./group__pf__fold.tex <group__pf__fold.pdf, id=3473, 570.13pt x 497.86pt>
+File: group__pf__fold.pdf Graphic file (type pdf)
+<use group__pf__fold.pdf>
+Package pdftex.def Info: group__pf__fold.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 305.63132pt.
+[25
+
+
+ <./group__pf__fold.pdf>] [26]
+Underfull \vbox (badness 10000) detected at line 114
+ []
+
+[27]
+Underfull \vbox (badness 10000) detected at line 152
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 188
+ []
+
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[28] [29]
+Underfull \vbox (badness 10000) detected at line 286
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 326
+ []
+
+[30]
+Underfull \vbox (badness 10000) detected at line 351
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 382
+ []
+
+) [31]
+\openout2 = `group__mea__fold.aux'.
+
+(./group__mea__fold.tex <group__mea__fold.pdf, id=3624, 393.47pt x 124.465pt>
+File: group__mea__fold.pdf Graphic file (type pdf)
+<use group__mea__fold.pdf>
+Package pdftex.def Info: group__mea__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 110.71272pt.
+) [32
+
+
+ <./group__mea__fold.pdf>]
+\openout2 = `group__centroid__fold.aux'.
+
+(./group__centroid__fold.tex <group__centroid__fold.pdf, id=3637, 379.4175pt x
+112.42pt>
+File: group__centroid__fold.pdf Graphic file (type pdf)
+<use group__centroid__fold.pdf>
+Package pdftex.def Info: group__centroid__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 103.70554pt.
+
+Underfull \vbox (badness 10000) detected at line 52
+ []
+
+[33
+
+
+ <./group__centroid__fold.pdf>]
+Underfull \vbox (badness 10000) detected at line 83
+ []
+
+) [34]
+\openout2 = `group__subopt__fold.aux'.
+
+(./group__subopt__fold.tex <group__subopt__fold.pdf, id=3666, 523.9575pt x 236.
+885pt>
+File: group__subopt__fold.pdf Graphic file (type pdf)
+<use group__subopt__fold.pdf>
+Package pdftex.def Info: group__subopt__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 158.24222pt.
+) [35
+
+
+ <./group__subopt__fold.pdf>]
+\openout2 = `group__subopt__zuker.aux'.
+
+(./group__subopt__zuker.tex <group__subopt__zuker.pdf, id=3688, 349.305pt x 124
+.465pt>
+File: group__subopt__zuker.pdf Graphic file (type pdf)
+<use group__subopt__zuker.pdf>
+Package pdftex.def Info: group__subopt__zuker.pdf used on input line 9.
+(pdftex.def) Requested size: 348.0pt x 124.00699pt.
+
+Underfull \vbox (badness 10000) detected at line 43
+ []
+
+) [36
+
+
+ <./group__subopt__zuker.pdf>]
+\openout2 = `group__subopt__wuchty.aux'.
+
+(./group__subopt__wuchty.tex <group__subopt__wuchty.pdf, id=3710, 349.305pt x 1
+24.465pt>
+File: group__subopt__wuchty.pdf Graphic file (type pdf)
+<use group__subopt__wuchty.pdf>
+Package pdftex.def Info: group__subopt__wuchty.pdf used on input line 9.
+(pdftex.def) Requested size: 348.0pt x 124.00699pt.
+
+Underfull \vbox (badness 10000) detected at line 63
+ []
+
+[37
+
+
+ <./group__subopt__wuchty.pdf>]
+Underfull \vbox (badness 10000) detected at line 93
+ []
+
+) [38]
+\openout2 = `group__subopt__stochbt.aux'.
+
+(./group__subopt__stochbt.tex <group__subopt__stochbt.pdf, id=3749, 536.0025pt
+x 186.6975pt>
+File: group__subopt__stochbt.pdf Graphic file (type pdf)
+<use group__subopt__stochbt.pdf>
+Package pdftex.def Info: group__subopt__stochbt.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 121.91028pt.
+
+Underfull \vbox (badness 10000) detected at line 57
+ []
+
+[39
+
+
+ <./group__subopt__stochbt.pdf>]
+Underfull \vbox (badness 10000) detected at line 81
+ []
+
+) [40]
+\openout2 = `group__cofold.aux'.
+
+(./group__cofold.tex <group__cofold.pdf, id=3788, 525.965pt x 248.93pt>
+File: group__cofold.pdf Graphic file (type pdf)
+<use group__cofold.pdf>
+Package pdftex.def Info: group__cofold.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 165.65411pt.
+) [41
+
+
+ <./group__cofold.pdf>]
+\openout2 = `group__mfe__cofold.aux'.
+
+(./group__mfe__cofold.tex <group__mfe__cofold.pdf, id=3816, 375.4025pt x 174.65
+25pt>
+File: group__mfe__cofold.pdf Graphic file (type pdf)
+<use group__mfe__cofold.pdf>
+Package pdftex.def Info: group__mfe__cofold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 162.84354pt.
+
+Underfull \vbox (badness 10000) detected at line 61
+ []
+
+
+Overfull \vbox (18.034pt too high) has occurred while \output is active []
+
+[42
+
+
+ <./group__mfe__cofold.pdf>]
+Underfull \vbox (badness 10000) detected at line 103
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 139
+ []
+
+) [43]
+\openout2 = `group__pf__cofold.aux'.
+
+(./group__pf__cofold.tex <group__pf__cofold.pdf, id=3857, 363.3575pt x 174.6525
+pt>
+File: group__pf__cofold.pdf Graphic file (type pdf)
+<use group__pf__cofold.pdf>
+Package pdftex.def Info: group__pf__cofold.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 168.23746pt.
+[44
+
+
+ <./group__pf__cofold.pdf>]
+Underfull \vbox (badness 10000) detected at line 83
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 119
+ []
+
+[45]
+Underfull \vbox (badness 10000) detected at line 166
+ []
+
+[46]
+Underfull \vbox (badness 10000) detected at line 190
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 226
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 259
+ []
+
+) [47]
+\openout2 = `group__up__cofold.aux'.
+
+(./group__up__cofold.tex <group__up__cofold.pdf, id=3951, 397.485pt x 174.6525p
+t>
+File: group__up__cofold.pdf Graphic file (type pdf)
+<use group__up__cofold.pdf>
+Package pdftex.def Info: group__up__cofold.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 153.79327pt.
+[48
+
+
+ <./group__up__cofold.pdf>]
+Underfull \vbox (badness 10000) detected at line 63
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 109
+ []
+
+) [49]
+\openout2 = `group__consensus__fold.aux'.
+
+(./group__consensus__fold.tex <group__consensus__fold.pdf, id=4005, 564.1075pt
+x 299.1175pt>
+File: group__consensus__fold.pdf Graphic file (type pdf)
+<use group__consensus__fold.pdf>
+Package pdftex.def Info: group__consensus__fold.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 185.58784pt.
+[50
+
+
+ <./group__consensus__fold.pdf>]
+Underfull \vbox (badness 10000) detected at line 88
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 116
+ []
+
+[51]
+Underfull \vbox (badness 10000) detected at line 155
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 194
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 230
+ []
+
+
+Overfull \vbox (15.12947pt too high) has occurred while \output is active []
+
+[52]
+Underfull \vbox (badness 10000) detected at line 277
+ []
+
+) [53]
+\openout2 = `group__consensus__mfe__fold.aux'.
+
+(./group__consensus__mfe__fold.tex <group__consensus__mfe__fold.pdf, id=4078, 3
+95.4775pt x 162.6075pt>
+File: group__consensus__mfe__fold.pdf Graphic file (type pdf)
+<use group__consensus__mfe__fold.pdf>
+Package pdftex.def Info: group__consensus__mfe__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 143.91135pt.
+
+Underfull \vbox (badness 10000) detected at line 50
+ []
+
+[54
+
+
+ <./group__consensus__mfe__fold.pdf>]
+Underfull \vbox (badness 10000) detected at line 72
+ []
+
+) [55]
+\openout2 = `group__consensus__pf__fold.aux'.
+
+(./group__consensus__pf__fold.tex <group__consensus__pf__fold.pdf, id=4106, 405
+.515pt x 162.6075pt>
+File: group__consensus__pf__fold.pdf Graphic file (type pdf)
+<use group__consensus__pf__fold.pdf>
+Package pdftex.def Info: group__consensus__pf__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 140.35085pt.
+
+Underfull \vbox (badness 10000) detected at line 58
+ []
+
+[56
+
+
+ <./group__consensus__pf__fold.pdf>]
+Underfull \vbox (badness 10000) detected at line 83
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 104
+ []
+
+) [57]
+\openout2 = `group__consensus__stochbt.aux'.
+
+(./group__consensus__stochbt.tex <group__consensus__stochbt.pdf, id=4146, 399.4
+925pt x 162.6075pt>
+File: group__consensus__stochbt.pdf Graphic file (type pdf)
+<use group__consensus__stochbt.pdf>
+Package pdftex.def Info: group__consensus__stochbt.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 142.46977pt.
+
+Underfull \vbox (badness 10000) detected at line 40
+ []
+
+) [58
+
+
+ <./group__consensus__stochbt.pdf>]
+\openout2 = `group__local__fold.aux'.
+
+(./group__local__fold.tex <group__local__fold.pdf, id=4163, 501.875pt x 236.885
+pt>
+File: group__local__fold.pdf Graphic file (type pdf)
+<use group__local__fold.pdf>
+Package pdftex.def Info: group__local__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 165.2075pt.
+) [59
+
+
+ <./group__local__fold.pdf>]
+\openout2 = `group__local__mfe__fold.aux'.
+
+(./group__local__mfe__fold.tex <group__local__mfe__fold.pdf, id=4183, 383.4325p
+t x 174.6525pt>
+File: group__local__mfe__fold.pdf Graphic file (type pdf)
+<use group__local__mfe__fold.pdf>
+Package pdftex.def Info: group__local__mfe__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 159.43237pt.
+
+Underfull \vbox (badness 10000) detected at line 48
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 72
+ []
+
+) [60
+
+
+ <./group__local__mfe__fold.pdf>]
+\openout2 = `group__local__pf__fold.aux'.
+
+(./group__local__pf__fold.tex <group__local__pf__fold.pdf, id=4205, 379.4175pt
+x 174.6525pt>
+File: group__local__pf__fold.pdf Graphic file (type pdf)
+<use group__local__pf__fold.pdf>
+Package pdftex.def Info: group__local__pf__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 161.11397pt.
+
+Underfull \vbox (badness 10000) detected at line 48
+ []
+
+[61
+
+
+ <./group__local__pf__fold.pdf>]
+Underfull \vbox (badness 10000) detected at line 91
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 124
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 154
+ []
+
+) [62]
+\openout2 = `group__local__consensus__fold.aux'.
+
+(./group__local__consensus__fold.tex <group__local__consensus__fold.pdf, id=424
+8, 379.4175pt x 174.6525pt>
+File: group__local__consensus__fold.pdf Graphic file (type pdf)
+<use group__local__consensus__fold.pdf>
+Package pdftex.def Info: group__local__consensus__fold.pdf used on input line 9
+.
+(pdftex.def) Requested size: 350.0pt x 161.11397pt.
+
+Underfull \vbox (badness 10000) detected at line 40
+ []
+
+) [63
+
+
+ <./group__local__consensus__fold.pdf>]
+\openout2 = `group__energy__parameters.aux'.
+
+(./group__energy__parameters.tex <group__energy__parameters.pdf, id=4265, 540.0
+175pt x 124.465pt>
+File: group__energy__parameters.pdf Graphic file (type pdf)
+<use group__energy__parameters.pdf>
+Package pdftex.def Info: group__energy__parameters.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 80.67148pt.
+[64
+
+
+ <./group__energy__parameters.pdf>]
+Underfull \vbox (badness 10000) detected at line 92
+ []
+
+[65]
+Underfull \vbox (badness 10000) detected at line 136
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 158
+ []
+
+) [66]
+\openout2 = `group__energy__parameters__rw.aux'.
+
+(./group__energy__parameters__rw.tex <group__energy__parameters__rw.pdf, id=433
+5, 552.0625pt x 124.465pt>
+File: group__energy__parameters__rw.pdf Graphic file (type pdf)
+<use group__energy__parameters__rw.pdf>
+Package pdftex.def Info: group__energy__parameters__rw.pdf used on input line 1
+4.
+(pdftex.def) Requested size: 350.0pt x 78.91284pt.
+
+Underfull \vbox (badness 10000) detected at line 55
+ []
+
+[67
+
+
+ <./group__energy__parameters__rw.pdf>]
+Underfull \vbox (badness 10000) detected at line 71
+ []
+
+) [68]
+\openout2 = `group__energy__parameters__convert.aux'.
+
+(./group__energy__parameters__convert.tex <group__energy__parameters__convert.p
+df, id=4376, 391.4625pt x 112.42pt>
+File: group__energy__parameters__convert.pdf Graphic file (type pdf)
+<use group__energy__parameters__convert.pdf>
+Package pdftex.def Info: group__energy__parameters__convert.pdf used on input l
+ine 14.
+(pdftex.def) Requested size: 350.0pt x 100.51834pt.
+[69
+
+
+ <./group__energy__parameters__convert.pdf>] [70] [71]
+Underfull \vbox (badness 10000) detected at line 186
+ []
+
+) [72]
+\openout2 = `group__eval.aux'.
+
+(./group__eval.tex <group__eval.pdf, id=4488, 337.26pt x 112.42pt>
+File: group__eval.pdf Graphic file (type pdf)
+<use group__eval.pdf>
+Package pdftex.def Info: group__eval.pdf used on input line 14.
+(pdftex.def) Requested size: 336.0pt x 112.00288pt.
+[73
+
+
+ <./group__eval.pdf>]
+Underfull \vbox (badness 10000) detected at line 73
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 106
+ []
+
+[74]
+Underfull \vbox (badness 10000) detected at line 139
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 172
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 211
+ []
+
+[75]
+Underfull \vbox (badness 10000) detected at line 250
+ []
+
+) [76]
+\openout2 = `group__inverse__fold.aux'.
+
+(./group__inverse__fold.tex <group__inverse__fold.pdf, id=4555, 371.3875pt x 11
+2.42pt>
+File: group__inverse__fold.pdf Graphic file (type pdf)
+<use group__inverse__fold.pdf>
+Package pdftex.def Info: group__inverse__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 105.94756pt.
+[77
+
+
+ <./group__inverse__fold.pdf>]
+Underfull \vbox (badness 10000) detected at line 62
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 86
+ []
+
+) [78]
+\openout2 = `group__class__fold.aux'.
+
+(./group__class__fold.tex <group__class__fold.pdf, id=4602, 544.0325pt x 162.60
+75pt>
+File: group__class__fold.pdf Graphic file (type pdf)
+<use group__class__fold.pdf>
+Package pdftex.def Info: group__class__fold.pdf used on input line 9.
+(pdftex.def) Requested size: 350.0pt x 104.61678pt.
+) [79
+
+
+ <./group__class__fold.pdf>]
+\openout2 = `group__kl__neighborhood.aux'.
+
+(./group__kl__neighborhood.tex <group__kl__neighborhood.pdf, id=4628, 572.1375p
+t x 236.885pt>
+File: group__kl__neighborhood.pdf Graphic file (type pdf)
+<use group__kl__neighborhood.pdf>
+Package pdftex.def Info: group__kl__neighborhood.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 144.9117pt.
+) [80
+
+
+ <./group__kl__neighborhood.pdf>]
+\openout2 = `group__kl__neighborhood__mfe.aux'.
+
+(./group__kl__neighborhood__mfe.tex <group__kl__neighborhood__mfe.pdf, id=4654,
+ 437.635pt x 162.6075pt>
+File: group__kl__neighborhood__mfe.pdf Graphic file (type pdf)
+<use group__kl__neighborhood__mfe.pdf>
+Package pdftex.def Info: group__kl__neighborhood__mfe.pdf used on input line 14
+.
+(pdftex.def) Requested size: 350.0pt x 130.04648pt.
+[81
+
+
+ <./group__kl__neighborhood__mfe.pdf>]
+Underfull \vbox (badness 10000) detected at line 71
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 95
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 124
+ []
+
+
+Overfull \vbox (6.97314pt too high) has occurred while \output is active []
+
+[82]
+Underfull \vbox (badness 10000) detected at line 155
+ []
+
+) [83]
+\openout2 = `group__kl__neighborhood__pf.aux'.
+
+(./group__kl__neighborhood__pf.tex <group__kl__neighborhood__pf.pdf, id=4716, 4
+01.5pt x 162.6075pt>
+File: group__kl__neighborhood__pf.pdf Graphic file (type pdf)
+<use group__kl__neighborhood__pf.pdf>
+Package pdftex.def Info: group__kl__neighborhood__pf.pdf used on input line 14.
+
+(pdftex.def) Requested size: 350.0pt x 141.76016pt.
+
+Underfull \hbox (badness 963) in paragraph at lines 28--28
+[]\T1/phv/m/sl/9 Get the datas-truc-ture con-tain-ing all nec-es-sary at-tribut
+es and global fold-ing switches from a pre-filled mfe-
+ []
+
+[84
+
+
+ <./group__kl__neighborhood__pf.pdf>]
+Underfull \vbox (badness 10000) detected at line 65
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 89
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 113
+ []
+
+[85]
+Underfull \vbox (badness 10000) detected at line 140
+ []
+
+) [86]
+\openout2 = `group__kl__neighborhood__stochbt.aux'.
+
+(./group__kl__neighborhood__stochbt.tex <group__kl__neighborhood__stochbt.pdf,
+id=4774, 417.56pt x 162.6075pt>
+File: group__kl__neighborhood__stochbt.pdf Graphic file (type pdf)
+<use group__kl__neighborhood__stochbt.pdf>
+Package pdftex.def Info: group__kl__neighborhood__stochbt.pdf used on input lin
+e 14.
+(pdftex.def) Requested size: 350.0pt x 136.3065pt.
+
+Underfull \vbox (badness 10000) detected at line 59
+ []
+
+[87
+
+
+ <./group__kl__neighborhood__stochbt.pdf>]
+Underfull \vbox (badness 10000) detected at line 98
+ []
+
+) [88]
+\openout2 = `group__dos.aux'.
+
+(./group__dos.tex <group__dos.pdf, id=4806, 321.2pt x 112.42pt>
+File: group__dos.pdf Graphic file (type pdf)
+<use group__dos.pdf>
+Package pdftex.def Info: group__dos.pdf used on input line 9.
+(pdftex.def) Requested size: 320.0pt x 112.00288pt.
+) [89
+
+
+ <./group__dos.pdf>]
+\openout2 = `group__parse.aux'.
+
+(./group__parse.tex) [90
+
+
+]
+Chapter 10.
+(./structbondT.tex
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structbondTEn.tex
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structcofoldF.tex [91
+
+
+]
+Underfull \hbox (badness 10000) in paragraph at lines 26--26
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structConcEnt.tex
+Underfull \hbox (badness 10000) in paragraph at lines 20--20
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structconstrain.tex
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structCOORDINATE.tex
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structcpair.tex [92]
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structduplexT.tex
+Underfull \hbox (badness 10000) in paragraph at lines 8--8
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structdupVar.tex
+Underfull \hbox (badness 10000) in paragraph at lines 8--8
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structfolden.tex
+Underfull \hbox (badness 10000) in paragraph at lines 8--8
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structinteract.tex [93]
+Underfull \hbox (badness 10000) in paragraph at lines 38--38
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structintermediate__t.tex <structintermediate__t__coll__graph.pdf, id=4916
+, 158.5925pt x 172.645pt>
+File: structintermediate__t__coll__graph.pdf Graphic file (type pdf)
+<use structintermediate__t__coll__graph.pdf>
+Package pdftex.def Info: structintermediate__t__coll__graph.pdf used on input l
+ine 11.
+(pdftex.def) Requested size: 158.0pt x 172.01494pt.
+
+Underfull \hbox (badness 10000) in paragraph at lines 33--33
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structINTERVAL.tex [94 <./structintermediate__t__coll__graph.pdf>]
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structLIST.tex <structLIST__coll__graph.pdf, id=4946, 197.73875pt x 196.73
+5pt>
+File: structLIST__coll__graph.pdf Graphic file (type pdf)
+<use structLIST__coll__graph.pdf>
+Package pdftex.def Info: structLIST__coll__graph.pdf used on input line 11.
+(pdftex.def) Requested size: 197.0pt x 196.00201pt.
+) (./structLST__BUCKET.tex <structLST__BUCKET__coll__graph.pdf, id=4947, 197.73
+875pt x 102.3825pt>
+File: structLST__BUCKET__coll__graph.pdf Graphic file (type pdf)
+<use structLST__BUCKET__coll__graph.pdf>
+Package pdftex.def Info: structLST__BUCKET__coll__graph.pdf used on input line
+11.
+(pdftex.def) Requested size: 197.0pt x 102.00105pt.
+) (./structmodel__detailsT.tex [95 <./structLIST__coll__graph.pdf> <./structLST
+__BUCKET__coll__graph.pdf
+
+pdfTeX warning: pdflatex (file ./structLST__BUCKET__coll__graph.pdf): PDF inclu
+sion: multiple pdfs with page group included in a single page
+>]
+Underfull \hbox (badness 10000) in paragraph at lines 55--55
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structmove__t.tex
+Underfull \hbox (badness 10000) in paragraph at lines 8--8
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structPAIR.tex [96]
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structpair__info.tex
+Underfull \hbox (badness 10000) in paragraph at lines 48--48
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structpairpro.tex <structpairpro__coll__graph.pdf, id=5002, 126.4725pt x 2
+20.825pt>
+File: structpairpro__coll__graph.pdf Graphic file (type pdf)
+<use structpairpro__coll__graph.pdf>
+Package pdftex.def Info: structpairpro__coll__graph.pdf used on input line 11.
+(pdftex.def) Requested size: 126.0pt x 220.00565pt.
+[97]
+Underfull \hbox (badness 10000) in paragraph at lines 18--18
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structparamT.tex <structparamT__coll__graph.pdf, id=5018, 183.68625pt x 17
+2.645pt>
+File: structparamT__coll__graph.pdf Graphic file (type pdf)
+<use structparamT__coll__graph.pdf>
+Package pdftex.def Info: structparamT__coll__graph.pdf used on input line 16.
+(pdftex.def) Requested size: 183.0pt x 172.01231pt.
+[98 <./structpairpro__coll__graph.pdf> <./structparamT__coll__graph.pdf
+
+pdfTeX warning: pdflatex (file ./structparamT__coll__graph.pdf): PDF inclusion:
+ multiple pdfs with page group included in a single page
+>]
+Underfull \hbox (badness 10000) in paragraph at lines 35--35
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structpath__t.tex
+Underfull \hbox (badness 10000) in paragraph at lines 8--8
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structpf__paramT.tex <structpf__paramT__coll__graph.pdf, id=5046, 183.6862
+5pt x 172.645pt>
+File: structpf__paramT__coll__graph.pdf Graphic file (type pdf)
+<use structpf__paramT__coll__graph.pdf>
+Package pdftex.def Info: structpf__paramT__coll__graph.pdf used on input line 1
+6.
+(pdftex.def) Requested size: 183.0pt x 172.01231pt.
+[99 <./structpf__paramT__coll__graph.pdf>]
+Underfull \hbox (badness 10000) in paragraph at lines 50--50
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structplist.tex
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structPostorder__list.tex) (./structpu__contrib.tex [100]
+Underfull \hbox (badness 10000) in paragraph at lines 37--37
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structpu__out.tex
+Underfull \hbox (badness 10000) in paragraph at lines 34--34
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structsect.tex
+Underfull \hbox (badness 10000) in paragraph at lines 16--16
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structsnoopT.tex [101]
+Underfull \hbox (badness 10000) in paragraph at lines 8--8
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structSOLUTION.tex
+Underfull \hbox (badness 10000) in paragraph at lines 25--25
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structstruct__en.tex) (./structsvm__model.tex) (./structswString.tex) (./s
+tructTree.tex <structTree__coll__graph.pdf, id=5124, 177.66376pt x 172.645pt>
+File: structTree__coll__graph.pdf Graphic file (type pdf)
+<use structTree__coll__graph.pdf>
+Package pdftex.def Info: structTree__coll__graph.pdf used on input line 11.
+(pdftex.def) Requested size: 177.0pt x 172.00441pt.
+[102]) (./structTwoDfold__solution.tex
+Underfull \hbox (badness 10000) in paragraph at lines 40--40
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+[103 <./structTree__coll__graph.pdf>]) (./structTwoDfold__vars.tex <structTwoDf
+old__vars__coll__graph.pdf, id=5161, 183.68625pt x 242.9075pt>
+File: structTwoDfold__vars__coll__graph.pdf Graphic file (type pdf)
+<use structTwoDfold__vars__coll__graph.pdf>
+Package pdftex.def Info: structTwoDfold__vars__coll__graph.pdf used on input li
+ne 16.
+(pdftex.def) Requested size: 183.0pt x 242.01733pt.
+[104 <./structTwoDfold__vars__coll__graph.pdf>]
+Underfull \hbox (badness 10000) in paragraph at lines 73--73
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structTwoDpfold__solution.tex
+Underfull \hbox (badness 10000) in paragraph at lines 37--37
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) (./structTwoDpfold__vars.tex [105] <structTwoDpfold__vars__coll__graph.pdf, i
+d=5223, 184.69pt x 242.9075pt>
+File: structTwoDpfold__vars__coll__graph.pdf Graphic file (type pdf)
+<use structTwoDpfold__vars__coll__graph.pdf>
+Package pdftex.def Info: structTwoDpfold__vars__coll__graph.pdf used on input l
+ine 16.
+(pdftex.def) Requested size: 184.0pt x 242.0025pt.
+[106 <./structTwoDpfold__vars__coll__graph.pdf>]
+Underfull \hbox (badness 6641) in paragraph at lines 64--65
+[][][]\T1/phv/m/n/10 get-_--Two-Dpfold-_-variables()[][], [][]get-_--Two-Dpfold
+-_-variables-_-from-_--M-F-E()[][], [][]destroy-_--Two-Dpfold-_-variables()[][]
+, [][]Two-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 70--70
+[]\T1/phv/m/n/10 /home/asherstnev/-Projects/-Java.-projects/jabaws/secure-git/d
+evelop/binaries/src/-Vienna-R-N-A/-H/[][]data-_-
+ []
+
+) [107] [108
+
+]
+Chapter 11.
+(./2Dfold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<2Dfold_8h__incl.pdf, id=5277, 250.9375pt x 313.17pt>
+File: 2Dfold_8h__incl.pdf Graphic file (type pdf)
+<use 2Dfold_8h__incl.pdf>
+Package pdftex.def Info: 2Dfold_8h__incl.pdf used on input line 9.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+[109 <./2Dfold_8h__incl.pdf>]) (./2Dpfold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<2Dpfold_8h__incl.pdf, id=5304, 250.9375pt x 313.17pt>
+File: 2Dpfold_8h__incl.pdf Graphic file (type pdf)
+<use 2Dpfold_8h__incl.pdf>
+Package pdftex.def Info: 2Dpfold_8h__incl.pdf used on input line 9.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+
+Underfull \hbox (badness 963) in paragraph at lines 18--18
+[]\T1/phv/m/sl/9 Get the datas-truc-ture con-tain-ing all nec-es-sary at-tribut
+es and global fold-ing switches from a pre-filled mfe-
+ []
+
+[110 <./2Dpfold_8h__incl.pdf>]) (./alifold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<alifold_8h__incl.pdf, id=5334, 250.9375pt x 313.17pt>
+File: alifold_8h__incl.pdf Graphic file (type pdf)
+<use alifold_8h__incl.pdf>
+Package pdftex.def Info: alifold_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+pdfTeX warning (ext4): destination with the same identifier (name{group__consen
+sus__mfe__fold_ga72095e4554b5d577250ea14c42acc49e}) has been already used, dupl
+icate ignored
+<to be read again>
+ \relax
+l.26 ...9e}{free\-\_\-alifold\-\_\-arrays} (void)}
+ \label{group__consensus__m...
+pdfTeX warning (ext4): destination with the same identifier (name{group__consen
+sus__fold_ga5e125c9586fcd4e2e1559fe76f7289cc}) has been already used, duplicate
+ ignored
+<to be read again>
+ \relax
+l.31 ...76f7289cc}{readribosum} (char $\ast$name)}
+ \label{group__consensus__f...
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[111 <./alifold_8h__incl.pdf>]) (./cofold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<cofold_8h__incl.pdf, id=5377, 250.9375pt x 313.17pt>
+File: cofold_8h__incl.pdf Graphic file (type pdf)
+<use cofold_8h__incl.pdf>
+Package pdftex.def Info: cofold_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+[112]pdfTeX warning (ext4): destination with the same identifier (name{group__m
+fe__cofold_gafe430060533f14b11fc611f60b3f1f6f}) has been already used, duplicat
+e ignored
+<to be read again>
+ \relax
+l.22 ...\ast$parameters, int is\-\_\-constrained)}
+ \label{group__mfe__cofold_...
+pdfTeX warning (ext4): destination with the same identifier (name{group__mfe__c
+ofold_gaafb33d7473eb9af9d1b168ca8761c41a}) has been already used, duplicate ign
+ored
+<to be read again>
+ \relax
+l.25 ...761c41a}{free\-\_\-co\-\_\-arrays} (void)}
+ \label{group__mfe__cofold_...
+pdfTeX warning (ext4): destination with the same identifier (name{group__mfe__c
+ofold_ga4fcbf34e77b99bfbb2333d2ab0c41a57}) has been already used, duplicate ign
+ored
+<to be read again>
+ \relax
+l.28 ...7}{update\-\_\-cofold\-\_\-params} (void)}
+ \label{group__mfe__cofold_...
+pdfTeX warning (ext4): destination with the same identifier (name{group__subopt
+__zuker_ga6d98a9450d1affadf144ac79f543da8c}) has been already used, duplicate i
+gnored
+<to be read again>
+ \relax
+l.37 ...structparamT}{param\-T} $\ast$parameters)}
+ \label{group__subopt__zuke...
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[113 <./cofold_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 70
+ []
+
+) (./convert__epars_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+[114]) (./data__structures_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<data__structures_8h__incl.pdf, id=5443, 250.9375pt x 254.9525pt>
+File: data__structures_8h__incl.pdf Graphic file (type pdf)
+<use data__structures_8h__incl.pdf>
+Package pdftex.def Info: data__structures_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 254.0143pt.
+<data__structures_8h__dep__incl.pdf, id=5444, 4442.5975pt x 327.2225pt>
+File: data__structures_8h__dep__incl.pdf Graphic file (type pdf)
+<use data__structures_8h__dep__incl.pdf>
+Package pdftex.def Info: data__structures_8h__dep__incl.pdf used on input line
+22.
+(pdftex.def) Requested size: 350.0pt x 25.77888pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[115 <./data__structures_8h__incl.pdf> <./data__structures_8h__dep__incl.pdf
+
+pdfTeX warning: pdflatex (file ./data__structures_8h__dep__incl.pdf): PDF inclu
+sion: multiple pdfs with page group included in a single page
+>] [116]) (./dist__vars_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<dist__vars_8h__dep__incl.pdf, id=5514, 439.6425pt x 232.87pt>
+File: dist__vars_8h__dep__incl.pdf Graphic file (type pdf)
+<use dist__vars_8h__dep__incl.pdf>
+Package pdftex.def Info: dist__vars_8h__dep__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 185.39369pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[117 <./dist__vars_8h__dep__incl.pdf>]) (./duplex_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<duplex_8h__incl.pdf, id=5540, 250.9375pt x 313.17pt>
+File: duplex_8h__incl.pdf Graphic file (type pdf)
+<use duplex_8h__incl.pdf>
+Package pdftex.def Info: duplex_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+) (./edit__cost_8h.tex [118 <./duplex_8h__incl.pdf>]
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+) (./energy__const_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<energy__const_8h__incl.pdf, id=5553, 250.9375pt x 196.735pt>
+File: energy__const_8h__incl.pdf Graphic file (type pdf)
+<use energy__const_8h__incl.pdf>
+Package pdftex.def Info: energy__const_8h__incl.pdf used on input line 9.
+(pdftex.def) Requested size: 250.0pt x 196.01102pt.
+<energy__const_8h__dep__incl.pdf, id=5554, 4556.02126pt x 421.575pt>
+File: energy__const_8h__dep__incl.pdf Graphic file (type pdf)
+<use energy__const_8h__dep__incl.pdf>
+Package pdftex.def Info: energy__const_8h__dep__incl.pdf used on input line 17.
+
+(pdftex.def) Requested size: 350.0pt x 32.38225pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[119 <./energy__const_8h__incl.pdf> <./energy__const_8h__dep__incl.pdf
+
+pdfTeX warning: pdflatex (file ./energy__const_8h__dep__incl.pdf): PDF inclusio
+n: multiple pdfs with page group included in a single page
+>]) (./findpath_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<findpath_8h__incl.pdf, id=5596, 250.9375pt x 313.17pt>
+File: findpath_8h__incl.pdf Graphic file (type pdf)
+<use findpath_8h__incl.pdf>
+Package pdftex.def Info: findpath_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+[120]
+Underfull \vbox (badness 10000) detected at line 56
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[121 <./findpath_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 84
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 103
+ []
+
+) (./fold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<fold_8h__incl.pdf, id=5635, 250.9375pt x 313.17pt>
+File: fold_8h__incl.pdf Graphic file (type pdf)
+<use fold_8h__incl.pdf>
+Package pdftex.def Info: fold_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[122]pdfTeX warning (ext4): destination with the same identifier (name{group__m
+fe__fold_ga107fdfe5fd641868156bfd849f6866c7}) has been already used, duplicate
+ignored
+<to be read again>
+ \relax
+l.38 ...56bfd849f6866c7}{free\-\_\-arrays} (void)}
+ \label{group__mfe__fold_ga...
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[123 <./fold_8h__incl.pdf>]pdfTeX warning (ext4): destination with the same ide
+ntifier (name{group__mfe__fold_ga41bf8f6fa15b94471f7095cad9f0ccf3}) has been al
+ready used, duplicate ignored
+<to be read again>
+ \relax
+l.45 ...cf3}{update\-\_\-fold\-\_\-params} (void)}
+ \label{group__mfe__fold_ga...
+pdfTeX warning (ext4): destination with the same identifier (name{group__eval_g
+a567530678f6260a1a649a5beca5da4c5}) has been already used, duplicate ignored
+<to be read again>
+ \relax
+l.80 ...8f6260a1a649a5beca5da4c5}{eos\-\_\-debug}}
+ \label{group__eval_ga56753...
+[124]
+Underfull \vbox (badness 10000) detected at line 150
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 186
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[125]
+Underfull \vbox (badness 10000) detected at line 214
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 245
+ []
+
+[126]
+Underfull \vbox (badness 10000) detected at line 312
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 349
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[127]
+Underfull \vbox (badness 10000) detected at line 380
+ []
+
+) (./fold__vars_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<fold__vars_8h__incl.pdf, id=5751, 250.9375pt x 313.17pt>
+File: fold__vars_8h__incl.pdf Graphic file (type pdf)
+<use fold__vars_8h__incl.pdf>
+Package pdftex.def Info: fold__vars_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+<fold__vars_8h__dep__incl.pdf, id=5752, 439.6425pt x 232.87pt>
+File: fold__vars_8h__dep__incl.pdf Graphic file (type pdf)
+<use fold__vars_8h__dep__incl.pdf>
+Package pdftex.def Info: fold__vars_8h__dep__incl.pdf used on input line 22.
+(pdftex.def) Requested size: 350.0pt x 185.39369pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[128 <./fold__vars_8h__incl.pdf>]
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[129 <./fold__vars_8h__dep__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 113
+ []
+
+[130]
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[131]) (./gquad_8h.tex [132]
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<gquad_8h__incl.pdf, id=5852, 250.9375pt x 313.17pt>
+File: gquad_8h__incl.pdf Graphic file (type pdf)
+<use gquad_8h__incl.pdf>
+Package pdftex.def Info: gquad_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[133 <./gquad_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 57
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 110
+ []
+
+[134]
+Underfull \vbox (badness 10000) detected at line 152
+ []
+
+) (./inverse_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+pdfTeX warning (ext4): destination with the same identifier (name{group__invers
+e__fold_ga8f791e7740a5a28b9f6fafb4e60301d9}) has been already used, duplicate i
+gnored
+<to be read again>
+ \relax
+l.19 ...91e7740a5a28b9f6fafb4e60301d9}{symbolset}}
+ \label{group__inverse__fol...
+) (./Lfold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[135]) (./loop__energies_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<loop__energies_8h__incl.pdf, id=5901, 625.33624pt x 371.3875pt>
+File: loop__energies_8h__incl.pdf Graphic file (type pdf)
+<use loop__energies_8h__incl.pdf>
+Package pdftex.def Info: loop__energies_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 350.0pt x 207.8679pt.
+[136 <./loop__energies_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 110
+ []
+
+
+Overfull \vbox (40.56966pt too high) has occurred while \output is active []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[137]
+Underfull \vbox (badness 10000) detected at line 165
+ []
+
+[138]
+Underfull \vbox (badness 10000) detected at line 215
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[139]
+Underfull \vbox (badness 10000) detected at line 280
+ []
+
+[140]
+Underfull \vbox (badness 10000) detected at line 331
+ []
+
+) (./LPfold_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<LPfold_8h__incl.pdf, id=5974, 250.9375pt x 313.17pt>
+File: LPfold_8h__incl.pdf Graphic file (type pdf)
+<use LPfold_8h__incl.pdf>
+Package pdftex.def Info: LPfold_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+pdfTeX warning (ext4): destination with the same identifier (name{group__local_
+_pf__fold_gab354507e8028f3e1c52ef96bb1eb9df8}) has been already used, duplicate
+ ignored
+<to be read again>
+ \relax
+l.24 ...ramT}{pf\-\_\-param\-T} $\ast$parameters)}
+ \label{group__local__pf__f...
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[141 <./LPfold_8h__incl.pdf>]) (./MEA_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<MEA_8h__incl.pdf, id=6000, 252.945pt x 313.17pt>
+File: MEA_8h__incl.pdf Graphic file (type pdf)
+<use MEA_8h__incl.pdf>
+Package pdftex.def Info: MEA_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 252.0pt x 312.00801pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[142]) (./mm_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[143 <./MEA_8h__incl.pdf>]) (./naview_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<naview_8h__dep__incl.pdf, id=6023, 250.9375pt x 327.2225pt>
+File: naview_8h__dep__incl.pdf Graphic file (type pdf)
+<use naview_8h__dep__incl.pdf>
+Package pdftex.def Info: naview_8h__dep__incl.pdf used on input line 9.
+(pdftex.def) Requested size: 250.0pt x 326.01837pt.
+) (./params_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<params_8h__incl.pdf, id=6024, 250.9375pt x 313.17pt>
+File: params_8h__incl.pdf Graphic file (type pdf)
+<use params_8h__incl.pdf>
+Package pdftex.def Info: params_8h__incl.pdf used on input line 9.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[144 <./naview_8h__dep__incl.pdf>] <params_8h__dep__incl.pdf, id=6037, 250.9375
+pt x 232.87pt>
+File: params_8h__dep__incl.pdf Graphic file (type pdf)
+<use params_8h__dep__incl.pdf>
+Package pdftex.def Info: params_8h__dep__incl.pdf used on input line 17.
+(pdftex.def) Requested size: 250.0pt x 232.01306pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[145 <./params_8h__incl.pdf> <./params_8h__dep__incl.pdf
+
+pdfTeX warning: pdflatex (file ./params_8h__dep__incl.pdf): PDF inclusion: mult
+iple pdfs with page group included in a single page
+>]pdfTeX warning (ext4): destination with the same identifier (name{group__ener
+gy__parameters_gaa6a4297a2b91d6f7ae47dd61ca1862a0}) has been already used, dupl
+icate ignored
+<to be read again>
+ \relax
+l.33 ...\_\-parameters} (unsigned int n\-\_\-seq)}
+ \label{group__energy__para...
+pdfTeX warning (ext4): destination with the same identifier (name{group__energy
+__parameters_gaaa049a8c9f1c2ed4398cb1b5a3d65a66}) has been already used, duplic
+ate ignored
+<to be read again>
+ \relax
+l.36 ...065acc6dee0af68931b52cfd}{pf\-\_\-scale})}
+ \label{group__energy__para...
+) (./part__func_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<part__func_8h__incl.pdf, id=6081, 250.9375pt x 313.17pt>
+File: part__func_8h__incl.pdf Graphic file (type pdf)
+<use part__func_8h__incl.pdf>
+Package pdftex.def Info: part__func_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+[146 <./part__func_8h__incl.pdf>]pdfTeX warning (ext4): destination with the sa
+me identifier (name{group__pf__fold_ga0733527a94de3b79eee3c3c03c99c1bc}) has be
+en already used, duplicate ignored
+<to be read again>
+ \relax
+l.35 ...ramT}{pf\-\_\-param\-T} $\ast$parameters)}
+ \label{group__pf__fold_ga0...
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[147]) (./part__func__co_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<part__func__co_8h__incl.pdf, id=6149, 250.9375pt x 313.17pt>
+File: part__func__co_8h__incl.pdf Graphic file (type pdf)
+<use part__func__co_8h__incl.pdf>
+Package pdftex.def Info: part__func__co_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+[148]pdfTeX warning (ext4): destination with the same identifier (name{group__p
+f__cofold_gade3ce34ae8214811374b1d28a40dc247}) has been already used, duplicate
+ ignored
+<to be read again>
+ \relax
+l.26 ...{free\-\_\-co\-\_\-pf\-\_\-arrays} (void)}
+ \label{group__pf__cofold_g...
+pdfTeX warning (ext4): destination with the same identifier (name{group__pf__co
+fold_gaff27888c4088cc1f60fd59cbd589474c}) has been already used, duplicate igno
+red
+<to be read again>
+ \relax
+l.44 ...27888c4088cc1f60fd59cbd589474c}{mirnatog}}
+ \label{group__pf__cofold_g...
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[149 <./part__func__co_8h__incl.pdf>]pdfTeX warning (ext4): destination with th
+e same identifier (name{group__pf__cofold_gac2d1851a710a8561390861155ca988fe})
+has been already used, duplicate ignored
+<to be read again>
+ \relax
+l.47 ...a988fe}{F\-\_\-monomer} \mbox{[}2\mbox{]}}
+ \label{group__pf__cofold_g...
+) (./part__func__up_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<part__func__up_8h__incl.pdf, id=6195, 250.9375pt x 313.17pt>
+File: part__func__up_8h__incl.pdf Graphic file (type pdf)
+<use part__func__up_8h__incl.pdf>
+Package pdftex.def Info: part__func__up_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+
+Underfull \vbox (badness 3815) has occurred while \output is active []
+
+[150]pdfTeX warning (ext4): destination with the same identifier (name{group__u
+p__cofold_gadde308fd5f696dc271b1532aa96fd12f}) has been already used, duplicate
+ ignored
+<to be read again>
+ \relax
+l.24 ...link{structinteract}{interact} $\ast$pin)}
+ \label{group__up__cofold_g...
+pdfTeX warning (ext4): destination with the same identifier (name{group__up__co
+fold_gac20bd61824981d45ce0dc9934aa56df8}) has been already used, duplicate igno
+red
+<to be read again>
+ \relax
+l.27 ...ctpu__contrib}{pu\-\_\-contrib} $\ast$pu)}
+ \label{group__up__cofold_g...
+) (./plot__layouts_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[151 <./part__func__up_8h__incl.pdf>] <plot__layouts_8h__incl.pdf, id=6228, 254
+.9525pt x 313.17pt>
+File: plot__layouts_8h__incl.pdf Graphic file (type pdf)
+<use plot__layouts_8h__incl.pdf>
+Package pdftex.def Info: plot__layouts_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 254.0pt x 312.0128pt.
+<plot__layouts_8h__dep__incl.pdf, id=6229, 250.9375pt x 232.87pt>
+File: plot__layouts_8h__dep__incl.pdf Graphic file (type pdf)
+<use plot__layouts_8h__dep__incl.pdf>
+Package pdftex.def Info: plot__layouts_8h__dep__incl.pdf used on input line 22.
+
+(pdftex.def) Requested size: 250.0pt x 232.01306pt.
+[152 <./plot__layouts_8h__incl.pdf> <./plot__layouts_8h__dep__incl.pdf
+
+pdfTeX warning: pdflatex (file ./plot__layouts_8h__dep__incl.pdf): PDF inclusio
+n: multiple pdfs with page group included in a single page
+>]
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[153]
+Underfull \vbox (badness 10000) detected at line 115
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 148
+ []
+
+[154]) (./profiledist_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<profiledist_8h__incl.pdf, id=6317, 250.9375pt x 313.17pt>
+File: profiledist_8h__incl.pdf Graphic file (type pdf)
+<use profiledist_8h__incl.pdf>
+Package pdftex.def Info: profiledist_8h__incl.pdf used on input line 9.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[155 <./profiledist_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 63
+ []
+
+) (./PS__dot_8h.tex [156]
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<PS__dot_8h__incl.pdf, id=6352, 250.9375pt x 371.3875pt>
+File: PS__dot_8h__incl.pdf Graphic file (type pdf)
+<use PS__dot_8h__incl.pdf>
+Package pdftex.def Info: PS__dot_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 370.02084pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[157 <./PS__dot_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 67
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 100
+ []
+
+[158]
+Underfull \vbox (badness 10000) detected at line 130
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 157
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 182
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 207
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[159]
+Underfull \vbox (badness 10000) detected at line 244
+ []
+
+) (./read__epars_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+) (./RNAstruct_8h.tex [160]
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[161]
+Underfull \vbox (badness 10000) detected at line 88
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 107
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 126
+ []
+
+[162]
+Underfull \vbox (badness 10000) detected at line 145
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 164
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 183
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 202
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 34.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[163]
+Underfull \vbox (badness 10000) detected at line 221
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 242
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 260
+ []
+
+) (./stringdist_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<stringdist_8h__incl.pdf, id=6475, 250.9375pt x 196.735pt>
+File: stringdist_8h__incl.pdf Graphic file (type pdf)
+<use stringdist_8h__incl.pdf>
+Package pdftex.def Info: stringdist_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 196.01102pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[164]
+Underfull \vbox (badness 10000) detected at line 45
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 67
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[165 <./stringdist_8h__incl.pdf>]) (./subopt_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<subopt_8h__incl.pdf, id=6506, 250.9375pt x 313.17pt>
+File: subopt_8h__incl.pdf Graphic file (type pdf)
+<use subopt_8h__incl.pdf>
+Package pdftex.def Info: subopt_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 312.01758pt.
+pdfTeX warning (ext4): destination with the same identifier (name{group__subopt
+__wuchty_ga554dedfcdb249fdf151caade58666e4d}) has been already used, duplicate
+ignored
+<to be read again>
+ \relax
+l.22 ...nt is\-\_\-circular, F\-I\-L\-E $\ast$fp)}
+ \label{group__subopt__wuch...
+pdfTeX warning (ext4): destination with the same identifier (name{group__subopt
+__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}) has been already used, duplicate
+ignored
+<to be read again>
+ \relax
+l.30 ...437f8efa8b1fec854a0e}{subopt\-\_\-sorted}}
+ \label{group__subopt__wuch...
+pdfTeX warning (ext4): destination with the same identifier (name{group__subopt
+__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}) has been already used, duplicate
+ignored
+<to be read again>
+ \relax
+l.33 ...5feeecdf520e25313fcfe}{print\-\_\-energy}}
+ \label{group__subopt__wuch...
+[166 <./subopt_8h__incl.pdf>]) (./treedist_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<treedist_8h__incl.pdf, id=6533, 250.9375pt x 196.735pt>
+File: treedist_8h__incl.pdf Graphic file (type pdf)
+<use treedist_8h__incl.pdf>
+Package pdftex.def Info: treedist_8h__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 196.01102pt.
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 33.97194pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[167 <./treedist_8h__incl.pdf>]
+Underfull \vbox (badness 10000) detected at line 50
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 72
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 91
+ []
+
+) (./utils_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+<utils_8h__dep__incl.pdf, id=6564, 250.9375pt x 232.87pt>
+File: utils_8h__dep__incl.pdf Graphic file (type pdf)
+<use utils_8h__dep__incl.pdf>
+Package pdftex.def Info: utils_8h__dep__incl.pdf used on input line 14.
+(pdftex.def) Requested size: 250.0pt x 232.01306pt.
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[168]
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[169 <./utils_8h__dep__incl.pdf>] [170]
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[171] [172]
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[173]
+Underfull \vbox (badness 10000) detected at line 317
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 339
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 361
+ []
+
+
+Overfull \vbox (11.92694pt too high) has occurred while \output is active []
+
+[174]
+Underfull \vbox (badness 10000) detected at line 379
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 415
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 454
+ []
+
+
+Overfull \vbox (9.90102pt too high) has occurred while \output is active []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[175]
+Underfull \vbox (badness 10000) detected at line 476
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 499
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 520
+ []
+
+[176]
+Underfull \vbox (badness 10000) detected at line 548
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[177]
+Underfull \vbox (badness 10000) detected at line 611
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 632
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 653
+ []
+
+[178]
+Underfull \vbox (badness 10000) detected at line 674
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 693
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 730
+ []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[179]
+Underfull \vbox (badness 10000) detected at line 762
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 789
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 807
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 823
+ []
+
+[180]
+Underfull \vbox (badness 10000) detected at line 847
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 874
+ []
+
+
+Underfull \vbox (badness 10000) detected at line 909
+ []
+
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+
+Package Fancyhdr Warning: \headheight is too small (12.0pt):
+ Make it at least 22.16548pt.
+ We now make it that large for the rest of the document.
+ This may cause the page layout to be inconsistent, however.
+
+[181]) (./1_88_84__epars_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+) (./1_88_84__intloops_8h.tex
+Underfull \hbox (badness 10000) in paragraph at lines 3--3
+[]\OT1/phv/bc/n/14.4 /home/asherstnev/-Projects/-Java.projects/jabaws/secure-gi
+t/develop/binaries/src/-
+ []
+
+) [182] (./refman.bbl (./refman.brf)
+\tf@brf=\write6
+\openout6 = `refman.brf'.
+
+) (./refman.ind [183
+
+]
+Underfull \hbox (badness 10000) in paragraph at lines 3--5
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/2-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 5--7
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/2-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 7--9
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/-L-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 9--11
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/-Lfold.-h,
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 11--13
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/-M-E-A.-h,
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 13--15
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/-P-S-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 15--17
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/-R-N-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 17--19
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/alifold.-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 19--21
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/cofold.-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 23--25
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/data-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 25--27
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/dist-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 29--31
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/edit-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 35--37
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/fold.-h,
+ []
+
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 37--39
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/fold-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 43--45
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/loop-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 45--47
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/mm.-h,
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 51--53
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/part-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 53--55
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/part-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 55--57
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/part-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 57--59
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/plot-_-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 61--63
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/read-_-
+ []
+
+
+Underfull \vbox (badness 10000) has occurred while \output is active []
+
+[184
+
+]
+Underfull \hbox (badness 10000) in paragraph at lines 69--71
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/-H/utils.-h,
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 71--73
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/lib/1.-8.-4-
+ []
+
+
+Underfull \hbox (badness 10000) in paragraph at lines 73--75
+\T1/phv/m/n/10 git/develop/binaries/src/-Vienna-R-N-A/lib/1.-8.-4-
+ []
+
+
+Underfull \hbox (badness 1014) in paragraph at lines 82--84
+[]| \T1/phv/m/n/10 Lo-cal M-F-E con-sen-sus struc-tures for Se-quence
+ []
+
+
+Underfull \hbox (badness 7704) in paragraph at lines 108--110
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+
+Underfull \hbox (badness 1231) in paragraph at lines 161--163
+[]\T1/phv/m/n/10 Calculate Sec-ondary Struc-tures of two R-N-As upon
+ []
+
+[185]
+Underfull \hbox (badness 7704) in paragraph at lines 270--272
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+
+Underfull \hbox (badness 1348) in paragraph at lines 283--285
+[]| \T1/phv/m/n/10 Cal-cu-lat-ing M-F-E rep-re-sen-ta-tives of a Dis-tance
+ []
+
+
+Underfull \hbox (badness 7704) in paragraph at lines 316--318
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+
+Underfull \hbox (badness 7704) in paragraph at lines 348--350
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+[186]
+Underfull \hbox (badness 7704) in paragraph at lines 504--506
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+
+Underfull \hbox (badness 1348) in paragraph at lines 515--517
+[]| \T1/phv/m/n/10 Cal-cu-lat-ing M-F-E rep-re-sen-ta-tives of a Dis-tance
+ []
+
+
+Underfull \hbox (badness 7704) in paragraph at lines 524--526
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+[187]
+Underfull \hbox (badness 7704) in paragraph at lines 552--554
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+[188]
+Underfull \hbox (badness 7704) in paragraph at lines 751--753
+[]| \T1/phv/m/n/10 Pre-dict-ing Con-sen-sus Struc-tures from Align-
+ []
+
+[189]
+Underfull \hbox (badness 1983) in paragraph at lines 905--907
+[]| \T1/phv/m/n/10 Par-ti-tion func-tions for lo-cally sta-ble sec-ondary
+ []
+
+
+Underfull \hbox (badness 1983) in paragraph at lines 962--964
+[]| \T1/phv/m/n/10 Par-ti-tion func-tions for lo-cally sta-ble sec-ondary
+ []
+
+
+Underfull \hbox (badness 1983) in paragraph at lines 965--967
+[]| \T1/phv/m/n/10 Par-ti-tion func-tions for lo-cally sta-ble sec-ondary
+ []
+
+
+Underfull \hbox (badness 1748) in paragraph at lines 993--995
+[]| \T1/phv/m/n/10 Reading/-Writing en-ergy pa-ram-e-ter sets from/to
+ []
+
+[190]
+Underfull \hbox (badness 954) in paragraph at lines 1060--1062
+[]\T1/phv/m/n/10 Stochastic Back-track-ing of Struc-tures from Dis-tance
+ []
+
+
+Underfull \hbox (badness 1348) in paragraph at lines 1124--1126
+[]| \T1/phv/m/n/10 Cal-cu-lat-ing M-F-E rep-re-sen-ta-tives of a Dis-tance
+ []
+
+
+Underfull \hbox (badness 1348) in paragraph at lines 1131--1133
+[]| \T1/phv/m/n/10 Cal-cu-lat-ing M-F-E rep-re-sen-ta-tives of a Dis-tance
+ []
+
+
+Underfull \hbox (badness 787) in paragraph at lines 1134--1136
+[]| \T1/phv/m/n/10 Stochas-tic Back-track-ing of Struc-tures from Dis-
+ []
+
+
+Underfull \hbox (badness 787) in paragraph at lines 1137--1139
+[]| \T1/phv/m/n/10 Stochas-tic Back-track-ing of Struc-tures from Dis-
+ []
+
+
+Underfull \hbox (badness 1983) in paragraph at lines 1172--1174
+[]| \T1/phv/m/n/10 Par-ti-tion func-tions for lo-cally sta-ble sec-ondary
+ []
+
+[191]
+Underfull \hbox (badness 1748) in paragraph at lines 1300--1302
+[]| \T1/phv/m/n/10 Reading/-Writing en-ergy pa-ram-e-ter sets from/to
+ []
+
+[192])
+Package atveryend Info: Empty hook `BeforeClearDocument' on input line 205.
+Package atveryend Info: Empty hook `AfterLastShipout' on input line 205.
+(./refman.aux (./group__mfe__fold.aux) (./group__pf__fold.aux) (./group__mea__f
+old.aux) (./group__centroid__fold.aux) (./group__subopt__fold.aux) (./group__su
+bopt__zuker.aux) (./group__subopt__wuchty.aux) (./group__subopt__stochbt.aux) (
+./group__cofold.aux) (./group__mfe__cofold.aux) (./group__pf__cofold.aux) (./gr
+oup__up__cofold.aux) (./group__consensus__fold.aux) (./group__consensus__mfe__f
+old.aux) (./group__consensus__pf__fold.aux) (./group__consensus__stochbt.aux) (
+./group__local__fold.aux) (./group__local__mfe__fold.aux) (./group__local__pf__
+fold.aux) (./group__local__consensus__fold.aux) (./group__energy__parameters.au
+x) (./group__energy__parameters__rw.aux) (./group__energy__parameters__convert.
+aux) (./group__eval.aux) (./group__inverse__fold.aux) (./group__class__fold.aux
+) (./group__kl__neighborhood.aux) (./group__kl__neighborhood__mfe.aux) (./group
+__kl__neighborhood__pf.aux) (./group__kl__neighborhood__stochbt.aux) (./group__
+dos.aux) (./group__parse.aux))
+Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 205.
+Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 205.
+Package rerunfilecheck Info: File `refman.out' has not changed.
+(rerunfilecheck) Checksum: 4FC7D86BF1840749A49B270F992064F3;109726.
+
+
+Package rerunfilecheck Warning: File `refman.brf' has changed.
+(rerunfilecheck) Rerun to get bibliographical references right.
+
+Package rerunfilecheck Info: Checksums for `refman.brf':
+(rerunfilecheck) Before: D41D8CD98F00B204E9800998ECF8427E;0
+(rerunfilecheck) After: A9C978DDBACF9DACF639239F0A1C99B3;705.
+
+LaTeX Warning: There were undefined references.
+
+
+LaTeX Warning: There were multiply-defined labels.
+
+Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 205.
+ )
+Here is how much of TeX's memory you used:
+ 15087 strings out of 495059
+ 251611 string characters out of 3182031
+ 353442 words of memory out of 3000000
+ 16035 multiletter control sequences out of 15000+200000
+ 91895 words of font info for 147 fonts, out of 3000000 for 9000
+ 14 hyphenation exceptions out of 8191
+ 41i,13n,58p,1533b,579s stack positions out of 5000i,500n,10000p,200000b,50000s
+pdfTeX warning (dest): name{mp_utils_utils_misc} has been referenced but does
+ not exist, replaced by a fixed one
+
+pdfTeX warning (dest): name{mp_utils_utils_struc} has been referenced but does
+not exist, replaced by a fixed one
+
+pdfTeX warning (dest): name{mp_utils_utils_seq} has been referenced but does no
+t exist, replaced by a fixed one
+
+pdfTeX warning (dest): name{mp_utils_utils_aln} has been referenced but does no
+t exist, replaced by a fixed one
+
+pdfTeX warning (dest): name{mp_utils_utils_dot} has been referenced but does no
+t exist, replaced by a fixed one
+
+{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/
+texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texlive/texmf-
+dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/texlive/texmf-dist/fo
+nts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/fonts/ty
+pe1/urw/courier/ucrr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helve
+tic/uhvb8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvb8ac.
+pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvbo8ac.pfb></usr/
+share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb></usr/share/texliv
+e/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb></usr/share/texlive/texmf-dis
+t/fonts/type1/urw/symbol/usyr.pfb></usr/share/texlive/texmf-dist/fonts/type1/ur
+w/symbol/usyr.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmr8a.p
+fb></usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmri8a.pfb>
+Output written on refman.pdf (210 pages, 1151473 bytes).
+PDF statistics:
+ 7830 PDF objects out of 8907 (max. 8388607)
+ 7272 compressed objects within 73 object streams
+ 1544 named destinations out of 1728 (max. 500000)
+ 4606 words of extra memory for PDF output out of 10000 (max. 10000000)
+
--- /dev/null
+\BOOKMARK [0][-]{chapter.1}{\376\377\000V\000i\000e\000n\000n\000a\000R\000N\000A\000\040\000P\000a\000c\000k\000a\000g\000e\000\040\000c\000o\000r\000e\000\040\000-\000\040\000R\000N\000A\000l\000i\000b}{}% 1
+\BOOKMARK [1][-]{section.1.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{chapter.1}% 2
+\BOOKMARK [0][-]{chapter.2}{\376\377\000P\000a\000r\000s\000i\000n\000g\000\040\000a\000n\000d\000\040\000C\000o\000m\000p\000a\000r\000i\000n\000g\000\040\000-\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000s\000\040\000t\000o\000\040\000M\000a\000n\000i\000p\000u\000l\000a\000t\000e\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s}{}% 3
+\BOOKMARK [0][-]{chapter.3}{\376\377\000U\000t\000i\000l\000i\000t\000i\000e\000s\000\040\000-\000\040\000O\000d\000d\000s\000\040\000a\000n\000d\000\040\000E\000n\000d\000s}{}% 4
+\BOOKMARK [1][-]{section.3.1}{\376\377\000P\000r\000o\000d\000u\000c\000i\000n\000g\000\040\000s\000e\000c\000o\000n\000d\000a\000r\000y\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000g\000r\000a\000p\000h\000s}{chapter.3}% 5
+\BOOKMARK [0][-]{chapter.4}{\376\377\000E\000x\000a\000m\000p\000l\000e\000\040\000-\000\040\000A\000\040\000S\000m\000a\000l\000l\000\040\000E\000x\000a\000m\000p\000l\000e\000\040\000P\000r\000o\000g\000r\000a\000m}{}% 6
+\BOOKMARK [0][-]{chapter.5}{\376\377\000D\000e\000p\000r\000e\000c\000a\000t\000e\000d\000\040\000L\000i\000s\000t}{}% 7
+\BOOKMARK [0][-]{chapter.6}{\376\377\000M\000o\000d\000u\000l\000e\000\040\000I\000n\000d\000e\000x}{}% 8
+\BOOKMARK [1][-]{section.6.1}{\376\377\000M\000o\000d\000u\000l\000e\000s}{chapter.6}% 9
+\BOOKMARK [0][-]{chapter.7}{\376\377\000D\000a\000t\000a\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000I\000n\000d\000e\000x}{}% 10
+\BOOKMARK [1][-]{section.7.1}{\376\377\000D\000a\000t\000a\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s}{chapter.7}% 11
+\BOOKMARK [0][-]{chapter.8}{\376\377\000F\000i\000l\000e\000\040\000I\000n\000d\000e\000x}{}% 12
+\BOOKMARK [1][-]{section.8.1}{\376\377\000F\000i\000l\000e\000\040\000L\000i\000s\000t}{chapter.8}% 13
+\BOOKMARK [0][-]{chapter.9}{\376\377\000M\000o\000d\000u\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{}% 14
+\BOOKMARK [1][-]{section.9.1}{\376\377\000R\000N\000A\000\040\000S\000e\000c\000o\000n\000d\000a\000r\000y\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000F\000o\000l\000d\000i\000n\000g}{chapter.9}% 15
+\BOOKMARK [2][-]{subsection.9.1.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.1}% 16
+\BOOKMARK [1][-]{section.9.2}{\376\377\000C\000a\000l\000c\000u\000l\000a\000t\000i\000n\000g\000\040\000M\000i\000n\000i\000m\000u\000m\000\040\000F\000r\000e\000e\000\040\000E\000n\000e\000r\000g\000y\000\040\000\050\000M\000F\000E\000\051\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s}{chapter.9}% 17
+\BOOKMARK [2][-]{subsection.9.2.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.2}% 18
+\BOOKMARK [2][-]{subsection.9.2.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.2}% 19
+\BOOKMARK [3][-]{subsubsection.9.2.2.1}{\376\377\000f\000o\000l\000d\000\137\000p\000a\000r}{subsection.9.2.2}% 20
+\BOOKMARK [3][-]{subsubsection.9.2.2.2}{\376\377\000f\000o\000l\000d}{subsection.9.2.2}% 21
+\BOOKMARK [3][-]{subsubsection.9.2.2.3}{\376\377\000c\000i\000r\000c\000f\000o\000l\000d}{subsection.9.2.2}% 22
+\BOOKMARK [1][-]{section.9.3}{\376\377\000C\000a\000l\000c\000u\000l\000a\000t\000i\000n\000g\000\040\000P\000a\000r\000t\000i\000t\000i\000o\000n\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000s\000\040\000a\000n\000d\000\040\000P\000a\000i\000r\000\040\000P\000r\000o\000b\000a\000b\000i\000l\000i\000t\000i\000e\000s}{chapter.9}% 23
+\BOOKMARK [2][-]{subsection.9.3.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.3}% 24
+\BOOKMARK [2][-]{subsection.9.3.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.3}% 25
+\BOOKMARK [3][-]{subsubsection.9.3.2.1}{\376\377\000p\000f\000\137\000f\000o\000l\000d\000\137\000p\000a\000r}{subsection.9.3.2}% 26
+\BOOKMARK [3][-]{subsubsection.9.3.2.2}{\376\377\000p\000f\000\137\000f\000o\000l\000d}{subsection.9.3.2}% 27
+\BOOKMARK [3][-]{subsubsection.9.3.2.3}{\376\377\000p\000f\000\137\000c\000i\000r\000c\000\137\000f\000o\000l\000d}{subsection.9.3.2}% 28
+\BOOKMARK [3][-]{subsubsection.9.3.2.4}{\376\377\000f\000r\000e\000e\000\137\000p\000f\000\137\000a\000r\000r\000a\000y\000s}{subsection.9.3.2}% 29
+\BOOKMARK [3][-]{subsubsection.9.3.2.5}{\376\377\000u\000p\000d\000a\000t\000e\000\137\000p\000f\000\137\000p\000a\000r\000a\000m\000s}{subsection.9.3.2}% 30
+\BOOKMARK [3][-]{subsubsection.9.3.2.6}{\376\377\000e\000x\000p\000o\000r\000t\000\137\000b\000p\000p\000m}{subsection.9.3.2}% 31
+\BOOKMARK [3][-]{subsubsection.9.3.2.7}{\376\377\000a\000s\000s\000i\000g\000n\000\137\000p\000l\000i\000s\000t\000\137\000f\000r\000o\000m\000\137\000p\000r}{subsection.9.3.2}% 32
+\BOOKMARK [3][-]{subsubsection.9.3.2.8}{\376\377\000g\000e\000t\000\137\000p\000f\000\137\000a\000r\000r\000a\000y\000s}{subsection.9.3.2}% 33
+\BOOKMARK [3][-]{subsubsection.9.3.2.9}{\376\377\000m\000e\000a\000n\000\137\000b\000p\000\137\000d\000i\000s\000t\000a\000n\000c\000e}{subsection.9.3.2}% 34
+\BOOKMARK [3][-]{subsubsection.9.3.2.10}{\376\377\000m\000e\000a\000n\000\137\000b\000p\000\137\000d\000i\000s\000t\000a\000n\000c\000e\000\137\000p\000r}{subsection.9.3.2}% 35
+\BOOKMARK [1][-]{section.9.4}{\376\377\000C\000o\000m\000p\000u\000t\000e\000\040\000t\000h\000e\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000w\000i\000t\000h\000\040\000m\000a\000x\000i\000m\000u\000m\000\040\000e\000x\000p\000e\000c\000t\000e\000d\000\040\000a\000c\000c\000u\000r\000a\000c\000y\000\040\000\050\000M\000E\000A\000\051}{chapter.9}% 36
+\BOOKMARK [1][-]{section.9.5}{\376\377\000C\000o\000m\000p\000u\000t\000e\000\040\000t\000h\000e\000\040\000c\000e\000n\000t\000r\000o\000i\000d\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e}{chapter.9}% 37
+\BOOKMARK [2][-]{subsection.9.5.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.5}% 38
+\BOOKMARK [2][-]{subsection.9.5.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.5}% 39
+\BOOKMARK [3][-]{subsubsection.9.5.2.1}{\376\377\000g\000e\000t\000\137\000c\000e\000n\000t\000r\000o\000i\000d\000\137\000s\000t\000r\000u\000c\000t\000\137\000p\000l}{subsection.9.5.2}% 40
+\BOOKMARK [3][-]{subsubsection.9.5.2.2}{\376\377\000g\000e\000t\000\137\000c\000e\000n\000t\000r\000o\000i\000d\000\137\000s\000t\000r\000u\000c\000t\000\137\000p\000r}{subsection.9.5.2}% 41
+\BOOKMARK [1][-]{section.9.6}{\376\377\000E\000n\000u\000m\000e\000r\000a\000t\000i\000n\000g\000\040\000S\000u\000b\000o\000p\000t\000i\000m\000a\000l\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s}{chapter.9}% 42
+\BOOKMARK [2][-]{subsection.9.6.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.6}% 43
+\BOOKMARK [1][-]{section.9.7}{\376\377\000S\000u\000b\000o\000p\000t\000i\000m\000a\000l\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000a\000c\000c\000o\000r\000d\000i\000n\000g\000\040\000t\000o\000\040\000Z\000u\000k\000e\000r\000\040\000e\000t\000\040\000a\000l\000.\000\040\0001\0009\0008\0009}{chapter.9}% 44
+\BOOKMARK [2][-]{subsection.9.7.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.7}% 45
+\BOOKMARK [2][-]{subsection.9.7.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.7}% 46
+\BOOKMARK [3][-]{subsubsection.9.7.2.1}{\376\377\000z\000u\000k\000e\000r\000s\000u\000b\000o\000p\000t}{subsection.9.7.2}% 47
+\BOOKMARK [1][-]{section.9.8}{\376\377\000S\000u\000b\000o\000p\000t\000i\000m\000a\000l\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000w\000i\000t\000h\000i\000n\000\040\000a\000n\000\040\000e\000n\000e\000r\000g\000y\000\040\000b\000a\000n\000d\000\040\000a\000r\000r\000o\000u\000n\000d\000\040\000t\000h\000e\000\040\000M\000F\000E}{chapter.9}% 48
+\BOOKMARK [2][-]{subsection.9.8.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.8}% 49
+\BOOKMARK [2][-]{subsection.9.8.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.8}% 50
+\BOOKMARK [3][-]{subsubsection.9.8.2.1}{\376\377\000s\000u\000b\000o\000p\000t}{subsection.9.8.2}% 51
+\BOOKMARK [3][-]{subsubsection.9.8.2.2}{\376\377\000s\000u\000b\000o\000p\000t\000\137\000c\000i\000r\000c}{subsection.9.8.2}% 52
+\BOOKMARK [1][-]{section.9.9}{\376\377\000S\000t\000o\000c\000h\000a\000s\000t\000i\000c\000\040\000b\000a\000c\000k\000t\000r\000a\000c\000k\000i\000n\000g\000\040\000i\000n\000\040\000t\000h\000e\000\040\000E\000n\000s\000e\000m\000b\000l\000e}{chapter.9}% 53
+\BOOKMARK [2][-]{subsection.9.9.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.9}% 54
+\BOOKMARK [2][-]{subsection.9.9.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.9}% 55
+\BOOKMARK [3][-]{subsubsection.9.9.2.1}{\376\377\000p\000b\000a\000c\000k\000t\000r\000a\000c\000k}{subsection.9.9.2}% 56
+\BOOKMARK [3][-]{subsubsection.9.9.2.2}{\376\377\000p\000b\000a\000c\000k\000t\000r\000a\000c\000k\000\137\000c\000i\000r\000c}{subsection.9.9.2}% 57
+\BOOKMARK [2][-]{subsection.9.9.3}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.9}% 58
+\BOOKMARK [3][-]{subsubsection.9.9.3.1}{\376\377\000s\000t\000\137\000b\000a\000c\000k}{subsection.9.9.3}% 59
+\BOOKMARK [1][-]{section.9.10}{\376\377\000C\000a\000l\000c\000u\000l\000a\000t\000e\000\040\000S\000e\000c\000o\000n\000d\000a\000r\000y\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000o\000f\000\040\000t\000w\000o\000\040\000R\000N\000A\000s\000\040\000u\000p\000o\000n\000\040\000D\000i\000m\000e\000r\000i\000z\000a\000t\000i\000o\000n}{chapter.9}% 60
+\BOOKMARK [2][-]{subsection.9.10.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.10}% 61
+\BOOKMARK [1][-]{section.9.11}{\376\377\000M\000F\000E\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000o\000f\000\040\000t\000w\000o\000\040\000h\000y\000b\000r\000i\000d\000i\000z\000e\000d\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000s}{chapter.9}% 62
+\BOOKMARK [2][-]{subsection.9.11.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.11}% 63
+\BOOKMARK [2][-]{subsection.9.11.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.11}% 64
+\BOOKMARK [3][-]{subsubsection.9.11.2.1}{\376\377\000c\000o\000f\000o\000l\000d}{subsection.9.11.2}% 65
+\BOOKMARK [3][-]{subsubsection.9.11.2.2}{\376\377\000e\000x\000p\000o\000r\000t\000\137\000c\000o\000f\000o\000l\000d\000\137\000a\000r\000r\000a\000y\000s\000\137\000g\000q}{subsection.9.11.2}% 66
+\BOOKMARK [3][-]{subsubsection.9.11.2.3}{\376\377\000e\000x\000p\000o\000r\000t\000\137\000c\000o\000f\000o\000l\000d\000\137\000a\000r\000r\000a\000y\000s}{subsection.9.11.2}% 67
+\BOOKMARK [1][-]{section.9.12}{\376\377\000P\000a\000r\000t\000i\000t\000i\000o\000n\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000f\000o\000r\000\040\000t\000w\000o\000\040\000h\000y\000b\000r\000i\000d\000i\000z\000e\000d\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000s}{chapter.9}% 68
+\BOOKMARK [2][-]{subsection.9.12.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.12}% 69
+\BOOKMARK [2][-]{subsection.9.12.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.12}% 70
+\BOOKMARK [3][-]{subsubsection.9.12.2.1}{\376\377\000c\000o\000\137\000p\000f\000\137\000f\000o\000l\000d}{subsection.9.12.2}% 71
+\BOOKMARK [3][-]{subsubsection.9.12.2.2}{\376\377\000c\000o\000\137\000p\000f\000\137\000f\000o\000l\000d\000\137\000p\000a\000r}{subsection.9.12.2}% 72
+\BOOKMARK [3][-]{subsubsection.9.12.2.3}{\376\377\000e\000x\000p\000o\000r\000t\000\137\000c\000o\000\137\000b\000p\000p\000m}{subsection.9.12.2}% 73
+\BOOKMARK [3][-]{subsubsection.9.12.2.4}{\376\377\000u\000p\000d\000a\000t\000e\000\137\000c\000o\000\137\000p\000f\000\137\000p\000a\000r\000a\000m\000s}{subsection.9.12.2}% 74
+\BOOKMARK [3][-]{subsubsection.9.12.2.5}{\376\377\000u\000p\000d\000a\000t\000e\000\137\000c\000o\000\137\000p\000f\000\137\000p\000a\000r\000a\000m\000s\000\137\000p\000a\000r}{subsection.9.12.2}% 75
+\BOOKMARK [3][-]{subsubsection.9.12.2.6}{\376\377\000c\000o\000m\000p\000u\000t\000e\000\137\000p\000r\000o\000b\000a\000b\000i\000l\000i\000t\000i\000e\000s}{subsection.9.12.2}% 76
+\BOOKMARK [3][-]{subsubsection.9.12.2.7}{\376\377\000g\000e\000t\000\137\000c\000o\000n\000c\000e\000n\000t\000r\000a\000t\000i\000o\000n\000s}{subsection.9.12.2}% 77
+\BOOKMARK [1][-]{section.9.13}{\376\377\000P\000a\000r\000t\000i\000t\000i\000o\000n\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000f\000o\000r\000\040\000t\000w\000o\000\040\000h\000y\000b\000r\000i\000d\000i\000z\000e\000d\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000s\000\040\000a\000s\000\040\000a\000\040\000s\000t\000e\000p\000w\000i\000s\000e\000\040\000P\000r\000o\000c\000e\000s\000s}{chapter.9}% 78
+\BOOKMARK [2][-]{subsection.9.13.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.13}% 79
+\BOOKMARK [2][-]{subsection.9.13.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.13}% 80
+\BOOKMARK [3][-]{subsubsection.9.13.2.1}{\376\377\000p\000f\000\137\000u\000n\000s\000t\000r\000u}{subsection.9.13.2}% 81
+\BOOKMARK [3][-]{subsubsection.9.13.2.2}{\376\377\000p\000f\000\137\000i\000n\000t\000e\000r\000a\000c\000t}{subsection.9.13.2}% 82
+\BOOKMARK [1][-]{section.9.14}{\376\377\000P\000r\000e\000d\000i\000c\000t\000i\000n\000g\000\040\000C\000o\000n\000s\000e\000n\000s\000u\000s\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000f\000r\000o\000m\000\040\000A\000l\000i\000g\000n\000m\000e\000n\000t\000\050\000s\000\051}{chapter.9}% 83
+\BOOKMARK [2][-]{subsection.9.14.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.14}% 84
+\BOOKMARK [2][-]{subsection.9.14.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.14}% 85
+\BOOKMARK [3][-]{subsubsection.9.14.2.1}{\376\377\000g\000e\000t\000\137\000m\000p\000i}{subsection.9.14.2}% 86
+\BOOKMARK [3][-]{subsubsection.9.14.2.2}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000a\000l\000i\000s\000t\000r\000u\000c\000t}{subsection.9.14.2}% 87
+\BOOKMARK [3][-]{subsubsection.9.14.2.3}{\376\377\000e\000n\000c\000o\000d\000e\000\137\000a\000l\000i\000\137\000s\000e\000q\000u\000e\000n\000c\000e}{subsection.9.14.2}% 88
+\BOOKMARK [3][-]{subsubsection.9.14.2.4}{\376\377\000a\000l\000l\000o\000c\000\137\000s\000e\000q\000u\000e\000n\000c\000e\000\137\000a\000r\000r\000a\000y\000s}{subsection.9.14.2}% 89
+\BOOKMARK [3][-]{subsubsection.9.14.2.5}{\376\377\000f\000r\000e\000e\000\137\000s\000e\000q\000u\000e\000n\000c\000e\000\137\000a\000r\000r\000a\000y\000s}{subsection.9.14.2}% 90
+\BOOKMARK [3][-]{subsubsection.9.14.2.6}{\376\377\000g\000e\000t\000\137\000a\000l\000i\000p\000f\000\137\000a\000r\000r\000a\000y\000s}{subsection.9.14.2}% 91
+\BOOKMARK [2][-]{subsection.9.14.3}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.14}% 92
+\BOOKMARK [3][-]{subsubsection.9.14.3.1}{\376\377\000c\000v\000\137\000f\000a\000c\000t}{subsection.9.14.3}% 93
+\BOOKMARK [3][-]{subsubsection.9.14.3.2}{\376\377\000n\000c\000\137\000f\000a\000c\000t}{subsection.9.14.3}% 94
+\BOOKMARK [1][-]{section.9.15}{\376\377\000M\000F\000E\000\040\000C\000o\000n\000s\000e\000n\000s\000u\000s\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000f\000o\000r\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000\040\000A\000l\000i\000g\000n\000m\000e\000n\000t\000\050\000s\000\051}{chapter.9}% 95
+\BOOKMARK [2][-]{subsection.9.15.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.15}% 96
+\BOOKMARK [2][-]{subsection.9.15.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.15}% 97
+\BOOKMARK [3][-]{subsubsection.9.15.2.1}{\376\377\000a\000l\000i\000f\000o\000l\000d}{subsection.9.15.2}% 98
+\BOOKMARK [3][-]{subsubsection.9.15.2.2}{\376\377\000c\000i\000r\000c\000a\000l\000i\000f\000o\000l\000d}{subsection.9.15.2}% 99
+\BOOKMARK [1][-]{section.9.16}{\376\377\000P\000a\000r\000t\000i\000t\000i\000o\000n\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000a\000n\000d\000\040\000B\000a\000s\000e\000\040\000P\000a\000i\000r\000\040\000P\000r\000o\000b\000a\000b\000i\000l\000i\000t\000i\000e\000s\000\040\000f\000o\000r\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000\040\000A\000l\000i\000g\000n\000m\000e\000n\000t\000\050\000s\000\051}{chapter.9}% 100
+\BOOKMARK [2][-]{subsection.9.16.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.16}% 101
+\BOOKMARK [2][-]{subsection.9.16.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.16}% 102
+\BOOKMARK [3][-]{subsubsection.9.16.2.1}{\376\377\000a\000l\000i\000p\000f\000\137\000f\000o\000l\000d\000\137\000p\000a\000r}{subsection.9.16.2}% 103
+\BOOKMARK [3][-]{subsubsection.9.16.2.2}{\376\377\000a\000l\000i\000p\000f\000\137\000f\000o\000l\000d}{subsection.9.16.2}% 104
+\BOOKMARK [3][-]{subsubsection.9.16.2.3}{\376\377\000a\000l\000i\000p\000f\000\137\000c\000i\000r\000c\000\137\000f\000o\000l\000d}{subsection.9.16.2}% 105
+\BOOKMARK [3][-]{subsubsection.9.16.2.4}{\376\377\000e\000x\000p\000o\000r\000t\000\137\000a\000l\000i\000\137\000b\000p\000p\000m}{subsection.9.16.2}% 106
+\BOOKMARK [1][-]{section.9.17}{\376\377\000S\000t\000o\000c\000h\000a\000s\000t\000i\000c\000\040\000B\000a\000c\000k\000t\000r\000a\000c\000k\000i\000n\000g\000\040\000o\000f\000\040\000C\000o\000n\000s\000e\000n\000s\000u\000s\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000f\000r\000o\000m\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000\040\000A\000l\000i\000g\000n\000m\000e\000n\000t\000\050\000s\000\051}{chapter.9}% 107
+\BOOKMARK [2][-]{subsection.9.17.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.17}% 108
+\BOOKMARK [2][-]{subsection.9.17.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.17}% 109
+\BOOKMARK [3][-]{subsubsection.9.17.2.1}{\376\377\000a\000l\000i\000p\000b\000a\000c\000k\000t\000r\000a\000c\000k}{subsection.9.17.2}% 110
+\BOOKMARK [1][-]{section.9.18}{\376\377\000P\000r\000e\000d\000i\000c\000t\000i\000n\000g\000\040\000L\000o\000c\000a\000l\000l\000y\000\040\000s\000t\000a\000b\000l\000e\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000o\000f\000\040\000l\000a\000r\000g\000e\000\040\000s\000e\000q\000u\000e\000n\000c\000e\000s}{chapter.9}% 111
+\BOOKMARK [2][-]{subsection.9.18.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.18}% 112
+\BOOKMARK [1][-]{section.9.19}{\376\377\000L\000o\000c\000a\000l\000\040\000M\000F\000E\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000P\000r\000e\000d\000i\000c\000t\000i\000o\000n\000\040\000a\000n\000d\000\040\000Z\000-\000s\000c\000o\000r\000e\000s}{chapter.9}% 113
+\BOOKMARK [2][-]{subsection.9.19.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.19}% 114
+\BOOKMARK [2][-]{subsection.9.19.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.19}% 115
+\BOOKMARK [3][-]{subsubsection.9.19.2.1}{\376\377\000L\000f\000o\000l\000d}{subsection.9.19.2}% 116
+\BOOKMARK [3][-]{subsubsection.9.19.2.2}{\376\377\000L\000f\000o\000l\000d\000z}{subsection.9.19.2}% 117
+\BOOKMARK [1][-]{section.9.20}{\376\377\000P\000a\000r\000t\000i\000t\000i\000o\000n\000\040\000f\000u\000n\000c\000t\000i\000o\000n\000s\000\040\000f\000o\000r\000\040\000l\000o\000c\000a\000l\000l\000y\000\040\000s\000t\000a\000b\000l\000e\000\040\000s\000e\000c\000o\000n\000d\000a\000r\000y\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000s}{chapter.9}% 118
+\BOOKMARK [2][-]{subsection.9.20.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.20}% 119
+\BOOKMARK [2][-]{subsection.9.20.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.20}% 120
+\BOOKMARK [3][-]{subsubsection.9.20.2.1}{\376\377\000u\000p\000d\000a\000t\000e\000\137\000p\000f\000\137\000p\000a\000r\000a\000m\000s\000L\000P}{subsection.9.20.2}% 121
+\BOOKMARK [3][-]{subsubsection.9.20.2.2}{\376\377\000p\000f\000l\000\137\000f\000o\000l\000d}{subsection.9.20.2}% 122
+\BOOKMARK [3][-]{subsubsection.9.20.2.3}{\376\377\000p\000u\000t\000o\000u\000t\000p\000U\000\137\000p\000r\000o\000b}{subsection.9.20.2}% 123
+\BOOKMARK [3][-]{subsubsection.9.20.2.4}{\376\377\000p\000u\000t\000o\000u\000t\000p\000U\000\137\000p\000r\000o\000b\000\137\000b\000i\000n}{subsection.9.20.2}% 124
+\BOOKMARK [1][-]{section.9.21}{\376\377\000L\000o\000c\000a\000l\000\040\000M\000F\000E\000\040\000c\000o\000n\000s\000e\000n\000s\000u\000s\000\040\000s\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000f\000o\000r\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000\040\000A\000l\000i\000g\000n\000m\000e\000n\000t\000s}{chapter.9}% 125
+\BOOKMARK [2][-]{subsection.9.21.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.21}% 126
+\BOOKMARK [2][-]{subsection.9.21.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.21}% 127
+\BOOKMARK [3][-]{subsubsection.9.21.2.1}{\376\377\000a\000l\000i\000L\000f\000o\000l\000d}{subsection.9.21.2}% 128
+\BOOKMARK [1][-]{section.9.22}{\376\377\000C\000h\000a\000n\000g\000e\000\040\000a\000n\000d\000\040\000P\000r\000e\000c\000a\000l\000c\000u\000l\000a\000t\000e\000\040\000E\000n\000e\000r\000g\000y\000\040\000P\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000S\000e\000t\000s\000\040\000a\000n\000d\000\040\000B\000o\000l\000t\000z\000m\000a\000n\000n\000\040\000F\000a\000c\000t\000o\000r\000s}{chapter.9}% 129
+\BOOKMARK [2][-]{subsection.9.22.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.22}% 130
+\BOOKMARK [2][-]{subsection.9.22.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.22}% 131
+\BOOKMARK [3][-]{subsubsection.9.22.2.1}{\376\377\000s\000c\000a\000l\000e\000\137\000p\000a\000r\000a\000m\000e\000t\000e\000r\000s}{subsection.9.22.2}% 132
+\BOOKMARK [3][-]{subsubsection.9.22.2.2}{\376\377\000g\000e\000t\000\137\000s\000c\000a\000l\000e\000d\000\137\000p\000a\000r\000a\000m\000e\000t\000e\000r\000s}{subsection.9.22.2}% 133
+\BOOKMARK [3][-]{subsubsection.9.22.2.3}{\376\377\000g\000e\000t\000\137\000s\000c\000a\000l\000e\000d\000\137\000p\000f\000\137\000p\000a\000r\000a\000m\000e\000t\000e\000r\000s}{subsection.9.22.2}% 134
+\BOOKMARK [3][-]{subsubsection.9.22.2.4}{\376\377\000g\000e\000t\000\137\000b\000o\000l\000t\000z\000m\000a\000n\000n\000\137\000f\000a\000c\000t\000o\000r\000s}{subsection.9.22.2}% 135
+\BOOKMARK [3][-]{subsubsection.9.22.2.5}{\376\377\000g\000e\000t\000\137\000b\000o\000l\000t\000z\000m\000a\000n\000n\000\137\000f\000a\000c\000t\000o\000r\000\137\000c\000o\000p\000y}{subsection.9.22.2}% 136
+\BOOKMARK [1][-]{section.9.23}{\376\377\000R\000e\000a\000d\000i\000n\000g\000/\000W\000r\000i\000t\000i\000n\000g\000\040\000e\000n\000e\000r\000g\000y\000\040\000p\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000s\000e\000t\000s\000\040\000f\000r\000o\000m\000/\000t\000o\000\040\000F\000i\000l\000e}{chapter.9}% 137
+\BOOKMARK [2][-]{subsection.9.23.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.23}% 138
+\BOOKMARK [2][-]{subsection.9.23.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.23}% 139
+\BOOKMARK [3][-]{subsubsection.9.23.2.1}{\376\377\000r\000e\000a\000d\000\137\000p\000a\000r\000a\000m\000e\000t\000e\000r\000\137\000f\000i\000l\000e}{subsection.9.23.2}% 140
+\BOOKMARK [3][-]{subsubsection.9.23.2.2}{\376\377\000w\000r\000i\000t\000e\000\137\000p\000a\000r\000a\000m\000e\000t\000e\000r\000\137\000f\000i\000l\000e}{subsection.9.23.2}% 141
+\BOOKMARK [1][-]{section.9.24}{\376\377\000C\000o\000n\000v\000e\000r\000t\000i\000n\000g\000\040\000e\000n\000e\000r\000g\000y\000\040\000p\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000f\000i\000l\000e\000s}{chapter.9}% 142
+\BOOKMARK [2][-]{subsection.9.24.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.24}% 143
+\BOOKMARK [2][-]{subsection.9.24.2}{\376\377\000M\000a\000c\000r\000o\000\040\000D\000e\000f\000i\000n\000i\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.24}% 144
+\BOOKMARK [3][-]{subsubsection.9.24.2.1}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000A\000L\000L}{subsection.9.24.2}% 145
+\BOOKMARK [3][-]{subsubsection.9.24.2.2}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000H\000P}{subsection.9.24.2}% 146
+\BOOKMARK [3][-]{subsubsection.9.24.2.3}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000S\000T\000A\000C\000K}{subsection.9.24.2}% 147
+\BOOKMARK [3][-]{subsubsection.9.24.2.4}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000M\000\137\000H\000P}{subsection.9.24.2}% 148
+\BOOKMARK [3][-]{subsubsection.9.24.2.5}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000M\000\137\000I\000N\000T}{subsection.9.24.2}% 149
+\BOOKMARK [3][-]{subsubsection.9.24.2.6}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000M\000\137\000I\000N\000T\000\137\0001\000N}{subsection.9.24.2}% 150
+\BOOKMARK [3][-]{subsubsection.9.24.2.7}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000M\000\137\000I\000N\000T\000\137\0002\0003}{subsection.9.24.2}% 151
+\BOOKMARK [3][-]{subsubsection.9.24.2.8}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000M\000\137\000M\000U\000L\000T\000I}{subsection.9.24.2}% 152
+\BOOKMARK [3][-]{subsubsection.9.24.2.9}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000M\000\137\000E\000X\000T}{subsection.9.24.2}% 153
+\BOOKMARK [3][-]{subsubsection.9.24.2.10}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000D\000A\000N\000G\000L\000E\0005}{subsection.9.24.2}% 154
+\BOOKMARK [3][-]{subsubsection.9.24.2.11}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000D\000A\000N\000G\000L\000E\0003}{subsection.9.24.2}% 155
+\BOOKMARK [3][-]{subsubsection.9.24.2.12}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000I\000N\000T\000\137\0001\0001}{subsection.9.24.2}% 156
+\BOOKMARK [3][-]{subsubsection.9.24.2.13}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000I\000N\000T\000\137\0002\0001}{subsection.9.24.2}% 157
+\BOOKMARK [3][-]{subsubsection.9.24.2.14}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000I\000N\000T\000\137\0002\0002}{subsection.9.24.2}% 158
+\BOOKMARK [3][-]{subsubsection.9.24.2.15}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000B\000U\000L\000G\000E}{subsection.9.24.2}% 159
+\BOOKMARK [3][-]{subsubsection.9.24.2.16}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000I\000N\000T}{subsection.9.24.2}% 160
+\BOOKMARK [3][-]{subsubsection.9.24.2.17}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000L}{subsection.9.24.2}% 161
+\BOOKMARK [3][-]{subsubsection.9.24.2.18}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000M\000I\000S\000C}{subsection.9.24.2}% 162
+\BOOKMARK [3][-]{subsubsection.9.24.2.19}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000S\000P\000E\000C\000I\000A\000L\000\137\000H\000P}{subsection.9.24.2}% 163
+\BOOKMARK [3][-]{subsubsection.9.24.2.20}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000V\000A\000N\000I\000L\000L\000A}{subsection.9.24.2}% 164
+\BOOKMARK [3][-]{subsubsection.9.24.2.21}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000N\000I\000N\000I\000O}{subsection.9.24.2}% 165
+\BOOKMARK [3][-]{subsubsection.9.24.2.22}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000V\000E\000R\000T\000\137\000O\000U\000T\000P\000U\000T\000\137\000D\000U\000M\000P}{subsection.9.24.2}% 166
+\BOOKMARK [2][-]{subsection.9.24.3}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.24}% 167
+\BOOKMARK [3][-]{subsubsection.9.24.3.1}{\376\377\000c\000o\000n\000v\000e\000r\000t\000\137\000p\000a\000r\000a\000m\000e\000t\000e\000r\000\137\000f\000i\000l\000e}{subsection.9.24.3}% 168
+\BOOKMARK [1][-]{section.9.25}{\376\377\000E\000n\000e\000r\000g\000y\000\040\000e\000v\000a\000l\000u\000a\000t\000i\000o\000n}{chapter.9}% 169
+\BOOKMARK [2][-]{subsection.9.25.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.25}% 170
+\BOOKMARK [2][-]{subsection.9.25.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.25}% 171
+\BOOKMARK [3][-]{subsubsection.9.25.2.1}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e}{subsection.9.25.2}% 172
+\BOOKMARK [3][-]{subsubsection.9.25.2.2}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000s\000t\000r\000u\000c\000t\000\137\000p\000a\000r}{subsection.9.25.2}% 173
+\BOOKMARK [3][-]{subsubsection.9.25.2.3}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000c\000i\000r\000c\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e}{subsection.9.25.2}% 174
+\BOOKMARK [3][-]{subsubsection.9.25.2.4}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000c\000i\000r\000c\000\137\000s\000t\000r\000u\000c\000t\000\137\000p\000a\000r}{subsection.9.25.2}% 175
+\BOOKMARK [3][-]{subsubsection.9.25.2.5}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e\000\137\000p\000t}{subsection.9.25.2}% 176
+\BOOKMARK [3][-]{subsubsection.9.25.2.6}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000s\000t\000r\000u\000c\000t\000\137\000p\000t\000\137\000p\000a\000r}{subsection.9.25.2}% 177
+\BOOKMARK [1][-]{section.9.26}{\376\377\000S\000e\000a\000r\000c\000h\000i\000n\000g\000\040\000S\000e\000q\000u\000e\000n\000c\000e\000s\000\040\000f\000o\000r\000\040\000P\000r\000e\000d\000e\000f\000i\000n\000e\000d\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s}{chapter.9}% 178
+\BOOKMARK [2][-]{subsection.9.26.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.26}% 179
+\BOOKMARK [2][-]{subsection.9.26.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.26}% 180
+\BOOKMARK [3][-]{subsubsection.9.26.2.1}{\376\377\000i\000n\000v\000e\000r\000s\000e\000\137\000f\000o\000l\000d}{subsection.9.26.2}% 181
+\BOOKMARK [3][-]{subsubsection.9.26.2.2}{\376\377\000i\000n\000v\000e\000r\000s\000e\000\137\000p\000f\000\137\000f\000o\000l\000d}{subsection.9.26.2}% 182
+\BOOKMARK [2][-]{subsection.9.26.3}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.26}% 183
+\BOOKMARK [3][-]{subsubsection.9.26.3.1}{\376\377\000f\000i\000n\000a\000l\000\137\000c\000o\000s\000t}{subsection.9.26.3}% 184
+\BOOKMARK [3][-]{subsubsection.9.26.3.2}{\376\377\000g\000i\000v\000e\000\137\000u\000p}{subsection.9.26.3}% 185
+\BOOKMARK [3][-]{subsubsection.9.26.3.3}{\376\377\000i\000n\000v\000\137\000v\000e\000r\000b\000o\000s\000e}{subsection.9.26.3}% 186
+\BOOKMARK [1][-]{section.9.27}{\376\377\000C\000l\000a\000s\000s\000i\000f\000i\000e\000d\000\040\000D\000y\000n\000a\000m\000i\000c\000\040\000P\000r\000o\000g\000r\000a\000m\000m\000i\000n\000g}{chapter.9}% 187
+\BOOKMARK [2][-]{subsection.9.27.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.27}% 188
+\BOOKMARK [1][-]{section.9.28}{\376\377\000D\000i\000s\000t\000a\000n\000c\000e\000\040\000b\000a\000s\000e\000d\000\040\000p\000a\000r\000t\000i\000t\000i\000o\000n\000i\000n\000g\000\040\000o\000f\000\040\000t\000h\000e\000\040\000S\000e\000c\000o\000n\000d\000a\000r\000y\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000S\000p\000a\000c\000e}{chapter.9}% 189
+\BOOKMARK [2][-]{subsection.9.28.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.28}% 190
+\BOOKMARK [1][-]{section.9.29}{\376\377\000C\000a\000l\000c\000u\000l\000a\000t\000i\000n\000g\000\040\000M\000F\000E\000\040\000r\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e\000s\000\040\000o\000f\000\040\000a\000\040\000D\000i\000s\000t\000a\000n\000c\000e\000\040\000B\000a\000s\000e\000d\000\040\000P\000a\000r\000t\000i\000t\000i\000o\000n\000i\000n\000g}{chapter.9}% 191
+\BOOKMARK [2][-]{subsection.9.29.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.29}% 192
+\BOOKMARK [2][-]{subsection.9.29.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.29}% 193
+\BOOKMARK [3][-]{subsubsection.9.29.2.1}{\376\377\000g\000e\000t\000\137\000T\000w\000o\000D\000f\000o\000l\000d\000\137\000v\000a\000r\000i\000a\000b\000l\000e\000s}{subsection.9.29.2}% 194
+\BOOKMARK [3][-]{subsubsection.9.29.2.2}{\376\377\000d\000e\000s\000t\000r\000o\000y\000\137\000T\000w\000o\000D\000f\000o\000l\000d\000\137\000v\000a\000r\000i\000a\000b\000l\000e\000s}{subsection.9.29.2}% 195
+\BOOKMARK [3][-]{subsubsection.9.29.2.3}{\376\377\000T\000w\000o\000D\000f\000o\000l\000d\000L\000i\000s\000t}{subsection.9.29.2}% 196
+\BOOKMARK [3][-]{subsubsection.9.29.2.4}{\376\377\000T\000w\000o\000D\000f\000o\000l\000d\000\137\000b\000a\000c\000k\000t\000r\000a\000c\000k\000\137\000f\0005}{subsection.9.29.2}% 197
+\BOOKMARK [1][-]{section.9.30}{\376\377\000C\000a\000l\000c\000u\000l\000a\000t\000e\000\040\000P\000a\000r\000t\000i\000t\000i\000o\000n\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000s\000\040\000o\000f\000\040\000a\000\040\000D\000i\000s\000t\000a\000n\000c\000e\000\040\000B\000a\000s\000e\000d\000\040\000P\000a\000r\000t\000i\000t\000i\000o\000n\000i\000n\000g}{chapter.9}% 198
+\BOOKMARK [2][-]{subsection.9.30.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.30}% 199
+\BOOKMARK [2][-]{subsection.9.30.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.30}% 200
+\BOOKMARK [3][-]{subsubsection.9.30.2.1}{\376\377\000g\000e\000t\000\137\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000v\000a\000r\000i\000a\000b\000l\000e\000s}{subsection.9.30.2}% 201
+\BOOKMARK [3][-]{subsubsection.9.30.2.2}{\376\377\000g\000e\000t\000\137\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000v\000a\000r\000i\000a\000b\000l\000e\000s\000\137\000f\000r\000o\000m\000\137\000M\000F\000E}{subsection.9.30.2}% 202
+\BOOKMARK [3][-]{subsubsection.9.30.2.3}{\376\377\000d\000e\000s\000t\000r\000o\000y\000\137\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000v\000a\000r\000i\000a\000b\000l\000e\000s}{subsection.9.30.2}% 203
+\BOOKMARK [3][-]{subsubsection.9.30.2.4}{\376\377\000T\000w\000o\000D\000p\000f\000o\000l\000d\000L\000i\000s\000t}{subsection.9.30.2}% 204
+\BOOKMARK [1][-]{section.9.31}{\376\377\000S\000t\000o\000c\000h\000a\000s\000t\000i\000c\000\040\000B\000a\000c\000k\000t\000r\000a\000c\000k\000i\000n\000g\000\040\000o\000f\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s\000\040\000f\000r\000o\000m\000\040\000D\000i\000s\000t\000a\000n\000c\000e\000\040\000B\000a\000s\000e\000d\000\040\000P\000a\000r\000t\000i\000t\000i\000o\000n\000i\000n\000g}{chapter.9}% 205
+\BOOKMARK [2][-]{subsection.9.31.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.31}% 206
+\BOOKMARK [2][-]{subsection.9.31.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.31}% 207
+\BOOKMARK [3][-]{subsubsection.9.31.2.1}{\376\377\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000p\000b\000a\000c\000k\000t\000r\000a\000c\000k}{subsection.9.31.2}% 208
+\BOOKMARK [3][-]{subsubsection.9.31.2.2}{\376\377\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000p\000b\000a\000c\000k\000t\000r\000a\000c\000k\0005}{subsection.9.31.2}% 209
+\BOOKMARK [1][-]{section.9.32}{\376\377\000C\000o\000m\000p\000u\000t\000e\000\040\000t\000h\000e\000\040\000D\000e\000n\000s\000i\000t\000y\000\040\000o\000f\000\040\000S\000t\000a\000t\000e\000s}{chapter.9}% 210
+\BOOKMARK [2][-]{subsection.9.32.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.9.32}% 211
+\BOOKMARK [2][-]{subsection.9.32.2}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.9.32}% 212
+\BOOKMARK [3][-]{subsubsection.9.32.2.1}{\376\377\000d\000e\000n\000s\000i\000t\000y\000\137\000o\000f\000\137\000s\000t\000a\000t\000e\000s}{subsection.9.32.2}% 213
+\BOOKMARK [1][-]{section.9.33}{\376\377\000P\000a\000r\000s\000i\000n\000g\000\040\000a\000n\000d\000\040\000C\000o\000m\000p\000a\000r\000i\000n\000g\000\040\000-\000\040\000F\000u\000n\000c\000t\000i\000o\000n\000s\000\040\000t\000o\000\040\000M\000a\000n\000i\000p\000u\000l\000a\000t\000e\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000s}{chapter.9}% 214
+\BOOKMARK [0][-]{chapter.10}{\376\377\000D\000a\000t\000a\000\040\000S\000t\000r\000u\000c\000t\000u\000r\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{}% 215
+\BOOKMARK [1][-]{section.10.1}{\376\377\000b\000o\000n\000d\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 216
+\BOOKMARK [2][-]{subsection.10.1.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.1}% 217
+\BOOKMARK [1][-]{section.10.2}{\376\377\000b\000o\000n\000d\000T\000E\000n\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 218
+\BOOKMARK [2][-]{subsection.10.2.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.2}% 219
+\BOOKMARK [1][-]{section.10.3}{\376\377\000c\000o\000f\000o\000l\000d\000F\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 220
+\BOOKMARK [1][-]{section.10.4}{\376\377\000C\000o\000n\000c\000E\000n\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 221
+\BOOKMARK [1][-]{section.10.5}{\376\377\000c\000o\000n\000s\000t\000r\000a\000i\000n\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 222
+\BOOKMARK [2][-]{subsection.10.5.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.5}% 223
+\BOOKMARK [1][-]{section.10.6}{\376\377\000C\000O\000O\000R\000D\000I\000N\000A\000T\000E\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 224
+\BOOKMARK [2][-]{subsection.10.6.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.6}% 225
+\BOOKMARK [1][-]{section.10.7}{\376\377\000c\000p\000a\000i\000r\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 226
+\BOOKMARK [2][-]{subsection.10.7.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.7}% 227
+\BOOKMARK [1][-]{section.10.8}{\376\377\000d\000u\000p\000l\000e\000x\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 228
+\BOOKMARK [1][-]{section.10.9}{\376\377\000d\000u\000p\000V\000a\000r\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 229
+\BOOKMARK [1][-]{section.10.10}{\376\377\000f\000o\000l\000d\000e\000n\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 230
+\BOOKMARK [1][-]{section.10.11}{\376\377\000i\000n\000t\000e\000r\000a\000c\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 231
+\BOOKMARK [1][-]{section.10.12}{\376\377\000i\000n\000t\000e\000r\000m\000e\000d\000i\000a\000t\000e\000\137\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 232
+\BOOKMARK [1][-]{section.10.13}{\376\377\000I\000N\000T\000E\000R\000V\000A\000L\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 233
+\BOOKMARK [2][-]{subsection.10.13.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.13}% 234
+\BOOKMARK [1][-]{section.10.14}{\376\377\000L\000I\000S\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 235
+\BOOKMARK [1][-]{section.10.15}{\376\377\000L\000S\000T\000\137\000B\000U\000C\000K\000E\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 236
+\BOOKMARK [1][-]{section.10.16}{\376\377\000m\000o\000d\000e\000l\000\137\000d\000e\000t\000a\000i\000l\000s\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 237
+\BOOKMARK [2][-]{subsection.10.16.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.16}% 238
+\BOOKMARK [2][-]{subsection.10.16.2}{\376\377\000F\000i\000e\000l\000d\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.10.16}% 239
+\BOOKMARK [3][-]{subsubsection.10.16.2.1}{\376\377\000d\000a\000n\000g\000l\000e\000s}{subsection.10.16.2}% 240
+\BOOKMARK [1][-]{section.10.17}{\376\377\000m\000o\000v\000e\000\137\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 241
+\BOOKMARK [1][-]{section.10.18}{\376\377\000P\000A\000I\000R\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 242
+\BOOKMARK [2][-]{subsection.10.18.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.18}% 243
+\BOOKMARK [1][-]{section.10.19}{\376\377\000p\000a\000i\000r\000\137\000i\000n\000f\000o\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 244
+\BOOKMARK [2][-]{subsection.10.19.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.19}% 245
+\BOOKMARK [1][-]{section.10.20}{\376\377\000p\000a\000i\000r\000p\000r\000o\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 246
+\BOOKMARK [1][-]{section.10.21}{\376\377\000p\000a\000r\000a\000m\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 247
+\BOOKMARK [2][-]{subsection.10.21.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.21}% 248
+\BOOKMARK [1][-]{section.10.22}{\376\377\000p\000a\000t\000h\000\137\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 249
+\BOOKMARK [1][-]{section.10.23}{\376\377\000p\000f\000\137\000p\000a\000r\000a\000m\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 250
+\BOOKMARK [2][-]{subsection.10.23.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.23}% 251
+\BOOKMARK [2][-]{subsection.10.23.2}{\376\377\000F\000i\000e\000l\000d\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.10.23}% 252
+\BOOKMARK [3][-]{subsubsection.10.23.2.1}{\376\377\000a\000l\000p\000h\000a}{subsection.10.23.2}% 253
+\BOOKMARK [1][-]{section.10.24}{\376\377\000p\000l\000i\000s\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 254
+\BOOKMARK [2][-]{subsection.10.24.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.24}% 255
+\BOOKMARK [1][-]{section.10.25}{\376\377\000P\000o\000s\000t\000o\000r\000d\000e\000r\000\137\000l\000i\000s\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 256
+\BOOKMARK [1][-]{section.10.26}{\376\377\000p\000u\000\137\000c\000o\000n\000t\000r\000i\000b\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 257
+\BOOKMARK [2][-]{subsection.10.26.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.26}% 258
+\BOOKMARK [1][-]{section.10.27}{\376\377\000p\000u\000\137\000o\000u\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 259
+\BOOKMARK [2][-]{subsection.10.27.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.27}% 260
+\BOOKMARK [1][-]{section.10.28}{\376\377\000s\000e\000c\000t\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 261
+\BOOKMARK [2][-]{subsection.10.28.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.28}% 262
+\BOOKMARK [1][-]{section.10.29}{\376\377\000s\000n\000o\000o\000p\000T\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 263
+\BOOKMARK [1][-]{section.10.30}{\376\377\000S\000O\000L\000U\000T\000I\000O\000N\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 264
+\BOOKMARK [2][-]{subsection.10.30.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.30}% 265
+\BOOKMARK [1][-]{section.10.31}{\376\377\000s\000t\000r\000u\000c\000t\000\137\000e\000n\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 266
+\BOOKMARK [1][-]{section.10.32}{\376\377\000s\000v\000m\000\137\000m\000o\000d\000e\000l\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 267
+\BOOKMARK [1][-]{section.10.33}{\376\377\000s\000w\000S\000t\000r\000i\000n\000g\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 268
+\BOOKMARK [1][-]{section.10.34}{\376\377\000T\000r\000e\000e\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 269
+\BOOKMARK [1][-]{section.10.35}{\376\377\000T\000w\000o\000D\000f\000o\000l\000d\000\137\000s\000o\000l\000u\000t\000i\000o\000n\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 270
+\BOOKMARK [2][-]{subsection.10.35.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.35}% 271
+\BOOKMARK [1][-]{section.10.36}{\376\377\000T\000w\000o\000D\000f\000o\000l\000d\000\137\000v\000a\000r\000s\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 272
+\BOOKMARK [2][-]{subsection.10.36.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.36}% 273
+\BOOKMARK [1][-]{section.10.37}{\376\377\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000s\000o\000l\000u\000t\000i\000o\000n\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 274
+\BOOKMARK [2][-]{subsection.10.37.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.37}% 275
+\BOOKMARK [1][-]{section.10.38}{\376\377\000T\000w\000o\000D\000p\000f\000o\000l\000d\000\137\000v\000a\000r\000s\000\040\000S\000t\000r\000u\000c\000t\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.10}% 276
+\BOOKMARK [2][-]{subsection.10.38.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.10.38}% 277
+\BOOKMARK [0][-]{chapter.11}{\376\377\000F\000i\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{}% 278
+\BOOKMARK [1][-]{section.11.1}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\0002\000D\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 279
+\BOOKMARK [1][-]{section.11.2}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\0002\000D\000p\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 280
+\BOOKMARK [1][-]{section.11.3}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000a\000l\000i\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 281
+\BOOKMARK [2][-]{subsection.11.3.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.3}% 282
+\BOOKMARK [2][-]{subsection.11.3.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.3}% 283
+\BOOKMARK [3][-]{subsubsection.11.3.2.1}{\376\377\000u\000p\000d\000a\000t\000e\000\137\000a\000l\000i\000f\000o\000l\000d\000\137\000p\000a\000r\000a\000m\000s}{subsection.11.3.2}% 284
+\BOOKMARK [1][-]{section.11.4}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000c\000o\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 285
+\BOOKMARK [2][-]{subsection.11.4.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.4}% 286
+\BOOKMARK [2][-]{subsection.11.4.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.4}% 287
+\BOOKMARK [3][-]{subsubsection.11.4.2.1}{\376\377\000g\000e\000t\000\137\000m\000o\000n\000o\000m\000e\000r\000e\000\137\000m\000f\000e\000s}{subsection.11.4.2}% 288
+\BOOKMARK [3][-]{subsubsection.11.4.2.2}{\376\377\000i\000n\000i\000t\000i\000a\000l\000i\000z\000e\000\137\000c\000o\000f\000o\000l\000d}{subsection.11.4.2}% 289
+\BOOKMARK [1][-]{section.11.5}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000c\000o\000n\000v\000e\000r\000t\000\137\000e\000p\000a\000r\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 290
+\BOOKMARK [2][-]{subsection.11.5.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.5}% 291
+\BOOKMARK [1][-]{section.11.6}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000d\000a\000t\000a\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 292
+\BOOKMARK [2][-]{subsection.11.6.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.6}% 293
+\BOOKMARK [1][-]{section.11.7}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000d\000i\000s\000t\000\137\000v\000a\000r\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 294
+\BOOKMARK [2][-]{subsection.11.7.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.7}% 295
+\BOOKMARK [2][-]{subsection.11.7.2}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.7}% 296
+\BOOKMARK [3][-]{subsubsection.11.7.2.1}{\376\377\000e\000d\000i\000t\000\137\000b\000a\000c\000k\000t\000r\000a\000c\000k}{subsection.11.7.2}% 297
+\BOOKMARK [3][-]{subsubsection.11.7.2.2}{\376\377\000c\000o\000s\000t\000\137\000m\000a\000t\000r\000i\000x}{subsection.11.7.2}% 298
+\BOOKMARK [1][-]{section.11.8}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000d\000u\000p\000l\000e\000x\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 299
+\BOOKMARK [2][-]{subsection.11.8.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.8}% 300
+\BOOKMARK [1][-]{section.11.9}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000e\000d\000i\000t\000\137\000c\000o\000s\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 301
+\BOOKMARK [2][-]{subsection.11.9.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.9}% 302
+\BOOKMARK [1][-]{section.11.10}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000e\000n\000e\000r\000g\000y\000\137\000c\000o\000n\000s\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 303
+\BOOKMARK [2][-]{subsection.11.10.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.10}% 304
+\BOOKMARK [2][-]{subsection.11.10.2}{\376\377\000M\000a\000c\000r\000o\000\040\000D\000e\000f\000i\000n\000i\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.10}% 305
+\BOOKMARK [3][-]{subsubsection.11.10.2.1}{\376\377\000G\000A\000S\000C\000O\000N\000S\000T}{subsection.11.10.2}% 306
+\BOOKMARK [3][-]{subsubsection.11.10.2.2}{\376\377\000K\0000}{subsection.11.10.2}% 307
+\BOOKMARK [3][-]{subsubsection.11.10.2.3}{\376\377\000I\000N\000F}{subsection.11.10.2}% 308
+\BOOKMARK [3][-]{subsubsection.11.10.2.4}{\376\377\000F\000O\000R\000B\000I\000D\000D\000E\000N}{subsection.11.10.2}% 309
+\BOOKMARK [3][-]{subsubsection.11.10.2.5}{\376\377\000B\000O\000N\000U\000S}{subsection.11.10.2}% 310
+\BOOKMARK [3][-]{subsubsection.11.10.2.6}{\376\377\000N\000B\000P\000A\000I\000R\000S}{subsection.11.10.2}% 311
+\BOOKMARK [3][-]{subsubsection.11.10.2.7}{\376\377\000T\000U\000R\000N}{subsection.11.10.2}% 312
+\BOOKMARK [3][-]{subsubsection.11.10.2.8}{\376\377\000M\000A\000X\000L\000O\000O\000P}{subsection.11.10.2}% 313
+\BOOKMARK [1][-]{section.11.11}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000f\000i\000n\000d\000p\000a\000t\000h\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 314
+\BOOKMARK [2][-]{subsection.11.11.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.11}% 315
+\BOOKMARK [2][-]{subsection.11.11.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.11}% 316
+\BOOKMARK [3][-]{subsubsection.11.11.2.1}{\376\377\000f\000i\000n\000d\000\137\000s\000a\000d\000d\000l\000e}{subsection.11.11.2}% 317
+\BOOKMARK [3][-]{subsubsection.11.11.2.2}{\376\377\000g\000e\000t\000\137\000p\000a\000t\000h}{subsection.11.11.2}% 318
+\BOOKMARK [3][-]{subsubsection.11.11.2.3}{\376\377\000f\000r\000e\000e\000\137\000p\000a\000t\000h}{subsection.11.11.2}% 319
+\BOOKMARK [1][-]{section.11.12}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 320
+\BOOKMARK [2][-]{subsection.11.12.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.12}% 321
+\BOOKMARK [2][-]{subsection.11.12.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.12}% 322
+\BOOKMARK [3][-]{subsubsection.11.12.2.1}{\376\377\000p\000a\000r\000e\000n\000t\000h\000e\000s\000i\000s\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e}{subsection.11.12.2}% 323
+\BOOKMARK [3][-]{subsubsection.11.12.2.2}{\376\377\000p\000a\000r\000e\000n\000t\000h\000e\000s\000i\000s\000\137\000z\000u\000k\000e\000r}{subsection.11.12.2}% 324
+\BOOKMARK [3][-]{subsubsection.11.12.2.3}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000m\000o\000v\000e}{subsection.11.12.2}% 325
+\BOOKMARK [3][-]{subsubsection.11.12.2.4}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000m\000o\000v\000e\000\137\000p\000t}{subsection.11.12.2}% 326
+\BOOKMARK [3][-]{subsubsection.11.12.2.5}{\376\377\000l\000o\000o\000p\000\137\000e\000n\000e\000r\000g\000y}{subsection.11.12.2}% 327
+\BOOKMARK [3][-]{subsubsection.11.12.2.6}{\376\377\000a\000s\000s\000i\000g\000n\000\137\000p\000l\000i\000s\000t\000\137\000f\000r\000o\000m\000\137\000d\000b}{subsection.11.12.2}% 328
+\BOOKMARK [3][-]{subsubsection.11.12.2.7}{\376\377\000L\000o\000o\000p\000E\000n\000e\000r\000g\000y}{subsection.11.12.2}% 329
+\BOOKMARK [3][-]{subsubsection.11.12.2.8}{\376\377\000H\000a\000i\000r\000p\000i\000n\000E}{subsection.11.12.2}% 330
+\BOOKMARK [3][-]{subsubsection.11.12.2.9}{\376\377\000i\000n\000i\000t\000i\000a\000l\000i\000z\000e\000\137\000f\000o\000l\000d}{subsection.11.12.2}% 331
+\BOOKMARK [3][-]{subsubsection.11.12.2.10}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000s\000t\000r\000u\000c\000t}{subsection.11.12.2}% 332
+\BOOKMARK [3][-]{subsubsection.11.12.2.11}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000s\000t\000r\000u\000c\000t\000\137\000p\000t}{subsection.11.12.2}% 333
+\BOOKMARK [3][-]{subsubsection.11.12.2.12}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000o\000f\000\137\000c\000i\000r\000c\000\137\000s\000t\000r\000u\000c\000t}{subsection.11.12.2}% 334
+\BOOKMARK [1][-]{section.11.13}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000f\000o\000l\000d\000\137\000v\000a\000r\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 335
+\BOOKMARK [2][-]{subsection.11.13.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.13}% 336
+\BOOKMARK [2][-]{subsection.11.13.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.13}% 337
+\BOOKMARK [3][-]{subsubsection.11.13.2.1}{\376\377\000s\000e\000t\000\137\000m\000o\000d\000e\000l\000\137\000d\000e\000t\000a\000i\000l\000s}{subsection.11.13.2}% 338
+\BOOKMARK [2][-]{subsection.11.13.3}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.13}% 339
+\BOOKMARK [3][-]{subsubsection.11.13.3.1}{\376\377\000n\000o\000L\000o\000n\000e\000l\000y\000P\000a\000i\000r\000s}{subsection.11.13.3}% 340
+\BOOKMARK [3][-]{subsubsection.11.13.3.2}{\376\377\000d\000a\000n\000g\000l\000e\000s}{subsection.11.13.3}% 341
+\BOOKMARK [3][-]{subsubsection.11.13.3.3}{\376\377\000t\000e\000t\000r\000a\000\137\000l\000o\000o\000p}{subsection.11.13.3}% 342
+\BOOKMARK [3][-]{subsubsection.11.13.3.4}{\376\377\000e\000n\000e\000r\000g\000y\000\137\000s\000e\000t}{subsection.11.13.3}% 343
+\BOOKMARK [3][-]{subsubsection.11.13.3.5}{\376\377\000o\000l\000d\000A\000l\000i\000E\000n}{subsection.11.13.3}% 344
+\BOOKMARK [3][-]{subsubsection.11.13.3.6}{\376\377\000r\000i\000b\000o}{subsection.11.13.3}% 345
+\BOOKMARK [3][-]{subsubsection.11.13.3.7}{\376\377\000R\000i\000b\000o\000s\000u\000m\000F\000i\000l\000e}{subsection.11.13.3}% 346
+\BOOKMARK [3][-]{subsubsection.11.13.3.8}{\376\377\000n\000o\000n\000s\000t\000a\000n\000d\000a\000r\000d\000s}{subsection.11.13.3}% 347
+\BOOKMARK [3][-]{subsubsection.11.13.3.9}{\376\377\000t\000e\000m\000p\000e\000r\000a\000t\000u\000r\000e}{subsection.11.13.3}% 348
+\BOOKMARK [3][-]{subsubsection.11.13.3.10}{\376\377\000j\000a\000m\000e\000s\000\137\000r\000u\000l\000e}{subsection.11.13.3}% 349
+\BOOKMARK [3][-]{subsubsection.11.13.3.11}{\376\377\000l\000o\000g\000M\000L}{subsection.11.13.3}% 350
+\BOOKMARK [3][-]{subsubsection.11.13.3.12}{\376\377\000c\000u\000t\000\137\000p\000o\000i\000n\000t}{subsection.11.13.3}% 351
+\BOOKMARK [3][-]{subsubsection.11.13.3.13}{\376\377\000b\000a\000s\000e\000\137\000p\000a\000i\000r}{subsection.11.13.3}% 352
+\BOOKMARK [3][-]{subsubsection.11.13.3.14}{\376\377\000p\000r}{subsection.11.13.3}% 353
+\BOOKMARK [3][-]{subsubsection.11.13.3.15}{\376\377\000i\000i\000n\000d\000x}{subsection.11.13.3}% 354
+\BOOKMARK [3][-]{subsubsection.11.13.3.16}{\376\377\000p\000f\000\137\000s\000c\000a\000l\000e}{subsection.11.13.3}% 355
+\BOOKMARK [3][-]{subsubsection.11.13.3.17}{\376\377\000d\000o\000\137\000b\000a\000c\000k\000t\000r\000a\000c\000k}{subsection.11.13.3}% 356
+\BOOKMARK [3][-]{subsubsection.11.13.3.18}{\376\377\000b\000a\000c\000k\000t\000r\000a\000c\000k\000\137\000t\000y\000p\000e}{subsection.11.13.3}% 357
+\BOOKMARK [1][-]{section.11.14}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000g\000q\000u\000a\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 358
+\BOOKMARK [2][-]{subsection.11.14.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.14}% 359
+\BOOKMARK [2][-]{subsection.11.14.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.14}% 360
+\BOOKMARK [3][-]{subsubsection.11.14.2.1}{\376\377\000g\000e\000t\000\137\000g\000q\000u\000a\000d\000\137\000m\000a\000t\000r\000i\000x}{subsection.11.14.2}% 361
+\BOOKMARK [3][-]{subsubsection.11.14.2.2}{\376\377\000p\000a\000r\000s\000e\000\137\000g\000q\000u\000a\000d}{subsection.11.14.2}% 362
+\BOOKMARK [3][-]{subsubsection.11.14.2.3}{\376\377\000b\000a\000c\000k\000t\000r\000a\000c\000k\000\137\000G\000Q\000u\000a\000d\000\137\000I\000n\000t\000L\000o\000o\000p}{subsection.11.14.2}% 363
+\BOOKMARK [3][-]{subsubsection.11.14.2.4}{\376\377\000b\000a\000c\000k\000t\000r\000a\000c\000k\000\137\000G\000Q\000u\000a\000d\000\137\000I\000n\000t\000L\000o\000o\000p\000\137\000L}{subsection.11.14.2}% 364
+\BOOKMARK [1][-]{section.11.15}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000i\000n\000v\000e\000r\000s\000e\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 365
+\BOOKMARK [2][-]{subsection.11.15.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.15}% 366
+\BOOKMARK [1][-]{section.11.16}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000L\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 367
+\BOOKMARK [2][-]{subsection.11.16.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.16}% 368
+\BOOKMARK [1][-]{section.11.17}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000l\000o\000o\000p\000\137\000e\000n\000e\000r\000g\000i\000e\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 369
+\BOOKMARK [2][-]{subsection.11.17.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.17}% 370
+\BOOKMARK [2][-]{subsection.11.17.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.17}% 371
+\BOOKMARK [3][-]{subsubsection.11.17.2.1}{\376\377\000E\000\137\000I\000n\000t\000L\000o\000o\000p}{subsection.11.17.2}% 372
+\BOOKMARK [3][-]{subsubsection.11.17.2.2}{\376\377\000E\000\137\000H\000a\000i\000r\000p\000i\000n}{subsection.11.17.2}% 373
+\BOOKMARK [3][-]{subsubsection.11.17.2.3}{\376\377\000E\000\137\000S\000t\000e\000m}{subsection.11.17.2}% 374
+\BOOKMARK [3][-]{subsubsection.11.17.2.4}{\376\377\000e\000x\000p\000\137\000E\000\137\000S\000t\000e\000m}{subsection.11.17.2}% 375
+\BOOKMARK [3][-]{subsubsection.11.17.2.5}{\376\377\000e\000x\000p\000\137\000E\000\137\000H\000a\000i\000r\000p\000i\000n}{subsection.11.17.2}% 376
+\BOOKMARK [3][-]{subsubsection.11.17.2.6}{\376\377\000e\000x\000p\000\137\000E\000\137\000I\000n\000t\000L\000o\000o\000p}{subsection.11.17.2}% 377
+\BOOKMARK [1][-]{section.11.18}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000L\000P\000f\000o\000l\000d\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 378
+\BOOKMARK [2][-]{subsection.11.18.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.18}% 379
+\BOOKMARK [2][-]{subsection.11.18.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.18}% 380
+\BOOKMARK [3][-]{subsubsection.11.18.2.1}{\376\377\000i\000n\000i\000t\000\137\000p\000f\000\137\000f\000o\000l\000d\000L\000P}{subsection.11.18.2}% 381
+\BOOKMARK [1][-]{section.11.19}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000M\000E\000A\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 382
+\BOOKMARK [2][-]{subsection.11.19.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.19}% 383
+\BOOKMARK [2][-]{subsection.11.19.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.19}% 384
+\BOOKMARK [3][-]{subsubsection.11.19.2.1}{\376\377\000M\000E\000A}{subsection.11.19.2}% 385
+\BOOKMARK [1][-]{section.11.20}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000m\000m\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 386
+\BOOKMARK [2][-]{subsection.11.20.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.20}% 387
+\BOOKMARK [1][-]{section.11.21}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000n\000a\000v\000i\000e\000w\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 388
+\BOOKMARK [1][-]{section.11.22}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000p\000a\000r\000a\000m\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 389
+\BOOKMARK [1][-]{section.11.23}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000p\000a\000r\000t\000\137\000f\000u\000n\000c\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 390
+\BOOKMARK [2][-]{subsection.11.23.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.23}% 391
+\BOOKMARK [2][-]{subsection.11.23.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.23}% 392
+\BOOKMARK [3][-]{subsubsection.11.23.2.1}{\376\377\000i\000n\000i\000t\000\137\000p\000f\000\137\000f\000o\000l\000d}{subsection.11.23.2}% 393
+\BOOKMARK [3][-]{subsubsection.11.23.2.2}{\376\377\000c\000e\000n\000t\000r\000o\000i\000d}{subsection.11.23.2}% 394
+\BOOKMARK [3][-]{subsubsection.11.23.2.3}{\376\377\000m\000e\000a\000n\000\137\000b\000p\000\137\000d\000i\000s\000t}{subsection.11.23.2}% 395
+\BOOKMARK [3][-]{subsubsection.11.23.2.4}{\376\377\000e\000x\000p\000L\000o\000o\000p\000E\000n\000e\000r\000g\000y}{subsection.11.23.2}% 396
+\BOOKMARK [3][-]{subsubsection.11.23.2.5}{\376\377\000e\000x\000p\000H\000a\000i\000r\000p\000i\000n\000E\000n\000e\000r\000g\000y}{subsection.11.23.2}% 397
+\BOOKMARK [1][-]{section.11.24}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000p\000a\000r\000t\000\137\000f\000u\000n\000c\000\137\000c\000o\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 398
+\BOOKMARK [2][-]{subsection.11.24.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.24}% 399
+\BOOKMARK [2][-]{subsection.11.24.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.24}% 400
+\BOOKMARK [3][-]{subsubsection.11.24.2.1}{\376\377\000g\000e\000t\000\137\000p\000l\000i\000s\000t}{subsection.11.24.2}% 401
+\BOOKMARK [3][-]{subsubsection.11.24.2.2}{\376\377\000i\000n\000i\000t\000\137\000c\000o\000\137\000p\000f\000\137\000f\000o\000l\000d}{subsection.11.24.2}% 402
+\BOOKMARK [1][-]{section.11.25}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000p\000a\000r\000t\000\137\000f\000u\000n\000c\000\137\000u\000p\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 403
+\BOOKMARK [2][-]{subsection.11.25.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.25}% 404
+\BOOKMARK [1][-]{section.11.26}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000p\000l\000o\000t\000\137\000l\000a\000y\000o\000u\000t\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 405
+\BOOKMARK [2][-]{subsection.11.26.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.26}% 406
+\BOOKMARK [2][-]{subsection.11.26.2}{\376\377\000M\000a\000c\000r\000o\000\040\000D\000e\000f\000i\000n\000i\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.26}% 407
+\BOOKMARK [3][-]{subsubsection.11.26.2.1}{\376\377\000V\000R\000N\000A\000\137\000P\000L\000O\000T\000\137\000T\000Y\000P\000E\000\137\000S\000I\000M\000P\000L\000E}{subsection.11.26.2}% 408
+\BOOKMARK [3][-]{subsubsection.11.26.2.2}{\376\377\000V\000R\000N\000A\000\137\000P\000L\000O\000T\000\137\000T\000Y\000P\000E\000\137\000N\000A\000V\000I\000E\000W}{subsection.11.26.2}% 409
+\BOOKMARK [3][-]{subsubsection.11.26.2.3}{\376\377\000V\000R\000N\000A\000\137\000P\000L\000O\000T\000\137\000T\000Y\000P\000E\000\137\000C\000I\000R\000C\000U\000L\000A\000R}{subsection.11.26.2}% 410
+\BOOKMARK [2][-]{subsection.11.26.3}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.26}% 411
+\BOOKMARK [3][-]{subsubsection.11.26.3.1}{\376\377\000s\000i\000m\000p\000l\000e\000\137\000x\000y\000\137\000c\000o\000o\000r\000d\000i\000n\000a\000t\000e\000s}{subsection.11.26.3}% 412
+\BOOKMARK [3][-]{subsubsection.11.26.3.2}{\376\377\000s\000i\000m\000p\000l\000e\000\137\000c\000i\000r\000c\000p\000l\000o\000t\000\137\000c\000o\000o\000r\000d\000i\000n\000a\000t\000e\000s}{subsection.11.26.3}% 413
+\BOOKMARK [2][-]{subsection.11.26.4}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.26}% 414
+\BOOKMARK [3][-]{subsubsection.11.26.4.1}{\376\377\000r\000n\000a\000\137\000p\000l\000o\000t\000\137\000t\000y\000p\000e}{subsection.11.26.4}% 415
+\BOOKMARK [1][-]{section.11.27}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000p\000r\000o\000f\000i\000l\000e\000d\000i\000s\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 416
+\BOOKMARK [2][-]{subsection.11.27.1}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.27}% 417
+\BOOKMARK [3][-]{subsubsection.11.27.1.1}{\376\377\000p\000r\000o\000f\000i\000l\000e\000\137\000e\000d\000i\000t\000\137\000d\000i\000s\000t\000a\000n\000c\000e}{subsection.11.27.1}% 418
+\BOOKMARK [3][-]{subsubsection.11.27.1.2}{\376\377\000M\000a\000k\000e\000\137\000b\000p\000\137\000p\000r\000o\000f\000i\000l\000e\000\137\000b\000p\000p\000m}{subsection.11.27.1}% 419
+\BOOKMARK [3][-]{subsubsection.11.27.1.3}{\376\377\000f\000r\000e\000e\000\137\000p\000r\000o\000f\000i\000l\000e}{subsection.11.27.1}% 420
+\BOOKMARK [3][-]{subsubsection.11.27.1.4}{\376\377\000M\000a\000k\000e\000\137\000b\000p\000\137\000p\000r\000o\000f\000i\000l\000e}{subsection.11.27.1}% 421
+\BOOKMARK [1][-]{section.11.28}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000P\000S\000\137\000d\000o\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 422
+\BOOKMARK [2][-]{subsection.11.28.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.28}% 423
+\BOOKMARK [2][-]{subsection.11.28.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.28}% 424
+\BOOKMARK [3][-]{subsubsection.11.28.2.1}{\376\377\000P\000S\000\137\000r\000n\000a\000\137\000p\000l\000o\000t}{subsection.11.28.2}% 425
+\BOOKMARK [3][-]{subsubsection.11.28.2.2}{\376\377\000P\000S\000\137\000r\000n\000a\000\137\000p\000l\000o\000t\000\137\000a}{subsection.11.28.2}% 426
+\BOOKMARK [3][-]{subsubsection.11.28.2.3}{\376\377\000g\000m\000l\000R\000N\000A}{subsection.11.28.2}% 427
+\BOOKMARK [3][-]{subsubsection.11.28.2.4}{\376\377\000s\000s\000v\000\137\000r\000n\000a\000\137\000p\000l\000o\000t}{subsection.11.28.2}% 428
+\BOOKMARK [3][-]{subsubsection.11.28.2.5}{\376\377\000s\000v\000g\000\137\000r\000n\000a\000\137\000p\000l\000o\000t}{subsection.11.28.2}% 429
+\BOOKMARK [3][-]{subsubsection.11.28.2.6}{\376\377\000x\000r\000n\000a\000\137\000p\000l\000o\000t}{subsection.11.28.2}% 430
+\BOOKMARK [3][-]{subsubsection.11.28.2.7}{\376\377\000P\000S\000\137\000d\000o\000t\000\137\000p\000l\000o\000t\000\137\000l\000i\000s\000t}{subsection.11.28.2}% 431
+\BOOKMARK [3][-]{subsubsection.11.28.2.8}{\376\377\000a\000l\000i\000P\000S\000\137\000c\000o\000l\000o\000r\000\137\000a\000l\000n}{subsection.11.28.2}% 432
+\BOOKMARK [3][-]{subsubsection.11.28.2.9}{\376\377\000P\000S\000\137\000d\000o\000t\000\137\000p\000l\000o\000t}{subsection.11.28.2}% 433
+\BOOKMARK [1][-]{section.11.29}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000r\000e\000a\000d\000\137\000e\000p\000a\000r\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 434
+\BOOKMARK [1][-]{section.11.30}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000R\000N\000A\000s\000t\000r\000u\000c\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 435
+\BOOKMARK [2][-]{subsection.11.30.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.30}% 436
+\BOOKMARK [2][-]{subsection.11.30.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.30}% 437
+\BOOKMARK [3][-]{subsubsection.11.30.2.1}{\376\377\000b\0002\000H\000I\000T}{subsection.11.30.2}% 438
+\BOOKMARK [3][-]{subsubsection.11.30.2.2}{\376\377\000b\0002\000C}{subsection.11.30.2}% 439
+\BOOKMARK [3][-]{subsubsection.11.30.2.3}{\376\377\000b\0002\000S\000h\000a\000p\000i\000r\000o}{subsection.11.30.2}% 440
+\BOOKMARK [3][-]{subsubsection.11.30.2.4}{\376\377\000a\000d\000d\000\137\000r\000o\000o\000t}{subsection.11.30.2}% 441
+\BOOKMARK [3][-]{subsubsection.11.30.2.5}{\376\377\000e\000x\000p\000a\000n\000d\000\137\000S\000h\000a\000p\000i\000r\000o}{subsection.11.30.2}% 442
+\BOOKMARK [3][-]{subsubsection.11.30.2.6}{\376\377\000e\000x\000p\000a\000n\000d\000\137\000F\000u\000l\000l}{subsection.11.30.2}% 443
+\BOOKMARK [3][-]{subsubsection.11.30.2.7}{\376\377\000u\000n\000e\000x\000p\000a\000n\000d\000\137\000F\000u\000l\000l}{subsection.11.30.2}% 444
+\BOOKMARK [3][-]{subsubsection.11.30.2.8}{\376\377\000u\000n\000w\000e\000i\000g\000h\000t}{subsection.11.30.2}% 445
+\BOOKMARK [3][-]{subsubsection.11.30.2.9}{\376\377\000u\000n\000e\000x\000p\000a\000n\000d\000\137\000a\000l\000i\000g\000n\000e\000d\000\137\000F}{subsection.11.30.2}% 446
+\BOOKMARK [3][-]{subsubsection.11.30.2.10}{\376\377\000p\000a\000r\000s\000e\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e}{subsection.11.30.2}% 447
+\BOOKMARK [1][-]{section.11.31}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000s\000t\000r\000i\000n\000g\000d\000i\000s\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 448
+\BOOKMARK [2][-]{subsection.11.31.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.31}% 449
+\BOOKMARK [2][-]{subsection.11.31.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.31}% 450
+\BOOKMARK [3][-]{subsubsection.11.31.2.1}{\376\377\000M\000a\000k\000e\000\137\000s\000w\000S\000t\000r\000i\000n\000g}{subsection.11.31.2}% 451
+\BOOKMARK [3][-]{subsubsection.11.31.2.2}{\376\377\000s\000t\000r\000i\000n\000g\000\137\000e\000d\000i\000t\000\137\000d\000i\000s\000t\000a\000n\000c\000e}{subsection.11.31.2}% 452
+\BOOKMARK [1][-]{section.11.32}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000s\000u\000b\000o\000p\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 453
+\BOOKMARK [2][-]{subsection.11.32.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.32}% 454
+\BOOKMARK [1][-]{section.11.33}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000t\000r\000e\000e\000d\000i\000s\000t\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 455
+\BOOKMARK [2][-]{subsection.11.33.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.33}% 456
+\BOOKMARK [2][-]{subsection.11.33.2}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.33}% 457
+\BOOKMARK [3][-]{subsubsection.11.33.2.1}{\376\377\000m\000a\000k\000e\000\137\000t\000r\000e\000e}{subsection.11.33.2}% 458
+\BOOKMARK [3][-]{subsubsection.11.33.2.2}{\376\377\000t\000r\000e\000e\000\137\000e\000d\000i\000t\000\137\000d\000i\000s\000t\000a\000n\000c\000e}{subsection.11.33.2}% 459
+\BOOKMARK [3][-]{subsubsection.11.33.2.3}{\376\377\000f\000r\000e\000e\000\137\000t\000r\000e\000e}{subsection.11.33.2}% 460
+\BOOKMARK [1][-]{section.11.34}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000H\000/\000u\000t\000i\000l\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 461
+\BOOKMARK [2][-]{subsection.11.34.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.34}% 462
+\BOOKMARK [2][-]{subsection.11.34.2}{\376\377\000M\000a\000c\000r\000o\000\040\000D\000e\000f\000i\000n\000i\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.34}% 463
+\BOOKMARK [3][-]{subsubsection.11.34.2.1}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000E\000R\000R\000O\000R}{subsection.11.34.2}% 464
+\BOOKMARK [3][-]{subsubsection.11.34.2.2}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000Q\000U\000I\000T}{subsection.11.34.2}% 465
+\BOOKMARK [3][-]{subsubsection.11.34.2.3}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000M\000I\000S\000C}{subsection.11.34.2}% 466
+\BOOKMARK [3][-]{subsubsection.11.34.2.4}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000F\000A\000S\000T\000A\000\137\000H\000E\000A\000D\000E\000R}{subsection.11.34.2}% 467
+\BOOKMARK [3][-]{subsubsection.11.34.2.5}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000S\000E\000Q\000U\000E\000N\000C\000E}{subsection.11.34.2}% 468
+\BOOKMARK [3][-]{subsubsection.11.34.2.6}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T}{subsection.11.34.2}% 469
+\BOOKMARK [3][-]{subsubsection.11.34.2.7}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000N\000O\000\137\000T\000R\000U\000N\000C\000A\000T\000I\000O\000N}{subsection.11.34.2}% 470
+\BOOKMARK [3][-]{subsubsection.11.34.2.8}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000N\000O\000\137\000R\000E\000S\000T}{subsection.11.34.2}% 471
+\BOOKMARK [3][-]{subsubsection.11.34.2.9}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000N\000O\000\137\000S\000P\000A\000N}{subsection.11.34.2}% 472
+\BOOKMARK [3][-]{subsubsection.11.34.2.10}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000N\000O\000S\000K\000I\000P\000\137\000B\000L\000A\000N\000K\000\137\000L\000I\000N\000E\000S}{subsection.11.34.2}% 473
+\BOOKMARK [3][-]{subsubsection.11.34.2.11}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000B\000L\000A\000N\000K\000\137\000L\000I\000N\000E}{subsection.11.34.2}% 474
+\BOOKMARK [3][-]{subsubsection.11.34.2.12}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000N\000O\000S\000K\000I\000P\000\137\000C\000O\000M\000M\000E\000N\000T\000S}{subsection.11.34.2}% 475
+\BOOKMARK [3][-]{subsubsection.11.34.2.13}{\376\377\000V\000R\000N\000A\000\137\000I\000N\000P\000U\000T\000\137\000C\000O\000M\000M\000E\000N\000T}{subsection.11.34.2}% 476
+\BOOKMARK [3][-]{subsubsection.11.34.2.14}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000P\000I\000P\000E}{subsection.11.34.2}% 477
+\BOOKMARK [3][-]{subsubsection.11.34.2.15}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000D\000O\000T}{subsection.11.34.2}% 478
+\BOOKMARK [3][-]{subsubsection.11.34.2.16}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000X}{subsection.11.34.2}% 479
+\BOOKMARK [3][-]{subsubsection.11.34.2.17}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000A\000N\000G\000\137\000B\000R\000A\000C\000K}{subsection.11.34.2}% 480
+\BOOKMARK [3][-]{subsubsection.11.34.2.18}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000R\000N\000D\000\137\000B\000R\000A\000C\000K}{subsection.11.34.2}% 481
+\BOOKMARK [3][-]{subsubsection.11.34.2.19}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000M\000U\000L\000T\000I\000L\000I\000N\000E}{subsection.11.34.2}% 482
+\BOOKMARK [3][-]{subsubsection.11.34.2.20}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000N\000O\000\137\000H\000E\000A\000D\000E\000R}{subsection.11.34.2}% 483
+\BOOKMARK [3][-]{subsubsection.11.34.2.21}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000A\000L\000L}{subsection.11.34.2}% 484
+\BOOKMARK [3][-]{subsubsection.11.34.2.22}{\376\377\000V\000R\000N\000A\000\137\000C\000O\000N\000S\000T\000R\000A\000I\000N\000T\000\137\000G}{subsection.11.34.2}% 485
+\BOOKMARK [3][-]{subsubsection.11.34.2.23}{\376\377\000V\000R\000N\000A\000\137\000O\000P\000T\000I\000O\000N\000\137\000M\000U\000L\000T\000I\000L\000I\000N\000E}{subsection.11.34.2}% 486
+\BOOKMARK [3][-]{subsubsection.11.34.2.24}{\376\377\000M\000I\000N\0002}{subsection.11.34.2}% 487
+\BOOKMARK [3][-]{subsubsection.11.34.2.25}{\376\377\000M\000A\000X\0002}{subsection.11.34.2}% 488
+\BOOKMARK [3][-]{subsubsection.11.34.2.26}{\376\377\000M\000I\000N\0003}{subsection.11.34.2}% 489
+\BOOKMARK [3][-]{subsubsection.11.34.2.27}{\376\377\000M\000A\000X\0003}{subsection.11.34.2}% 490
+\BOOKMARK [3][-]{subsubsection.11.34.2.28}{\376\377\000X\000S\000T\000R}{subsection.11.34.2}% 491
+\BOOKMARK [3][-]{subsubsection.11.34.2.29}{\376\377\000S\000T\000R}{subsection.11.34.2}% 492
+\BOOKMARK [3][-]{subsubsection.11.34.2.30}{\376\377\000F\000I\000L\000E\000N\000A\000M\000E\000\137\000M\000A\000X\000\137\000L\000E\000N\000G\000T\000H}{subsection.11.34.2}% 493
+\BOOKMARK [3][-]{subsubsection.11.34.2.31}{\376\377\000F\000I\000L\000E\000N\000A\000M\000E\000\137\000I\000D\000\137\000L\000E\000N\000G\000T\000H}{subsection.11.34.2}% 494
+\BOOKMARK [2][-]{subsection.11.34.3}{\376\377\000F\000u\000n\000c\000t\000i\000o\000n\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.34}% 495
+\BOOKMARK [3][-]{subsubsection.11.34.3.1}{\376\377\000s\000p\000a\000c\000e}{subsection.11.34.3}% 496
+\BOOKMARK [3][-]{subsubsection.11.34.3.2}{\376\377\000x\000r\000e\000a\000l\000l\000o\000c}{subsection.11.34.3}% 497
+\BOOKMARK [3][-]{subsubsection.11.34.3.3}{\376\377\000n\000r\000e\000r\000r\000o\000r}{subsection.11.34.3}% 498
+\BOOKMARK [3][-]{subsubsection.11.34.3.4}{\376\377\000w\000a\000r\000n\000\137\000u\000s\000e\000r}{subsection.11.34.3}% 499
+\BOOKMARK [3][-]{subsubsection.11.34.3.5}{\376\377\000u\000r\000n}{subsection.11.34.3}% 500
+\BOOKMARK [3][-]{subsubsection.11.34.3.6}{\376\377\000i\000n\000t\000\137\000u\000r\000n}{subsection.11.34.3}% 501
+\BOOKMARK [3][-]{subsubsection.11.34.3.7}{\376\377\000t\000i\000m\000e\000\137\000s\000t\000a\000m\000p}{subsection.11.34.3}% 502
+\BOOKMARK [3][-]{subsubsection.11.34.3.8}{\376\377\000r\000a\000n\000d\000o\000m\000\137\000s\000t\000r\000i\000n\000g}{subsection.11.34.3}% 503
+\BOOKMARK [3][-]{subsubsection.11.34.3.9}{\376\377\000h\000a\000m\000m\000i\000n\000g}{subsection.11.34.3}% 504
+\BOOKMARK [3][-]{subsubsection.11.34.3.10}{\376\377\000h\000a\000m\000m\000i\000n\000g\000\137\000b\000o\000u\000n\000d}{subsection.11.34.3}% 505
+\BOOKMARK [3][-]{subsubsection.11.34.3.11}{\376\377\000g\000e\000t\000\137\000l\000i\000n\000e}{subsection.11.34.3}% 506
+\BOOKMARK [3][-]{subsubsection.11.34.3.12}{\376\377\000g\000e\000t\000\137\000i\000n\000p\000u\000t\000\137\000l\000i\000n\000e}{subsection.11.34.3}% 507
+\BOOKMARK [3][-]{subsubsection.11.34.3.13}{\376\377\000r\000e\000a\000d\000\137\000r\000e\000c\000o\000r\000d}{subsection.11.34.3}% 508
+\BOOKMARK [3][-]{subsubsection.11.34.3.14}{\376\377\000p\000a\000c\000k\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e}{subsection.11.34.3}% 509
+\BOOKMARK [3][-]{subsubsection.11.34.3.15}{\376\377\000u\000n\000p\000a\000c\000k\000\137\000s\000t\000r\000u\000c\000t\000u\000r\000e}{subsection.11.34.3}% 510
+\BOOKMARK [3][-]{subsubsection.11.34.3.16}{\376\377\000m\000a\000k\000e\000\137\000p\000a\000i\000r\000\137\000t\000a\000b\000l\000e}{subsection.11.34.3}% 511
+\BOOKMARK [3][-]{subsubsection.11.34.3.17}{\376\377\000c\000o\000p\000y\000\137\000p\000a\000i\000r\000\137\000t\000a\000b\000l\000e}{subsection.11.34.3}% 512
+\BOOKMARK [3][-]{subsubsection.11.34.3.18}{\376\377\000a\000l\000i\000m\000a\000k\000e\000\137\000p\000a\000i\000r\000\137\000t\000a\000b\000l\000e}{subsection.11.34.3}% 513
+\BOOKMARK [3][-]{subsubsection.11.34.3.19}{\376\377\000m\000a\000k\000e\000\137\000p\000a\000i\000r\000\137\000t\000a\000b\000l\000e\000\137\000s\000n\000o\000o\000p}{subsection.11.34.3}% 514
+\BOOKMARK [3][-]{subsubsection.11.34.3.20}{\376\377\000m\000a\000k\000e\000\137\000l\000o\000o\000p\000\137\000i\000n\000d\000e\000x\000\137\000p\000t}{subsection.11.34.3}% 515
+\BOOKMARK [3][-]{subsubsection.11.34.3.21}{\376\377\000p\000r\000i\000n\000t\000\137\000t\000t\000y\000\137\000i\000n\000p\000u\000t\000\137\000s\000e\000q}{subsection.11.34.3}% 516
+\BOOKMARK [3][-]{subsubsection.11.34.3.22}{\376\377\000p\000r\000i\000n\000t\000\137\000t\000t\000y\000\137\000i\000n\000p\000u\000t\000\137\000s\000e\000q\000\137\000s\000t\000r}{subsection.11.34.3}% 517
+\BOOKMARK [3][-]{subsubsection.11.34.3.23}{\376\377\000p\000r\000i\000n\000t\000\137\000t\000t\000y\000\137\000c\000o\000n\000s\000t\000r\000a\000i\000n\000t}{subsection.11.34.3}% 518
+\BOOKMARK [3][-]{subsubsection.11.34.3.24}{\376\377\000s\000t\000r\000\137\000D\000N\000A\0002\000R\000N\000A}{subsection.11.34.3}% 519
+\BOOKMARK [3][-]{subsubsection.11.34.3.25}{\376\377\000s\000t\000r\000\137\000u\000p\000p\000e\000r\000c\000a\000s\000e}{subsection.11.34.3}% 520
+\BOOKMARK [3][-]{subsubsection.11.34.3.26}{\376\377\000g\000e\000t\000\137\000i\000i\000n\000d\000x}{subsection.11.34.3}% 521
+\BOOKMARK [3][-]{subsubsection.11.34.3.27}{\376\377\000g\000e\000t\000\137\000i\000n\000d\000x}{subsection.11.34.3}% 522
+\BOOKMARK [3][-]{subsubsection.11.34.3.28}{\376\377\000c\000o\000n\000s\000t\000r\000a\000i\000n\000\137\000p\000t\000y\000p\000e\000s}{subsection.11.34.3}% 523
+\BOOKMARK [2][-]{subsection.11.34.4}{\376\377\000V\000a\000r\000i\000a\000b\000l\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n}{section.11.34}% 524
+\BOOKMARK [3][-]{subsubsection.11.34.4.1}{\376\377\000x\000s\000u\000b\000i}{subsection.11.34.4}% 525
+\BOOKMARK [1][-]{section.11.35}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000l\000i\000b\000/\0001\000.\0008\000.\0004\000\137\000e\000p\000a\000r\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 526
+\BOOKMARK [2][-]{subsection.11.35.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.35}% 527
+\BOOKMARK [1][-]{section.11.36}{\376\377\000/\000h\000o\000m\000e\000/\000a\000s\000h\000e\000r\000s\000t\000n\000e\000v\000/\000P\000r\000o\000j\000e\000c\000t\000s\000/\000J\000a\000v\000a\000.\000p\000r\000o\000j\000e\000c\000t\000s\000/\000j\000a\000b\000a\000w\000s\000/\000s\000e\000c\000u\000r\000e\000-\000g\000i\000t\000/\000d\000e\000v\000e\000l\000o\000p\000/\000b\000i\000n\000a\000r\000i\000e\000s\000/\000s\000r\000c\000/\000V\000i\000e\000n\000n\000a\000R\000N\000A\000/\000l\000i\000b\000/\0001\000.\0008\000.\0004\000\137\000i\000n\000t\000l\000o\000o\000p\000s\000.\000h\000\040\000F\000i\000l\000e\000\040\000R\000e\000f\000e\000r\000e\000n\000c\000e}{chapter.11}% 528
+\BOOKMARK [2][-]{subsection.11.36.1}{\376\377\000D\000e\000t\000a\000i\000l\000e\000d\000\040\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.11.36}% 529
+\BOOKMARK [-1][-]{chapter*.131}{\376\377\000I\000n\000d\000e\000x}{}% 530
--- /dev/null
+\batchmode
+\documentclass{book}
+\usepackage[a4paper,top=2.5cm,bottom=2.5cm,left=2.5cm,right=2.5cm]{geometry}
+\usepackage{makeidx}
+\usepackage{natbib}
+\usepackage{graphicx}
+\usepackage{multicol}
+\usepackage{float}
+\usepackage{listings}
+\usepackage{color}
+\usepackage{ifthen}
+\usepackage[table]{xcolor}
+\usepackage{textcomp}
+\usepackage{alltt}
+\usepackage{ifpdf}
+\ifpdf
+\usepackage[pdftex,
+ pagebackref=true,
+ colorlinks=true,
+ linkcolor=blue,
+ unicode
+ ]{hyperref}
+\else
+\usepackage[ps2pdf,
+ pagebackref=true,
+ colorlinks=true,
+ linkcolor=blue,
+ unicode
+ ]{hyperref}
+\usepackage{pspicture}
+\fi
+\usepackage[utf8]{inputenc}
+\usepackage{mathptmx}
+\usepackage[scaled=.90]{helvet}
+\usepackage{courier}
+\usepackage{sectsty}
+\usepackage{amssymb}
+\usepackage[titles]{tocloft}
+\usepackage{doxygen}
+\lstset{language=C++,inputencoding=utf8,basicstyle=\footnotesize,breaklines=true,breakatwhitespace=true,tabsize=2,numbers=left }
+\makeindex
+\setcounter{tocdepth}{3}
+\renewcommand{\footrulewidth}{0.4pt}
+\renewcommand{\familydefault}{\sfdefault}
+\hfuzz=15pt
+\setlength{\emergencystretch}{15pt}
+\hbadness=750
+\tolerance=750
+\begin{document}
+\hypersetup{pageanchor=false,citecolor=blue}
+\begin{titlepage}
+\vspace*{7cm}
+\begin{center}
+{\Large R\-N\-Alib-\/2.1.2 }\\
+\vspace*{1cm}
+{\large Generated by Doxygen 1.8.3.1}\\
+\vspace*{0.5cm}
+{\small Thu Sep 5 2013 11:51:49}\\
+\end{center}
+\end{titlepage}
+\clearemptydoublepage
+\pagenumbering{roman}
+\tableofcontents
+\clearemptydoublepage
+\pagenumbering{arabic}
+\hypersetup{pageanchor=true,citecolor=blue}
+\chapter{Vienna\-R\-N\-A Package core -\/ R\-N\-Alib}
+\label{index}\hypertarget{index}{}\input{index}
+\chapter{Parsing and Comparing -\/ Functions to Manipulate Structures}
+\label{mp_parse}
+\hypertarget{mp_parse}{}
+\input{mp_parse}
+\chapter{Utilities -\/ Odds and Ends}
+\label{mp_utils}
+\hypertarget{mp_utils}{}
+\input{mp_utils}
+\chapter{Example -\/ A Small Example Program}
+\label{mp_example}
+\hypertarget{mp_example}{}
+\input{mp_example}
+\chapter{Deprecated List}
+\label{deprecated}
+\hypertarget{deprecated}{}
+\input{deprecated}
+\chapter{Module Index}
+\input{modules}
+\chapter{Data Structure Index}
+\input{annotated}
+\chapter{File Index}
+\input{files}
+\chapter{Module Documentation}
+\input{group__folding__routines}
+\include{group__mfe__fold}
+\include{group__pf__fold}
+\include{group__mea__fold}
+\include{group__centroid__fold}
+\include{group__subopt__fold}
+\include{group__subopt__zuker}
+\include{group__subopt__wuchty}
+\include{group__subopt__stochbt}
+\include{group__cofold}
+\include{group__mfe__cofold}
+\include{group__pf__cofold}
+\include{group__up__cofold}
+\include{group__consensus__fold}
+\include{group__consensus__mfe__fold}
+\include{group__consensus__pf__fold}
+\include{group__consensus__stochbt}
+\include{group__local__fold}
+\include{group__local__mfe__fold}
+\include{group__local__pf__fold}
+\include{group__local__consensus__fold}
+\include{group__energy__parameters}
+\include{group__energy__parameters__rw}
+\include{group__energy__parameters__convert}
+\include{group__eval}
+\include{group__inverse__fold}
+\include{group__class__fold}
+\include{group__kl__neighborhood}
+\include{group__kl__neighborhood__mfe}
+\include{group__kl__neighborhood__pf}
+\include{group__kl__neighborhood__stochbt}
+\include{group__dos}
+\include{group__parse}
+\chapter{Data Structure Documentation}
+\input{structbondT}
+\input{structbondTEn}
+\input{structcofoldF}
+\input{structConcEnt}
+\input{structconstrain}
+\input{structCOORDINATE}
+\input{structcpair}
+\input{structduplexT}
+\input{structdupVar}
+\input{structfolden}
+\input{structinteract}
+\input{structintermediate__t}
+\input{structINTERVAL}
+\input{structLIST}
+\input{structLST__BUCKET}
+\input{structmodel__detailsT}
+\input{structmove__t}
+\input{structPAIR}
+\input{structpair__info}
+\input{structpairpro}
+\input{structparamT}
+\input{structpath__t}
+\input{structpf__paramT}
+\input{structplist}
+\input{structPostorder__list}
+\input{structpu__contrib}
+\input{structpu__out}
+\input{structsect}
+\input{structsnoopT}
+\input{structSOLUTION}
+\input{structstruct__en}
+\input{structsvm__model}
+\input{structswString}
+\input{structTree}
+\input{structTwoDfold__solution}
+\input{structTwoDfold__vars}
+\input{structTwoDpfold__solution}
+\input{structTwoDpfold__vars}
+\chapter{File Documentation}
+\input{2Dfold_8h}
+\input{2Dpfold_8h}
+\input{alifold_8h}
+\input{cofold_8h}
+\input{convert__epars_8h}
+\input{data__structures_8h}
+\input{dist__vars_8h}
+\input{duplex_8h}
+\input{edit__cost_8h}
+\input{energy__const_8h}
+\input{findpath_8h}
+\input{fold_8h}
+\input{fold__vars_8h}
+\input{gquad_8h}
+\input{inverse_8h}
+\input{Lfold_8h}
+\input{loop__energies_8h}
+\input{LPfold_8h}
+\input{MEA_8h}
+\input{mm_8h}
+\input{naview_8h}
+\input{params_8h}
+\input{part__func_8h}
+\input{part__func__co_8h}
+\input{part__func__up_8h}
+\input{plot__layouts_8h}
+\input{profiledist_8h}
+\input{PS__dot_8h}
+\input{read__epars_8h}
+\input{RNAstruct_8h}
+\input{stringdist_8h}
+\input{subopt_8h}
+\input{treedist_8h}
+\input{utils_8h}
+\input{1_88_84__epars_8h}
+\input{1_88_84__intloops_8h}
+\newpage \bibliographystyle{plain}
+\bibliography{viennarna}
+\addcontentsline{toc}{part}{Index}
+\printindex
+\end{document}
--- /dev/null
+\contentsline {chapter}{\numberline {1}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A Package core -\/ R\discretionary {-}{}{}N\discretionary {-}{}{}Alib}{1}{chapter.1}
+\contentsline {section}{\numberline {1.1}Introduction}{1}{section.1.1}
+\contentsline {chapter}{\numberline {2}Parsing and Comparing -\/ Functions to Manipulate Structures}{3}{chapter.2}
+\contentsline {chapter}{\numberline {3}Utilities -\/ Odds and Ends}{5}{chapter.3}
+\contentsline {section}{\numberline {3.1}Producing secondary structure graphs}{5}{section.3.1}
+\contentsline {chapter}{\numberline {4}Example -\/ A Small Example Program}{7}{chapter.4}
+\contentsline {chapter}{\numberline {5}Deprecated List}{9}{chapter.5}
+\contentsline {chapter}{\numberline {6}Module Index}{11}{chapter.6}
+\contentsline {section}{\numberline {6.1}Modules}{11}{section.6.1}
+\contentsline {chapter}{\numberline {7}Data Structure Index}{13}{chapter.7}
+\contentsline {section}{\numberline {7.1}Data Structures}{13}{section.7.1}
+\contentsline {chapter}{\numberline {8}File Index}{15}{chapter.8}
+\contentsline {section}{\numberline {8.1}File List}{15}{section.8.1}
+\contentsline {chapter}{\numberline {9}Module Documentation}{19}{chapter.9}
+\contentsline {section}{\numberline {9.1}R\discretionary {-}{}{}N\discretionary {-}{}{}A Secondary Structure Folding}{19}{section.9.1}
+\contentsline {subsection}{\numberline {9.1.1}Detailed Description}{21}{subsection.9.1.1}
+\contentsline {section}{\numberline {9.2}Calculating Minimum Free Energy (M\discretionary {-}{}{}F\discretionary {-}{}{}E) Structures}{22}{section.9.2}
+\contentsline {subsection}{\numberline {9.2.1}Detailed Description}{22}{subsection.9.2.1}
+\contentsline {subsection}{\numberline {9.2.2}Function Documentation}{23}{subsection.9.2.2}
+\contentsline {subsubsection}{\numberline {9.2.2.1}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{23}{subsubsection.9.2.2.1}
+\contentsline {subsubsection}{\numberline {9.2.2.2}fold}{24}{subsubsection.9.2.2.2}
+\contentsline {subsubsection}{\numberline {9.2.2.3}circfold}{24}{subsubsection.9.2.2.3}
+\contentsline {section}{\numberline {9.3}Calculating Partition Functions and Pair Probabilities}{25}{section.9.3}
+\contentsline {subsection}{\numberline {9.3.1}Detailed Description}{26}{subsection.9.3.1}
+\contentsline {subsection}{\numberline {9.3.2}Function Documentation}{26}{subsection.9.3.2}
+\contentsline {subsubsection}{\numberline {9.3.2.1}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{26}{subsubsection.9.3.2.1}
+\contentsline {subsubsection}{\numberline {9.3.2.2}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{27}{subsubsection.9.3.2.2}
+\contentsline {subsubsection}{\numberline {9.3.2.3}pf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{28}{subsubsection.9.3.2.3}
+\contentsline {subsubsection}{\numberline {9.3.2.4}free\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{29}{subsubsection.9.3.2.4}
+\contentsline {subsubsection}{\numberline {9.3.2.5}update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}{29}{subsubsection.9.3.2.5}
+\contentsline {subsubsection}{\numberline {9.3.2.6}export\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{29}{subsubsection.9.3.2.6}
+\contentsline {subsubsection}{\numberline {9.3.2.7}assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}pr}{30}{subsubsection.9.3.2.7}
+\contentsline {subsubsection}{\numberline {9.3.2.8}get\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{30}{subsubsection.9.3.2.8}
+\contentsline {subsubsection}{\numberline {9.3.2.9}mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{30}{subsubsection.9.3.2.9}
+\contentsline {subsubsection}{\numberline {9.3.2.10}mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}distance\discretionary {-}{}{}\_\discretionary {-}{}{}pr}{31}{subsubsection.9.3.2.10}
+\contentsline {section}{\numberline {9.4}Compute the structure with maximum expected accuracy (M\discretionary {-}{}{}E\discretionary {-}{}{}A)}{32}{section.9.4}
+\contentsline {section}{\numberline {9.5}Compute the centroid structure}{33}{section.9.5}
+\contentsline {subsection}{\numberline {9.5.1}Detailed Description}{33}{subsection.9.5.1}
+\contentsline {subsection}{\numberline {9.5.2}Function Documentation}{33}{subsection.9.5.2}
+\contentsline {subsubsection}{\numberline {9.5.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pl}{33}{subsubsection.9.5.2.1}
+\contentsline {subsubsection}{\numberline {9.5.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}centroid\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pr}{33}{subsubsection.9.5.2.2}
+\contentsline {section}{\numberline {9.6}Enumerating Suboptimal Structures}{35}{section.9.6}
+\contentsline {subsection}{\numberline {9.6.1}Detailed Description}{35}{subsection.9.6.1}
+\contentsline {section}{\numberline {9.7}Suboptimal structures according to Zuker et al. 1989}{36}{section.9.7}
+\contentsline {subsection}{\numberline {9.7.1}Detailed Description}{36}{subsection.9.7.1}
+\contentsline {subsection}{\numberline {9.7.2}Function Documentation}{36}{subsection.9.7.2}
+\contentsline {subsubsection}{\numberline {9.7.2.1}zukersubopt}{36}{subsubsection.9.7.2.1}
+\contentsline {section}{\numberline {9.8}Suboptimal structures within an energy band arround the M\discretionary {-}{}{}F\discretionary {-}{}{}E}{37}{section.9.8}
+\contentsline {subsection}{\numberline {9.8.1}Detailed Description}{37}{subsection.9.8.1}
+\contentsline {subsection}{\numberline {9.8.2}Function Documentation}{37}{subsection.9.8.2}
+\contentsline {subsubsection}{\numberline {9.8.2.1}subopt}{37}{subsubsection.9.8.2.1}
+\contentsline {subsubsection}{\numberline {9.8.2.2}subopt\discretionary {-}{}{}\_\discretionary {-}{}{}circ}{38}{subsubsection.9.8.2.2}
+\contentsline {section}{\numberline {9.9}Stochastic backtracking in the Ensemble}{39}{section.9.9}
+\contentsline {subsection}{\numberline {9.9.1}Detailed Description}{39}{subsection.9.9.1}
+\contentsline {subsection}{\numberline {9.9.2}Function Documentation}{39}{subsection.9.9.2}
+\contentsline {subsubsection}{\numberline {9.9.2.1}pbacktrack}{39}{subsubsection.9.9.2.1}
+\contentsline {subsubsection}{\numberline {9.9.2.2}pbacktrack\discretionary {-}{}{}\_\discretionary {-}{}{}circ}{40}{subsubsection.9.9.2.2}
+\contentsline {subsection}{\numberline {9.9.3}Variable Documentation}{40}{subsection.9.9.3}
+\contentsline {subsubsection}{\numberline {9.9.3.1}st\discretionary {-}{}{}\_\discretionary {-}{}{}back}{40}{subsubsection.9.9.3.1}
+\contentsline {section}{\numberline {9.10}Calculate Secondary Structures of two R\discretionary {-}{}{}N\discretionary {-}{}{}As upon Dimerization}{41}{section.9.10}
+\contentsline {subsection}{\numberline {9.10.1}Detailed Description}{41}{subsection.9.10.1}
+\contentsline {section}{\numberline {9.11}M\discretionary {-}{}{}F\discretionary {-}{}{}E Structures of two hybridized Sequences}{42}{section.9.11}
+\contentsline {subsection}{\numberline {9.11.1}Detailed Description}{42}{subsection.9.11.1}
+\contentsline {subsection}{\numberline {9.11.2}Function Documentation}{42}{subsection.9.11.2}
+\contentsline {subsubsection}{\numberline {9.11.2.1}cofold}{42}{subsubsection.9.11.2.1}
+\contentsline {subsubsection}{\numberline {9.11.2.2}export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays\discretionary {-}{}{}\_\discretionary {-}{}{}gq}{43}{subsubsection.9.11.2.2}
+\contentsline {subsubsection}{\numberline {9.11.2.3}export\discretionary {-}{}{}\_\discretionary {-}{}{}cofold\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{43}{subsubsection.9.11.2.3}
+\contentsline {section}{\numberline {9.12}Partition Function for two hybridized Sequences}{44}{section.9.12}
+\contentsline {subsection}{\numberline {9.12.1}Detailed Description}{45}{subsection.9.12.1}
+\contentsline {subsection}{\numberline {9.12.2}Function Documentation}{45}{subsection.9.12.2}
+\contentsline {subsubsection}{\numberline {9.12.2.1}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{45}{subsubsection.9.12.2.1}
+\contentsline {subsubsection}{\numberline {9.12.2.2}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{45}{subsubsection.9.12.2.2}
+\contentsline {subsubsection}{\numberline {9.12.2.3}export\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{46}{subsubsection.9.12.2.3}
+\contentsline {subsubsection}{\numberline {9.12.2.4}update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params}{46}{subsubsection.9.12.2.4}
+\contentsline {subsubsection}{\numberline {9.12.2.5}update\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}\_\discretionary {-}{}{}par}{46}{subsubsection.9.12.2.5}
+\contentsline {subsubsection}{\numberline {9.12.2.6}compute\discretionary {-}{}{}\_\discretionary {-}{}{}probabilities}{47}{subsubsection.9.12.2.6}
+\contentsline {subsubsection}{\numberline {9.12.2.7}get\discretionary {-}{}{}\_\discretionary {-}{}{}concentrations}{47}{subsubsection.9.12.2.7}
+\contentsline {section}{\numberline {9.13}Partition Function for two hybridized Sequences as a stepwise Process}{48}{section.9.13}
+\contentsline {subsection}{\numberline {9.13.1}Detailed Description}{48}{subsection.9.13.1}
+\contentsline {subsection}{\numberline {9.13.2}Function Documentation}{48}{subsection.9.13.2}
+\contentsline {subsubsection}{\numberline {9.13.2.1}pf\discretionary {-}{}{}\_\discretionary {-}{}{}unstru}{48}{subsubsection.9.13.2.1}
+\contentsline {subsubsection}{\numberline {9.13.2.2}pf\discretionary {-}{}{}\_\discretionary {-}{}{}interact}{49}{subsubsection.9.13.2.2}
+\contentsline {section}{\numberline {9.14}Predicting Consensus Structures from Alignment(s)}{50}{section.9.14}
+\contentsline {subsection}{\numberline {9.14.1}Detailed Description}{51}{subsection.9.14.1}
+\contentsline {subsection}{\numberline {9.14.2}Function Documentation}{51}{subsection.9.14.2}
+\contentsline {subsubsection}{\numberline {9.14.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}mpi}{51}{subsubsection.9.14.2.1}
+\contentsline {subsubsection}{\numberline {9.14.2.2}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}alistruct}{51}{subsubsection.9.14.2.2}
+\contentsline {subsubsection}{\numberline {9.14.2.3}encode\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}sequence}{52}{subsubsection.9.14.2.3}
+\contentsline {subsubsection}{\numberline {9.14.2.4}alloc\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{52}{subsubsection.9.14.2.4}
+\contentsline {subsubsection}{\numberline {9.14.2.5}free\discretionary {-}{}{}\_\discretionary {-}{}{}sequence\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{52}{subsubsection.9.14.2.5}
+\contentsline {subsubsection}{\numberline {9.14.2.6}get\discretionary {-}{}{}\_\discretionary {-}{}{}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}arrays}{53}{subsubsection.9.14.2.6}
+\contentsline {subsection}{\numberline {9.14.3}Variable Documentation}{53}{subsection.9.14.3}
+\contentsline {subsubsection}{\numberline {9.14.3.1}cv\discretionary {-}{}{}\_\discretionary {-}{}{}fact}{53}{subsubsection.9.14.3.1}
+\contentsline {subsubsection}{\numberline {9.14.3.2}nc\discretionary {-}{}{}\_\discretionary {-}{}{}fact}{53}{subsubsection.9.14.3.2}
+\contentsline {section}{\numberline {9.15}M\discretionary {-}{}{}F\discretionary {-}{}{}E Consensus Structures for Sequence Alignment(s)}{54}{section.9.15}
+\contentsline {subsection}{\numberline {9.15.1}Detailed Description}{54}{subsection.9.15.1}
+\contentsline {subsection}{\numberline {9.15.2}Function Documentation}{54}{subsection.9.15.2}
+\contentsline {subsubsection}{\numberline {9.15.2.1}alifold}{54}{subsubsection.9.15.2.1}
+\contentsline {subsubsection}{\numberline {9.15.2.2}circalifold}{54}{subsubsection.9.15.2.2}
+\contentsline {section}{\numberline {9.16}Partition Function and Base Pair Probabilities for Sequence Alignment(s)}{56}{section.9.16}
+\contentsline {subsection}{\numberline {9.16.1}Detailed Description}{56}{subsection.9.16.1}
+\contentsline {subsection}{\numberline {9.16.2}Function Documentation}{56}{subsection.9.16.2}
+\contentsline {subsubsection}{\numberline {9.16.2.1}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}\_\discretionary {-}{}{}par}{56}{subsubsection.9.16.2.1}
+\contentsline {subsubsection}{\numberline {9.16.2.2}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{56}{subsubsection.9.16.2.2}
+\contentsline {subsubsection}{\numberline {9.16.2.3}alipf\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{57}{subsubsection.9.16.2.3}
+\contentsline {subsubsection}{\numberline {9.16.2.4}export\discretionary {-}{}{}\_\discretionary {-}{}{}ali\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{57}{subsubsection.9.16.2.4}
+\contentsline {section}{\numberline {9.17}Stochastic Backtracking of Consensus Structures from Sequence Alignment(s)}{58}{section.9.17}
+\contentsline {subsection}{\numberline {9.17.1}Detailed Description}{58}{subsection.9.17.1}
+\contentsline {subsection}{\numberline {9.17.2}Function Documentation}{58}{subsection.9.17.2}
+\contentsline {subsubsection}{\numberline {9.17.2.1}alipbacktrack}{58}{subsubsection.9.17.2.1}
+\contentsline {section}{\numberline {9.18}Predicting Locally stable structures of large sequences}{59}{section.9.18}
+\contentsline {subsection}{\numberline {9.18.1}Detailed Description}{59}{subsection.9.18.1}
+\contentsline {section}{\numberline {9.19}Local M\discretionary {-}{}{}F\discretionary {-}{}{}E structure Prediction and Z-\/scores}{60}{section.9.19}
+\contentsline {subsection}{\numberline {9.19.1}Detailed Description}{60}{subsection.9.19.1}
+\contentsline {subsection}{\numberline {9.19.2}Function Documentation}{60}{subsection.9.19.2}
+\contentsline {subsubsection}{\numberline {9.19.2.1}Lfold}{60}{subsubsection.9.19.2.1}
+\contentsline {subsubsection}{\numberline {9.19.2.2}Lfoldz}{60}{subsubsection.9.19.2.2}
+\contentsline {section}{\numberline {9.20}Partition functions for locally stable secondary structures}{61}{section.9.20}
+\contentsline {subsection}{\numberline {9.20.1}Detailed Description}{61}{subsection.9.20.1}
+\contentsline {subsection}{\numberline {9.20.2}Function Documentation}{61}{subsection.9.20.2}
+\contentsline {subsubsection}{\numberline {9.20.2.1}update\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}params\discretionary {-}{}{}L\discretionary {-}{}{}P}{61}{subsubsection.9.20.2.1}
+\contentsline {subsubsection}{\numberline {9.20.2.2}pfl\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{61}{subsubsection.9.20.2.2}
+\contentsline {subsubsection}{\numberline {9.20.2.3}putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob}{62}{subsubsection.9.20.2.3}
+\contentsline {subsubsection}{\numberline {9.20.2.4}putoutp\discretionary {-}{}{}U\discretionary {-}{}{}\_\discretionary {-}{}{}prob\discretionary {-}{}{}\_\discretionary {-}{}{}bin}{62}{subsubsection.9.20.2.4}
+\contentsline {section}{\numberline {9.21}Local M\discretionary {-}{}{}F\discretionary {-}{}{}E consensus structures for Sequence Alignments}{63}{section.9.21}
+\contentsline {subsection}{\numberline {9.21.1}Detailed Description}{63}{subsection.9.21.1}
+\contentsline {subsection}{\numberline {9.21.2}Function Documentation}{63}{subsection.9.21.2}
+\contentsline {subsubsection}{\numberline {9.21.2.1}ali\discretionary {-}{}{}Lfold}{63}{subsubsection.9.21.2.1}
+\contentsline {section}{\numberline {9.22}Change and Precalculate Energy Parameter Sets and Boltzmann Factors}{64}{section.9.22}
+\contentsline {subsection}{\numberline {9.22.1}Detailed Description}{64}{subsection.9.22.1}
+\contentsline {subsection}{\numberline {9.22.2}Function Documentation}{65}{subsection.9.22.2}
+\contentsline {subsubsection}{\numberline {9.22.2.1}scale\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}{65}{subsubsection.9.22.2.1}
+\contentsline {subsubsection}{\numberline {9.22.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}{65}{subsubsection.9.22.2.2}
+\contentsline {subsubsection}{\numberline {9.22.2.3}get\discretionary {-}{}{}\_\discretionary {-}{}{}scaled\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}parameters}{65}{subsubsection.9.22.2.3}
+\contentsline {subsubsection}{\numberline {9.22.2.4}get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factors}{65}{subsubsection.9.22.2.4}
+\contentsline {subsubsection}{\numberline {9.22.2.5}get\discretionary {-}{}{}\_\discretionary {-}{}{}boltzmann\discretionary {-}{}{}\_\discretionary {-}{}{}factor\discretionary {-}{}{}\_\discretionary {-}{}{}copy}{66}{subsubsection.9.22.2.5}
+\contentsline {section}{\numberline {9.23}Reading/\discretionary {-}{}{}Writing energy parameter sets from/to File}{67}{section.9.23}
+\contentsline {subsection}{\numberline {9.23.1}Detailed Description}{67}{subsection.9.23.1}
+\contentsline {subsection}{\numberline {9.23.2}Function Documentation}{67}{subsection.9.23.2}
+\contentsline {subsubsection}{\numberline {9.23.2.1}read\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}{67}{subsubsection.9.23.2.1}
+\contentsline {subsubsection}{\numberline {9.23.2.2}write\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}{67}{subsubsection.9.23.2.2}
+\contentsline {section}{\numberline {9.24}Converting energy parameter files}{69}{section.9.24}
+\contentsline {subsection}{\numberline {9.24.1}Detailed Description}{69}{subsection.9.24.1}
+\contentsline {subsection}{\numberline {9.24.2}Macro Definition Documentation}{70}{subsection.9.24.2}
+\contentsline {subsubsection}{\numberline {9.24.2.1}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}{70}{subsubsection.9.24.2.1}
+\contentsline {subsubsection}{\numberline {9.24.2.2}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}{70}{subsubsection.9.24.2.2}
+\contentsline {subsubsection}{\numberline {9.24.2.3}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}{70}{subsubsection.9.24.2.3}
+\contentsline {subsubsection}{\numberline {9.24.2.4}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}{70}{subsubsection.9.24.2.4}
+\contentsline {subsubsection}{\numberline {9.24.2.5}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}{70}{subsubsection.9.24.2.5}
+\contentsline {subsubsection}{\numberline {9.24.2.6}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}1\discretionary {-}{}{}N}{70}{subsubsection.9.24.2.6}
+\contentsline {subsubsection}{\numberline {9.24.2.7}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}23}{70}{subsubsection.9.24.2.7}
+\contentsline {subsubsection}{\numberline {9.24.2.8}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I}{70}{subsubsection.9.24.2.8}
+\contentsline {subsubsection}{\numberline {9.24.2.9}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}X\discretionary {-}{}{}T}{70}{subsubsection.9.24.2.9}
+\contentsline {subsubsection}{\numberline {9.24.2.10}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E5}{70}{subsubsection.9.24.2.10}
+\contentsline {subsubsection}{\numberline {9.24.2.11}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}L\discretionary {-}{}{}E3}{70}{subsubsection.9.24.2.11}
+\contentsline {subsubsection}{\numberline {9.24.2.12}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}11}{70}{subsubsection.9.24.2.12}
+\contentsline {subsubsection}{\numberline {9.24.2.13}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}21}{71}{subsubsection.9.24.2.13}
+\contentsline {subsubsection}{\numberline {9.24.2.14}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}22}{71}{subsubsection.9.24.2.14}
+\contentsline {subsubsection}{\numberline {9.24.2.15}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}G\discretionary {-}{}{}E}{71}{subsubsection.9.24.2.15}
+\contentsline {subsubsection}{\numberline {9.24.2.16}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}{71}{subsubsection.9.24.2.16}
+\contentsline {subsubsection}{\numberline {9.24.2.17}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}L}{71}{subsubsection.9.24.2.17}
+\contentsline {subsubsection}{\numberline {9.24.2.18}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}{71}{subsubsection.9.24.2.18}
+\contentsline {subsubsection}{\numberline {9.24.2.19}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}P}{71}{subsubsection.9.24.2.19}
+\contentsline {subsubsection}{\numberline {9.24.2.20}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}L\discretionary {-}{}{}A}{71}{subsubsection.9.24.2.20}
+\contentsline {subsubsection}{\numberline {9.24.2.21}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}I\discretionary {-}{}{}O}{71}{subsubsection.9.24.2.21}
+\contentsline {subsubsection}{\numberline {9.24.2.22}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}V\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}U\discretionary {-}{}{}M\discretionary {-}{}{}P}{71}{subsubsection.9.24.2.22}
+\contentsline {subsection}{\numberline {9.24.3}Function Documentation}{71}{subsection.9.24.3}
+\contentsline {subsubsection}{\numberline {9.24.3.1}convert\discretionary {-}{}{}\_\discretionary {-}{}{}parameter\discretionary {-}{}{}\_\discretionary {-}{}{}file}{71}{subsubsection.9.24.3.1}
+\contentsline {section}{\numberline {9.25}Energy evaluation}{73}{section.9.25}
+\contentsline {subsection}{\numberline {9.25.1}Detailed Description}{73}{subsection.9.25.1}
+\contentsline {subsection}{\numberline {9.25.2}Function Documentation}{73}{subsection.9.25.2}
+\contentsline {subsubsection}{\numberline {9.25.2.1}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{73}{subsubsection.9.25.2.1}
+\contentsline {subsubsection}{\numberline {9.25.2.2}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}{74}{subsubsection.9.25.2.2}
+\contentsline {subsubsection}{\numberline {9.25.2.3}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{74}{subsubsection.9.25.2.3}
+\contentsline {subsubsection}{\numberline {9.25.2.4}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}par}{75}{subsubsection.9.25.2.4}
+\contentsline {subsubsection}{\numberline {9.25.2.5}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}structure\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{75}{subsubsection.9.25.2.5}
+\contentsline {subsubsection}{\numberline {9.25.2.6}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt\discretionary {-}{}{}\_\discretionary {-}{}{}par}{76}{subsubsection.9.25.2.6}
+\contentsline {section}{\numberline {9.26}Searching Sequences for Predefined Structures}{77}{section.9.26}
+\contentsline {subsection}{\numberline {9.26.1}Detailed Description}{77}{subsection.9.26.1}
+\contentsline {subsection}{\numberline {9.26.2}Function Documentation}{77}{subsection.9.26.2}
+\contentsline {subsubsection}{\numberline {9.26.2.1}inverse\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{77}{subsubsection.9.26.2.1}
+\contentsline {subsubsection}{\numberline {9.26.2.2}inverse\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{78}{subsubsection.9.26.2.2}
+\contentsline {subsection}{\numberline {9.26.3}Variable Documentation}{78}{subsection.9.26.3}
+\contentsline {subsubsection}{\numberline {9.26.3.1}final\discretionary {-}{}{}\_\discretionary {-}{}{}cost}{78}{subsubsection.9.26.3.1}
+\contentsline {subsubsection}{\numberline {9.26.3.2}give\discretionary {-}{}{}\_\discretionary {-}{}{}up}{78}{subsubsection.9.26.3.2}
+\contentsline {subsubsection}{\numberline {9.26.3.3}inv\discretionary {-}{}{}\_\discretionary {-}{}{}verbose}{78}{subsubsection.9.26.3.3}
+\contentsline {section}{\numberline {9.27}Classified Dynamic Programming}{79}{section.9.27}
+\contentsline {subsection}{\numberline {9.27.1}Detailed Description}{79}{subsection.9.27.1}
+\contentsline {section}{\numberline {9.28}Distance based partitioning of the Secondary Structure Space}{80}{section.9.28}
+\contentsline {subsection}{\numberline {9.28.1}Detailed Description}{80}{subsection.9.28.1}
+\contentsline {section}{\numberline {9.29}Calculating M\discretionary {-}{}{}F\discretionary {-}{}{}E representatives of a Distance Based Partitioning}{81}{section.9.29}
+\contentsline {subsection}{\numberline {9.29.1}Detailed Description}{81}{subsection.9.29.1}
+\contentsline {subsection}{\numberline {9.29.2}Function Documentation}{81}{subsection.9.29.2}
+\contentsline {subsubsection}{\numberline {9.29.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{81}{subsubsection.9.29.2.1}
+\contentsline {subsubsection}{\numberline {9.29.2.2}destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{82}{subsubsection.9.29.2.2}
+\contentsline {subsubsection}{\numberline {9.29.2.3}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}List}{82}{subsubsection.9.29.2.3}
+\contentsline {subsubsection}{\numberline {9.29.2.4}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}f5}{83}{subsubsection.9.29.2.4}
+\contentsline {section}{\numberline {9.30}Calculate Partition Functions of a Distance Based Partitioning}{84}{section.9.30}
+\contentsline {subsection}{\numberline {9.30.1}Detailed Description}{84}{subsection.9.30.1}
+\contentsline {subsection}{\numberline {9.30.2}Function Documentation}{84}{subsection.9.30.2}
+\contentsline {subsubsection}{\numberline {9.30.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{84}{subsubsection.9.30.2.1}
+\contentsline {subsubsection}{\numberline {9.30.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}F\discretionary {-}{}{}E}{85}{subsubsection.9.30.2.2}
+\contentsline {subsubsection}{\numberline {9.30.2.3}destroy\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}variables}{85}{subsubsection.9.30.2.3}
+\contentsline {subsubsection}{\numberline {9.30.2.4}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}List}{85}{subsubsection.9.30.2.4}
+\contentsline {section}{\numberline {9.31}Stochastic Backtracking of Structures from Distance Based Partitioning}{87}{section.9.31}
+\contentsline {subsection}{\numberline {9.31.1}Detailed Description}{87}{subsection.9.31.1}
+\contentsline {subsection}{\numberline {9.31.2}Function Documentation}{87}{subsection.9.31.2}
+\contentsline {subsubsection}{\numberline {9.31.2.1}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack}{87}{subsubsection.9.31.2.1}
+\contentsline {subsubsection}{\numberline {9.31.2.2}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}pbacktrack5}{88}{subsubsection.9.31.2.2}
+\contentsline {section}{\numberline {9.32}Compute the Density of States}{89}{section.9.32}
+\contentsline {subsection}{\numberline {9.32.1}Detailed Description}{89}{subsection.9.32.1}
+\contentsline {subsection}{\numberline {9.32.2}Variable Documentation}{89}{subsection.9.32.2}
+\contentsline {subsubsection}{\numberline {9.32.2.1}density\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}states}{89}{subsubsection.9.32.2.1}
+\contentsline {section}{\numberline {9.33}Parsing and Comparing -\/ Functions to Manipulate Structures}{90}{section.9.33}
+\contentsline {chapter}{\numberline {10}Data Structure Documentation}{91}{chapter.10}
+\contentsline {section}{\numberline {10.1}bond\discretionary {-}{}{}T Struct Reference}{91}{section.10.1}
+\contentsline {subsection}{\numberline {10.1.1}Detailed Description}{91}{subsection.10.1.1}
+\contentsline {section}{\numberline {10.2}bond\discretionary {-}{}{}T\discretionary {-}{}{}En Struct Reference}{91}{section.10.2}
+\contentsline {subsection}{\numberline {10.2.1}Detailed Description}{91}{subsection.10.2.1}
+\contentsline {section}{\numberline {10.3}cofold\discretionary {-}{}{}F Struct Reference}{91}{section.10.3}
+\contentsline {section}{\numberline {10.4}Conc\discretionary {-}{}{}Ent Struct Reference}{92}{section.10.4}
+\contentsline {section}{\numberline {10.5}constrain Struct Reference}{92}{section.10.5}
+\contentsline {subsection}{\numberline {10.5.1}Detailed Description}{92}{subsection.10.5.1}
+\contentsline {section}{\numberline {10.6}C\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}D\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}E Struct Reference}{92}{section.10.6}
+\contentsline {subsection}{\numberline {10.6.1}Detailed Description}{92}{subsection.10.6.1}
+\contentsline {section}{\numberline {10.7}cpair Struct Reference}{93}{section.10.7}
+\contentsline {subsection}{\numberline {10.7.1}Detailed Description}{93}{subsection.10.7.1}
+\contentsline {section}{\numberline {10.8}duplex\discretionary {-}{}{}T Struct Reference}{93}{section.10.8}
+\contentsline {section}{\numberline {10.9}dup\discretionary {-}{}{}Var Struct Reference}{93}{section.10.9}
+\contentsline {section}{\numberline {10.10}folden Struct Reference}{93}{section.10.10}
+\contentsline {section}{\numberline {10.11}interact Struct Reference}{93}{section.10.11}
+\contentsline {section}{\numberline {10.12}intermediate\discretionary {-}{}{}\_\discretionary {-}{}{}t Struct Reference}{94}{section.10.12}
+\contentsline {section}{\numberline {10.13}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}V\discretionary {-}{}{}A\discretionary {-}{}{}L Struct Reference}{94}{section.10.13}
+\contentsline {subsection}{\numberline {10.13.1}Detailed Description}{95}{subsection.10.13.1}
+\contentsline {section}{\numberline {10.14}L\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}T Struct Reference}{95}{section.10.14}
+\contentsline {section}{\numberline {10.15}L\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}U\discretionary {-}{}{}C\discretionary {-}{}{}K\discretionary {-}{}{}E\discretionary {-}{}{}T Struct Reference}{95}{section.10.15}
+\contentsline {section}{\numberline {10.16}model\discretionary {-}{}{}\_\discretionary {-}{}{}details\discretionary {-}{}{}T Struct Reference}{96}{section.10.16}
+\contentsline {subsection}{\numberline {10.16.1}Detailed Description}{96}{subsection.10.16.1}
+\contentsline {subsection}{\numberline {10.16.2}Field Documentation}{96}{subsection.10.16.2}
+\contentsline {subsubsection}{\numberline {10.16.2.1}dangles}{96}{subsubsection.10.16.2.1}
+\contentsline {section}{\numberline {10.17}move\discretionary {-}{}{}\_\discretionary {-}{}{}t Struct Reference}{96}{section.10.17}
+\contentsline {section}{\numberline {10.18}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R Struct Reference}{97}{section.10.18}
+\contentsline {subsection}{\numberline {10.18.1}Detailed Description}{97}{subsection.10.18.1}
+\contentsline {section}{\numberline {10.19}pair\discretionary {-}{}{}\_\discretionary {-}{}{}info Struct Reference}{97}{section.10.19}
+\contentsline {subsection}{\numberline {10.19.1}Detailed Description}{97}{subsection.10.19.1}
+\contentsline {section}{\numberline {10.20}pairpro Struct Reference}{98}{section.10.20}
+\contentsline {section}{\numberline {10.21}param\discretionary {-}{}{}T Struct Reference}{98}{section.10.21}
+\contentsline {subsection}{\numberline {10.21.1}Detailed Description}{99}{subsection.10.21.1}
+\contentsline {section}{\numberline {10.22}path\discretionary {-}{}{}\_\discretionary {-}{}{}t Struct Reference}{99}{section.10.22}
+\contentsline {section}{\numberline {10.23}pf\discretionary {-}{}{}\_\discretionary {-}{}{}param\discretionary {-}{}{}T Struct Reference}{99}{section.10.23}
+\contentsline {subsection}{\numberline {10.23.1}Detailed Description}{100}{subsection.10.23.1}
+\contentsline {subsection}{\numberline {10.23.2}Field Documentation}{100}{subsection.10.23.2}
+\contentsline {subsubsection}{\numberline {10.23.2.1}alpha}{100}{subsubsection.10.23.2.1}
+\contentsline {section}{\numberline {10.24}plist Struct Reference}{100}{section.10.24}
+\contentsline {subsection}{\numberline {10.24.1}Detailed Description}{100}{subsection.10.24.1}
+\contentsline {section}{\numberline {10.25}Postorder\discretionary {-}{}{}\_\discretionary {-}{}{}list Struct Reference}{100}{section.10.25}
+\contentsline {section}{\numberline {10.26}pu\discretionary {-}{}{}\_\discretionary {-}{}{}contrib Struct Reference}{100}{section.10.26}
+\contentsline {subsection}{\numberline {10.26.1}Detailed Description}{101}{subsection.10.26.1}
+\contentsline {section}{\numberline {10.27}pu\discretionary {-}{}{}\_\discretionary {-}{}{}out Struct Reference}{101}{section.10.27}
+\contentsline {subsection}{\numberline {10.27.1}Detailed Description}{101}{subsection.10.27.1}
+\contentsline {section}{\numberline {10.28}sect Struct Reference}{101}{section.10.28}
+\contentsline {subsection}{\numberline {10.28.1}Detailed Description}{101}{subsection.10.28.1}
+\contentsline {section}{\numberline {10.29}snoop\discretionary {-}{}{}T Struct Reference}{102}{section.10.29}
+\contentsline {section}{\numberline {10.30}S\discretionary {-}{}{}O\discretionary {-}{}{}L\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N Struct Reference}{102}{section.10.30}
+\contentsline {subsection}{\numberline {10.30.1}Detailed Description}{102}{subsection.10.30.1}
+\contentsline {section}{\numberline {10.31}struct\discretionary {-}{}{}\_\discretionary {-}{}{}en Struct Reference}{102}{section.10.31}
+\contentsline {section}{\numberline {10.32}svm\discretionary {-}{}{}\_\discretionary {-}{}{}model Struct Reference}{102}{section.10.32}
+\contentsline {section}{\numberline {10.33}sw\discretionary {-}{}{}String Struct Reference}{102}{section.10.33}
+\contentsline {section}{\numberline {10.34}Tree Struct Reference}{103}{section.10.34}
+\contentsline {section}{\numberline {10.35}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution Struct Reference}{103}{section.10.35}
+\contentsline {subsection}{\numberline {10.35.1}Detailed Description}{103}{subsection.10.35.1}
+\contentsline {section}{\numberline {10.36}Two\discretionary {-}{}{}Dfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars Struct Reference}{104}{section.10.36}
+\contentsline {subsection}{\numberline {10.36.1}Detailed Description}{105}{subsection.10.36.1}
+\contentsline {section}{\numberline {10.37}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}solution Struct Reference}{105}{section.10.37}
+\contentsline {subsection}{\numberline {10.37.1}Detailed Description}{105}{subsection.10.37.1}
+\contentsline {section}{\numberline {10.38}Two\discretionary {-}{}{}Dpfold\discretionary {-}{}{}\_\discretionary {-}{}{}vars Struct Reference}{106}{section.10.38}
+\contentsline {subsection}{\numberline {10.38.1}Detailed Description}{107}{subsection.10.38.1}
+\contentsline {chapter}{\numberline {11}File Documentation}{109}{chapter.11}
+\contentsline {section}{\numberline {11.1}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dfold.h File Reference}{109}{section.11.1}
+\contentsline {section}{\numberline {11.2}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/2\discretionary {-}{}{}Dpfold.h File Reference}{110}{section.11.2}
+\contentsline {section}{\numberline {11.3}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/alifold.h File Reference}{111}{section.11.3}
+\contentsline {subsection}{\numberline {11.3.1}Detailed Description}{112}{subsection.11.3.1}
+\contentsline {subsection}{\numberline {11.3.2}Function Documentation}{112}{subsection.11.3.2}
+\contentsline {subsubsection}{\numberline {11.3.2.1}update\discretionary {-}{}{}\_\discretionary {-}{}{}alifold\discretionary {-}{}{}\_\discretionary {-}{}{}params}{112}{subsubsection.11.3.2.1}
+\contentsline {section}{\numberline {11.4}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/cofold.h File Reference}{113}{section.11.4}
+\contentsline {subsection}{\numberline {11.4.1}Detailed Description}{114}{subsection.11.4.1}
+\contentsline {subsection}{\numberline {11.4.2}Function Documentation}{114}{subsection.11.4.2}
+\contentsline {subsubsection}{\numberline {11.4.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}monomere\discretionary {-}{}{}\_\discretionary {-}{}{}mfes}{114}{subsubsection.11.4.2.1}
+\contentsline {subsubsection}{\numberline {11.4.2.2}initialize\discretionary {-}{}{}\_\discretionary {-}{}{}cofold}{114}{subsubsection.11.4.2.2}
+\contentsline {section}{\numberline {11.5}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/convert\discretionary {-}{}{}\_\discretionary {-}{}{}epars.h File Reference}{114}{section.11.5}
+\contentsline {subsection}{\numberline {11.5.1}Detailed Description}{115}{subsection.11.5.1}
+\contentsline {section}{\numberline {11.6}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/data\discretionary {-}{}{}\_\discretionary {-}{}{}structures.h File Reference}{115}{section.11.6}
+\contentsline {subsection}{\numberline {11.6.1}Detailed Description}{117}{subsection.11.6.1}
+\contentsline {section}{\numberline {11.7}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/dist\discretionary {-}{}{}\_\discretionary {-}{}{}vars.h File Reference}{117}{section.11.7}
+\contentsline {subsection}{\numberline {11.7.1}Detailed Description}{118}{subsection.11.7.1}
+\contentsline {subsection}{\numberline {11.7.2}Variable Documentation}{118}{subsection.11.7.2}
+\contentsline {subsubsection}{\numberline {11.7.2.1}edit\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}{118}{subsubsection.11.7.2.1}
+\contentsline {subsubsection}{\numberline {11.7.2.2}cost\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}{118}{subsubsection.11.7.2.2}
+\contentsline {section}{\numberline {11.8}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/duplex.h File Reference}{118}{section.11.8}
+\contentsline {subsection}{\numberline {11.8.1}Detailed Description}{119}{subsection.11.8.1}
+\contentsline {section}{\numberline {11.9}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/edit\discretionary {-}{}{}\_\discretionary {-}{}{}cost.h File Reference}{119}{section.11.9}
+\contentsline {subsection}{\numberline {11.9.1}Detailed Description}{119}{subsection.11.9.1}
+\contentsline {section}{\numberline {11.10}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/energy\discretionary {-}{}{}\_\discretionary {-}{}{}const.h File Reference}{119}{section.11.10}
+\contentsline {subsection}{\numberline {11.10.1}Detailed Description}{120}{subsection.11.10.1}
+\contentsline {subsection}{\numberline {11.10.2}Macro Definition Documentation}{120}{subsection.11.10.2}
+\contentsline {subsubsection}{\numberline {11.10.2.1}G\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T}{120}{subsubsection.11.10.2.1}
+\contentsline {subsubsection}{\numberline {11.10.2.2}K0}{120}{subsubsection.11.10.2.2}
+\contentsline {subsubsection}{\numberline {11.10.2.3}I\discretionary {-}{}{}N\discretionary {-}{}{}F}{120}{subsubsection.11.10.2.3}
+\contentsline {subsubsection}{\numberline {11.10.2.4}F\discretionary {-}{}{}O\discretionary {-}{}{}R\discretionary {-}{}{}B\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}N}{120}{subsubsection.11.10.2.4}
+\contentsline {subsubsection}{\numberline {11.10.2.5}B\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}U\discretionary {-}{}{}S}{120}{subsubsection.11.10.2.5}
+\contentsline {subsubsection}{\numberline {11.10.2.6}N\discretionary {-}{}{}B\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}S}{120}{subsubsection.11.10.2.6}
+\contentsline {subsubsection}{\numberline {11.10.2.7}T\discretionary {-}{}{}U\discretionary {-}{}{}R\discretionary {-}{}{}N}{120}{subsubsection.11.10.2.7}
+\contentsline {subsubsection}{\numberline {11.10.2.8}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}O\discretionary {-}{}{}P}{120}{subsubsection.11.10.2.8}
+\contentsline {section}{\numberline {11.11}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/findpath.h File Reference}{120}{section.11.11}
+\contentsline {subsection}{\numberline {11.11.1}Detailed Description}{121}{subsection.11.11.1}
+\contentsline {subsection}{\numberline {11.11.2}Function Documentation}{121}{subsection.11.11.2}
+\contentsline {subsubsection}{\numberline {11.11.2.1}find\discretionary {-}{}{}\_\discretionary {-}{}{}saddle}{121}{subsubsection.11.11.2.1}
+\contentsline {subsubsection}{\numberline {11.11.2.2}get\discretionary {-}{}{}\_\discretionary {-}{}{}path}{122}{subsubsection.11.11.2.2}
+\contentsline {subsubsection}{\numberline {11.11.2.3}free\discretionary {-}{}{}\_\discretionary {-}{}{}path}{122}{subsubsection.11.11.2.3}
+\contentsline {section}{\numberline {11.12}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold.h File Reference}{122}{section.11.12}
+\contentsline {subsection}{\numberline {11.12.1}Detailed Description}{124}{subsection.11.12.1}
+\contentsline {subsection}{\numberline {11.12.2}Function Documentation}{124}{subsection.11.12.2}
+\contentsline {subsubsection}{\numberline {11.12.2.1}parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{124}{subsubsection.11.12.2.1}
+\contentsline {subsubsection}{\numberline {11.12.2.2}parenthesis\discretionary {-}{}{}\_\discretionary {-}{}{}zuker}{125}{subsubsection.11.12.2.2}
+\contentsline {subsubsection}{\numberline {11.12.2.3}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move}{125}{subsubsection.11.12.2.3}
+\contentsline {subsubsection}{\numberline {11.12.2.4}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}move\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{125}{subsubsection.11.12.2.4}
+\contentsline {subsubsection}{\numberline {11.12.2.5}loop\discretionary {-}{}{}\_\discretionary {-}{}{}energy}{125}{subsubsection.11.12.2.5}
+\contentsline {subsubsection}{\numberline {11.12.2.6}assign\discretionary {-}{}{}\_\discretionary {-}{}{}plist\discretionary {-}{}{}\_\discretionary {-}{}{}from\discretionary {-}{}{}\_\discretionary {-}{}{}db}{126}{subsubsection.11.12.2.6}
+\contentsline {subsubsection}{\numberline {11.12.2.7}Loop\discretionary {-}{}{}Energy}{126}{subsubsection.11.12.2.7}
+\contentsline {subsubsection}{\numberline {11.12.2.8}Hairpin\discretionary {-}{}{}E}{126}{subsubsection.11.12.2.8}
+\contentsline {subsubsection}{\numberline {11.12.2.9}initialize\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{126}{subsubsection.11.12.2.9}
+\contentsline {subsubsection}{\numberline {11.12.2.10}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct}{126}{subsubsection.11.12.2.10}
+\contentsline {subsubsection}{\numberline {11.12.2.11}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}struct\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{127}{subsubsection.11.12.2.11}
+\contentsline {subsubsection}{\numberline {11.12.2.12}energy\discretionary {-}{}{}\_\discretionary {-}{}{}of\discretionary {-}{}{}\_\discretionary {-}{}{}circ\discretionary {-}{}{}\_\discretionary {-}{}{}struct}{127}{subsubsection.11.12.2.12}
+\contentsline {section}{\numberline {11.13}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/fold\discretionary {-}{}{}\_\discretionary {-}{}{}vars.h File Reference}{128}{section.11.13}
+\contentsline {subsection}{\numberline {11.13.1}Detailed Description}{130}{subsection.11.13.1}
+\contentsline {subsection}{\numberline {11.13.2}Function Documentation}{130}{subsection.11.13.2}
+\contentsline {subsubsection}{\numberline {11.13.2.1}set\discretionary {-}{}{}\_\discretionary {-}{}{}model\discretionary {-}{}{}\_\discretionary {-}{}{}details}{130}{subsubsection.11.13.2.1}
+\contentsline {subsection}{\numberline {11.13.3}Variable Documentation}{130}{subsection.11.13.3}
+\contentsline {subsubsection}{\numberline {11.13.3.1}no\discretionary {-}{}{}Lonely\discretionary {-}{}{}Pairs}{130}{subsubsection.11.13.3.1}
+\contentsline {subsubsection}{\numberline {11.13.3.2}dangles}{130}{subsubsection.11.13.3.2}
+\contentsline {subsubsection}{\numberline {11.13.3.3}tetra\discretionary {-}{}{}\_\discretionary {-}{}{}loop}{131}{subsubsection.11.13.3.3}
+\contentsline {subsubsection}{\numberline {11.13.3.4}energy\discretionary {-}{}{}\_\discretionary {-}{}{}set}{131}{subsubsection.11.13.3.4}
+\contentsline {subsubsection}{\numberline {11.13.3.5}old\discretionary {-}{}{}Ali\discretionary {-}{}{}En}{131}{subsubsection.11.13.3.5}
+\contentsline {subsubsection}{\numberline {11.13.3.6}ribo}{131}{subsubsection.11.13.3.6}
+\contentsline {subsubsection}{\numberline {11.13.3.7}Ribosum\discretionary {-}{}{}File}{131}{subsubsection.11.13.3.7}
+\contentsline {subsubsection}{\numberline {11.13.3.8}nonstandards}{131}{subsubsection.11.13.3.8}
+\contentsline {subsubsection}{\numberline {11.13.3.9}temperature}{131}{subsubsection.11.13.3.9}
+\contentsline {subsubsection}{\numberline {11.13.3.10}james\discretionary {-}{}{}\_\discretionary {-}{}{}rule}{131}{subsubsection.11.13.3.10}
+\contentsline {subsubsection}{\numberline {11.13.3.11}log\discretionary {-}{}{}M\discretionary {-}{}{}L}{132}{subsubsection.11.13.3.11}
+\contentsline {subsubsection}{\numberline {11.13.3.12}cut\discretionary {-}{}{}\_\discretionary {-}{}{}point}{132}{subsubsection.11.13.3.12}
+\contentsline {subsubsection}{\numberline {11.13.3.13}base\discretionary {-}{}{}\_\discretionary {-}{}{}pair}{132}{subsubsection.11.13.3.13}
+\contentsline {subsubsection}{\numberline {11.13.3.14}pr}{132}{subsubsection.11.13.3.14}
+\contentsline {subsubsection}{\numberline {11.13.3.15}iindx}{132}{subsubsection.11.13.3.15}
+\contentsline {subsubsection}{\numberline {11.13.3.16}pf\discretionary {-}{}{}\_\discretionary {-}{}{}scale}{132}{subsubsection.11.13.3.16}
+\contentsline {subsubsection}{\numberline {11.13.3.17}do\discretionary {-}{}{}\_\discretionary {-}{}{}backtrack}{132}{subsubsection.11.13.3.17}
+\contentsline {subsubsection}{\numberline {11.13.3.18}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}type}{133}{subsubsection.11.13.3.18}
+\contentsline {section}{\numberline {11.14}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/gquad.h File Reference}{133}{section.11.14}
+\contentsline {subsection}{\numberline {11.14.1}Detailed Description}{133}{subsection.11.14.1}
+\contentsline {subsection}{\numberline {11.14.2}Function Documentation}{134}{subsection.11.14.2}
+\contentsline {subsubsection}{\numberline {11.14.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}gquad\discretionary {-}{}{}\_\discretionary {-}{}{}matrix}{134}{subsubsection.11.14.2.1}
+\contentsline {subsubsection}{\numberline {11.14.2.2}parse\discretionary {-}{}{}\_\discretionary {-}{}{}gquad}{134}{subsubsection.11.14.2.2}
+\contentsline {subsubsection}{\numberline {11.14.2.3}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}{134}{subsubsection.11.14.2.3}
+\contentsline {subsubsection}{\numberline {11.14.2.4}backtrack\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G\discretionary {-}{}{}Quad\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L}{135}{subsubsection.11.14.2.4}
+\contentsline {section}{\numberline {11.15}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/inverse.h File Reference}{135}{section.11.15}
+\contentsline {subsection}{\numberline {11.15.1}Detailed Description}{135}{subsection.11.15.1}
+\contentsline {section}{\numberline {11.16}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}Lfold.h File Reference}{135}{section.11.16}
+\contentsline {subsection}{\numberline {11.16.1}Detailed Description}{136}{subsection.11.16.1}
+\contentsline {section}{\numberline {11.17}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/loop\discretionary {-}{}{}\_\discretionary {-}{}{}energies.h File Reference}{136}{section.11.17}
+\contentsline {subsection}{\numberline {11.17.1}Detailed Description}{136}{subsection.11.17.1}
+\contentsline {subsection}{\numberline {11.17.2}Function Documentation}{137}{subsection.11.17.2}
+\contentsline {subsubsection}{\numberline {11.17.2.1}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}{137}{subsubsection.11.17.2.1}
+\contentsline {subsubsection}{\numberline {11.17.2.2}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}{138}{subsubsection.11.17.2.2}
+\contentsline {subsubsection}{\numberline {11.17.2.3}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}{138}{subsubsection.11.17.2.3}
+\contentsline {subsubsection}{\numberline {11.17.2.4}exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Stem}{139}{subsubsection.11.17.2.4}
+\contentsline {subsubsection}{\numberline {11.17.2.5}exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Hairpin}{140}{subsubsection.11.17.2.5}
+\contentsline {subsubsection}{\numberline {11.17.2.6}exp\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Int\discretionary {-}{}{}Loop}{140}{subsubsection.11.17.2.6}
+\contentsline {section}{\numberline {11.18}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}L\discretionary {-}{}{}Pfold.h File Reference}{141}{section.11.18}
+\contentsline {subsection}{\numberline {11.18.1}Detailed Description}{142}{subsection.11.18.1}
+\contentsline {subsection}{\numberline {11.18.2}Function Documentation}{142}{subsection.11.18.2}
+\contentsline {subsubsection}{\numberline {11.18.2.1}init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold\discretionary {-}{}{}L\discretionary {-}{}{}P}{142}{subsubsection.11.18.2.1}
+\contentsline {section}{\numberline {11.19}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}A.h File Reference}{142}{section.11.19}
+\contentsline {subsection}{\numberline {11.19.1}Detailed Description}{143}{subsection.11.19.1}
+\contentsline {subsection}{\numberline {11.19.2}Function Documentation}{143}{subsection.11.19.2}
+\contentsline {subsubsection}{\numberline {11.19.2.1}M\discretionary {-}{}{}E\discretionary {-}{}{}A}{143}{subsubsection.11.19.2.1}
+\contentsline {section}{\numberline {11.20}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/mm.h File Reference}{144}{section.11.20}
+\contentsline {subsection}{\numberline {11.20.1}Detailed Description}{144}{subsection.11.20.1}
+\contentsline {section}{\numberline {11.21}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/naview.h File Reference}{144}{section.11.21}
+\contentsline {section}{\numberline {11.22}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/params.h File Reference}{145}{section.11.22}
+\contentsline {section}{\numberline {11.23}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func.h File Reference}{146}{section.11.23}
+\contentsline {subsection}{\numberline {11.23.1}Detailed Description}{148}{subsection.11.23.1}
+\contentsline {subsection}{\numberline {11.23.2}Function Documentation}{148}{subsection.11.23.2}
+\contentsline {subsubsection}{\numberline {11.23.2.1}init\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{148}{subsubsection.11.23.2.1}
+\contentsline {subsubsection}{\numberline {11.23.2.2}centroid}{148}{subsubsection.11.23.2.2}
+\contentsline {subsubsection}{\numberline {11.23.2.3}mean\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}dist}{148}{subsubsection.11.23.2.3}
+\contentsline {subsubsection}{\numberline {11.23.2.4}exp\discretionary {-}{}{}Loop\discretionary {-}{}{}Energy}{148}{subsubsection.11.23.2.4}
+\contentsline {subsubsection}{\numberline {11.23.2.5}exp\discretionary {-}{}{}Hairpin\discretionary {-}{}{}Energy}{148}{subsubsection.11.23.2.5}
+\contentsline {section}{\numberline {11.24}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}co.h File Reference}{148}{section.11.24}
+\contentsline {subsection}{\numberline {11.24.1}Detailed Description}{150}{subsection.11.24.1}
+\contentsline {subsection}{\numberline {11.24.2}Function Documentation}{150}{subsection.11.24.2}
+\contentsline {subsubsection}{\numberline {11.24.2.1}get\discretionary {-}{}{}\_\discretionary {-}{}{}plist}{150}{subsubsection.11.24.2.1}
+\contentsline {subsubsection}{\numberline {11.24.2.2}init\discretionary {-}{}{}\_\discretionary {-}{}{}co\discretionary {-}{}{}\_\discretionary {-}{}{}pf\discretionary {-}{}{}\_\discretionary {-}{}{}fold}{150}{subsubsection.11.24.2.2}
+\contentsline {section}{\numberline {11.25}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/part\discretionary {-}{}{}\_\discretionary {-}{}{}func\discretionary {-}{}{}\_\discretionary {-}{}{}up.h File Reference}{150}{section.11.25}
+\contentsline {subsection}{\numberline {11.25.1}Detailed Description}{151}{subsection.11.25.1}
+\contentsline {section}{\numberline {11.26}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/plot\discretionary {-}{}{}\_\discretionary {-}{}{}layouts.h File Reference}{152}{section.11.26}
+\contentsline {subsection}{\numberline {11.26.1}Detailed Description}{153}{subsection.11.26.1}
+\contentsline {subsection}{\numberline {11.26.2}Macro Definition Documentation}{153}{subsection.11.26.2}
+\contentsline {subsubsection}{\numberline {11.26.2.1}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}I\discretionary {-}{}{}M\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}E}{153}{subsubsection.11.26.2.1}
+\contentsline {subsubsection}{\numberline {11.26.2.2}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}V\discretionary {-}{}{}I\discretionary {-}{}{}E\discretionary {-}{}{}W}{153}{subsubsection.11.26.2.2}
+\contentsline {subsubsection}{\numberline {11.26.2.3}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}L\discretionary {-}{}{}O\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}Y\discretionary {-}{}{}P\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}I\discretionary {-}{}{}R\discretionary {-}{}{}C\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}R}{154}{subsubsection.11.26.2.3}
+\contentsline {subsection}{\numberline {11.26.3}Function Documentation}{154}{subsection.11.26.3}
+\contentsline {subsubsection}{\numberline {11.26.3.1}simple\discretionary {-}{}{}\_\discretionary {-}{}{}xy\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}{154}{subsubsection.11.26.3.1}
+\contentsline {subsubsection}{\numberline {11.26.3.2}simple\discretionary {-}{}{}\_\discretionary {-}{}{}circplot\discretionary {-}{}{}\_\discretionary {-}{}{}coordinates}{154}{subsubsection.11.26.3.2}
+\contentsline {subsection}{\numberline {11.26.4}Variable Documentation}{155}{subsection.11.26.4}
+\contentsline {subsubsection}{\numberline {11.26.4.1}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}type}{155}{subsubsection.11.26.4.1}
+\contentsline {section}{\numberline {11.27}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/profiledist.h File Reference}{155}{section.11.27}
+\contentsline {subsection}{\numberline {11.27.1}Function Documentation}{156}{subsection.11.27.1}
+\contentsline {subsubsection}{\numberline {11.27.1.1}profile\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{156}{subsubsection.11.27.1.1}
+\contentsline {subsubsection}{\numberline {11.27.1.2}Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile\discretionary {-}{}{}\_\discretionary {-}{}{}bppm}{156}{subsubsection.11.27.1.2}
+\contentsline {subsubsection}{\numberline {11.27.1.3}free\discretionary {-}{}{}\_\discretionary {-}{}{}profile}{156}{subsubsection.11.27.1.3}
+\contentsline {subsubsection}{\numberline {11.27.1.4}Make\discretionary {-}{}{}\_\discretionary {-}{}{}bp\discretionary {-}{}{}\_\discretionary {-}{}{}profile}{156}{subsubsection.11.27.1.4}
+\contentsline {section}{\numberline {11.28}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot.h File Reference}{157}{section.11.28}
+\contentsline {subsection}{\numberline {11.28.1}Detailed Description}{158}{subsection.11.28.1}
+\contentsline {subsection}{\numberline {11.28.2}Function Documentation}{158}{subsection.11.28.2}
+\contentsline {subsubsection}{\numberline {11.28.2.1}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{158}{subsubsection.11.28.2.1}
+\contentsline {subsubsection}{\numberline {11.28.2.2}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}a}{158}{subsubsection.11.28.2.2}
+\contentsline {subsubsection}{\numberline {11.28.2.3}gml\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}{158}{subsubsection.11.28.2.3}
+\contentsline {subsubsection}{\numberline {11.28.2.4}ssv\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{159}{subsubsection.11.28.2.4}
+\contentsline {subsubsection}{\numberline {11.28.2.5}svg\discretionary {-}{}{}\_\discretionary {-}{}{}rna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{159}{subsubsection.11.28.2.5}
+\contentsline {subsubsection}{\numberline {11.28.2.6}xrna\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{159}{subsubsection.11.28.2.6}
+\contentsline {subsubsection}{\numberline {11.28.2.7}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot\discretionary {-}{}{}\_\discretionary {-}{}{}list}{160}{subsubsection.11.28.2.7}
+\contentsline {subsubsection}{\numberline {11.28.2.8}ali\discretionary {-}{}{}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}color\discretionary {-}{}{}\_\discretionary {-}{}{}aln}{160}{subsubsection.11.28.2.8}
+\contentsline {subsubsection}{\numberline {11.28.2.9}P\discretionary {-}{}{}S\discretionary {-}{}{}\_\discretionary {-}{}{}dot\discretionary {-}{}{}\_\discretionary {-}{}{}plot}{160}{subsubsection.11.28.2.9}
+\contentsline {section}{\numberline {11.29}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/read\discretionary {-}{}{}\_\discretionary {-}{}{}epars.h File Reference}{160}{section.11.29}
+\contentsline {section}{\numberline {11.30}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}Astruct.h File Reference}{161}{section.11.30}
+\contentsline {subsection}{\numberline {11.30.1}Detailed Description}{162}{subsection.11.30.1}
+\contentsline {subsection}{\numberline {11.30.2}Function Documentation}{162}{subsection.11.30.2}
+\contentsline {subsubsection}{\numberline {11.30.2.1}b2\discretionary {-}{}{}H\discretionary {-}{}{}I\discretionary {-}{}{}T}{162}{subsubsection.11.30.2.1}
+\contentsline {subsubsection}{\numberline {11.30.2.2}b2\discretionary {-}{}{}C}{162}{subsubsection.11.30.2.2}
+\contentsline {subsubsection}{\numberline {11.30.2.3}b2\discretionary {-}{}{}Shapiro}{162}{subsubsection.11.30.2.3}
+\contentsline {subsubsection}{\numberline {11.30.2.4}add\discretionary {-}{}{}\_\discretionary {-}{}{}root}{163}{subsubsection.11.30.2.4}
+\contentsline {subsubsection}{\numberline {11.30.2.5}expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Shapiro}{163}{subsubsection.11.30.2.5}
+\contentsline {subsubsection}{\numberline {11.30.2.6}expand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}{163}{subsubsection.11.30.2.6}
+\contentsline {subsubsection}{\numberline {11.30.2.7}unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Full}{163}{subsubsection.11.30.2.7}
+\contentsline {subsubsection}{\numberline {11.30.2.8}unweight}{164}{subsubsection.11.30.2.8}
+\contentsline {subsubsection}{\numberline {11.30.2.9}unexpand\discretionary {-}{}{}\_\discretionary {-}{}{}aligned\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F}{164}{subsubsection.11.30.2.9}
+\contentsline {subsubsection}{\numberline {11.30.2.10}parse\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{164}{subsubsection.11.30.2.10}
+\contentsline {section}{\numberline {11.31}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/stringdist.h File Reference}{164}{section.11.31}
+\contentsline {subsection}{\numberline {11.31.1}Detailed Description}{165}{subsection.11.31.1}
+\contentsline {subsection}{\numberline {11.31.2}Function Documentation}{165}{subsection.11.31.2}
+\contentsline {subsubsection}{\numberline {11.31.2.1}Make\discretionary {-}{}{}\_\discretionary {-}{}{}sw\discretionary {-}{}{}String}{165}{subsubsection.11.31.2.1}
+\contentsline {subsubsection}{\numberline {11.31.2.2}string\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{165}{subsubsection.11.31.2.2}
+\contentsline {section}{\numberline {11.32}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/subopt.h File Reference}{166}{section.11.32}
+\contentsline {subsection}{\numberline {11.32.1}Detailed Description}{167}{subsection.11.32.1}
+\contentsline {section}{\numberline {11.33}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/treedist.h File Reference}{167}{section.11.33}
+\contentsline {subsection}{\numberline {11.33.1}Detailed Description}{167}{subsection.11.33.1}
+\contentsline {subsection}{\numberline {11.33.2}Function Documentation}{168}{subsection.11.33.2}
+\contentsline {subsubsection}{\numberline {11.33.2.1}make\discretionary {-}{}{}\_\discretionary {-}{}{}tree}{168}{subsubsection.11.33.2.1}
+\contentsline {subsubsection}{\numberline {11.33.2.2}tree\discretionary {-}{}{}\_\discretionary {-}{}{}edit\discretionary {-}{}{}\_\discretionary {-}{}{}distance}{168}{subsubsection.11.33.2.2}
+\contentsline {subsubsection}{\numberline {11.33.2.3}free\discretionary {-}{}{}\_\discretionary {-}{}{}tree}{168}{subsubsection.11.33.2.3}
+\contentsline {section}{\numberline {11.34}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/\discretionary {-}{}{}H/utils.h File Reference}{168}{section.11.34}
+\contentsline {subsection}{\numberline {11.34.1}Detailed Description}{171}{subsection.11.34.1}
+\contentsline {subsection}{\numberline {11.34.2}Macro Definition Documentation}{171}{subsection.11.34.2}
+\contentsline {subsubsection}{\numberline {11.34.2.1}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}E\discretionary {-}{}{}R\discretionary {-}{}{}R\discretionary {-}{}{}O\discretionary {-}{}{}R}{171}{subsubsection.11.34.2.1}
+\contentsline {subsubsection}{\numberline {11.34.2.2}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}I\discretionary {-}{}{}T}{171}{subsubsection.11.34.2.2}
+\contentsline {subsubsection}{\numberline {11.34.2.3}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}I\discretionary {-}{}{}S\discretionary {-}{}{}C}{171}{subsubsection.11.34.2.3}
+\contentsline {subsubsection}{\numberline {11.34.2.4}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}F\discretionary {-}{}{}A\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}{171}{subsubsection.11.34.2.4}
+\contentsline {subsubsection}{\numberline {11.34.2.5}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}E\discretionary {-}{}{}Q\discretionary {-}{}{}U\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}E}{171}{subsubsection.11.34.2.5}
+\contentsline {subsubsection}{\numberline {11.34.2.6}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.6}
+\contentsline {subsubsection}{\numberline {11.34.2.7}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}U\discretionary {-}{}{}N\discretionary {-}{}{}C\discretionary {-}{}{}A\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N}{172}{subsubsection.11.34.2.7}
+\contentsline {subsubsection}{\numberline {11.34.2.8}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}E\discretionary {-}{}{}S\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.8}
+\contentsline {subsubsection}{\numberline {11.34.2.9}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}S\discretionary {-}{}{}P\discretionary {-}{}{}A\discretionary {-}{}{}N}{172}{subsubsection.11.34.2.9}
+\contentsline {subsubsection}{\numberline {11.34.2.10}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E\discretionary {-}{}{}S}{172}{subsubsection.11.34.2.10}
+\contentsline {subsubsection}{\numberline {11.34.2.11}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}L\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}K\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}{172}{subsubsection.11.34.2.11}
+\contentsline {subsubsection}{\numberline {11.34.2.12}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}S\discretionary {-}{}{}K\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}S}{172}{subsubsection.11.34.2.12}
+\contentsline {subsubsection}{\numberline {11.34.2.13}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}P\discretionary {-}{}{}U\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}M\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.13}
+\contentsline {subsubsection}{\numberline {11.34.2.14}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}P\discretionary {-}{}{}I\discretionary {-}{}{}P\discretionary {-}{}{}E}{172}{subsubsection.11.34.2.14}
+\contentsline {subsubsection}{\numberline {11.34.2.15}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}O\discretionary {-}{}{}T}{172}{subsubsection.11.34.2.15}
+\contentsline {subsubsection}{\numberline {11.34.2.16}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}X}{172}{subsubsection.11.34.2.16}
+\contentsline {subsubsection}{\numberline {11.34.2.17}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}{172}{subsubsection.11.34.2.17}
+\contentsline {subsubsection}{\numberline {11.34.2.18}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}B\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}C\discretionary {-}{}{}K}{173}{subsubsection.11.34.2.18}
+\contentsline {subsubsection}{\numberline {11.34.2.19}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}{173}{subsubsection.11.34.2.19}
+\contentsline {subsubsection}{\numberline {11.34.2.20}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}N\discretionary {-}{}{}O\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}H\discretionary {-}{}{}E\discretionary {-}{}{}A\discretionary {-}{}{}D\discretionary {-}{}{}E\discretionary {-}{}{}R}{173}{subsubsection.11.34.2.20}
+\contentsline {subsubsection}{\numberline {11.34.2.21}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}A\discretionary {-}{}{}L\discretionary {-}{}{}L}{173}{subsubsection.11.34.2.21}
+\contentsline {subsubsection}{\numberline {11.34.2.22}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}C\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R\discretionary {-}{}{}A\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}T\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}G}{173}{subsubsection.11.34.2.22}
+\contentsline {subsubsection}{\numberline {11.34.2.23}V\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}O\discretionary {-}{}{}P\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}O\discretionary {-}{}{}N\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}U\discretionary {-}{}{}L\discretionary {-}{}{}T\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}I\discretionary {-}{}{}N\discretionary {-}{}{}E}{173}{subsubsection.11.34.2.23}
+\contentsline {subsubsection}{\numberline {11.34.2.24}M\discretionary {-}{}{}I\discretionary {-}{}{}N2}{173}{subsubsection.11.34.2.24}
+\contentsline {subsubsection}{\numberline {11.34.2.25}M\discretionary {-}{}{}A\discretionary {-}{}{}X2}{173}{subsubsection.11.34.2.25}
+\contentsline {subsubsection}{\numberline {11.34.2.26}M\discretionary {-}{}{}I\discretionary {-}{}{}N3}{173}{subsubsection.11.34.2.26}
+\contentsline {subsubsection}{\numberline {11.34.2.27}M\discretionary {-}{}{}A\discretionary {-}{}{}X3}{173}{subsubsection.11.34.2.27}
+\contentsline {subsubsection}{\numberline {11.34.2.28}X\discretionary {-}{}{}S\discretionary {-}{}{}T\discretionary {-}{}{}R}{173}{subsubsection.11.34.2.28}
+\contentsline {subsubsection}{\numberline {11.34.2.29}S\discretionary {-}{}{}T\discretionary {-}{}{}R}{174}{subsubsection.11.34.2.29}
+\contentsline {subsubsection}{\numberline {11.34.2.30}F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}M\discretionary {-}{}{}A\discretionary {-}{}{}X\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}{174}{subsubsection.11.34.2.30}
+\contentsline {subsubsection}{\numberline {11.34.2.31}F\discretionary {-}{}{}I\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}A\discretionary {-}{}{}M\discretionary {-}{}{}E\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}I\discretionary {-}{}{}D\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}L\discretionary {-}{}{}E\discretionary {-}{}{}N\discretionary {-}{}{}G\discretionary {-}{}{}T\discretionary {-}{}{}H}{174}{subsubsection.11.34.2.31}
+\contentsline {subsection}{\numberline {11.34.3}Function Documentation}{174}{subsection.11.34.3}
+\contentsline {subsubsection}{\numberline {11.34.3.1}space}{174}{subsubsection.11.34.3.1}
+\contentsline {subsubsection}{\numberline {11.34.3.2}xrealloc}{174}{subsubsection.11.34.3.2}
+\contentsline {subsubsection}{\numberline {11.34.3.3}nrerror}{174}{subsubsection.11.34.3.3}
+\contentsline {subsubsection}{\numberline {11.34.3.4}warn\discretionary {-}{}{}\_\discretionary {-}{}{}user}{175}{subsubsection.11.34.3.4}
+\contentsline {subsubsection}{\numberline {11.34.3.5}urn}{175}{subsubsection.11.34.3.5}
+\contentsline {subsubsection}{\numberline {11.34.3.6}int\discretionary {-}{}{}\_\discretionary {-}{}{}urn}{175}{subsubsection.11.34.3.6}
+\contentsline {subsubsection}{\numberline {11.34.3.7}time\discretionary {-}{}{}\_\discretionary {-}{}{}stamp}{175}{subsubsection.11.34.3.7}
+\contentsline {subsubsection}{\numberline {11.34.3.8}random\discretionary {-}{}{}\_\discretionary {-}{}{}string}{175}{subsubsection.11.34.3.8}
+\contentsline {subsubsection}{\numberline {11.34.3.9}hamming}{176}{subsubsection.11.34.3.9}
+\contentsline {subsubsection}{\numberline {11.34.3.10}hamming\discretionary {-}{}{}\_\discretionary {-}{}{}bound}{176}{subsubsection.11.34.3.10}
+\contentsline {subsubsection}{\numberline {11.34.3.11}get\discretionary {-}{}{}\_\discretionary {-}{}{}line}{176}{subsubsection.11.34.3.11}
+\contentsline {subsubsection}{\numberline {11.34.3.12}get\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}line}{176}{subsubsection.11.34.3.12}
+\contentsline {subsubsection}{\numberline {11.34.3.13}read\discretionary {-}{}{}\_\discretionary {-}{}{}record}{177}{subsubsection.11.34.3.13}
+\contentsline {subsubsection}{\numberline {11.34.3.14}pack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{178}{subsubsection.11.34.3.14}
+\contentsline {subsubsection}{\numberline {11.34.3.15}unpack\discretionary {-}{}{}\_\discretionary {-}{}{}structure}{178}{subsubsection.11.34.3.15}
+\contentsline {subsubsection}{\numberline {11.34.3.16}make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}{178}{subsubsection.11.34.3.16}
+\contentsline {subsubsection}{\numberline {11.34.3.17}copy\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}{179}{subsubsection.11.34.3.17}
+\contentsline {subsubsection}{\numberline {11.34.3.18}alimake\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table}{179}{subsubsection.11.34.3.18}
+\contentsline {subsubsection}{\numberline {11.34.3.19}make\discretionary {-}{}{}\_\discretionary {-}{}{}pair\discretionary {-}{}{}\_\discretionary {-}{}{}table\discretionary {-}{}{}\_\discretionary {-}{}{}snoop}{179}{subsubsection.11.34.3.19}
+\contentsline {subsubsection}{\numberline {11.34.3.20}make\discretionary {-}{}{}\_\discretionary {-}{}{}loop\discretionary {-}{}{}\_\discretionary {-}{}{}index\discretionary {-}{}{}\_\discretionary {-}{}{}pt}{179}{subsubsection.11.34.3.20}
+\contentsline {subsubsection}{\numberline {11.34.3.21}print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq}{179}{subsubsection.11.34.3.21}
+\contentsline {subsubsection}{\numberline {11.34.3.22}print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}input\discretionary {-}{}{}\_\discretionary {-}{}{}seq\discretionary {-}{}{}\_\discretionary {-}{}{}str}{179}{subsubsection.11.34.3.22}
+\contentsline {subsubsection}{\numberline {11.34.3.23}print\discretionary {-}{}{}\_\discretionary {-}{}{}tty\discretionary {-}{}{}\_\discretionary {-}{}{}constraint}{180}{subsubsection.11.34.3.23}
+\contentsline {subsubsection}{\numberline {11.34.3.24}str\discretionary {-}{}{}\_\discretionary {-}{}{}\discretionary {-}{}{}D\discretionary {-}{}{}N\discretionary {-}{}{}A2\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A}{180}{subsubsection.11.34.3.24}
+\contentsline {subsubsection}{\numberline {11.34.3.25}str\discretionary {-}{}{}\_\discretionary {-}{}{}uppercase}{180}{subsubsection.11.34.3.25}
+\contentsline {subsubsection}{\numberline {11.34.3.26}get\discretionary {-}{}{}\_\discretionary {-}{}{}iindx}{180}{subsubsection.11.34.3.26}
+\contentsline {subsubsection}{\numberline {11.34.3.27}get\discretionary {-}{}{}\_\discretionary {-}{}{}indx}{181}{subsubsection.11.34.3.27}
+\contentsline {subsubsection}{\numberline {11.34.3.28}constrain\discretionary {-}{}{}\_\discretionary {-}{}{}ptypes}{181}{subsubsection.11.34.3.28}
+\contentsline {subsection}{\numberline {11.34.4}Variable Documentation}{182}{subsection.11.34.4}
+\contentsline {subsubsection}{\numberline {11.34.4.1}xsubi}{182}{subsubsection.11.34.4.1}
+\contentsline {section}{\numberline {11.35}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.8.4\discretionary {-}{}{}\_\discretionary {-}{}{}epars.h File Reference}{182}{section.11.35}
+\contentsline {subsection}{\numberline {11.35.1}Detailed Description}{182}{subsection.11.35.1}
+\contentsline {section}{\numberline {11.36}/home/asherstnev/\discretionary {-}{}{}Projects/\discretionary {-}{}{}Java.projects/jabaws/secure-\/git/develop/binaries/src/\discretionary {-}{}{}Vienna\discretionary {-}{}{}R\discretionary {-}{}{}N\discretionary {-}{}{}A/lib/1.8.4\discretionary {-}{}{}\_\discretionary {-}{}{}intloops.h File Reference}{182}{section.11.36}
+\contentsline {subsection}{\numberline {11.36.1}Detailed Description}{182}{subsection.11.36.1}
+\contentsline {part}{Index}{183}{chapter*.131}
--- /dev/null
+\hypertarget{ribo_8h}{\section{ribo.\-h}
+\label{ribo_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/ribo.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/ribo.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_RIBOSUM\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_RIBOSUM\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{keywordtype}{float} **get\_ribosum(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **Alseq,
+00005 \textcolor{keywordtype}{int} n\_seq,
+00006 \textcolor{keywordtype}{int} length);
+00007
+00008 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{snofold_8h}{\section{snofold.\-h}
+\label{snofold_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/snofold.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/snofold.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/* function from fold.c */}
+00002 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_SNOFOLD\_H\_\_}
+00003 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_SNOFOLD\_H\_\_}
+00004 \textcolor{preprocessor}{}
+00005 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00006
+00007 \textcolor{comment}{/* Normal fold */}
+00008
+00012 \textcolor{keywordtype}{int} snofold( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00013 \textcolor{keywordtype}{char} *structure,
+00014 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_assym,
+00015 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshold,
+00016 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00017 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00018 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00019 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem);
+00024 \textcolor{keywordtype}{void} snofree\_arrays(\textcolor{keyword}{const} \textcolor{keywordtype}{int} length); \textcolor{comment}{/* free arrays for mfe folding */}
+00025 \textcolor{keywordtype}{void} snoinitialize\_fold(\textcolor{keywordtype}{int} length); \textcolor{comment}{/* allocate arrays for folding */}
+00026 \textcolor{keywordtype}{void} snoupdate\_fold\_params(\textcolor{keywordtype}{void}); \textcolor{comment}{/* recalculate parameters */}
+00027 \textcolor{keywordtype}{int} snoloop\_energy(\textcolor{keywordtype}{short} *ptable,
+00028 \textcolor{keywordtype}{short} *s,
+00029 \textcolor{keywordtype}{short} *s1,
+00030 \textcolor{keywordtype}{int} i);
+00031 \textcolor{keywordtype}{void} snoexport\_fold\_arrays( \textcolor{keywordtype}{int} **indx\_p,
+00032 \textcolor{keywordtype}{int} **mLoop\_p,
+00033 \textcolor{keywordtype}{int} **cLoop,
+00034 \hyperlink{structfolden}{folden} ***fold\_p,
+00035 \hyperlink{structfolden}{folden} ***fold\_p\_XS);
+00036 \textcolor{keywordtype}{char} * snobacktrack\_fold\_from\_pair( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *sequence,
+00037 \textcolor{keywordtype}{int} i,
+00038 \textcolor{keywordtype}{int} j);
+00039 \textcolor{comment}{/* alifold */}
+00040 \textcolor{keywordtype}{float} alisnofold( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **strings,
+00041 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_assym,
+00042 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00043 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00044 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00045 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00046 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem);
+00047 \textcolor{keywordtype}{void} alisnofree\_arrays(\textcolor{keyword}{const} \textcolor{keywordtype}{int} length);
+00048 \textcolor{keywordtype}{char} *alisnobacktrack\_fold\_from\_pair(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **sequence,
+00049 \textcolor{keywordtype}{int} i,
+00050 \textcolor{keywordtype}{int} j,
+00051 \textcolor{keywordtype}{int} *cov);
+00052 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{group__consensus__fold_gaf3cbac6ff5d706d6e414677841ddf94c}{cv\_fact} \textcolor{comment}{/* =1 */};
+00053 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{group__consensus__fold_ga502948a122a2af5b914355b1f3ea2f61}{nc\_fact} \textcolor{comment}{/* =1 */};
+00054
+00055 \textcolor{comment}{/* max number of mismatch >>>>>..(( )).>>>> */}
+00056 \textcolor{preprocessor}{#define MISMATCH 3}
+00057 \textcolor{preprocessor}{}
+00058 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{snoop_8h}{\section{snoop.\-h}
+\label{snoop_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/snoop.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/snoop.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_SNOOP\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_SNOOP\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00004 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00009 \hyperlink{structsnoopT}{snoopT} snoopfold( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00010 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00011 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00012 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00013 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00014 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00015 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00016 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00017 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00018 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00019 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00020 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00021 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00022 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00023 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00024 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00025 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00026
+00032 \hyperlink{structsnoopT}{snoopT} *snoop\_subopt( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00033 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00034 \textcolor{keywordtype}{int} delta,
+00035 \textcolor{keywordtype}{int} w,
+00036 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00037 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00038 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00039 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00040 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00041 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00042 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00043 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00044 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00045 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00046 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00047 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00048 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00049 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00050 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00051 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00052 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00053 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00054
+00061 \textcolor{keywordtype}{void} Lsnoop\_subopt( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00062 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00063 \textcolor{keywordtype}{int} delta,
+00064 \textcolor{keywordtype}{int} w,
+00065 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00066 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00067 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00068 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00069 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00070 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00071 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00072 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00073 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00074 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00075 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00076 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00077 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00078 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00079 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00080 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00081 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00082 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00083 \textcolor{keyword}{const} \textcolor{keywordtype}{char}* name,
+00084 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00085
+00092 \textcolor{keywordtype}{void} Lsnoop\_subopt\_list ( \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00093 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00094 \textcolor{keywordtype}{int} delta,
+00095 \textcolor{keywordtype}{int} w,
+00096 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00097 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00098 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00099 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00100 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00101 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00102 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00103 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00104 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00105 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00106 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00107 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00108 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00109 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00110 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00111 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00112 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00113 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00114 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *name,
+00115 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00116
+00122 \textcolor{keywordtype}{void} Lsnoop\_subopt\_list\_XS (\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00123 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00124 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s1,
+00125 \textcolor{keywordtype}{int} delta,
+00126 \textcolor{keywordtype}{int} w,
+00127 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00128 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00129 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00130 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00131 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00132 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00133 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00134 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00135 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00136 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00137 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00138 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00139 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00140 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00141 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00142 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00143 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00144 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00145 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *name,
+00146 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00147
+00148
+00154 \textcolor{keywordtype}{void} snoop\_subopt\_XS (\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00155 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00156 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s1,
+00157 \textcolor{keywordtype}{int} delta,
+00158 \textcolor{keywordtype}{int} w,
+00159 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00160 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00161 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00162 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00163 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00164 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00165 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00166 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00167 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00168 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00169 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00170 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00171 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00172 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00173 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00174 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00175 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00176 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length,
+00177 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *name,
+00178 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00179
+00184 \hyperlink{structsnoopT}{snoopT} *alisnoop\_subopt(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **s1,
+00185 \textcolor{keyword}{const} \textcolor{keywordtype}{char} **s2,
+00186 \textcolor{keywordtype}{int} delta,
+00187 \textcolor{keywordtype}{int} w,
+00188 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00189 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00190 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00191 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00192 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00193 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00194 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00195 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00196 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00197 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00198 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00199 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00200 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00201 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00202 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00203 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00204 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2);
+00205
+00212 \hyperlink{structsnoopT}{snoopT} *aliLsnoop\_subopt\_list ( \textcolor{keyword}{const} \textcolor{keywordtype}{char} **s1,
+00213 \textcolor{keyword}{const} \textcolor{keywordtype}{char} **s2,
+00214 \textcolor{keywordtype}{int} delta,
+00215 \textcolor{keywordtype}{int} w,
+00216 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00217 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00218 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00219 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00220 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00221 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshTE,
+00222 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshSE,
+00223 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00224 \textcolor{keyword}{const} \textcolor{keywordtype}{int} distance,
+00225 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00226 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00227 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00228 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00229 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00230 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00231 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00232 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00233 \textcolor{keyword}{const} \textcolor{keywordtype}{int} alignment\_length);
+00239 \hyperlink{structsnoopT}{snoopT} alisnoopfold(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **s1,
+00240 \textcolor{keyword}{const} \textcolor{keywordtype}{char} **s2,
+00241 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00242 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00243 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00244 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00245 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00246 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00247 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00248 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00249 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00250 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00251 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00252 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00253 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00254 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2);
+00259 \hyperlink{structsnoopT}{snoopT} snoopfold\_XS(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1,
+00260 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2,
+00261 \textcolor{keyword}{const} \textcolor{keywordtype}{int} **access\_s1,
+00262 \textcolor{keyword}{const} \textcolor{keywordtype}{int} pos,
+00263 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_pos\_j,
+00264 \textcolor{keyword}{const} \textcolor{keywordtype}{int} penalty,
+00265 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshloop,
+00266 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshLE,
+00267 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshRE,
+00268 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshDE,
+00269 \textcolor{keyword}{const} \textcolor{keywordtype}{int} threshD,
+00270 \textcolor{keyword}{const} \textcolor{keywordtype}{int} half\_stem,
+00271 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_half\_stem,
+00272 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s2,
+00273 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s2,
+00274 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_s1,
+00275 \textcolor{keyword}{const} \textcolor{keywordtype}{int} max\_s1,
+00276 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d1,
+00277 \textcolor{keyword}{const} \textcolor{keywordtype}{int} min\_d2,
+00278 \textcolor{keyword}{const} \textcolor{keywordtype}{int} fullStemEnergy);
+00279
+00280
+00281
+00282
+00283 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} snoop\_subopt\_sorted;
+00284 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{stringdist_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/stringdist.h File Reference}
+\label{stringdist_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/stringdist.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/stringdist.\-h}}
+}
+
+
+Functions for String Alignment.
+
+
+Include dependency graph for stringdist.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{stringdist_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structswString}{sw\-String} $\ast$ \hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\-\_\-sw\-String} (char $\ast$string)
+\begin{DoxyCompactList}\small\item\em Convert a structure into a format suitable for \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\-\_\-edit\-\_\-distance()}. \end{DoxyCompactList}\item
+float \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\-\_\-edit\-\_\-distance} (\hyperlink{structswString}{sw\-String} $\ast$T1, \hyperlink{structswString}{sw\-String} $\ast$T2)
+\begin{DoxyCompactList}\small\item\em Calculate the string edit distance of T1 and T2. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Functions for String Alignment.
+
+\subsection{Function Documentation}
+\hypertarget{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{\index{stringdist.\-h@{stringdist.\-h}!Make\-\_\-sw\-String@{Make\-\_\-sw\-String}}
+\index{Make\-\_\-sw\-String@{Make\-\_\-sw\-String}!stringdist.h@{stringdist.\-h}}
+\subsubsection[{Make\-\_\-sw\-String}]{\setlength{\rightskip}{0pt plus 5cm}{\bf sw\-String}$\ast$ Make\-\_\-sw\-String (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{string}
+\end{DoxyParamCaption}
+)}}\label{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}
+
+
+Convert a structure into a format suitable for \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\-\_\-edit\-\_\-distance()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{\index{stringdist.\-h@{stringdist.\-h}!string\-\_\-edit\-\_\-distance@{string\-\_\-edit\-\_\-distance}}
+\index{string\-\_\-edit\-\_\-distance@{string\-\_\-edit\-\_\-distance}!stringdist.h@{stringdist.\-h}}
+\subsubsection[{string\-\_\-edit\-\_\-distance}]{\setlength{\rightskip}{0pt plus 5cm}float string\-\_\-edit\-\_\-distance (
+\begin{DoxyParamCaption}
+\item[{{\bf sw\-String} $\ast$}]{T1, }
+\item[{{\bf sw\-String} $\ast$}]{T2}
+\end{DoxyParamCaption}
+)}}\label{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}
+
+
+Calculate the string edit distance of T1 and T2.
+
+
+\begin{DoxyParams}{Parameters}
+{\em T1} & \\
+\hline
+{\em T2} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
--- /dev/null
+6ec489e18b334b0e836d67591fb5d937
\ No newline at end of file
--- /dev/null
+\hypertarget{stringdist_8h}{\section{stringdist.\-h}
+\label{stringdist_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/stringdist.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/stringdist.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_STRING\_DIST\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_STRING\_DIST\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00009 \textcolor{preprocessor}{#include "\hyperlink{dist__vars_8h}{dist\_vars.h}"}
+00010
+00011
+00018 \hyperlink{structswString}{swString} *\hyperlink{stringdist_8h_a3125991b3a403b3f89230474deb3f22e}{Make\_swString}(\textcolor{keywordtype}{char} *\textcolor{keywordtype}{string});
+00019
+00027 \textcolor{keywordtype}{float} \hyperlink{stringdist_8h_a89e3c335ef17780576d7c0e713830db9}{string\_edit\_distance}( \hyperlink{structswString}{swString} *T1,
+00028 \hyperlink{structswString}{swString} *T2);
+00029
+00030 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{structCOORDINATE}{\section{C\-O\-O\-R\-D\-I\-N\-A\-T\-E Struct Reference}
+\label{structCOORDINATE}\index{C\-O\-O\-R\-D\-I\-N\-A\-T\-E@{C\-O\-O\-R\-D\-I\-N\-A\-T\-E}}
+}
+
+
+this is a workarround for the S\-W\-I\-G Perl Wrapper R\-N\-A plot function that returns an array of type \hyperlink{structCOORDINATE}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E}
+
+
+
+
+\subsection{Detailed Description}
+this is a workarround for the S\-W\-I\-G Perl Wrapper R\-N\-A plot function that returns an array of type \hyperlink{structCOORDINATE}{C\-O\-O\-R\-D\-I\-N\-A\-T\-E}
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structConcEnt}{\section{Conc\-Ent Struct Reference}
+\label{structConcEnt}\index{Conc\-Ent@{Conc\-Ent}}
+}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structConcEnt_adcf4d93c7efeaa4e6c4154b64d367681}{double \hyperlink{structConcEnt_adcf4d93c7efeaa4e6c4154b64d367681}{A0}}\label{structConcEnt_adcf4d93c7efeaa4e6c4154b64d367681}
+
+\begin{DoxyCompactList}\small\item\em start concentration A \end{DoxyCompactList}\item
+\hypertarget{structConcEnt_add4c33b94b34e847fbf5838b04cce346}{double \hyperlink{structConcEnt_add4c33b94b34e847fbf5838b04cce346}{B0}}\label{structConcEnt_add4c33b94b34e847fbf5838b04cce346}
+
+\begin{DoxyCompactList}\small\item\em start concentration B \end{DoxyCompactList}\item
+\hypertarget{structConcEnt_ac59c07a31d844e7b05bcdc05c4413b19}{double \hyperlink{structConcEnt_ac59c07a31d844e7b05bcdc05c4413b19}{A\-Bc}}\label{structConcEnt_ac59c07a31d844e7b05bcdc05c4413b19}
+
+\begin{DoxyCompactList}\small\item\em End concentration A\-B. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structINTERVAL}{\section{I\-N\-T\-E\-R\-V\-A\-L Struct Reference}
+\label{structINTERVAL}\index{I\-N\-T\-E\-R\-V\-A\-L@{I\-N\-T\-E\-R\-V\-A\-L}}
+}
+
+
+Sequence interval stack element used in subopt.\-c.
+
+
+
+
+\subsection{Detailed Description}
+Sequence interval stack element used in subopt.\-c.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structLIST}{\section{L\-I\-S\-T Struct Reference}
+\label{structLIST}\index{L\-I\-S\-T@{L\-I\-S\-T}}
+}
+
+
+Collaboration diagram for L\-I\-S\-T\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=197pt]{structLIST__coll__graph}
+\end{center}
+\end{figure}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/list.\-h\end{DoxyCompactItemize}
--- /dev/null
+d26879f1cbf89a65eb95b12cdca8fcef
\ No newline at end of file
--- /dev/null
+\hypertarget{structLST__BUCKET}{\section{L\-S\-T\-\_\-\-B\-U\-C\-K\-E\-T Struct Reference}
+\label{structLST__BUCKET}\index{L\-S\-T\-\_\-\-B\-U\-C\-K\-E\-T@{L\-S\-T\-\_\-\-B\-U\-C\-K\-E\-T}}
+}
+
+
+Collaboration diagram for L\-S\-T\-\_\-\-B\-U\-C\-K\-E\-T\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=197pt]{structLST__BUCKET__coll__graph}
+\end{center}
+\end{figure}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/lib/list.\-h\end{DoxyCompactItemize}
--- /dev/null
+64d91386d080bbdb5b0379ab9bfb8823
\ No newline at end of file
--- /dev/null
+\hypertarget{structPAIR}{\section{P\-A\-I\-R Struct Reference}
+\label{structPAIR}\index{P\-A\-I\-R@{P\-A\-I\-R}}
+}
+
+
+Base pair data structure used in subopt.\-c.
+
+
+
+
+\subsection{Detailed Description}
+Base pair data structure used in subopt.\-c.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structPostorder__list}{\section{Postorder\-\_\-list Struct Reference}
+\label{structPostorder__list}\index{Postorder\-\_\-list@{Postorder\-\_\-list}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{dist__vars_8h}{dist\-\_\-vars.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structSOLUTION}{\section{S\-O\-L\-U\-T\-I\-O\-N Struct Reference}
+\label{structSOLUTION}\index{S\-O\-L\-U\-T\-I\-O\-N@{S\-O\-L\-U\-T\-I\-O\-N}}
+}
+
+
+Solution element from subopt.\-c.
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structSOLUTION_a4fe8e9027171f2dc4031587d7fab6b87}{float \hyperlink{structSOLUTION_a4fe8e9027171f2dc4031587d7fab6b87}{energy}}\label{structSOLUTION_a4fe8e9027171f2dc4031587d7fab6b87}
+
+\begin{DoxyCompactList}\small\item\em Free Energy of structure in kcal/mol. \end{DoxyCompactList}\item
+\hypertarget{structSOLUTION_a89ae453dfad0509468c39a62c303a63b}{char $\ast$ \hyperlink{structSOLUTION_a89ae453dfad0509468c39a62c303a63b}{structure}}\label{structSOLUTION_a89ae453dfad0509468c39a62c303a63b}
+
+\begin{DoxyCompactList}\small\item\em Structure in dot-\/bracket notation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Solution element from subopt.\-c.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structTree}{\section{Tree Struct Reference}
+\label{structTree}\index{Tree@{Tree}}
+}
+
+
+Collaboration diagram for Tree\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=177pt]{structTree__coll__graph}
+\end{center}
+\end{figure}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{dist__vars_8h}{dist\-\_\-vars.\-h}\end{DoxyCompactItemize}
--- /dev/null
+fdb735611eba4b6289237a6dd262db2f
\ No newline at end of file
--- /dev/null
+\hypertarget{structTwoDfold__solution}{\section{Two\-Dfold\-\_\-solution Struct Reference}
+\label{structTwoDfold__solution}\index{Two\-Dfold\-\_\-solution@{Two\-Dfold\-\_\-solution}}
+}
+
+
+Solution element returned from Two\-Dfold\-List.
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structTwoDfold__solution_a298767110e07490d361bf7da920fd153}{int \hyperlink{structTwoDfold__solution_a298767110e07490d361bf7da920fd153}{k}}\label{structTwoDfold__solution_a298767110e07490d361bf7da920fd153}
+
+\begin{DoxyCompactList}\small\item\em Distance to first reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__solution_a64fb28259cf925c3bba7b8d14592363a}{int \hyperlink{structTwoDfold__solution_a64fb28259cf925c3bba7b8d14592363a}{l}}\label{structTwoDfold__solution_a64fb28259cf925c3bba7b8d14592363a}
+
+\begin{DoxyCompactList}\small\item\em Distance to second reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__solution_a3f65891d0c931f88440150bb32bcf753}{float \hyperlink{structTwoDfold__solution_a3f65891d0c931f88440150bb32bcf753}{en}}\label{structTwoDfold__solution_a3f65891d0c931f88440150bb32bcf753}
+
+\begin{DoxyCompactList}\small\item\em Free energy in kcal/mol. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__solution_ac87e00bbdb13e0b6ef45c4f65608b416}{char $\ast$ \hyperlink{structTwoDfold__solution_ac87e00bbdb13e0b6ef45c4f65608b416}{s}}\label{structTwoDfold__solution_ac87e00bbdb13e0b6ef45c4f65608b416}
+
+\begin{DoxyCompactList}\small\item\em M\-F\-E representative structure in dot-\/bracket notation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Solution element returned from Two\-Dfold\-List.
+
+This element contains free energy and structure for the appropriate kappa (k), lambda (l) neighborhood The datastructure contains two integer attributes 'k' and 'l' as well as an attribute 'en' of type float representing the free energy in kcal/mol and an attribute 's' of type char$\ast$ containg the secondary structure representative,
+
+A value of \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{I\-N\-F} in k denotes the end of a list
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List()}
+\end{DoxySeeAlso}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structTwoDfold__vars}{\section{Two\-Dfold\-\_\-vars Struct Reference}
+\label{structTwoDfold__vars}\index{Two\-Dfold\-\_\-vars@{Two\-Dfold\-\_\-vars}}
+}
+
+
+Variables compound for 2\-Dfold M\-F\-E folding.
+
+
+
+
+Collaboration diagram for Two\-Dfold\-\_\-vars\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=183pt]{structTwoDfold__vars__coll__graph}
+\end{center}
+\end{figure}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structTwoDfold__vars_ada74adef5f24b4b35c0b25da8223fe26}{\hyperlink{structparamT}{param\-T} $\ast$ \hyperlink{structTwoDfold__vars_ada74adef5f24b4b35c0b25da8223fe26}{P}}\label{structTwoDfold__vars_ada74adef5f24b4b35c0b25da8223fe26}
+
+\begin{DoxyCompactList}\small\item\em Precomputed energy parameters and model details. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_ade5c7e9337a458ae20bac75abdc52d64}{int \hyperlink{structTwoDfold__vars_ade5c7e9337a458ae20bac75abdc52d64}{do\-\_\-backtrack}}\label{structTwoDfold__vars_ade5c7e9337a458ae20bac75abdc52d64}
+
+\begin{DoxyCompactList}\small\item\em Flag whether to do backtracing of the structure(s) or not. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_aedf60b8b26dae05ad266d3e098d18208}{char $\ast$ \hyperlink{structTwoDfold__vars_aedf60b8b26dae05ad266d3e098d18208}{ptype}}\label{structTwoDfold__vars_aedf60b8b26dae05ad266d3e098d18208}
+
+\begin{DoxyCompactList}\small\item\em Precomputed array of pair types. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_a3596f3d4d320318c4b8428e2abc7ab56}{char $\ast$ \hyperlink{structTwoDfold__vars_a3596f3d4d320318c4b8428e2abc7ab56}{sequence}}\label{structTwoDfold__vars_a3596f3d4d320318c4b8428e2abc7ab56}
+
+\begin{DoxyCompactList}\small\item\em The input sequence. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_ab9ee459ffbfb5d2c138a033516056cdc}{short $\ast$ \hyperlink{structTwoDfold__vars_ab9ee459ffbfb5d2c138a033516056cdc}{S1}}\label{structTwoDfold__vars_ab9ee459ffbfb5d2c138a033516056cdc}
+
+\begin{DoxyCompactList}\small\item\em The input sequences in numeric form. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_a621ed2ab02116f3f8f5e7120dec429eb}{unsigned int \hyperlink{structTwoDfold__vars_a621ed2ab02116f3f8f5e7120dec429eb}{max\-D1}}\label{structTwoDfold__vars_a621ed2ab02116f3f8f5e7120dec429eb}
+
+\begin{DoxyCompactList}\small\item\em Maximum allowed base pair distance to first reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_a03f198a4abdb3b784486d2ba5c533aa4}{unsigned int \hyperlink{structTwoDfold__vars_a03f198a4abdb3b784486d2ba5c533aa4}{max\-D2}}\label{structTwoDfold__vars_a03f198a4abdb3b784486d2ba5c533aa4}
+
+\begin{DoxyCompactList}\small\item\em Maximum allowed base pair distance to second reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_aa11f5bcd8c4fe70a91c155c877c855d5}{unsigned int $\ast$ \hyperlink{structTwoDfold__vars_aa11f5bcd8c4fe70a91c155c877c855d5}{mm1}}\label{structTwoDfold__vars_aa11f5bcd8c4fe70a91c155c877c855d5}
+
+\begin{DoxyCompactList}\small\item\em Maximum matching matrix, reference struct 1 disallowed. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_a2eaa93316b6beb17531f0c078806036c}{unsigned int $\ast$ \hyperlink{structTwoDfold__vars_a2eaa93316b6beb17531f0c078806036c}{mm2}}\label{structTwoDfold__vars_a2eaa93316b6beb17531f0c078806036c}
+
+\begin{DoxyCompactList}\small\item\em Maximum matching matrix, reference struct 2 disallowed. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_a1a20cb06b58b75d1a3dbdbc8bc60d0a7}{int $\ast$ \hyperlink{structTwoDfold__vars_a1a20cb06b58b75d1a3dbdbc8bc60d0a7}{my\-\_\-iindx}}\label{structTwoDfold__vars_a1a20cb06b58b75d1a3dbdbc8bc60d0a7}
+
+\begin{DoxyCompactList}\small\item\em Index for moving in quadratic distancy dimensions. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_a536525b98c1b633d4c5f2da4f8d78c18}{unsigned int $\ast$ \hyperlink{structTwoDfold__vars_a536525b98c1b633d4c5f2da4f8d78c18}{reference\-B\-Ps1}}\label{structTwoDfold__vars_a536525b98c1b633d4c5f2da4f8d78c18}
+
+\begin{DoxyCompactList}\small\item\em Matrix containing number of basepairs of reference structure1 in interval \mbox{[}i,j\mbox{]}. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_aa7abf73c3114cb5f0dc90e702fa9dd0f}{unsigned int $\ast$ \hyperlink{structTwoDfold__vars_aa7abf73c3114cb5f0dc90e702fa9dd0f}{reference\-B\-Ps2}}\label{structTwoDfold__vars_aa7abf73c3114cb5f0dc90e702fa9dd0f}
+
+\begin{DoxyCompactList}\small\item\em Matrix containing number of basepairs of reference structure2 in interval \mbox{[}i,j\mbox{]}. \end{DoxyCompactList}\item
+\hypertarget{structTwoDfold__vars_af1106e1a592e2dccc92b3452340549e0}{unsigned int $\ast$ \hyperlink{structTwoDfold__vars_af1106e1a592e2dccc92b3452340549e0}{bpdist}}\label{structTwoDfold__vars_af1106e1a592e2dccc92b3452340549e0}
+
+\begin{DoxyCompactList}\small\item\em Matrix containing base pair distance of reference structure 1 and 2 on interval \mbox{[}i,j\mbox{]}. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Variables compound for 2\-Dfold M\-F\-E folding.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__mfe_gac9284f132cf0eaa0a2f43590eda05488}{get\-\_\-\-Two\-Dfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__mfe_ga05bf4f31d216b1b160fd2d3d68e9b487}{destroy\-\_\-\-Two\-Dfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__mfe_ga47da790166020558d27323aef489703e}{Two\-Dfold\-List()}
+\end{DoxySeeAlso}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+27e7dde691b9be338e6ea75d29f5b980
\ No newline at end of file
--- /dev/null
+\hypertarget{structTwoDpfold__solution}{\section{Two\-Dpfold\-\_\-solution Struct Reference}
+\label{structTwoDpfold__solution}\index{Two\-Dpfold\-\_\-solution@{Two\-Dpfold\-\_\-solution}}
+}
+
+
+Solution element returned from Two\-Dpfold\-List.
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structTwoDpfold__solution_a40ad24e311b193866111623dd1331567}{int \hyperlink{structTwoDpfold__solution_a40ad24e311b193866111623dd1331567}{k}}\label{structTwoDpfold__solution_a40ad24e311b193866111623dd1331567}
+
+\begin{DoxyCompactList}\small\item\em Distance to first reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__solution_aeaad6adc35413c76a2e2f18d96a6508c}{int \hyperlink{structTwoDpfold__solution_aeaad6adc35413c76a2e2f18d96a6508c}{l}}\label{structTwoDpfold__solution_aeaad6adc35413c76a2e2f18d96a6508c}
+
+\begin{DoxyCompactList}\small\item\em Distance to second reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__solution_af0bf3071502b4a4fa81eeb6dfacef94c}{double \hyperlink{structTwoDpfold__solution_af0bf3071502b4a4fa81eeb6dfacef94c}{q}}\label{structTwoDpfold__solution_af0bf3071502b4a4fa81eeb6dfacef94c}
+
+\begin{DoxyCompactList}\small\item\em partition function \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Solution element returned from Two\-Dpfold\-List.
+
+This element contains the partition function for the appropriate kappa (k), lambda (l) neighborhood The datastructure contains two integer attributes 'k' and 'l' as well as an attribute 'q' of type \#\-F\-L\-T\-\_\-\-O\-R\-\_\-\-D\-B\-L
+
+A value of \hyperlink{energy__const_8h_a12c2040f25d8e3a7b9e1c2024c618cb6}{I\-N\-F} in k denotes the end of a list
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List()}
+\end{DoxySeeAlso}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structTwoDpfold__vars}{\section{Two\-Dpfold\-\_\-vars Struct Reference}
+\label{structTwoDpfold__vars}\index{Two\-Dpfold\-\_\-vars@{Two\-Dpfold\-\_\-vars}}
+}
+
+
+Variables compound for 2\-Dfold partition function folding.
+
+
+
+
+Collaboration diagram for Two\-Dpfold\-\_\-vars\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=184pt]{structTwoDpfold__vars__coll__graph}
+\end{center}
+\end{figure}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structTwoDpfold__vars_a67f37b8901b8d0a049c216d4c6241b07}{char $\ast$ \hyperlink{structTwoDpfold__vars_a67f37b8901b8d0a049c216d4c6241b07}{ptype}}\label{structTwoDpfold__vars_a67f37b8901b8d0a049c216d4c6241b07}
+
+\begin{DoxyCompactList}\small\item\em Precomputed array of pair types. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a32c15a1e31856588259556c9020f32c6}{char $\ast$ \hyperlink{structTwoDpfold__vars_a32c15a1e31856588259556c9020f32c6}{sequence}}\label{structTwoDpfold__vars_a32c15a1e31856588259556c9020f32c6}
+
+\begin{DoxyCompactList}\small\item\em The input sequence. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a240311ae1e8e121441651d6101e187ac}{short $\ast$ \hyperlink{structTwoDpfold__vars_a240311ae1e8e121441651d6101e187ac}{S1}}\label{structTwoDpfold__vars_a240311ae1e8e121441651d6101e187ac}
+
+\begin{DoxyCompactList}\small\item\em The input sequences in numeric form. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a7292b6cbc1ee5bacf55e842f316c4bef}{unsigned int \hyperlink{structTwoDpfold__vars_a7292b6cbc1ee5bacf55e842f316c4bef}{max\-D1}}\label{structTwoDpfold__vars_a7292b6cbc1ee5bacf55e842f316c4bef}
+
+\begin{DoxyCompactList}\small\item\em Maximum allowed base pair distance to first reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a8900622d91454d2d037242e290e42834}{unsigned int \hyperlink{structTwoDpfold__vars_a8900622d91454d2d037242e290e42834}{max\-D2}}\label{structTwoDpfold__vars_a8900622d91454d2d037242e290e42834}
+
+\begin{DoxyCompactList}\small\item\em Maximum allowed base pair distance to second reference. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_ac2d3e6abf0cb0e1df363904fc938076e}{int $\ast$ \hyperlink{structTwoDpfold__vars_ac2d3e6abf0cb0e1df363904fc938076e}{my\-\_\-iindx}}\label{structTwoDpfold__vars_ac2d3e6abf0cb0e1df363904fc938076e}
+
+\begin{DoxyCompactList}\small\item\em Index for moving in quadratic distancy dimensions. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a0699e194a797532c91b284ab10272384}{int $\ast$ \hyperlink{structTwoDpfold__vars_a0699e194a797532c91b284ab10272384}{jindx}}\label{structTwoDpfold__vars_a0699e194a797532c91b284ab10272384}
+
+\begin{DoxyCompactList}\small\item\em Index for moving in the triangular matrix qm1. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_aea15706d27b6b0fc19f5773919f43a8a}{unsigned int $\ast$ \hyperlink{structTwoDpfold__vars_aea15706d27b6b0fc19f5773919f43a8a}{reference\-B\-Ps1}}\label{structTwoDpfold__vars_aea15706d27b6b0fc19f5773919f43a8a}
+
+\begin{DoxyCompactList}\small\item\em Matrix containing number of basepairs of reference structure1 in interval \mbox{[}i,j\mbox{]}. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a1221396d712bf76b7f35297f2ab35a9f}{unsigned int $\ast$ \hyperlink{structTwoDpfold__vars_a1221396d712bf76b7f35297f2ab35a9f}{reference\-B\-Ps2}}\label{structTwoDpfold__vars_a1221396d712bf76b7f35297f2ab35a9f}
+
+\begin{DoxyCompactList}\small\item\em Matrix containing number of basepairs of reference structure2 in interval \mbox{[}i,j\mbox{]}. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_accef8eaa05fa57ca33aa22cbc7b7aaff}{unsigned int $\ast$ \hyperlink{structTwoDpfold__vars_accef8eaa05fa57ca33aa22cbc7b7aaff}{bpdist}}\label{structTwoDpfold__vars_accef8eaa05fa57ca33aa22cbc7b7aaff}
+
+\begin{DoxyCompactList}\small\item\em Matrix containing base pair distance of reference structure 1 and 2 on interval \mbox{[}i,j\mbox{]}. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_a7c9e9af6224d4696118e05835441863d}{unsigned int $\ast$ \hyperlink{structTwoDpfold__vars_a7c9e9af6224d4696118e05835441863d}{mm1}}\label{structTwoDpfold__vars_a7c9e9af6224d4696118e05835441863d}
+
+\begin{DoxyCompactList}\small\item\em Maximum matching matrix, reference struct 1 disallowed. \end{DoxyCompactList}\item
+\hypertarget{structTwoDpfold__vars_affb913470783f9edb12a0bfc22466269}{unsigned int $\ast$ \hyperlink{structTwoDpfold__vars_affb913470783f9edb12a0bfc22466269}{mm2}}\label{structTwoDpfold__vars_affb913470783f9edb12a0bfc22466269}
+
+\begin{DoxyCompactList}\small\item\em Maximum matching matrix, reference struct 2 disallowed. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Variables compound for 2\-Dfold partition function folding.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{group__kl__neighborhood__pf_ga1aca740e2a75ab2b2951538266e53d64}{get\-\_\-\-Two\-Dpfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__pf_gacc2f66da7ee62096cab629fce7112216}{get\-\_\-\-Two\-Dpfold\-\_\-variables\-\_\-from\-\_\-\-M\-F\-E()}, \hyperlink{group__kl__neighborhood__pf_gafe994291458ee2ac34d3eb825ef62a15}{destroy\-\_\-\-Two\-Dpfold\-\_\-variables()}, \hyperlink{group__kl__neighborhood__pf_ga3e1cd3b24eb635c65181182cbb4ae3eb}{Two\-Dpfold\-List()}
+\end{DoxySeeAlso}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+5c75856983243498944e57f34bc52c72
\ No newline at end of file
--- /dev/null
+\hypertarget{structbondT}{\section{bond\-T Struct Reference}
+\label{structbondT}\index{bond\-T@{bond\-T}}
+}
+
+
+Base pair.
+
+
+
+
+\subsection{Detailed Description}
+Base pair.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structbondTEn}{\section{bond\-T\-En Struct Reference}
+\label{structbondTEn}\index{bond\-T\-En@{bond\-T\-En}}
+}
+
+
+Base pair with associated energy.
+
+
+
+
+\subsection{Detailed Description}
+Base pair with associated energy.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structcofoldF}{\section{cofold\-F Struct Reference}
+\label{structcofoldF}\index{cofold\-F@{cofold\-F}}
+}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structcofoldF_af6c496438321eb8bb907a21de1915c23}{double \hyperlink{structcofoldF_af6c496438321eb8bb907a21de1915c23}{F0\-A\-B}}\label{structcofoldF_af6c496438321eb8bb907a21de1915c23}
+
+\begin{DoxyCompactList}\small\item\em Null model without Duplex\-Init. \end{DoxyCompactList}\item
+\hypertarget{structcofoldF_a2ae1245ff4a93cd11f882f490f777cb7}{double \hyperlink{structcofoldF_a2ae1245ff4a93cd11f882f490f777cb7}{F\-A\-B}}\label{structcofoldF_a2ae1245ff4a93cd11f882f490f777cb7}
+
+\begin{DoxyCompactList}\small\item\em all states with Duplex\-Init correction \end{DoxyCompactList}\item
+\hypertarget{structcofoldF_a4899a4f9b42e416baf46c5fe10751c45}{double \hyperlink{structcofoldF_a4899a4f9b42e416baf46c5fe10751c45}{Fc\-A\-B}}\label{structcofoldF_a4899a4f9b42e416baf46c5fe10751c45}
+
+\begin{DoxyCompactList}\small\item\em true hybrid states only \end{DoxyCompactList}\item
+\hypertarget{structcofoldF_a460f3ba205c205e6f5ec27cc2e2eb2b2}{double \hyperlink{structcofoldF_a460f3ba205c205e6f5ec27cc2e2eb2b2}{F\-A}}\label{structcofoldF_a460f3ba205c205e6f5ec27cc2e2eb2b2}
+
+\begin{DoxyCompactList}\small\item\em monomer A \end{DoxyCompactList}\item
+\hypertarget{structcofoldF_ad3e5466724f3987be9d6f388b8ee5129}{double \hyperlink{structcofoldF_ad3e5466724f3987be9d6f388b8ee5129}{F\-B}}\label{structcofoldF_ad3e5466724f3987be9d6f388b8ee5129}
+
+\begin{DoxyCompactList}\small\item\em monomer B \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structconstrain}{\section{constrain Struct Reference}
+\label{structconstrain}\index{constrain@{constrain}}
+}
+
+
+constraints for cofolding
+
+
+
+
+\subsection{Detailed Description}
+constraints for cofolding
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structcpair}{\section{cpair Struct Reference}
+\label{structcpair}\index{cpair@{cpair}}
+}
+
+
+this datastructure is used as input parameter in functions of P\-S\-\_\-dot.\-c
+
+
+
+
+\subsection{Detailed Description}
+this datastructure is used as input parameter in functions of P\-S\-\_\-dot.\-c
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structdupVar}{\section{dup\-Var Struct Reference}
+\label{structdupVar}\index{dup\-Var@{dup\-Var}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structduplexT}{\section{duplex\-T Struct Reference}
+\label{structduplexT}\index{duplex\-T@{duplex\-T}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structfolden}{\section{folden Struct Reference}
+\label{structfolden}\index{folden@{folden}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structinteract}{\section{interact Struct Reference}
+\label{structinteract}\index{interact@{interact}}
+}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structinteract_a1fc8b3860c083f164daa9712690a3a56}{double $\ast$ \hyperlink{structinteract_a1fc8b3860c083f164daa9712690a3a56}{Pi}}\label{structinteract_a1fc8b3860c083f164daa9712690a3a56}
+
+\begin{DoxyCompactList}\small\item\em probabilities of interaction \end{DoxyCompactList}\item
+\hypertarget{structinteract_a54f8183542fff4c32ab7ace49a16c02c}{double $\ast$ \hyperlink{structinteract_a54f8183542fff4c32ab7ace49a16c02c}{Gi}}\label{structinteract_a54f8183542fff4c32ab7ace49a16c02c}
+
+\begin{DoxyCompactList}\small\item\em free energies of interaction \end{DoxyCompactList}\item
+\hypertarget{structinteract_ad58303190f9e085c3ab59890cbf61223}{double \hyperlink{structinteract_ad58303190f9e085c3ab59890cbf61223}{Gikjl}}\label{structinteract_ad58303190f9e085c3ab59890cbf61223}
+
+\begin{DoxyCompactList}\small\item\em full free energy for interaction between \mbox{[}k,i\mbox{]} k$<$i in longer seq and \mbox{[}j,l\mbox{]} j$<$l in shorter seq \end{DoxyCompactList}\item
+\hypertarget{structinteract_a41793812abae560805414761fec398fe}{double \hyperlink{structinteract_a41793812abae560805414761fec398fe}{Gikjl\-\_\-wo}}\label{structinteract_a41793812abae560805414761fec398fe}
+
+\begin{DoxyCompactList}\small\item\em Gikjl without contributions for prob\-\_\-unpaired. \end{DoxyCompactList}\item
+\hypertarget{structinteract_ab6d031a21388be8763b75ea74c937f17}{int \hyperlink{structinteract_ab6d031a21388be8763b75ea74c937f17}{i}}\label{structinteract_ab6d031a21388be8763b75ea74c937f17}
+
+\begin{DoxyCompactList}\small\item\em k$<$i in longer seq \end{DoxyCompactList}\item
+\hypertarget{structinteract_a61e457fbf943d57364be6ddf1b4e7b8a}{int \hyperlink{structinteract_a61e457fbf943d57364be6ddf1b4e7b8a}{k}}\label{structinteract_a61e457fbf943d57364be6ddf1b4e7b8a}
+
+\begin{DoxyCompactList}\small\item\em k$<$i in longer seq \end{DoxyCompactList}\item
+\hypertarget{structinteract_a7555cb6363d1479341eb72b9c087aa34}{int \hyperlink{structinteract_a7555cb6363d1479341eb72b9c087aa34}{j}}\label{structinteract_a7555cb6363d1479341eb72b9c087aa34}
+
+\begin{DoxyCompactList}\small\item\em j$<$l in shorter seq \end{DoxyCompactList}\item
+\hypertarget{structinteract_a030ab45056342e12cb3955e4defd3904}{int \hyperlink{structinteract_a030ab45056342e12cb3955e4defd3904}{l}}\label{structinteract_a030ab45056342e12cb3955e4defd3904}
+
+\begin{DoxyCompactList}\small\item\em j$<$l in shorter seq \end{DoxyCompactList}\item
+\hypertarget{structinteract_ac9fcb5dca54ec5faa76e02b6488b9524}{int \hyperlink{structinteract_ac9fcb5dca54ec5faa76e02b6488b9524}{length}}\label{structinteract_ac9fcb5dca54ec5faa76e02b6488b9524}
+
+\begin{DoxyCompactList}\small\item\em length of longer sequence \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structintermediate__t}{\section{intermediate\-\_\-t Struct Reference}
+\label{structintermediate__t}\index{intermediate\-\_\-t@{intermediate\-\_\-t}}
+}
+
+
+Collaboration diagram for intermediate\-\_\-t\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=158pt]{structintermediate__t__coll__graph}
+\end{center}
+\end{figure}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structintermediate__t_a9a2b6258aa1af06ea3504631de8dadba}{short $\ast$ \hyperlink{structintermediate__t_a9a2b6258aa1af06ea3504631de8dadba}{pt}}\label{structintermediate__t_a9a2b6258aa1af06ea3504631de8dadba}
+
+\begin{DoxyCompactList}\small\item\em pair table \end{DoxyCompactList}\item
+\hypertarget{structintermediate__t_ac44e091915da58927978d54ef59234c7}{int \hyperlink{structintermediate__t_ac44e091915da58927978d54ef59234c7}{Sen}}\label{structintermediate__t_ac44e091915da58927978d54ef59234c7}
+
+\begin{DoxyCompactList}\small\item\em saddle energy so far \end{DoxyCompactList}\item
+\hypertarget{structintermediate__t_af84d640df33aea99e959b2e4f61a7367}{int \hyperlink{structintermediate__t_af84d640df33aea99e959b2e4f61a7367}{curr\-\_\-en}}\label{structintermediate__t_af84d640df33aea99e959b2e4f61a7367}
+
+\begin{DoxyCompactList}\small\item\em current energy \end{DoxyCompactList}\item
+\hypertarget{structintermediate__t_a94e947f18273bbfe3dd544085b025a7b}{\hyperlink{structmove__t}{move\-\_\-t} $\ast$ \hyperlink{structintermediate__t_a94e947f18273bbfe3dd544085b025a7b}{moves}}\label{structintermediate__t_a94e947f18273bbfe3dd544085b025a7b}
+
+\begin{DoxyCompactList}\small\item\em remaining moves to target \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+128749ca1e4638d5a755d06e486e4b6b
\ No newline at end of file
--- /dev/null
+\hypertarget{structmodel__detailsT}{\section{model\-\_\-details\-T Struct Reference}
+\label{structmodel__detailsT}\index{model\-\_\-details\-T@{model\-\_\-details\-T}}
+}
+
+
+The data structure that contains the complete model details used throughout the calculations.
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+int \hyperlink{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{dangles}
+\begin{DoxyCompactList}\small\item\em Specifies the dangle model used in any energy evaluation (0,1,2 or 3) \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{int \hyperlink{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}{special\-\_\-hp}}\label{structmodel__detailsT_a9d73fde17b0465311a80f607faa85617}
+
+\begin{DoxyCompactList}\small\item\em Include special hairpin contributions for tri, tetra and hexaloops. \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_a6fb076173d2cbc4259606ce23eedf17d}{int \hyperlink{structmodel__detailsT_a6fb076173d2cbc4259606ce23eedf17d}{no\-L\-P}}\label{structmodel__detailsT_a6fb076173d2cbc4259606ce23eedf17d}
+
+\begin{DoxyCompactList}\small\item\em Only consider canonical structures, i.\-e. no 'lonely' base pairs. \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_a0f982e6904d012e4fe41e99daa797f5d}{int \hyperlink{structmodel__detailsT_a0f982e6904d012e4fe41e99daa797f5d}{no\-G\-U}}\label{structmodel__detailsT_a0f982e6904d012e4fe41e99daa797f5d}
+
+\begin{DoxyCompactList}\small\item\em Do not allow G\-U pairs. \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_ae9cedf375cd904e5fb8e56cf3f64bcd9}{int \hyperlink{structmodel__detailsT_ae9cedf375cd904e5fb8e56cf3f64bcd9}{no\-G\-Uclosure}}\label{structmodel__detailsT_ae9cedf375cd904e5fb8e56cf3f64bcd9}
+
+\begin{DoxyCompactList}\small\item\em Do not allow loops to be closed by G\-U pair. \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_a415556dc150e02d108be81ecc5c48e85}{int \hyperlink{structmodel__detailsT_a415556dc150e02d108be81ecc5c48e85}{log\-M\-L}}\label{structmodel__detailsT_a415556dc150e02d108be81ecc5c48e85}
+
+\begin{DoxyCompactList}\small\item\em Use logarithmic scaling for multi loops. \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_a55f083dad18c216505805a8062e63074}{int \hyperlink{structmodel__detailsT_a55f083dad18c216505805a8062e63074}{circ}}\label{structmodel__detailsT_a55f083dad18c216505805a8062e63074}
+
+\begin{DoxyCompactList}\small\item\em Assume molecule to be circular. \end{DoxyCompactList}\item
+\hypertarget{structmodel__detailsT_aa1ecdce7bc3f375bd8a9a7b738abc0ea}{int \hyperlink{structmodel__detailsT_aa1ecdce7bc3f375bd8a9a7b738abc0ea}{gquad}}\label{structmodel__detailsT_aa1ecdce7bc3f375bd8a9a7b738abc0ea}
+
+\begin{DoxyCompactList}\small\item\em Include G-\/quadruplexes in structure prediction. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+The data structure that contains the complete model details used throughout the calculations.
+
+\subsection{Field Documentation}
+\hypertarget{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}{\index{model\-\_\-details\-T@{model\-\_\-details\-T}!dangles@{dangles}}
+\index{dangles@{dangles}!model_detailsT@{model\-\_\-details\-T}}
+\subsubsection[{dangles}]{\setlength{\rightskip}{0pt plus 5cm}int model\-\_\-details\-T\-::dangles}}\label{structmodel__detailsT_a89f9df217a4a7f4351a642655976376b}
+
+
+Specifies the dangle model used in any energy evaluation (0,1,2 or 3)
+
+\begin{DoxyNote}{Note}
+Some function do not implement all dangle model but only a subset of (0,1,2,3). Read the documentaion of the particular recurrences or energy evaluation function for information about the provided dangle model.
+\end{DoxyNote}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structmove__t}{\section{move\-\_\-t Struct Reference}
+\label{structmove__t}\index{move\-\_\-t@{move\-\_\-t}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structpair__info}{\section{pair\-\_\-info Struct Reference}
+\label{structpair__info}\index{pair\-\_\-info@{pair\-\_\-info}}
+}
+
+
+A base pair info structure.
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structpair__info_a7905e17da6a6cc48230ee6205628ed7f}{unsigned \hyperlink{structpair__info_a7905e17da6a6cc48230ee6205628ed7f}{i}}\label{structpair__info_a7905e17da6a6cc48230ee6205628ed7f}
+
+\begin{DoxyCompactList}\small\item\em nucleotide position i \end{DoxyCompactList}\item
+\hypertarget{structpair__info_a35665817b5792703ff4325e1bcbe5e21}{unsigned \hyperlink{structpair__info_a35665817b5792703ff4325e1bcbe5e21}{j}}\label{structpair__info_a35665817b5792703ff4325e1bcbe5e21}
+
+\begin{DoxyCompactList}\small\item\em nucleotide position j \end{DoxyCompactList}\item
+\hypertarget{structpair__info_af0895ea40ec0c23bfe8aa2c3babf0e80}{float \hyperlink{structpair__info_af0895ea40ec0c23bfe8aa2c3babf0e80}{p}}\label{structpair__info_af0895ea40ec0c23bfe8aa2c3babf0e80}
+
+\begin{DoxyCompactList}\small\item\em Probability. \end{DoxyCompactList}\item
+\hypertarget{structpair__info_ab3aa7a54e6976f46e69c6ffcddd0e782}{float \hyperlink{structpair__info_ab3aa7a54e6976f46e69c6ffcddd0e782}{ent}}\label{structpair__info_ab3aa7a54e6976f46e69c6ffcddd0e782}
+
+\begin{DoxyCompactList}\small\item\em Pseudo entropy for $ p(i,j) = S_i + S_j - p_ij*ln(p_ij) $. \end{DoxyCompactList}\item
+\hypertarget{structpair__info_a23fc316453d179474bed7f6ed2489723}{short \hyperlink{structpair__info_a23fc316453d179474bed7f6ed2489723}{bp} \mbox{[}8\mbox{]}}\label{structpair__info_a23fc316453d179474bed7f6ed2489723}
+
+\begin{DoxyCompactList}\small\item\em Frequencies of pair\-\_\-types. \end{DoxyCompactList}\item
+\hypertarget{structpair__info_a4da3d6c9042500c16c4b06e0bbc48190}{char \hyperlink{structpair__info_a4da3d6c9042500c16c4b06e0bbc48190}{comp}}\label{structpair__info_a4da3d6c9042500c16c4b06e0bbc48190}
+
+\begin{DoxyCompactList}\small\item\em 1 iff pair is in mfe structure \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+A base pair info structure.
+
+For each base pair (i,j) with i,j in \mbox{[}0, n-\/1\mbox{]} the structure lists\-:
+\begin{DoxyItemize}
+\item its probability 'p'
+\item an entropy-\/like measure for its well-\/definedness 'ent'
+\item the frequency of each type of pair in 'bp\mbox{[}\mbox{]}'
+\begin{DoxyItemize}
+\item 'bp\mbox{[}0\mbox{]}' contains the number of non-\/compatible sequences
+\item 'bp\mbox{[}1\mbox{]}' the number of C\-G pairs, etc.
+\end{DoxyItemize}
+\end{DoxyItemize}
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structpairpro}{\section{pairpro Struct Reference}
+\label{structpairpro}\index{pairpro@{pairpro}}
+}
+
+
+Collaboration diagram for pairpro\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=126pt]{structpairpro__coll__graph}
+\end{center}
+\end{figure}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+5591f959eb0885ff66753b4ed7b7bbf2
\ No newline at end of file
--- /dev/null
+\hypertarget{structparamT}{\section{param\-T Struct Reference}
+\label{structparamT}\index{param\-T@{param\-T}}
+}
+
+
+The datastructure that contains temperature scaled energy parameters.
+
+
+
+
+Collaboration diagram for param\-T\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=183pt]{structparamT__coll__graph}
+\end{center}
+\end{figure}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structparamT_a8ed207b95868d1085bd9c197fbc6924f}{double \hyperlink{structparamT_a8ed207b95868d1085bd9c197fbc6924f}{temperature}}\label{structparamT_a8ed207b95868d1085bd9c197fbc6924f}
+
+\begin{DoxyCompactList}\small\item\em Temperature used for loop contribution scaling. \end{DoxyCompactList}\item
+\hypertarget{structparamT_aeb912822ef912705bc202b14f9d71ad9}{\hyperlink{structmodel__detailsT}{model\-\_\-details\-T} \hyperlink{structparamT_aeb912822ef912705bc202b14f9d71ad9}{model\-\_\-details}}\label{structparamT_aeb912822ef912705bc202b14f9d71ad9}
+
+\begin{DoxyCompactList}\small\item\em Model details to be used in the recursions. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+The datastructure that contains temperature scaled energy parameters.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+bee93fd296b5fba77ea18c9623e901d6
\ No newline at end of file
--- /dev/null
+\hypertarget{structpath__t}{\section{path\-\_\-t Struct Reference}
+\label{structpath__t}\index{path\-\_\-t@{path\-\_\-t}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structpf__paramT}{\section{pf\-\_\-param\-T Struct Reference}
+\label{structpf__paramT}\index{pf\-\_\-param\-T@{pf\-\_\-param\-T}}
+}
+
+
+The datastructure that contains temperature scaled Boltzmann weights of the energy parameters.
+
+
+
+
+Collaboration diagram for pf\-\_\-param\-T\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=183pt]{structpf__paramT__coll__graph}
+\end{center}
+\end{figure}
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structpf__paramT_aef40322e7ca1adbd9b438aeda0352e8f}{double \hyperlink{structpf__paramT_aef40322e7ca1adbd9b438aeda0352e8f}{pf\-\_\-scale}}\label{structpf__paramT_aef40322e7ca1adbd9b438aeda0352e8f}
+
+\begin{DoxyCompactList}\small\item\em Scaling factor to avoid over-\//underflows. \end{DoxyCompactList}\item
+\hypertarget{structpf__paramT_aa0e11e9f1f6e212640baf40d7195a014}{double \hyperlink{structpf__paramT_aa0e11e9f1f6e212640baf40d7195a014}{temperature}}\label{structpf__paramT_aa0e11e9f1f6e212640baf40d7195a014}
+
+\begin{DoxyCompactList}\small\item\em Temperature used for loop contribution scaling. \end{DoxyCompactList}\item
+double \hyperlink{structpf__paramT_a3d2af9040acfa08295efb50f0219149d}{alpha}
+\begin{DoxyCompactList}\small\item\em Scaling factor for the thermodynamic temperature. \end{DoxyCompactList}\item
+\hypertarget{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}{\hyperlink{structmodel__detailsT}{model\-\_\-details\-T} \hyperlink{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}{model\-\_\-details}}\label{structpf__paramT_a43ec875779c5e7c8bf5fa7e837ec6d09}
+
+\begin{DoxyCompactList}\small\item\em Model details to be used in the recursions. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+The datastructure that contains temperature scaled Boltzmann weights of the energy parameters.
+
+\subsection{Field Documentation}
+\hypertarget{structpf__paramT_a3d2af9040acfa08295efb50f0219149d}{\index{pf\-\_\-param\-T@{pf\-\_\-param\-T}!alpha@{alpha}}
+\index{alpha@{alpha}!pf_paramT@{pf\-\_\-param\-T}}
+\subsubsection[{alpha}]{\setlength{\rightskip}{0pt plus 5cm}double pf\-\_\-param\-T\-::alpha}}\label{structpf__paramT_a3d2af9040acfa08295efb50f0219149d}
+
+
+Scaling factor for the thermodynamic temperature.
+
+This allows for temperature scaling in Boltzmann factors independently from the energy contributions. The resulting Boltzmann factors are then computed by $ e^{-E/(\alpha \cdot K \cdot T)} $
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+e728b4f57e5dcf1dc01fc5a3e30b7148
\ No newline at end of file
--- /dev/null
+\hypertarget{structplist}{\section{plist Struct Reference}
+\label{structplist}\index{plist@{plist}}
+}
+
+
+this datastructure is used as input parameter in functions of \hyperlink{PS__dot_8h}{P\-S\-\_\-dot.\-h} and others
+
+
+
+
+\subsection{Detailed Description}
+this datastructure is used as input parameter in functions of \hyperlink{PS__dot_8h}{P\-S\-\_\-dot.\-h} and others
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structpu__contrib}{\section{pu\-\_\-contrib Struct Reference}
+\label{structpu__contrib}\index{pu\-\_\-contrib@{pu\-\_\-contrib}}
+}
+
+
+contributions to p\-\_\-u
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structpu__contrib_ac9034ac9a84ed0647587659d6e9be1e8}{double $\ast$$\ast$ \hyperlink{structpu__contrib_ac9034ac9a84ed0647587659d6e9be1e8}{H}}\label{structpu__contrib_ac9034ac9a84ed0647587659d6e9be1e8}
+
+\begin{DoxyCompactList}\small\item\em hairpin loops \end{DoxyCompactList}\item
+\hypertarget{structpu__contrib_a8ca0da20536780589fb3e3472ca0581f}{double $\ast$$\ast$ \hyperlink{structpu__contrib_a8ca0da20536780589fb3e3472ca0581f}{I}}\label{structpu__contrib_a8ca0da20536780589fb3e3472ca0581f}
+
+\begin{DoxyCompactList}\small\item\em interior loops \end{DoxyCompactList}\item
+\hypertarget{structpu__contrib_a1222ebf74f426bbcd843dcc325da207b}{double $\ast$$\ast$ \hyperlink{structpu__contrib_a1222ebf74f426bbcd843dcc325da207b}{M}}\label{structpu__contrib_a1222ebf74f426bbcd843dcc325da207b}
+
+\begin{DoxyCompactList}\small\item\em multi loops \end{DoxyCompactList}\item
+\hypertarget{structpu__contrib_accb192ba6b4b91a1cb2f8080934fd428}{double $\ast$$\ast$ \hyperlink{structpu__contrib_accb192ba6b4b91a1cb2f8080934fd428}{E}}\label{structpu__contrib_accb192ba6b4b91a1cb2f8080934fd428}
+
+\begin{DoxyCompactList}\small\item\em exterior loop \end{DoxyCompactList}\item
+\hypertarget{structpu__contrib_a33d5ada6e861db0c81aa3d5b2989262e}{int \hyperlink{structpu__contrib_a33d5ada6e861db0c81aa3d5b2989262e}{length}}\label{structpu__contrib_a33d5ada6e861db0c81aa3d5b2989262e}
+
+\begin{DoxyCompactList}\small\item\em length of the input sequence \end{DoxyCompactList}\item
+\hypertarget{structpu__contrib_a403c1c7f20beeeffba7632fac0cfcbff}{int \hyperlink{structpu__contrib_a403c1c7f20beeeffba7632fac0cfcbff}{w}}\label{structpu__contrib_a403c1c7f20beeeffba7632fac0cfcbff}
+
+\begin{DoxyCompactList}\small\item\em longest unpaired region \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+contributions to p\-\_\-u
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structpu__out}{\section{pu\-\_\-out Struct Reference}
+\label{structpu__out}\index{pu\-\_\-out@{pu\-\_\-out}}
+}
+
+
+Collection of all free\-\_\-energy of beeing unpaired values for output.
+
+
+\subsection*{Data Fields}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{structpu__out_a314b8f43c3ee0bf6060afbeced5dbe6c}{int \hyperlink{structpu__out_a314b8f43c3ee0bf6060afbeced5dbe6c}{len}}\label{structpu__out_a314b8f43c3ee0bf6060afbeced5dbe6c}
+
+\begin{DoxyCompactList}\small\item\em sequence length \end{DoxyCompactList}\item
+\hypertarget{structpu__out_a7697bc7a46cd1b8e37e337e708cb6023}{int \hyperlink{structpu__out_a7697bc7a46cd1b8e37e337e708cb6023}{u\-\_\-vals}}\label{structpu__out_a7697bc7a46cd1b8e37e337e708cb6023}
+
+\begin{DoxyCompactList}\small\item\em number of different -\/u values \end{DoxyCompactList}\item
+\hypertarget{structpu__out_a638b0de1837cfd441871d005d3ab2938}{int \hyperlink{structpu__out_a638b0de1837cfd441871d005d3ab2938}{contribs}}\label{structpu__out_a638b0de1837cfd441871d005d3ab2938}
+
+\begin{DoxyCompactList}\small\item\em \mbox{[}-\/c \char`\"{}\-S\-H\-I\-M\-E\char`\"{}\mbox{]} \end{DoxyCompactList}\item
+\hypertarget{structpu__out_ac9e9e30b16e7d04c770460b8487fb09d}{char $\ast$$\ast$ \hyperlink{structpu__out_ac9e9e30b16e7d04c770460b8487fb09d}{header}}\label{structpu__out_ac9e9e30b16e7d04c770460b8487fb09d}
+
+\begin{DoxyCompactList}\small\item\em header line \end{DoxyCompactList}\item
+\hypertarget{structpu__out_a366edbc4170d5c177908e178ff340828}{double $\ast$$\ast$ \hyperlink{structpu__out_a366edbc4170d5c177908e178ff340828}{u\-\_\-values}}\label{structpu__out_a366edbc4170d5c177908e178ff340828}
+
+\begin{DoxyCompactList}\small\item\em (the -\/u values $\ast$ \mbox{[}-\/c \char`\"{}\-S\-H\-I\-M\-E\char`\"{}\mbox{]}) $\ast$ seq len \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Collection of all free\-\_\-energy of beeing unpaired values for output.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structsect}{\section{sect Struct Reference}
+\label{structsect}\index{sect@{sect}}
+}
+
+
+Stack of partial structures for backtracking.
+
+
+
+
+\subsection{Detailed Description}
+Stack of partial structures for backtracking.
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structsnoopT}{\section{snoop\-T Struct Reference}
+\label{structsnoopT}\index{snoop\-T@{snoop\-T}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{data__structures_8h}{data\-\_\-structures.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structstruct__en}{\section{struct\-\_\-en Struct Reference}
+\label{structstruct__en}\index{struct\-\_\-en@{struct\-\_\-en}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/move\-\_\-set.\-h\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structsvm__model}{\section{svm\-\_\-model Struct Reference}
+\label{structsvm__model}\index{svm\-\_\-model@{svm\-\_\-model}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/svm\-\_\-utils.\-h\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{structswString}{\section{sw\-String Struct Reference}
+\label{structswString}\index{sw\-String@{sw\-String}}
+}
+
+
+The documentation for this struct was generated from the following file\-:\begin{DoxyCompactItemize}
+\item
+/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/\hyperlink{dist__vars_8h}{dist\-\_\-vars.\-h}\end{DoxyCompactItemize}
--- /dev/null
+\hypertarget{subopt_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/subopt.h File Reference}
+\label{subopt_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/subopt.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/subopt.\-h}}
+}
+
+
+R\-N\-Asubopt and density of states declarations.
+
+
+Include dependency graph for subopt.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{subopt_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt} (char $\ast$seq, char $\ast$structure, int delta, F\-I\-L\-E $\ast$fp)
+\begin{DoxyCompactList}\small\item\em Returns list of subopt structures or writes to fp. \end{DoxyCompactList}\item
+\hypertarget{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{subopt\-\_\-par} (char $\ast$seq, char $\ast$structure, \hyperlink{structparamT}{param\-T} $\ast$parameters, int delta, int is\-\_\-constrained, int is\-\_\-circular, F\-I\-L\-E $\ast$fp)}\label{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}
+
+\begin{DoxyCompactList}\small\item\em Returns list of subopt structures or writes to fp. \end{DoxyCompactList}\item
+\hyperlink{structSOLUTION}{S\-O\-L\-U\-T\-I\-O\-N} $\ast$ \hyperlink{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{subopt\-\_\-circ} (char $\ast$seq, char $\ast$sequence, int delta, F\-I\-L\-E $\ast$fp)
+\begin{DoxyCompactList}\small\item\em Returns list of circular subopt structures or writes to fp. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+\hypertarget{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{int \hyperlink{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{subopt\-\_\-sorted}}\label{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}
+
+\begin{DoxyCompactList}\small\item\em Sort output by energy. \end{DoxyCompactList}\item
+\hypertarget{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{double \hyperlink{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{print\-\_\-energy}}\label{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}
+
+\begin{DoxyCompactList}\small\item\em printing threshold for use with log\-M\-L \end{DoxyCompactList}\item
+int \hyperlink{group__dos_ga937634a76b46a22530a74906f1957a9e}{density\-\_\-of\-\_\-states} \mbox{[}\hyperlink{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{M\-A\-X\-D\-O\-S}+1\mbox{]}
+\begin{DoxyCompactList}\small\item\em The Density of States. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+R\-N\-Asubopt and density of states declarations.
\ No newline at end of file
--- /dev/null
+79554c9d0a4530ba6575fb51cb202669
\ No newline at end of file
--- /dev/null
+\hypertarget{subopt_8h}{\section{subopt.\-h}
+\label{subopt_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/subopt.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/subopt.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{comment}{/* subopt.h */}
+00002 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_SUBOPT\_H\_\_}
+00003 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_SUBOPT\_H\_\_}
+00004 \textcolor{preprocessor}{}
+00005 \textcolor{preprocessor}{#include "\hyperlink{data__structures_8h}{data\_structures.h}"}
+00006
+00007 \textcolor{preprocessor}{#define MAXDOS 1000}
+00008 \textcolor{preprocessor}{}
+00043 \hyperlink{structSOLUTION}{SOLUTION} *\hyperlink{group__subopt__wuchty_ga700f662506a233e42dd7fda74fafd40e}{subopt} (\textcolor{keywordtype}{char} *seq,
+00044 \textcolor{keywordtype}{char} *structure,
+00045 \textcolor{keywordtype}{int} delta,
+00046 FILE *fp);
+00047
+00053 \hyperlink{structSOLUTION}{SOLUTION} *\hyperlink{group__subopt__wuchty_ga554dedfcdb249fdf151caade58666e4d}{subopt\_par}( \textcolor{keywordtype}{char} *seq,
+00054 \textcolor{keywordtype}{char} *structure,
+00055 \hyperlink{structparamT}{paramT} *parameters,
+00056 \textcolor{keywordtype}{int} delta,
+00057 \textcolor{keywordtype}{int} is\_constrained,
+00058 \textcolor{keywordtype}{int} is\_circular,
+00059 FILE *fp);
+00060
+00075 \hyperlink{structSOLUTION}{SOLUTION} *\hyperlink{group__subopt__wuchty_ga8634516e4740e0b6c9a46d2bae940340}{subopt\_circ} ( \textcolor{keywordtype}{char} *seq,
+00076 \textcolor{keywordtype}{char} *sequence,
+00077 \textcolor{keywordtype}{int} delta,
+00078 FILE *fp);
+00079
+00086 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__subopt__wuchty_ga873cf8ed69e0437f8efa8b1fec854a0e}{subopt\_sorted};
+00087
+00088
+00095 \textcolor{keyword}{extern} \textcolor{keywordtype}{double} \hyperlink{group__subopt__wuchty_ga5e57d914bcb5feeecdf520e25313fcfe}{print\_energy};
+00096
+00113 \textcolor{keyword}{extern} \textcolor{keywordtype}{int} \hyperlink{group__dos_ga937634a76b46a22530a74906f1957a9e}{density\_of\_states}[\hyperlink{data__structures_8h_a5ec740b80afb4906ba4311dbd8ddbd89}{MAXDOS}+1];
+00114 \textcolor{comment}{/* End of group dos */}
+00116
+00117 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{svm__utils_8h}{\section{svm\-\_\-utils.\-h}
+\label{svm__utils_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/svm\-\_\-utils.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/svm\-\_\-utils.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_SUBOPT\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_SUBOPT\_H\_\_}
+00003 \textcolor{preprocessor}{}
+\hypertarget{svm__utils_8h_source_l00004}{}\hyperlink{structsvm__model}{00004} \textcolor{keyword}{typedef} \textcolor{keyword}{struct }\hyperlink{structsvm__model}{svm\_model}\{
+00005 \textcolor{keyword}{struct }svm\_parameter param;
+00006 \textcolor{keywordtype}{int} nr\_class;
+00007 \textcolor{keywordtype}{int} l;
+00008 \textcolor{keyword}{struct }svm\_node **SV;
+00009 \textcolor{keywordtype}{double} **sv\_coef;
+00010 \textcolor{keywordtype}{double} *rho;
+00011 \textcolor{keywordtype}{double} *probA;
+00012 \textcolor{keywordtype}{double} *probB;
+00013 \textcolor{keywordtype}{int} *label;
+00014 \textcolor{keywordtype}{int} *nSV;
+00015 \textcolor{keywordtype}{int} free\_sv;
+00016 \} \hyperlink{structsvm__model}{svm\_model};
+00017
+00018 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *avg\_model\_string;
+00019 \textcolor{keyword}{extern} \textcolor{keywordtype}{char} *sd\_model\_string;
+00020
+00021 \textcolor{keywordtype}{float} get\_z(\textcolor{keywordtype}{char} *sequence,
+00022 \textcolor{keywordtype}{double} energy);
+00023 \textcolor{keywordtype}{double} avg\_regression (\textcolor{keywordtype}{int} N,
+00024 \textcolor{keywordtype}{int} A,
+00025 \textcolor{keywordtype}{int} C,
+00026 \textcolor{keywordtype}{int} G,
+00027 \textcolor{keywordtype}{int} T,
+00028 \textcolor{keyword}{struct} \hyperlink{structsvm__model}{svm\_model} *avg\_model,
+00029 \textcolor{keywordtype}{int} *info );
+00030 \textcolor{keywordtype}{double} sd\_regression (\textcolor{keywordtype}{int} N,
+00031 \textcolor{keywordtype}{int} A,
+00032 \textcolor{keywordtype}{int} C,
+00033 \textcolor{keywordtype}{int} G,
+00034 \textcolor{keywordtype}{int} T,
+00035 \textcolor{keyword}{struct} \hyperlink{structsvm__model}{svm\_model} *sd\_model);
+00036 \textcolor{keywordtype}{double} minimal\_sd (\textcolor{keywordtype}{int} N,
+00037 \textcolor{keywordtype}{int} A,
+00038 \textcolor{keywordtype}{int} C,
+00039 \textcolor{keywordtype}{int} G,
+00040 \textcolor{keywordtype}{int} T);
+00041 \hyperlink{structsvm__model}{svm\_model} *svm\_load\_model\_string(\textcolor{keywordtype}{char} *modelString);
+00042 \textcolor{keywordtype}{int} *get\_seq\_composition( \textcolor{keywordtype}{short} *S,
+00043 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} start,
+00044 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} stop);
+00045
+00046 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{treedist_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/treedist.h File Reference}
+\label{treedist_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/treedist.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/treedist.\-h}}
+}
+
+
+Functions for \hyperlink{structTree}{Tree} Edit Distances.
+
+
+Include dependency graph for treedist.\-h\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{treedist_8h__incl}
+\end{center}
+\end{figure}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+\hyperlink{structTree}{Tree} $\ast$ \hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\-\_\-tree} (char $\ast$struc)
+\begin{DoxyCompactList}\small\item\em Constructs a \hyperlink{structTree}{Tree} ( essentially the postorder list ) of the structure 'struc', for use in \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\-\_\-edit\-\_\-distance()}. \end{DoxyCompactList}\item
+float \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\-\_\-edit\-\_\-distance} (\hyperlink{structTree}{Tree} $\ast$T1, \hyperlink{structTree}{Tree} $\ast$T2)
+\begin{DoxyCompactList}\small\item\em Calculates the edit distance of the two trees. \end{DoxyCompactList}\item
+\hypertarget{treedist_8h_a21ad4de3ba4055aeef08b28c9ad48894}{void \hyperlink{treedist_8h_a21ad4de3ba4055aeef08b28c9ad48894}{print\-\_\-tree} (\hyperlink{structTree}{Tree} $\ast$t)}\label{treedist_8h_a21ad4de3ba4055aeef08b28c9ad48894}
+
+\begin{DoxyCompactList}\small\item\em Print a tree (mainly for debugging) \end{DoxyCompactList}\item
+void \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\-\_\-tree} (\hyperlink{structTree}{Tree} $\ast$t)
+\begin{DoxyCompactList}\small\item\em Free the memory allocated for \hyperlink{structTree}{Tree} t. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Functions for \hyperlink{structTree}{Tree} Edit Distances.
+
+\subsection{Function Documentation}
+\hypertarget{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{\index{treedist.\-h@{treedist.\-h}!make\-\_\-tree@{make\-\_\-tree}}
+\index{make\-\_\-tree@{make\-\_\-tree}!treedist.h@{treedist.\-h}}
+\subsubsection[{make\-\_\-tree}]{\setlength{\rightskip}{0pt plus 5cm}{\bf Tree}$\ast$ make\-\_\-tree (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{struc}
+\end{DoxyParamCaption}
+)}}\label{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}
+
+
+Constructs a \hyperlink{structTree}{Tree} ( essentially the postorder list ) of the structure 'struc', for use in \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\-\_\-edit\-\_\-distance()}.
+
+
+\begin{DoxyParams}{Parameters}
+{\em struc} & may be any rooted structure representation. \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{\index{treedist.\-h@{treedist.\-h}!tree\-\_\-edit\-\_\-distance@{tree\-\_\-edit\-\_\-distance}}
+\index{tree\-\_\-edit\-\_\-distance@{tree\-\_\-edit\-\_\-distance}!treedist.h@{treedist.\-h}}
+\subsubsection[{tree\-\_\-edit\-\_\-distance}]{\setlength{\rightskip}{0pt plus 5cm}float tree\-\_\-edit\-\_\-distance (
+\begin{DoxyParamCaption}
+\item[{{\bf Tree} $\ast$}]{T1, }
+\item[{{\bf Tree} $\ast$}]{T2}
+\end{DoxyParamCaption}
+)}}\label{treedist_8h_a3b21f1925f7071f46d93431a835217bb}
+
+
+Calculates the edit distance of the two trees.
+
+
+\begin{DoxyParams}{Parameters}
+{\em T1} & \\
+\hline
+{\em T2} & \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+\hypertarget{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{\index{treedist.\-h@{treedist.\-h}!free\-\_\-tree@{free\-\_\-tree}}
+\index{free\-\_\-tree@{free\-\_\-tree}!treedist.h@{treedist.\-h}}
+\subsubsection[{free\-\_\-tree}]{\setlength{\rightskip}{0pt plus 5cm}void free\-\_\-tree (
+\begin{DoxyParamCaption}
+\item[{{\bf Tree} $\ast$}]{t}
+\end{DoxyParamCaption}
+)}}\label{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}
+
+
+Free the memory allocated for \hyperlink{structTree}{Tree} t.
+
+
+\begin{DoxyParams}{Parameters}
+{\em t} & \\
+\hline
+\end{DoxyParams}
--- /dev/null
+be5317cd4fdbebf2169f17e4b15c6e4e
\ No newline at end of file
--- /dev/null
+\hypertarget{treedist_8h}{\section{treedist.\-h}
+\label{treedist_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/treedist.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/treedist.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_TREE\_DIST\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_TREE\_DIST\_H\_\_}
+00003 \textcolor{preprocessor}{}
+00009 \textcolor{preprocessor}{#include "\hyperlink{dist__vars_8h}{dist\_vars.h}"}
+00010
+00018 \hyperlink{structTree}{Tree} *\hyperlink{treedist_8h_a08fe4d5afd385dce593b86eaf010c6e3}{make\_tree}(\textcolor{keywordtype}{char} *struc);
+00019
+00027 \textcolor{keywordtype}{float} \hyperlink{treedist_8h_a3b21f1925f7071f46d93431a835217bb}{tree\_edit\_distance}( \hyperlink{structTree}{Tree} *T1,
+00028 \hyperlink{structTree}{Tree} *T2);
+00029
+00033 \textcolor{keywordtype}{void} \hyperlink{treedist_8h_a21ad4de3ba4055aeef08b28c9ad48894}{print\_tree}(\hyperlink{structTree}{Tree} *t);
+00034
+00040 \textcolor{keywordtype}{void} \hyperlink{treedist_8h_acbc1cb9bce582ea945e4a467c76a57aa}{free\_tree}(\hyperlink{structTree}{Tree} *t);
+00041
+00042 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+\hypertarget{utils_8h}{\section{/home/asherstnev/\-Projects/\-Java.projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/utils.h File Reference}
+\label{utils_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/utils.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/utils.\-h}}
+}
+
+
+Various utility-\/ and helper-\/functions used throughout the Vienna R\-N\-A package.
+
+
+This graph shows which files directly or indirectly include this file\-:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=250pt]{utils_8h__dep__incl}
+\end{center}
+\end{figure}
+\subsection*{Macros}
+\begin{DoxyCompactItemize}
+\item
+\#define \hyperlink{utils_8h_ad403c9ea58f1836689404c2931419c8c}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R}~1\-U
+\item
+\#define \hyperlink{utils_8h_a72f3c6ca5c83d2b9baed2922d19c403d}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T}~2\-U
+\item
+\#define \hyperlink{utils_8h_a8e3241b321c9c1a78a69e59e2e019a71}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C}~4\-U
+\item
+\#define \hyperlink{utils_8h_a2f0d8069e93d3ac54d9320d6bdb8e7e7}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R}~8\-U
+\item
+\#define \hyperlink{utils_8h_a8566d6787972100e68b5a2a159b4cf45}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E}~16\-U
+\item
+\#define \hyperlink{utils_8h_ac08a9df45b9721b97a47dbfe7a6e5f85}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T}~32\-U
+\item
+\#define \hyperlink{utils_8h_a086742158293217a46ae2f71bb296937}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N}~256\-U
+\item
+\#define \hyperlink{utils_8h_a7a2e8c50a0c7ce82e60da1016e1367fd}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T}~512\-U
+\item
+\#define \hyperlink{utils_8h_a0de536599b881c787b0943a2671da476}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N}~1024\-U
+\item
+\#define \hyperlink{utils_8h_ab4db885222b3b69608310d7c7e63e286}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S}~2048\-U
+\item
+\#define \hyperlink{utils_8h_a305474b93ccb79ae4c7754016a8ddd84}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E}~4096\-U
+\item
+\#define \hyperlink{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S}~128\-U
+\item
+\#define \hyperlink{utils_8h_af2062e0eeefffd3ed639af460b3d4fab}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T}~8192\-U
+\item
+\#define \hyperlink{utils_8h_a4e8d7120619b21df0309af425acbc9a2}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E}~1\-U
+\item
+\#define \hyperlink{utils_8h_a55e1d16fd693ae9ec8e987b0750da804}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T}~2\-U
+\item
+\#define \hyperlink{utils_8h_a077c56550c915d4516d84a5ed8d051f4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X}~4\-U
+\item
+\#define \hyperlink{utils_8h_a0512d790f738742cbdcf3f7c87b46f48}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K}~8\-U
+\item
+\#define \hyperlink{utils_8h_aa20bfca4bb2903c8548000a33d7bbb53}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K}~16\-U
+\item
+\#define \hyperlink{utils_8h_a7d725ef525b29891abef3f1ed42599a4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}~32\-U
+\item
+\#define \hyperlink{utils_8h_a08d12a9a846ea593b7171d277c9f033f}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R}~64\-U
+\item
+\#define \hyperlink{utils_8h_a0a697f77a6fbb10f34e16fa68ed9e655}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L}~128\-U
+\item
+\#define \hyperlink{utils_8h_a99dc6b23dc4080a76e2ed1a81c20e94d}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G}~256\-U
+\item
+\#define \hyperlink{utils_8h_abec89c09874528c6cb73140a4c3d86d7}{V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}~32\-U
+\item
+\#define \hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{M\-I\-N2}(A, B)~((A) $<$ (B) ? (A) \-: (B))
+\item
+\#define \hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{M\-A\-X2}(A, B)~((A) $>$ (B) ? (A) \-: (B))
+\item
+\#define \hyperlink{utils_8h_a721b8d5f3abef17f10293f1f7f8c958e}{M\-I\-N3}(A, B, C)~(\hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{M\-I\-N2}( (\hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{M\-I\-N2}((A),(B))) ,(C)))
+\item
+\#define \hyperlink{utils_8h_a8d577123d2e66d2b7d0bf9af6e172b93}{M\-A\-X3}(A, B, C)~(\hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{M\-A\-X2}( (\hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{M\-A\-X2}((A),(B))) ,(C)))
+\item
+\#define \hyperlink{utils_8h_a03943706e48069237cd57f2d35ca987e}{X\-S\-T\-R}(s)~\hyperlink{utils_8h_a6388870e639eee9c0a69446876f1f8cc}{S\-T\-R}(s)
+\item
+\#define \hyperlink{utils_8h_a6388870e639eee9c0a69446876f1f8cc}{S\-T\-R}(s)~\#s
+\item
+\#define \hyperlink{utils_8h_afb228174279df9486a5cb56ac0bc79a3}{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H}~80
+\begin{DoxyCompactList}\small\item\em Maximum length of filenames that are generated by our programs. \end{DoxyCompactList}\item
+\#define \hyperlink{utils_8h_a33c3b1826b8e2739f09f111ec719ded5}{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H}~42
+\begin{DoxyCompactList}\small\item\em Maximum length of id taken from fasta header for filename generation. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Functions}
+\begin{DoxyCompactItemize}
+\item
+void $\ast$ \hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space} (unsigned size)
+\begin{DoxyCompactList}\small\item\em Allocate space safely. \end{DoxyCompactList}\item
+void $\ast$ \hyperlink{utils_8h_a9037ada838835b1b9db41581a021b0c8}{xrealloc} (void $\ast$p, unsigned size)
+\begin{DoxyCompactList}\small\item\em Reallocate space safely. \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{nrerror} (const char message\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Die with an error message. \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{warn\-\_\-user} (const char message\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Print a warning message. \end{DoxyCompactList}\item
+\hypertarget{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}{void \hyperlink{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}{init\-\_\-rand} (void)}\label{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}
+
+\begin{DoxyCompactList}\small\item\em Make random number seeds. \end{DoxyCompactList}\item
+double \hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn} (void)
+\begin{DoxyCompactList}\small\item\em get a random number from \mbox{[}0..1\mbox{]} \end{DoxyCompactList}\item
+int \hyperlink{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}{int\-\_\-urn} (int from, int to)
+\begin{DoxyCompactList}\small\item\em Generates a pseudo random integer in a specified range. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}{time\-\_\-stamp} (void)
+\begin{DoxyCompactList}\small\item\em Get a timestamp. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{utils_8h_a1b95eac365a021572e1c37e5993a89be}{random\-\_\-string} (int l, const char symbols\mbox{[}$\,$\mbox{]})
+\begin{DoxyCompactList}\small\item\em Create a random string using characters from a specified symbol set. \end{DoxyCompactList}\item
+int \hyperlink{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{hamming} (const char $\ast$s1, const char $\ast$s2)
+\begin{DoxyCompactList}\small\item\em Calculate hamming distance between two sequences. \end{DoxyCompactList}\item
+int \hyperlink{utils_8h_a96d3c36717d624514055ce201cab1542}{hamming\-\_\-bound} (const char $\ast$s1, const char $\ast$s2, int n)
+\begin{DoxyCompactList}\small\item\em Calculate hamming distance between two sequences up to a specified length. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}{get\-\_\-line} (F\-I\-L\-E $\ast$fp)
+\begin{DoxyCompactList}\small\item\em Read a line of arbitrary length from a stream. \end{DoxyCompactList}\item
+unsigned int \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line} (char $\ast$$\ast$string, unsigned int options)
+\item
+unsigned int \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record} (char $\ast$$\ast$header, char $\ast$$\ast$sequence, char $\ast$$\ast$$\ast$rest, unsigned int options)
+\begin{DoxyCompactList}\small\item\em Get a data record from stdin. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\-\_\-structure} (const char $\ast$struc)
+\begin{DoxyCompactList}\small\item\em Pack secondary secondary structure, 5\-:1 compression using base 3 encoding. \end{DoxyCompactList}\item
+char $\ast$ \hyperlink{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}{unpack\-\_\-structure} (const char $\ast$packed)
+\begin{DoxyCompactList}\small\item\em Unpack secondary structure previously packed with \hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\-\_\-structure()} \end{DoxyCompactList}\item
+short $\ast$ \hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\-\_\-pair\-\_\-table} (const char $\ast$structure)
+\begin{DoxyCompactList}\small\item\em Create a pair table of a secondary structure. \end{DoxyCompactList}\item
+short $\ast$ \hyperlink{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}{copy\-\_\-pair\-\_\-table} (const short $\ast$pt)
+\begin{DoxyCompactList}\small\item\em Get an exact copy of a pair table. \end{DoxyCompactList}\item
+short $\ast$ \hyperlink{utils_8h_a3c81b3967056c3888b8472b65fbb16f5}{alimake\-\_\-pair\-\_\-table} (const char $\ast$structure)
+\item
+short $\ast$ \hyperlink{utils_8h_a9aa3bf3b4346bb7fb88efc154dd07a79}{make\-\_\-pair\-\_\-table\-\_\-snoop} (const char $\ast$structure)
+\item
+int $\ast$ \hyperlink{utils_8h_a4358e89f64cc87a563b7ef3855f75bed}{make\-\_\-loop\-\_\-index\-\_\-pt} (short $\ast$pt)
+\begin{DoxyCompactList}\small\item\em Compute the \char`\"{}base pair\char`\"{} distance between two secondary structures s1 and s2. \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_a6bf778117d31b7fd90db435323f4ef74}{print\-\_\-tty\-\_\-input\-\_\-seq} (void)
+\begin{DoxyCompactList}\small\item\em Print a line to {\itshape stdout} that asks for an input sequence. \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_ae4ef89b662a3e9b5b5f0781d9757aba0}{print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str} (const char $\ast$s)
+\begin{DoxyCompactList}\small\item\em Print a line with a user defined string and a ruler to stdout. \end{DoxyCompactList}\item
+\hypertarget{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}{void \hyperlink{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}{print\-\_\-tty\-\_\-constraint\-\_\-full} (void)}\label{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}
+
+\begin{DoxyCompactList}\small\item\em Print structure constraint characters to stdout (full constraint support) \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_a4d167deb70bb51723e44374dc981deb2}{print\-\_\-tty\-\_\-constraint} (unsigned int option)
+\begin{DoxyCompactList}\small\item\em Print structure constraint characters to stdout. (constraint support is specified by option parameter) \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}{str\-\_\-\-D\-N\-A2\-R\-N\-A} (char $\ast$sequence)
+\begin{DoxyCompactList}\small\item\em Convert a D\-N\-A input sequence to R\-N\-A alphabet. \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_a17b796b806f96b70382077fb5bc519bb}{str\-\_\-uppercase} (char $\ast$sequence)
+\begin{DoxyCompactList}\small\item\em Convert an input sequence to uppercase. \end{DoxyCompactList}\item
+int $\ast$ \hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx} (unsigned int length)
+\begin{DoxyCompactList}\small\item\em Get an index mapper array (iindx) for accessing the energy matrices, e.\-g. in partition function related functions. \end{DoxyCompactList}\item
+int $\ast$ \hyperlink{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{get\-\_\-indx} (unsigned int length)
+\begin{DoxyCompactList}\small\item\em Get an index mapper array (indx) for accessing the energy matrices, e.\-g. in M\-F\-E related functions. \end{DoxyCompactList}\item
+void \hyperlink{utils_8h_a36c3a6c3218b041f992052767bc74549}{constrain\-\_\-ptypes} (const char $\ast$constraint, unsigned int length, char $\ast$ptype, int $\ast$B\-P, int min\-\_\-loop\-\_\-size, unsigned int idx\-\_\-type)
+\begin{DoxyCompactList}\small\item\em Insert constraining pair types according to constraint structure string. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\subsection*{Variables}
+\begin{DoxyCompactItemize}
+\item
+unsigned short \hyperlink{utils_8h_af9a866c8417afda7368bbac939ab3c47}{xsubi} \mbox{[}3\mbox{]}
+\begin{DoxyCompactList}\small\item\em Current 48 bit random number. \end{DoxyCompactList}\end{DoxyCompactItemize}
+
+
+\subsection{Detailed Description}
+Various utility-\/ and helper-\/functions used throughout the Vienna R\-N\-A package.
+
+\subsection{Macro Definition Documentation}
+\hypertarget{utils_8h_ad403c9ea58f1836689404c2931419c8c}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R~1\-U}}\label{utils_8h_ad403c9ea58f1836689404c2931419c8c}
+Output flag of \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-: \char`\"{}\-An E\-R\-R\-O\-R has occured, maybe E\-O\-F\char`\"{} \hypertarget{utils_8h_a72f3c6ca5c83d2b9baed2922d19c403d}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T~2\-U}}\label{utils_8h_a72f3c6ca5c83d2b9baed2922d19c403d}
+Output flag of \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-: \char`\"{}the user requested quitting the program\char`\"{} \hypertarget{utils_8h_a8e3241b321c9c1a78a69e59e2e019a71}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C~4\-U}}\label{utils_8h_a8e3241b321c9c1a78a69e59e2e019a71}
+Output flag of \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-: \char`\"{}something was read\char`\"{} \hypertarget{utils_8h_a2f0d8069e93d3ac54d9320d6bdb8e7e7}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R~8\-U}}\label{utils_8h_a2f0d8069e93d3ac54d9320d6bdb8e7e7}
+Input/\-Output flag of \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-:\par
+ if used as input option this tells \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()} that the data to be read should comply with the F\-A\-S\-T\-A format
+
+the function will return this flag if a fasta header was read \hypertarget{utils_8h_a8566d6787972100e68b5a2a159b4cf45}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-S\-E\-Q\-U\-E\-N\-C\-E~16\-U}}\label{utils_8h_a8566d6787972100e68b5a2a159b4cf45}
+Input flag for \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-:\par
+ Tell \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()} that we assume to read a nucleotide sequence \hypertarget{utils_8h_ac08a9df45b9721b97a47dbfe7a6e5f85}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T~32\-U}}\label{utils_8h_ac08a9df45b9721b97a47dbfe7a6e5f85}
+Input flag for \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-:\par
+ Tell \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()} that we assume to read a structure constraint \hypertarget{utils_8h_a086742158293217a46ae2f71bb296937}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-T\-R\-U\-N\-C\-A\-T\-I\-O\-N~256\-U}}\label{utils_8h_a086742158293217a46ae2f71bb296937}
+Input switch for \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-: \char`\"{}do not trunkate the line by eliminating white spaces at end of line\char`\"{} \hypertarget{utils_8h_a7a2e8c50a0c7ce82e60da1016e1367fd}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T~512\-U}}\label{utils_8h_a7a2e8c50a0c7ce82e60da1016e1367fd}
+Input switch for \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()}\-: \char`\"{}do fill rest array\char`\"{} \hypertarget{utils_8h_a0de536599b881c787b0943a2671da476}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N~1024\-U}}\label{utils_8h_a0de536599b881c787b0943a2671da476}
+Input switch for \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()}\-: \char`\"{}never allow data to span more than one line\char`\"{} \hypertarget{utils_8h_ab4db885222b3b69608310d7c7e63e286}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S~2048\-U}}\label{utils_8h_ab4db885222b3b69608310d7c7e63e286}
+Input switch for \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()}\-: \char`\"{}do not skip empty lines\char`\"{} \hypertarget{utils_8h_a305474b93ccb79ae4c7754016a8ddd84}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E~4096\-U}}\label{utils_8h_a305474b93ccb79ae4c7754016a8ddd84}
+Output flag for \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()}\-: \char`\"{}read an empty line\char`\"{} \hypertarget{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S~128\-U}}\label{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}
+Input switch for \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\-\_\-input\-\_\-line()}\-: \char`\"{}do not skip comment lines\char`\"{} \hypertarget{utils_8h_af2062e0eeefffd3ed639af460b3d4fab}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T}}
+\index{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T@{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T~8192\-U}}\label{utils_8h_af2062e0eeefffd3ed639af460b3d4fab}
+Output flag for \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()}\-: \char`\"{}read a comment\char`\"{} \hypertarget{utils_8h_a4e8d7120619b21df0309af425acbc9a2}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E~1\-U}}\label{utils_8h_a4e8d7120619b21df0309af425acbc9a2}
+pipe sign '$|$' switch for structure constraints (paired with another base) \hypertarget{utils_8h_a55e1d16fd693ae9ec8e987b0750da804}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T~2\-U}}\label{utils_8h_a55e1d16fd693ae9ec8e987b0750da804}
+dot '.' switch for structure constraints (no constraint at all) \hypertarget{utils_8h_a077c56550c915d4516d84a5ed8d051f4}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X~4\-U}}\label{utils_8h_a077c56550c915d4516d84a5ed8d051f4}
+'x' switch for structure constraint (base must not pair) \hypertarget{utils_8h_a0512d790f738742cbdcf3f7c87b46f48}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K~8\-U}}\label{utils_8h_a0512d790f738742cbdcf3f7c87b46f48}
+angle brackets '$<$', '$>$' switch for structure constraint (paired downstream/upstream) \hypertarget{utils_8h_aa20bfca4bb2903c8548000a33d7bbb53}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K~16\-U}}\label{utils_8h_aa20bfca4bb2903c8548000a33d7bbb53}
+round brackets '(',')' switch for structure constraint (base i pairs base j) \hypertarget{utils_8h_a7d725ef525b29891abef3f1ed42599a4}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E~32\-U}}\label{utils_8h_a7d725ef525b29891abef3f1ed42599a4}
+constraint may span over several lines \hypertarget{utils_8h_a08d12a9a846ea593b7171d277c9f033f}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-N\-O\-\_\-\-H\-E\-A\-D\-E\-R~64\-U}}\label{utils_8h_a08d12a9a846ea593b7171d277c9f033f}
+do not print the header information line \hypertarget{utils_8h_a0a697f77a6fbb10f34e16fa68ed9e655}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-L\-L~128\-U}}\label{utils_8h_a0a697f77a6fbb10f34e16fa68ed9e655}
+placeholder for all constraining characters \hypertarget{utils_8h_a99dc6b23dc4080a76e2ed1a81c20e94d}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G}}
+\index{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G@{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-G~256\-U}}\label{utils_8h_a99dc6b23dc4080a76e2ed1a81c20e94d}
+'+' switch for structure constraint (base is involved in a gquad) \hypertarget{utils_8h_abec89c09874528c6cb73140a4c3d86d7}{\index{utils.\-h@{utils.\-h}!V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E@{V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}}
+\index{V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E@{V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}!utils.h@{utils.\-h}}
+\subsubsection[{V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E}]{\setlength{\rightskip}{0pt plus 5cm}\#define V\-R\-N\-A\-\_\-\-O\-P\-T\-I\-O\-N\-\_\-\-M\-U\-L\-T\-I\-L\-I\-N\-E~32\-U}}\label{utils_8h_abec89c09874528c6cb73140a4c3d86d7}
+Tell a function that an input is assumed to span several lines if used as input-\/option A function might also be returning this state telling that it has read data from multiple lines.
+
+\begin{DoxySeeAlso}{See Also}
+extract\-\_\-record\-\_\-rest\-\_\-structure(), \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()}, get\-Constraint()
+\end{DoxySeeAlso}
+\hypertarget{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{\index{utils.\-h@{utils.\-h}!M\-I\-N2@{M\-I\-N2}}
+\index{M\-I\-N2@{M\-I\-N2}!utils.h@{utils.\-h}}
+\subsubsection[{M\-I\-N2}]{\setlength{\rightskip}{0pt plus 5cm}\#define M\-I\-N2(
+\begin{DoxyParamCaption}
+\item[{}]{A, }
+\item[{}]{B}
+\end{DoxyParamCaption}
+)~((A) $<$ (B) ? (A) \-: (B))}}\label{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}
+Get the minimum of two comparable values \hypertarget{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{\index{utils.\-h@{utils.\-h}!M\-A\-X2@{M\-A\-X2}}
+\index{M\-A\-X2@{M\-A\-X2}!utils.h@{utils.\-h}}
+\subsubsection[{M\-A\-X2}]{\setlength{\rightskip}{0pt plus 5cm}\#define M\-A\-X2(
+\begin{DoxyParamCaption}
+\item[{}]{A, }
+\item[{}]{B}
+\end{DoxyParamCaption}
+)~((A) $>$ (B) ? (A) \-: (B))}}\label{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}
+Get the maximum of two comparable values \hypertarget{utils_8h_a721b8d5f3abef17f10293f1f7f8c958e}{\index{utils.\-h@{utils.\-h}!M\-I\-N3@{M\-I\-N3}}
+\index{M\-I\-N3@{M\-I\-N3}!utils.h@{utils.\-h}}
+\subsubsection[{M\-I\-N3}]{\setlength{\rightskip}{0pt plus 5cm}\#define M\-I\-N3(
+\begin{DoxyParamCaption}
+\item[{}]{A, }
+\item[{}]{B, }
+\item[{}]{C}
+\end{DoxyParamCaption}
+)~({\bf M\-I\-N2}( ({\bf M\-I\-N2}((A),(B))) ,(C)))}}\label{utils_8h_a721b8d5f3abef17f10293f1f7f8c958e}
+Get the minimum of three comparable values \hypertarget{utils_8h_a8d577123d2e66d2b7d0bf9af6e172b93}{\index{utils.\-h@{utils.\-h}!M\-A\-X3@{M\-A\-X3}}
+\index{M\-A\-X3@{M\-A\-X3}!utils.h@{utils.\-h}}
+\subsubsection[{M\-A\-X3}]{\setlength{\rightskip}{0pt plus 5cm}\#define M\-A\-X3(
+\begin{DoxyParamCaption}
+\item[{}]{A, }
+\item[{}]{B, }
+\item[{}]{C}
+\end{DoxyParamCaption}
+)~({\bf M\-A\-X2}( ({\bf M\-A\-X2}((A),(B))) ,(C)))}}\label{utils_8h_a8d577123d2e66d2b7d0bf9af6e172b93}
+Get the maximum of three comparable values \hypertarget{utils_8h_a03943706e48069237cd57f2d35ca987e}{\index{utils.\-h@{utils.\-h}!X\-S\-T\-R@{X\-S\-T\-R}}
+\index{X\-S\-T\-R@{X\-S\-T\-R}!utils.h@{utils.\-h}}
+\subsubsection[{X\-S\-T\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define X\-S\-T\-R(
+\begin{DoxyParamCaption}
+\item[{}]{s}
+\end{DoxyParamCaption}
+)~{\bf S\-T\-R}(s)}}\label{utils_8h_a03943706e48069237cd57f2d35ca987e}
+Stringify a macro after expansion \hypertarget{utils_8h_a6388870e639eee9c0a69446876f1f8cc}{\index{utils.\-h@{utils.\-h}!S\-T\-R@{S\-T\-R}}
+\index{S\-T\-R@{S\-T\-R}!utils.h@{utils.\-h}}
+\subsubsection[{S\-T\-R}]{\setlength{\rightskip}{0pt plus 5cm}\#define S\-T\-R(
+\begin{DoxyParamCaption}
+\item[{}]{s}
+\end{DoxyParamCaption}
+)~\#s}}\label{utils_8h_a6388870e639eee9c0a69446876f1f8cc}
+Stringify a macro argument \hypertarget{utils_8h_afb228174279df9486a5cb56ac0bc79a3}{\index{utils.\-h@{utils.\-h}!F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H@{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H}}
+\index{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H@{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H}!utils.h@{utils.\-h}}
+\subsubsection[{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H}]{\setlength{\rightskip}{0pt plus 5cm}\#define F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H~80}}\label{utils_8h_afb228174279df9486a5cb56ac0bc79a3}
+
+
+Maximum length of filenames that are generated by our programs.
+
+This definition should be used throughout the complete Vienna\-R\-N\-A package wherever a static array holding filenames of output files is declared. \hypertarget{utils_8h_a33c3b1826b8e2739f09f111ec719ded5}{\index{utils.\-h@{utils.\-h}!F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H@{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H}}
+\index{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H@{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H}!utils.h@{utils.\-h}}
+\subsubsection[{F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H}]{\setlength{\rightskip}{0pt plus 5cm}\#define F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-I\-D\-\_\-\-L\-E\-N\-G\-T\-H~42}}\label{utils_8h_a33c3b1826b8e2739f09f111ec719ded5}
+
+
+Maximum length of id taken from fasta header for filename generation.
+
+this has to be smaller than F\-I\-L\-E\-N\-A\-M\-E\-\_\-\-M\-A\-X\-\_\-\-L\-E\-N\-G\-T\-H since in most cases, some suffix will be appended to the I\-D
+
+\subsection{Function Documentation}
+\hypertarget{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{\index{utils.\-h@{utils.\-h}!space@{space}}
+\index{space@{space}!utils.h@{utils.\-h}}
+\subsubsection[{space}]{\setlength{\rightskip}{0pt plus 5cm}void$\ast$ space (
+\begin{DoxyParamCaption}
+\item[{unsigned}]{size}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}
+
+
+Allocate space safely.
+
+
+\begin{DoxyParams}{Parameters}
+{\em size} & The size of the memory to be allocated in bytes \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pointer to the allocated memory
+\end{DoxyReturn}
+\hypertarget{utils_8h_a9037ada838835b1b9db41581a021b0c8}{\index{utils.\-h@{utils.\-h}!xrealloc@{xrealloc}}
+\index{xrealloc@{xrealloc}!utils.h@{utils.\-h}}
+\subsubsection[{xrealloc}]{\setlength{\rightskip}{0pt plus 5cm}void$\ast$ xrealloc (
+\begin{DoxyParamCaption}
+\item[{void $\ast$}]{p, }
+\item[{unsigned}]{size}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a9037ada838835b1b9db41581a021b0c8}
+
+
+Reallocate space safely.
+
+
+\begin{DoxyParams}{Parameters}
+{\em p} & A pointer to the memory region to be reallocated \\
+\hline
+{\em size} & The size of the memory to be allocated in bytes \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pointer to the newly allocated memory
+\end{DoxyReturn}
+\hypertarget{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{\index{utils.\-h@{utils.\-h}!nrerror@{nrerror}}
+\index{nrerror@{nrerror}!utils.h@{utils.\-h}}
+\subsubsection[{nrerror}]{\setlength{\rightskip}{0pt plus 5cm}void nrerror (
+\begin{DoxyParamCaption}
+\item[{const char}]{message\mbox{[}$\,$\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a127ce946e56b5a5773781cabe68e38c5}
+
+
+Die with an error message.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{warn\-\_\-user()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em message} & The error message to be printed before exiting with 'F\-A\-I\-L\-U\-R\-E' \\
+\hline
+\end{DoxyParams}
+\hypertarget{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{\index{utils.\-h@{utils.\-h}!warn\-\_\-user@{warn\-\_\-user}}
+\index{warn\-\_\-user@{warn\-\_\-user}!utils.h@{utils.\-h}}
+\subsubsection[{warn\-\_\-user}]{\setlength{\rightskip}{0pt plus 5cm}void warn\-\_\-user (
+\begin{DoxyParamCaption}
+\item[{const char}]{message\mbox{[}$\,$\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}
+
+
+Print a warning message.
+
+Print a warning message to {\itshape stderr}
+
+
+\begin{DoxyParams}{Parameters}
+{\em message} & The warning message \\
+\hline
+\end{DoxyParams}
+\hypertarget{utils_8h_aaa328491c84996e445d027fde9800f2e}{\index{utils.\-h@{utils.\-h}!urn@{urn}}
+\index{urn@{urn}!utils.h@{utils.\-h}}
+\subsubsection[{urn}]{\setlength{\rightskip}{0pt plus 5cm}double urn (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_aaa328491c84996e445d027fde9800f2e}
+
+
+get a random number from \mbox{[}0..1\mbox{]}
+
+\begin{DoxyNote}{Note}
+Usually implemented by calling {\itshape erand48()}.
+\end{DoxyNote}
+\begin{DoxyReturn}{Returns}
+A random number in range \mbox{[}0..1\mbox{]}
+\end{DoxyReturn}
+\hypertarget{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}{\index{utils.\-h@{utils.\-h}!int\-\_\-urn@{int\-\_\-urn}}
+\index{int\-\_\-urn@{int\-\_\-urn}!utils.h@{utils.\-h}}
+\subsubsection[{int\-\_\-urn}]{\setlength{\rightskip}{0pt plus 5cm}int int\-\_\-urn (
+\begin{DoxyParamCaption}
+\item[{int}]{from, }
+\item[{int}]{to}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}
+
+
+Generates a pseudo random integer in a specified range.
+
+
+\begin{DoxyParams}{Parameters}
+{\em from} & The first number in range \\
+\hline
+{\em to} & The last number in range \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pseudo random number in range \mbox{[}from, to\mbox{]}
+\end{DoxyReturn}
+\hypertarget{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}{\index{utils.\-h@{utils.\-h}!time\-\_\-stamp@{time\-\_\-stamp}}
+\index{time\-\_\-stamp@{time\-\_\-stamp}!utils.h@{utils.\-h}}
+\subsubsection[{time\-\_\-stamp}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ time\-\_\-stamp (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}
+
+
+Get a timestamp.
+
+Returns a string containing the current date in the format \begin{DoxyVerb}Fri Mar 19 21:10:57 1993\end{DoxyVerb}
+
+
+\begin{DoxyReturn}{Returns}
+A string containing the timestamp
+\end{DoxyReturn}
+\hypertarget{utils_8h_a1b95eac365a021572e1c37e5993a89be}{\index{utils.\-h@{utils.\-h}!random\-\_\-string@{random\-\_\-string}}
+\index{random\-\_\-string@{random\-\_\-string}!utils.h@{utils.\-h}}
+\subsubsection[{random\-\_\-string}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ random\-\_\-string (
+\begin{DoxyParamCaption}
+\item[{int}]{l, }
+\item[{const char}]{symbols\mbox{[}$\,$\mbox{]}}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a1b95eac365a021572e1c37e5993a89be}
+
+
+Create a random string using characters from a specified symbol set.
+
+
+\begin{DoxyParams}{Parameters}
+{\em l} & The length of the sequence \\
+\hline
+{\em symbols} & The symbol set \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A random string of length 'l' containing characters from the symbolset
+\end{DoxyReturn}
+\hypertarget{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{\index{utils.\-h@{utils.\-h}!hamming@{hamming}}
+\index{hamming@{hamming}!utils.h@{utils.\-h}}
+\subsubsection[{hamming}]{\setlength{\rightskip}{0pt plus 5cm}int hamming (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{s1, }
+\item[{const char $\ast$}]{s2}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}
+
+
+Calculate hamming distance between two sequences.
+
+Calculate the number of positions in which
+\begin{DoxyParams}{Parameters}
+{\em s1} & The first sequence \\
+\hline
+{\em s2} & The second sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The hamming distance between s1 and s2
+\end{DoxyReturn}
+\hypertarget{utils_8h_a96d3c36717d624514055ce201cab1542}{\index{utils.\-h@{utils.\-h}!hamming\-\_\-bound@{hamming\-\_\-bound}}
+\index{hamming\-\_\-bound@{hamming\-\_\-bound}!utils.h@{utils.\-h}}
+\subsubsection[{hamming\-\_\-bound}]{\setlength{\rightskip}{0pt plus 5cm}int hamming\-\_\-bound (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{s1, }
+\item[{const char $\ast$}]{s2, }
+\item[{int}]{n}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a96d3c36717d624514055ce201cab1542}
+
+
+Calculate hamming distance between two sequences up to a specified length.
+
+This function is similar to \hyperlink{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{hamming()} but instead of comparing both sequences up to their actual length only the first 'n' characters are taken into account
+\begin{DoxyParams}{Parameters}
+{\em s1} & The first sequence \\
+\hline
+{\em s2} & The second sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The hamming distance between s1 and s2
+\end{DoxyReturn}
+\hypertarget{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}{\index{utils.\-h@{utils.\-h}!get\-\_\-line@{get\-\_\-line}}
+\index{get\-\_\-line@{get\-\_\-line}!utils.h@{utils.\-h}}
+\subsubsection[{get\-\_\-line}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ get\-\_\-line (
+\begin{DoxyParamCaption}
+\item[{F\-I\-L\-E $\ast$}]{fp}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}
+
+
+Read a line of arbitrary length from a stream.
+
+Returns a pointer to the resulting string. The necessary memory is allocated and should be released using {\itshape free()} when the string is no longer needed.
+
+
+\begin{DoxyParams}{Parameters}
+{\em fp} & A file pointer to the stream where the function should read from \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pointer to the resulting string
+\end{DoxyReturn}
+\hypertarget{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{\index{utils.\-h@{utils.\-h}!get\-\_\-input\-\_\-line@{get\-\_\-input\-\_\-line}}
+\index{get\-\_\-input\-\_\-line@{get\-\_\-input\-\_\-line}!utils.h@{utils.\-h}}
+\subsubsection[{get\-\_\-input\-\_\-line}]{\setlength{\rightskip}{0pt plus 5cm}unsigned int get\-\_\-input\-\_\-line (
+\begin{DoxyParamCaption}
+\item[{char $\ast$$\ast$}]{string, }
+\item[{unsigned int}]{options}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a8ef1835eb83f542396f59f0b205965e5}
+Retrieve a line from 'stdin' savely while skipping comment characters and other features This function returns the type of input it has read if recognized. An option argument allows to switch between different reading modes.\par
+ Currently available options are\-:\par
+ \#\-V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-P\-R\-I\-N\-T\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S, \hyperlink{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S}, \#\-V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-E\-L\-I\-M\-\_\-\-W\-S\-\_\-\-S\-U\-F\-F\-I\-X
+
+pass a collection of options as one value like this\-: \begin{DoxyVerb}get_input_line(string, option_1 | option_2 | option_n) \end{DoxyVerb}
+
+
+If the function recognizes the type of input, it will report it in the return value. It also reports if a user defined 'quit' command (@-\/sign on 'stdin') was given. Possible return values are\-:\par
+ \hyperlink{utils_8h_a2f0d8069e93d3ac54d9320d6bdb8e7e7}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-F\-A\-S\-T\-A\-\_\-\-H\-E\-A\-D\-E\-R}, \hyperlink{utils_8h_ad403c9ea58f1836689404c2931419c8c}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-E\-R\-R\-O\-R}, \hyperlink{utils_8h_a8e3241b321c9c1a78a69e59e2e019a71}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-M\-I\-S\-C}, \hyperlink{utils_8h_a72f3c6ca5c83d2b9baed2922d19c403d}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-Q\-U\-I\-T}
+
+
+\begin{DoxyParams}{Parameters}
+{\em string} & A pointer to the character array that contains the line read \\
+\hline
+{\em options} & A collection of options for switching the functions behavior \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A flag with information about what has been read
+\end{DoxyReturn}
+\hypertarget{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{\index{utils.\-h@{utils.\-h}!read\-\_\-record@{read\-\_\-record}}
+\index{read\-\_\-record@{read\-\_\-record}!utils.h@{utils.\-h}}
+\subsubsection[{read\-\_\-record}]{\setlength{\rightskip}{0pt plus 5cm}unsigned int read\-\_\-record (
+\begin{DoxyParamCaption}
+\item[{char $\ast$$\ast$}]{header, }
+\item[{char $\ast$$\ast$}]{sequence, }
+\item[{char $\ast$$\ast$$\ast$}]{rest, }
+\item[{unsigned int}]{options}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_afd194a69af9d92b5b0412a7627ac1595}
+
+
+Get a data record from stdin.
+
+\begin{DoxyVerb}This function may be used to obtain complete datasets from stdin. A dataset is always
+defined to contain at least a sequence. If data on stdin starts with a fasta header,
+i.e. a line like
+\end{DoxyVerb}
+ \begin{DoxyVerb}>some header info \end{DoxyVerb}
+ then \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\-\_\-record()} will assume that the sequence that follows the header may span over several lines. To disable this behavior and to assign a single line to the argument 'sequence' one can pass V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-S\-P\-A\-N in the 'options' argument. If no fasta header is read in the beginning of a data block, a sequence must not span over multiple lines!\par
+ Unless the options \hyperlink{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-C\-O\-M\-M\-E\-N\-T\-S} or \hyperlink{utils_8h_ab4db885222b3b69608310d7c7e63e286}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-S\-K\-I\-P\-\_\-\-B\-L\-A\-N\-K\-\_\-\-L\-I\-N\-E\-S} are passed, a sequence may be interrupted by lines starting with a comment character or empty lines.\par
+ A sequence is regarded as completely read if it was either assumed to not span over multiple lines, a secondary structure or structure constraint follows the sequence on the next line or a new header marks the beginning of a new sequence...\par
+ All lines following the sequence (this includes comments) and not initiating a new dataset are available through the line-\/array 'rest'. Here one can usually find the structure constraint or other information belonging to the current dataset. Filling of 'rest' may be prevented by passing \hyperlink{utils_8h_a7a2e8c50a0c7ce82e60da1016e1367fd}{V\-R\-N\-A\-\_\-\-I\-N\-P\-U\-T\-\_\-\-N\-O\-\_\-\-R\-E\-S\-T} to the options argument.\par
+
+
+\begin{DoxyNote}{Note}
+This function will exit any program with an error message if no sequence could be read! \begin{DoxyVerb}The main purpose of this function is to be able to easily parse blocks of data from stdin
+in the header of a loop where all calculations for the appropriate data is done inside the
+loop. The loop may be then left on certain return values, e.g.:
+\end{DoxyVerb}
+ \begin{DoxyVerb}char *id, *seq, **rest;
+int i;
+while(!(read_record(&id, &seq, &rest, 0) & (VRNA_INPUT_ERROR | VRNA_INPUT_QUIT))){
+ if(id) printf("%s\n", id);
+ printf("%s\n", seq);
+ if(rest)
+ for(i=0;rest[i];i++)
+ printf("%s\n", rest[i]);
+} \end{DoxyVerb}
+ \begin{DoxyVerb}In the example above, the while loop will be terminated when read_record() returns either an
+error or a user initiated quit request.\n
+As long as data is read from stdin, the id is printed if it is available for the current block
+of data. The sequence will be printed in any case and if some more lines belong to the current
+block of data each line will be printed as well.
+\end{DoxyVerb}
+
+
+Do not forget to free the memory occupied by header, sequence and rest!
+\end{DoxyNote}
+
+\begin{DoxyParams}{Parameters}
+{\em header} & A pointer which will be set such that it points to the header of the record \\
+\hline
+{\em sequence} & A pointer which will be set such that it points to the sequence of the record \\
+\hline
+{\em rest} & A pointer which will be set such that it points to an array of lines which also belong to the record \\
+\hline
+{\em options} & Some options which may be passed to alter the behavior of the function, use 0 for no options \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A flag with information about what the function actually did read
+\end{DoxyReturn}
+\hypertarget{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{\index{utils.\-h@{utils.\-h}!pack\-\_\-structure@{pack\-\_\-structure}}
+\index{pack\-\_\-structure@{pack\-\_\-structure}!utils.h@{utils.\-h}}
+\subsubsection[{pack\-\_\-structure}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ pack\-\_\-structure (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{struc}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}
+
+
+Pack secondary secondary structure, 5\-:1 compression using base 3 encoding.
+
+Returns a binary string encoding of the secondary structure using a 5\-:1 compression scheme. The string is N\-U\-L\-L terminated and can therefore be used with standard string functions such as strcmp(). Useful for programs that need to keep many structures in memory.
+
+
+\begin{DoxyParams}{Parameters}
+{\em struc} & The secondary structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The binary encoded structure
+\end{DoxyReturn}
+\hypertarget{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}{\index{utils.\-h@{utils.\-h}!unpack\-\_\-structure@{unpack\-\_\-structure}}
+\index{unpack\-\_\-structure@{unpack\-\_\-structure}!utils.h@{utils.\-h}}
+\subsubsection[{unpack\-\_\-structure}]{\setlength{\rightskip}{0pt plus 5cm}char$\ast$ unpack\-\_\-structure (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{packed}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}
+
+
+Unpack secondary structure previously packed with \hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\-\_\-structure()}
+
+Translate a compressed binary string produced by \hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\-\_\-structure()} back into the familiar dot-\/bracket notation.
+
+
+\begin{DoxyParams}{Parameters}
+{\em packed} & The binary encoded packed secondary structure \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The unpacked secondary structure in dot-\/bracket notation
+\end{DoxyReturn}
+\hypertarget{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{\index{utils.\-h@{utils.\-h}!make\-\_\-pair\-\_\-table@{make\-\_\-pair\-\_\-table}}
+\index{make\-\_\-pair\-\_\-table@{make\-\_\-pair\-\_\-table}!utils.h@{utils.\-h}}
+\subsubsection[{make\-\_\-pair\-\_\-table}]{\setlength{\rightskip}{0pt plus 5cm}short$\ast$ make\-\_\-pair\-\_\-table (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a89c32307ee50a0026f4a3131fac0845a}
+
+
+Create a pair table of a secondary structure.
+
+Returns a newly allocated table, such that table\mbox{[}i\mbox{]}=j if (i.\-j) pair or 0 if i is unpaired, table\mbox{[}0\mbox{]} contains the length of the structure.
+
+
+\begin{DoxyParams}{Parameters}
+{\em structure} & The secondary structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pointer to the created pair\-\_\-table
+\end{DoxyReturn}
+\hypertarget{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}{\index{utils.\-h@{utils.\-h}!copy\-\_\-pair\-\_\-table@{copy\-\_\-pair\-\_\-table}}
+\index{copy\-\_\-pair\-\_\-table@{copy\-\_\-pair\-\_\-table}!utils.h@{utils.\-h}}
+\subsubsection[{copy\-\_\-pair\-\_\-table}]{\setlength{\rightskip}{0pt plus 5cm}short$\ast$ copy\-\_\-pair\-\_\-table (
+\begin{DoxyParamCaption}
+\item[{const short $\ast$}]{pt}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}
+
+
+Get an exact copy of a pair table.
+
+
+\begin{DoxyParams}{Parameters}
+{\em pt} & The pair table to be copied \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+A pointer to the copy of 'pt'
+\end{DoxyReturn}
+\hypertarget{utils_8h_a3c81b3967056c3888b8472b65fbb16f5}{\index{utils.\-h@{utils.\-h}!alimake\-\_\-pair\-\_\-table@{alimake\-\_\-pair\-\_\-table}}
+\index{alimake\-\_\-pair\-\_\-table@{alimake\-\_\-pair\-\_\-table}!utils.h@{utils.\-h}}
+\subsubsection[{alimake\-\_\-pair\-\_\-table}]{\setlength{\rightskip}{0pt plus 5cm}short$\ast$ alimake\-\_\-pair\-\_\-table (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a3c81b3967056c3888b8472b65fbb16f5}
+$\ast$$\ast$$\ast$\-Pair table for snoop align \hypertarget{utils_8h_a9aa3bf3b4346bb7fb88efc154dd07a79}{\index{utils.\-h@{utils.\-h}!make\-\_\-pair\-\_\-table\-\_\-snoop@{make\-\_\-pair\-\_\-table\-\_\-snoop}}
+\index{make\-\_\-pair\-\_\-table\-\_\-snoop@{make\-\_\-pair\-\_\-table\-\_\-snoop}!utils.h@{utils.\-h}}
+\subsubsection[{make\-\_\-pair\-\_\-table\-\_\-snoop}]{\setlength{\rightskip}{0pt plus 5cm}short$\ast$ make\-\_\-pair\-\_\-table\-\_\-snoop (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{structure}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a9aa3bf3b4346bb7fb88efc154dd07a79}
+returns a newly allocated table, such that\-: table\mbox{[}i\mbox{]}=j if (i.\-j) pair or 0 if i is unpaired, table\mbox{[}0\mbox{]} contains the length of the structure. The special pseudoknotted H/\-A\-C\-A-\/m\-R\-N\-A structure is taken into account. \hypertarget{utils_8h_a4358e89f64cc87a563b7ef3855f75bed}{\index{utils.\-h@{utils.\-h}!make\-\_\-loop\-\_\-index\-\_\-pt@{make\-\_\-loop\-\_\-index\-\_\-pt}}
+\index{make\-\_\-loop\-\_\-index\-\_\-pt@{make\-\_\-loop\-\_\-index\-\_\-pt}!utils.h@{utils.\-h}}
+\subsubsection[{make\-\_\-loop\-\_\-index\-\_\-pt}]{\setlength{\rightskip}{0pt plus 5cm}int$\ast$ make\-\_\-loop\-\_\-index\-\_\-pt (
+\begin{DoxyParamCaption}
+\item[{short $\ast$}]{pt}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a4358e89f64cc87a563b7ef3855f75bed}
+
+
+Compute the \char`\"{}base pair\char`\"{} distance between two secondary structures s1 and s2.
+
+The sequences should have the same length. dist = number of base pairs in one structure but not in the other same as edit distance with open-\/pair close-\/pair as move-\/set
+
+
+\begin{DoxyParams}{Parameters}
+{\em str1} & First structure in dot-\/bracket notation \\
+\hline
+{\em str2} & Second structure in dot-\/bracket notation \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The base pair distance between str1 and str2
+\end{DoxyReturn}
+\hypertarget{utils_8h_a6bf778117d31b7fd90db435323f4ef74}{\index{utils.\-h@{utils.\-h}!print\-\_\-tty\-\_\-input\-\_\-seq@{print\-\_\-tty\-\_\-input\-\_\-seq}}
+\index{print\-\_\-tty\-\_\-input\-\_\-seq@{print\-\_\-tty\-\_\-input\-\_\-seq}!utils.h@{utils.\-h}}
+\subsubsection[{print\-\_\-tty\-\_\-input\-\_\-seq}]{\setlength{\rightskip}{0pt plus 5cm}void print\-\_\-tty\-\_\-input\-\_\-seq (
+\begin{DoxyParamCaption}
+\item[{void}]{}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a6bf778117d31b7fd90db435323f4ef74}
+
+
+Print a line to {\itshape stdout} that asks for an input sequence.
+
+There will also be a ruler (scale line) printed that helps orientation of the sequence positions \hypertarget{utils_8h_ae4ef89b662a3e9b5b5f0781d9757aba0}{\index{utils.\-h@{utils.\-h}!print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str@{print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str}}
+\index{print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str@{print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str}!utils.h@{utils.\-h}}
+\subsubsection[{print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str}]{\setlength{\rightskip}{0pt plus 5cm}void print\-\_\-tty\-\_\-input\-\_\-seq\-\_\-str (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{s}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_ae4ef89b662a3e9b5b5f0781d9757aba0}
+
+
+Print a line with a user defined string and a ruler to stdout.
+
+(usually this is used to ask for user input) There will also be a ruler (scale line) printed that helps orientation of the sequence positions
+
+
+\begin{DoxyParams}{Parameters}
+{\em s} & A user defined string that will be printed to stdout \\
+\hline
+\end{DoxyParams}
+\hypertarget{utils_8h_a4d167deb70bb51723e44374dc981deb2}{\index{utils.\-h@{utils.\-h}!print\-\_\-tty\-\_\-constraint@{print\-\_\-tty\-\_\-constraint}}
+\index{print\-\_\-tty\-\_\-constraint@{print\-\_\-tty\-\_\-constraint}!utils.h@{utils.\-h}}
+\subsubsection[{print\-\_\-tty\-\_\-constraint}]{\setlength{\rightskip}{0pt plus 5cm}void print\-\_\-tty\-\_\-constraint (
+\begin{DoxyParamCaption}
+\item[{unsigned int}]{option}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a4d167deb70bb51723e44374dc981deb2}
+
+
+Print structure constraint characters to stdout. (constraint support is specified by option parameter)
+
+Currently available options are\-:\par
+ \hyperlink{utils_8h_a4e8d7120619b21df0309af425acbc9a2}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-P\-I\-P\-E} (paired with another base)\par
+ \hyperlink{utils_8h_a55e1d16fd693ae9ec8e987b0750da804}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-D\-O\-T} (no constraint at all)\par
+ \hyperlink{utils_8h_a077c56550c915d4516d84a5ed8d051f4}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-X} (base must not pair)\par
+ \hyperlink{utils_8h_a0512d790f738742cbdcf3f7c87b46f48}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-A\-N\-G\-\_\-\-B\-R\-A\-C\-K} (paired downstream/upstream)\par
+ \hyperlink{utils_8h_aa20bfca4bb2903c8548000a33d7bbb53}{V\-R\-N\-A\-\_\-\-C\-O\-N\-S\-T\-R\-A\-I\-N\-T\-\_\-\-R\-N\-D\-\_\-\-B\-R\-A\-C\-K} (base i pairs base j)\par
+
+
+pass a collection of options as one value like this\-: \begin{DoxyVerb}print_tty_constraint(option_1 | option_2 | option_n) \end{DoxyVerb}
+
+
+
+\begin{DoxyParams}{Parameters}
+{\em option} & Option switch that tells which constraint help will be printed \\
+\hline
+\end{DoxyParams}
+\hypertarget{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}{\index{utils.\-h@{utils.\-h}!str\-\_\-\-D\-N\-A2\-R\-N\-A@{str\-\_\-\-D\-N\-A2\-R\-N\-A}}
+\index{str\-\_\-\-D\-N\-A2\-R\-N\-A@{str\-\_\-\-D\-N\-A2\-R\-N\-A}!utils.h@{utils.\-h}}
+\subsubsection[{str\-\_\-\-D\-N\-A2\-R\-N\-A}]{\setlength{\rightskip}{0pt plus 5cm}void str\-\_\-\-D\-N\-A2\-R\-N\-A (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}
+
+
+Convert a D\-N\-A input sequence to R\-N\-A alphabet.
+
+This function substitudes {\itshape T} and {\itshape t} with {\itshape U} and {\itshape u}, respectively
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The sequence to be converted \\
+\hline
+\end{DoxyParams}
+\hypertarget{utils_8h_a17b796b806f96b70382077fb5bc519bb}{\index{utils.\-h@{utils.\-h}!str\-\_\-uppercase@{str\-\_\-uppercase}}
+\index{str\-\_\-uppercase@{str\-\_\-uppercase}!utils.h@{utils.\-h}}
+\subsubsection[{str\-\_\-uppercase}]{\setlength{\rightskip}{0pt plus 5cm}void str\-\_\-uppercase (
+\begin{DoxyParamCaption}
+\item[{char $\ast$}]{sequence}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a17b796b806f96b70382077fb5bc519bb}
+
+
+Convert an input sequence to uppercase.
+
+
+\begin{DoxyParams}{Parameters}
+{\em sequence} & The sequence to be converted \\
+\hline
+\end{DoxyParams}
+\hypertarget{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{\index{utils.\-h@{utils.\-h}!get\-\_\-iindx@{get\-\_\-iindx}}
+\index{get\-\_\-iindx@{get\-\_\-iindx}!utils.h@{utils.\-h}}
+\subsubsection[{get\-\_\-iindx}]{\setlength{\rightskip}{0pt plus 5cm}int$\ast$ get\-\_\-iindx (
+\begin{DoxyParamCaption}
+\item[{unsigned int}]{length}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}
+
+
+Get an index mapper array (iindx) for accessing the energy matrices, e.\-g. in partition function related functions.
+
+Access of a position \char`\"{}(i,j)\char`\"{} is then accomplished by using\begin{DoxyVerb}(i,j) ~ iindx[i]-j \end{DoxyVerb}
+ This function is necessary as most of the two-\/dimensional energy matrices are actually one-\/dimensional arrays throughout the Vienna\-R\-N\-A\-Package
+
+Consult the implemented code to find out about the mapping formula ;)
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{get\-\_\-indx()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & The length of the R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The mapper array
+\end{DoxyReturn}
+\hypertarget{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{\index{utils.\-h@{utils.\-h}!get\-\_\-indx@{get\-\_\-indx}}
+\index{get\-\_\-indx@{get\-\_\-indx}!utils.h@{utils.\-h}}
+\subsubsection[{get\-\_\-indx}]{\setlength{\rightskip}{0pt plus 5cm}int$\ast$ get\-\_\-indx (
+\begin{DoxyParamCaption}
+\item[{unsigned int}]{length}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}
+
+
+Get an index mapper array (indx) for accessing the energy matrices, e.\-g. in M\-F\-E related functions.
+
+Access of a position \char`\"{}(i,j)\char`\"{} is then accomplished by using\begin{DoxyVerb}(i,j) ~ indx[j]+i \end{DoxyVerb}
+ This function is necessary as most of the two-\/dimensional energy matrices are actually one-\/dimensional arrays throughout the Vienna\-R\-N\-A\-Package
+
+Consult the implemented code to find out about the mapping formula ;)
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em length} & The length of the R\-N\-A sequence \\
+\hline
+\end{DoxyParams}
+\begin{DoxyReturn}{Returns}
+The mapper array
+\end{DoxyReturn}
+\hypertarget{utils_8h_a36c3a6c3218b041f992052767bc74549}{\index{utils.\-h@{utils.\-h}!constrain\-\_\-ptypes@{constrain\-\_\-ptypes}}
+\index{constrain\-\_\-ptypes@{constrain\-\_\-ptypes}!utils.h@{utils.\-h}}
+\subsubsection[{constrain\-\_\-ptypes}]{\setlength{\rightskip}{0pt plus 5cm}void constrain\-\_\-ptypes (
+\begin{DoxyParamCaption}
+\item[{const char $\ast$}]{constraint, }
+\item[{unsigned int}]{length, }
+\item[{char $\ast$}]{ptype, }
+\item[{int $\ast$}]{B\-P, }
+\item[{int}]{min\-\_\-loop\-\_\-size, }
+\item[{unsigned int}]{idx\-\_\-type}
+\end{DoxyParamCaption}
+)}}\label{utils_8h_a36c3a6c3218b041f992052767bc74549}
+
+
+Insert constraining pair types according to constraint structure string.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{get\-\_\-indx()}, \hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\-\_\-iindx()}
+\end{DoxySeeAlso}
+
+\begin{DoxyParams}{Parameters}
+{\em constraint} & The structure constraint string \\
+\hline
+{\em length} & The actual length of the sequence (constraint may be shorter) \\
+\hline
+{\em ptype} & A pointer to the basepair type array \\
+\hline
+{\em min\-\_\-loop\-\_\-size} & The minimal loop size (usually \hyperlink{energy__const_8h_ae646250fd59311356c7e5722a81c3a96}{T\-U\-R\-N} ) \\
+\hline
+{\em idx\-\_\-type} & Define the access type for base pair type array (0 = indx, 1 = iindx) \\
+\hline
+\end{DoxyParams}
+
+
+\subsection{Variable Documentation}
+\hypertarget{utils_8h_af9a866c8417afda7368bbac939ab3c47}{\index{utils.\-h@{utils.\-h}!xsubi@{xsubi}}
+\index{xsubi@{xsubi}!utils.h@{utils.\-h}}
+\subsubsection[{xsubi}]{\setlength{\rightskip}{0pt plus 5cm}unsigned short xsubi\mbox{[}3\mbox{]}}}\label{utils_8h_af9a866c8417afda7368bbac939ab3c47}
+
+
+Current 48 bit random number.
+
+This variable is used by \hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn()}. These should be set to some random number seeds before the first call to \hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn()}.
+
+\begin{DoxySeeAlso}{See Also}
+\hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn()}
+\end{DoxySeeAlso}
--- /dev/null
+3b7e7180bd5c0bd6bfa01e6b08e1a9bc
\ No newline at end of file
--- /dev/null
+\hypertarget{utils_8h}{\section{utils.\-h}
+\label{utils_8h}\index{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/utils.\-h@{/home/asherstnev/\-Projects/\-Java.\-projects/jabaws/secure-\/git/develop/binaries/src/\-Vienna\-R\-N\-A/\-H/utils.\-h}}
+}
+
+\begin{DoxyCode}
+00001 \textcolor{preprocessor}{#ifndef \_\_VIENNA\_RNA\_PACKAGE\_UTILS\_H\_\_}
+00002 \textcolor{preprocessor}{}\textcolor{preprocessor}{#define \_\_VIENNA\_RNA\_PACKAGE\_UTILS\_H\_\_}
+00003 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00012}{}\hyperlink{utils_8h_ad403c9ea58f1836689404c2931419c8c}{00012} \textcolor{preprocessor}{#define VRNA\_INPUT\_ERROR 1U}
+00013 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00016}{}\hyperlink{utils_8h_a72f3c6ca5c83d2b9baed2922d19c403d}{00016} \textcolor{preprocessor}{#define VRNA\_INPUT\_QUIT 2U}
+00017 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00020}{}\hyperlink{utils_8h_a8e3241b321c9c1a78a69e59e2e019a71}{00020} \textcolor{preprocessor}{#define VRNA\_INPUT\_MISC 4U}
+00021 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00028}{}\hyperlink{utils_8h_a2f0d8069e93d3ac54d9320d6bdb8e7e7}{00028} \textcolor{preprocessor}{#define VRNA\_INPUT\_FASTA\_HEADER 8U}
+00029 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00034}{}\hyperlink{utils_8h_a8566d6787972100e68b5a2a159b4cf45}{00034} \textcolor{preprocessor}{#define VRNA\_INPUT\_SEQUENCE 16U}
+00035 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00040}{}\hyperlink{utils_8h_ac08a9df45b9721b97a47dbfe7a6e5f85}{00040} \textcolor{preprocessor}{#define VRNA\_INPUT\_CONSTRAINT 32U}
+00041 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00046}{}\hyperlink{utils_8h_a086742158293217a46ae2f71bb296937}{00046} \textcolor{preprocessor}{#define VRNA\_INPUT\_NO\_TRUNCATION 256U}
+00047 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00051}{}\hyperlink{utils_8h_a7a2e8c50a0c7ce82e60da1016e1367fd}{00051} \textcolor{preprocessor}{#define VRNA\_INPUT\_NO\_REST 512U}
+00052 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00056}{}\hyperlink{utils_8h_a0de536599b881c787b0943a2671da476}{00056} \textcolor{preprocessor}{#define VRNA\_INPUT\_NO\_SPAN 1024U}
+00057 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00061}{}\hyperlink{utils_8h_ab4db885222b3b69608310d7c7e63e286}{00061} \textcolor{preprocessor}{#define VRNA\_INPUT\_NOSKIP\_BLANK\_LINES 2048U}
+00062 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00066}{}\hyperlink{utils_8h_a305474b93ccb79ae4c7754016a8ddd84}{00066} \textcolor{preprocessor}{#define VRNA\_INPUT\_BLANK\_LINE 4096U}
+00067 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00071}{}\hyperlink{utils_8h_a0f6311f11bed1842e3a527ab27b294c6}{00071} \textcolor{preprocessor}{#define VRNA\_INPUT\_NOSKIP\_COMMENTS 128U}
+00072 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00076}{}\hyperlink{utils_8h_af2062e0eeefffd3ed639af460b3d4fab}{00076} \textcolor{preprocessor}{#define VRNA\_INPUT\_COMMENT 8192U}
+00077 \textcolor{preprocessor}{}
+00078
+00079
+00080
+\hypertarget{utils_8h_source_l00084}{}\hyperlink{utils_8h_a4e8d7120619b21df0309af425acbc9a2}{00084} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_PIPE 1U}
+00085 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00088}{}\hyperlink{utils_8h_a55e1d16fd693ae9ec8e987b0750da804}{00088} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_DOT 2U}
+00089 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00092}{}\hyperlink{utils_8h_a077c56550c915d4516d84a5ed8d051f4}{00092} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_X 4U}
+00093 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00096}{}\hyperlink{utils_8h_a0512d790f738742cbdcf3f7c87b46f48}{00096} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_ANG\_BRACK 8U}
+00097 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00100}{}\hyperlink{utils_8h_aa20bfca4bb2903c8548000a33d7bbb53}{00100} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_RND\_BRACK 16U}
+00101 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00104}{}\hyperlink{utils_8h_a7d725ef525b29891abef3f1ed42599a4}{00104} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_MULTILINE 32U}
+00105 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00108}{}\hyperlink{utils_8h_a08d12a9a846ea593b7171d277c9f033f}{00108} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_NO\_HEADER 64U}
+00109 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00112}{}\hyperlink{utils_8h_a0a697f77a6fbb10f34e16fa68ed9e655}{00112} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_ALL 128U}
+00113 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00116}{}\hyperlink{utils_8h_a99dc6b23dc4080a76e2ed1a81c20e94d}{00116} \textcolor{preprocessor}{#define VRNA\_CONSTRAINT\_G 256U}
+00117 \textcolor{preprocessor}{}
+00118
+00119
+\hypertarget{utils_8h_source_l00128}{}\hyperlink{utils_8h_abec89c09874528c6cb73140a4c3d86d7}{00128} \textcolor{preprocessor}{#define VRNA\_OPTION\_MULTILINE 32U}
+00129 \textcolor{preprocessor}{}
+00130
+\hypertarget{utils_8h_source_l00134}{}\hyperlink{utils_8h_ae0b9cd0ce090bd69b951aa73e8fa4f7d}{00134} \textcolor{preprocessor}{#define MIN2(A, B) ((A) < (B) ? (A) : (B))}
+00135 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00138}{}\hyperlink{utils_8h_a33297b3679c713b0c4d897cd0fe3b122}{00138} \textcolor{preprocessor}{#define MAX2(A, B) ((A) > (B) ? (A) : (B))}
+00139 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00142}{}\hyperlink{utils_8h_a721b8d5f3abef17f10293f1f7f8c958e}{00142} \textcolor{preprocessor}{#define MIN3(A, B, C) (MIN2( (MIN2((A),(B))) ,(C)))}
+00143 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00146}{}\hyperlink{utils_8h_a8d577123d2e66d2b7d0bf9af6e172b93}{00146} \textcolor{preprocessor}{#define MAX3(A, B, C) (MAX2( (MAX2((A),(B))) ,(C)))}
+00147 \textcolor{preprocessor}{}
+00148
+\hypertarget{utils_8h_source_l00152}{}\hyperlink{utils_8h_a03943706e48069237cd57f2d35ca987e}{00152} \textcolor{preprocessor}{#define XSTR(s) STR(s)}
+00153 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00156}{}\hyperlink{utils_8h_a6388870e639eee9c0a69446876f1f8cc}{00156} \textcolor{preprocessor}{#define STR(s) #s}
+00157 \textcolor{preprocessor}{}
+00158 \textcolor{preprocessor}{#ifndef FILENAME\_MAX\_LENGTH}
+00159 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00165}{}\hyperlink{utils_8h_afb228174279df9486a5cb56ac0bc79a3}{00165} \textcolor{preprocessor}{#define FILENAME\_MAX\_LENGTH 80}
+00166 \textcolor{preprocessor}{}
+\hypertarget{utils_8h_source_l00172}{}\hyperlink{utils_8h_a33c3b1826b8e2739f09f111ec719ded5}{00172} \textcolor{preprocessor}{#define FILENAME\_ID\_LENGTH 42}
+00173 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00174 \textcolor{preprocessor}{}
+00175
+00176 \textcolor{preprocessor}{#ifdef HAVE\_CONFIG\_H}
+00177 \textcolor{preprocessor}{}\textcolor{preprocessor}{#include <config.h>}
+00178 \textcolor{preprocessor}{#ifndef HAVE\_STRDUP}
+00179 \textcolor{preprocessor}{}\textcolor{keywordtype}{char} *strdup(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s);
+00180 \textcolor{preprocessor}{#endif}
+00181 \textcolor{preprocessor}{}\textcolor{preprocessor}{#endif}
+00182 \textcolor{preprocessor}{}\textcolor{preprocessor}{#ifdef WITH\_DMALLOC}
+00183 \textcolor{preprocessor}{}\textcolor{comment}{/* use dmalloc library to check for memory management bugs */}
+00184 \textcolor{preprocessor}{#include "dmalloc.h"}
+00185 \textcolor{preprocessor}{#define space(S) calloc(1,(S))}
+00186 \textcolor{preprocessor}{}\textcolor{preprocessor}{#else}
+00187 \textcolor{preprocessor}{}
+00194 \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@notnull@*/}
+00195 \textcolor{keywordtype}{void} *\hyperlink{utils_8h_ad7e1e137b3bf1f7108933d302a7f0177}{space}(\textcolor{keywordtype}{unsigned} size) \textcolor{comment}{/*@ensures MaxSet(result) == (size-1);@*/};
+00196
+00204 \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@notnull@*/}
+00205 \textcolor{keywordtype}{void} *\hyperlink{utils_8h_a9037ada838835b1b9db41581a021b0c8}{xrealloc}(\textcolor{comment}{/*@null@*/} \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@out@*/} \textcolor{comment}{/*@returned@*/} \textcolor{keywordtype}{void} *p,
+00206 \textcolor{keywordtype}{unsigned} size) \textcolor{comment}{/*@modifies *p @*/} \textcolor{comment}{/*@ensures MaxSet(result) == (size-1) @*/};
+00207 \textcolor{preprocessor}{#endif}
+00208 \textcolor{preprocessor}{}
+00215 \textcolor{comment}{/*@exits@*/}
+00216 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a127ce946e56b5a5773781cabe68e38c5}{nrerror}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} message[]);
+00217
+00225 \textcolor{keywordtype}{void} \hyperlink{utils_8h_af2355fa8746f2f30fbe71db65dea3d51}{warn\_user}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} message[]);
+00226
+00230 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a8aaa6d9be6f803f496d9b97375c371f3}{init\_rand}(\textcolor{keywordtype}{void});
+00231
+00240 \textcolor{keyword}{extern} \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{short} \hyperlink{utils_8h_af9a866c8417afda7368bbac939ab3c47}{xsubi}[3];
+00241
+00248 \textcolor{keywordtype}{double} \hyperlink{utils_8h_aaa328491c84996e445d027fde9800f2e}{urn}(\textcolor{keywordtype}{void});
+00249
+00257 \textcolor{keywordtype}{int} \hyperlink{utils_8h_a68ff0849d44f62fe491800378a5ffcb4}{int\_urn}(\textcolor{keywordtype}{int} from, \textcolor{keywordtype}{int} to);
+00258
+00259 \textcolor{keywordtype}{void} filecopy(FILE *from, FILE *to); \textcolor{comment}{/* inefficient `cp' */}
+00260
+00269 \textcolor{comment}{/*@observer@*/}
+00270 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_a7afeb906cb36e9d77379eabc6907ac46}{time\_stamp}(\textcolor{keywordtype}{void});
+00271
+00279 \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@notnull@*/}
+00280 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_a1b95eac365a021572e1c37e5993a89be}{random\_string}(\textcolor{keywordtype}{int} l, \textcolor{keyword}{const} \textcolor{keywordtype}{char} symbols[]);
+00281
+00290 \textcolor{keywordtype}{int} \hyperlink{utils_8h_ad9dc7bfc9aa664dc6698f17ce07fc7e7}{hamming}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1, \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2);
+00291
+00301 \textcolor{keywordtype}{int} \hyperlink{utils_8h_a96d3c36717d624514055ce201cab1542}{hamming\_bound}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s1, \textcolor{keyword}{const} \textcolor{keywordtype}{char} *s2, \textcolor{keywordtype}{int} n);
+00302
+00313 \textcolor{comment}{/*@only@*/} \textcolor{comment}{/*@null@*/}
+00314 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_abe51806d14cff0789a8c1df7dbc45b71}{get\_line}(FILE *fp);
+00315
+00316 \textcolor{keywordtype}{int} skip\_comment\_lines(\textcolor{keywordtype}{char} **line);
+00317
+00338 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{utils_8h_a8ef1835eb83f542396f59f0b205965e5}{get\_input\_line}(\textcolor{keywordtype}{char} **\textcolor{keywordtype}{string},
+00339 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} options);
+00340
+00341 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} get\_multi\_input\_line(\textcolor{keywordtype}{char} **\textcolor{keywordtype}{string},
+00342 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} options);
+00343
+00396 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} \hyperlink{utils_8h_afd194a69af9d92b5b0412a7627ac1595}{read\_record}( \textcolor{keywordtype}{char} **header,
+00397 \textcolor{keywordtype}{char} **sequence,
+00398 \textcolor{keywordtype}{char} ***rest,
+00399 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} options);
+00400
+00401
+00402 \textcolor{comment}{/* \(\backslash\)brief Extract a dot-bracket structure string from (multiline)character array}
+00403 \textcolor{comment}{ *}
+00404 \textcolor{comment}{ * This function extracts a dot-bracket structure string from the 'rest' array as}
+00405 \textcolor{comment}{ * returned by read\_record() and returns it. All occurences of comments within the}
+00406 \textcolor{comment}{ * 'lines' array will be skipped as long as they do not break the structure string.}
+00407 \textcolor{comment}{ * If no structure could be read, this function returns NULL.}
+00408 \textcolor{comment}{ *}
+00409 \textcolor{comment}{ * \(\backslash\)see read\_record()}
+00410 \textcolor{comment}{ *}
+00411 \textcolor{comment}{ * \(\backslash\)param lines The (multiline) character array to be parsed}
+00412 \textcolor{comment}{ * \(\backslash\)param length The assumed length of the dot-bracket string (passing a value < 1 results in no length
+ limit)}
+00413 \textcolor{comment}{ * \(\backslash\)param option Some options which may be passed to alter the behavior of the function, use 0 for no
+ options}
+00414 \textcolor{comment}{ * \(\backslash\)return The dot-bracket string read from lines or NULL}
+00415 \textcolor{comment}{ */}
+00416 \textcolor{keywordtype}{char} *extract\_record\_rest\_structure(\textcolor{keyword}{const} \textcolor{keywordtype}{char} **lines,
+00417 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length,
+00418 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} option);
+00419
+00431 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_ac6dfa5e22928c087c6e09ff0054a7ced}{pack\_structure}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *struc);
+00432
+00442 \textcolor{keywordtype}{char} *\hyperlink{utils_8h_a071c6921efe1eb974f115ee6fefa3c39}{unpack\_structure}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *packed);
+00443
+00453 \textcolor{keywordtype}{short} *\hyperlink{utils_8h_a89c32307ee50a0026f4a3131fac0845a}{make\_pair\_table}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure);
+00454
+00455 \textcolor{keywordtype}{short} *make\_pair\_table\_pk(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure);
+00456
+00463 \textcolor{keywordtype}{short} *\hyperlink{utils_8h_afeaa6d68eef3a99d0a7aa08aa91c6601}{copy\_pair\_table}(\textcolor{keyword}{const} \textcolor{keywordtype}{short} *pt);
+00464
+00470 \textcolor{keywordtype}{short} *\hyperlink{utils_8h_a3c81b3967056c3888b8472b65fbb16f5}{alimake\_pair\_table}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure);
+00471
+00477 \textcolor{keywordtype}{short} *\hyperlink{utils_8h_a9aa3bf3b4346bb7fb88efc154dd07a79}{make\_pair\_table\_snoop}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *structure);
+00478
+00491 \textcolor{keywordtype}{int} *\hyperlink{utils_8h_a4358e89f64cc87a563b7ef3855f75bed}{make\_loop\_index\_pt}(\textcolor{keywordtype}{short} *pt);
+00492
+00493
+00494 \textcolor{keywordtype}{int} bp\_distance(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *str1,
+00495 \textcolor{keyword}{const} \textcolor{keywordtype}{char} *str2);
+00496
+00502 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a6bf778117d31b7fd90db435323f4ef74}{print\_tty\_input\_seq}(\textcolor{keywordtype}{void});
+00503
+00512 \textcolor{keywordtype}{void} \hyperlink{utils_8h_ae4ef89b662a3e9b5b5f0781d9757aba0}{print\_tty\_input\_seq\_str}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *s);
+00513
+00519 \textcolor{keywordtype}{void} \hyperlink{utils_8h_ae8ae8a34962b9959be3f6c40f0a80ac1}{print\_tty\_constraint\_full}(\textcolor{keywordtype}{void});
+00520
+00537 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a4d167deb70bb51723e44374dc981deb2}{print\_tty\_constraint}(\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} option);
+00538
+00546 \textcolor{keywordtype}{void} \hyperlink{utils_8h_ad3f18dd83f958f18b2f26ecb99305208}{str\_DNA2RNA}(\textcolor{keywordtype}{char} *sequence);
+00547
+00553 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a17b796b806f96b70382077fb5bc519bb}{str\_uppercase}(\textcolor{keywordtype}{char} *sequence);
+00554
+00568 \textcolor{keywordtype}{int} *\hyperlink{utils_8h_a55c0f6b3b07b6adf2ee235ba901fe397}{get\_iindx}(\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length);
+00569
+00584 \textcolor{keywordtype}{int} *\hyperlink{utils_8h_a4d9ee1572c1bfcd02d3d3f2db8a6530f}{get\_indx}(\textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length);
+00585
+00586 \textcolor{keywordtype}{void} getConstraint( \textcolor{keywordtype}{char} **cstruc,
+00587 \textcolor{keyword}{const} \textcolor{keywordtype}{char} **lines,
+00588 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} option);
+00589
+00601 \textcolor{keywordtype}{void} \hyperlink{utils_8h_a36c3a6c3218b041f992052767bc74549}{constrain\_ptypes}(\textcolor{keyword}{const} \textcolor{keywordtype}{char} *constraint,
+00602 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} length,
+00603 \textcolor{keywordtype}{char} *ptype,
+00604 \textcolor{keywordtype}{int} *BP,
+00605 \textcolor{keywordtype}{int} min\_loop\_size,
+00606 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} idx\_type);
+00607
+00608 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *make\_referenceBP\_array(\textcolor{keywordtype}{short} *reference\_pt,
+00609 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} turn);
+00610
+00611 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} *compute\_BPdifferences( \textcolor{keywordtype}{short} *pt1,
+00612 \textcolor{keywordtype}{short} *pt2,
+00613 \textcolor{keywordtype}{unsigned} \textcolor{keywordtype}{int} turn);
+00614
+00615 \textcolor{preprocessor}{#endif}
+\end{DoxyCode}
--- /dev/null
+@article{zuker:1981,
+ title={Optimal computer folding of large {RNA} sequences using thermodynamics and auxiliary information},
+ author={Zuker, M. and Stiegler, P.},
+ journal={Nucleic acids research},
+ volume={9},
+ number={1},
+ pages={133--148},
+ year={1981},
+ publisher={Oxford Univ Press}
+}
+@article{mccaskill:1990,
+ title={The equilibrium partition function and base pair binding probabilities for {RNA} secondary structure},
+ author={McCaskill, J.S.},
+ journal={Biopolymers},
+ volume={29},
+ number={6-7},
+ pages={1105--1119},
+ year={1990},
+ publisher={Wiley Online Library}
+}
+
+@article{mathews:2004,
+ title={Incorporating chemical modification constraints into a dynamic programming algorithm for prediction of {RNA} secondary structure},
+ author={Mathews, D.H. and Disney, M.D. and Childs, J.L. and Schroeder, S.J. and Zuker, M. and Turner, D.H.},
+ journal={Proceedings of the National Academy of Sciences of the United States of America},
+ volume={101},
+ number={19},
+ pages={7287},
+ year={2004},
+ publisher={National Acad Sciences}
+}
+
+@article{mathews:1999,
+ title={Expanded sequence dependence of thermodynamic parameters improves prediction of {RNA} secondary structure},
+ author={Mathews, D.H. and Sabina, J. and Zuker, M. and Turner, D.H. and others},
+ journal={Journal of molecular biology},
+ volume={288},
+ number={5},
+ pages={911--940},
+ year={1999},
+ publisher={Elsevier Science}
+}
+
+@article{turner:2010 ,
+ title={{NNDB}: The nearest neighbor parameter database for predicting stability of nucleic acid secondary structure},
+ author={Turner, D.H. and Mathews, D.H.},
+ journal={Nucleic Acids Research},
+ volume={38},
+ number={suppl 1},
+ pages={D280--D282},
+ year={2010},
+ publisher={Oxford Univ Press}
+}
+
+@article{turner:1988,
+ title={{RNA} structure prediction},
+ author={Turner, D.H. and Sugimoto, N. and Freier, S.M.},
+ journal={Annual review of biophysics and biophysical chemistry},
+ volume={17},
+ number={1},
+ pages={167--192},
+ year={1988},
+ publisher={Annual Reviews 4139 El Camino Way, PO Box 10139, Palo Alto, CA 94303-0139, USA}
+}
+
+@article{jaeger:1989,
+ title={Improved predictions of secondary structures for {RNA}},
+ author={Jaeger, J.A. and Turner, D.H. and Zuker, M.},
+ journal={Proceedings of the National Academy of Sciences},
+ volume={86},
+ number={20},
+ pages={7706},
+ year={1989},
+ publisher={National Acad Sciences}
+}
+@article{he:1991,
+ title={Nearest-neighbor parameters for {G-U} mismatches: {5'GU3'}/{3'UG5'} is destabilizing in the contexts {CGUG/GUGC}, {UGUA/AUGU}, and {AGUU/UUGA} but stabilizing in {GGUC/CUGG}},
+ author={He, L. and Kierzek, R. and SantaLucia Jr, J. and Walter, A.E. and Turner, D.H.},
+ journal={Biochemistry},
+ volume={30},
+ number={46},
+ pages={11124--11132},
+ year={1991},
+ publisher={ACS Publications}
+}
+@article{peritz:1991,
+ title={Thermodynamic study of internal loops in oligoribonucleotides: symmetric loops are more stable than asymmetric loops},
+ author={Peritz, A.E. and Kierzek, R. and Sugimoto, N. and Turner, D.H.},
+ journal={Biochemistry},
+ volume={30},
+ number={26},
+ pages={6428--6436},
+ year={1991},
+ publisher={ACS Publications}
+}
+@article{walter:1994,
+ title={Coaxial stacking of helixes enhances binding of oligoribonucleotides and improves predictions of {RNA} folding},
+ author={Walter, A.E. and Turner, D.H. and Kim, J. and Lyttle, M.H. and M{\"u}ller, P. and Mathews, D.H. and Zuker, M.},
+ journal={Proceedings of the National Academy of Sciences},
+ volume={91},
+ number={20},
+ pages={9218},
+ year={1994},
+ publisher={National Acad Sciences}
+}
+@article{bruccoleri:1988,
+ title={An improved algorithm for nucleic acid secondary structure display},
+ author={Bruccoleri, R.E. and Heinrich, G.},
+ journal={Computer applications in the biosciences: CABIOS},
+ volume={4},
+ number={1},
+ pages={167--173},
+ year={1988},
+ publisher={Oxford Univ Press}
+}
+@article{hofacker:1994a,
+ title={The rules of the evolutionary game for {RNA}: {A} statistical characterization of the sequence to structure mapping in {RNA}},
+ author={Hofacker, I.L. and Organisiert, C.F.},
+ year={1994},
+ publisher={Citeseer}
+}
+@book{adams:1979,
+ title = {{T}he {H}itchhikers {Guide} to the {G}alaxy},
+ author = {Douglas Adams},
+ year = {1979},
+}
+
+@article{dimitrov:2004,
+ title={Prediction of hybridization and melting for double-stranded nucleic acids},
+ author={Dimitrov, R.A. and Zuker, M.},
+ journal={Biophysical Journal},
+ volume={87},
+ number={1},
+ pages={215--226},
+ year={2004},
+ publisher={Elsevier}
+}
+
+@article{hofacker:1994,
+ title={Fast folding and comparison of {RNA} secondary structures},
+ author={Hofacker, I.L. and Fontana, W. and Stadler, P.F. and Bonhoeffer, L.S. and Tacker, M. and Schuster, P.},
+ journal={Monatshefte f{\"u}r Chemie/Chemical Monthly},
+ volume={125},
+ number={2},
+ pages={167--188},
+ year={1994},
+ publisher={Springer}
+}
+
+@article{hofacker:2002,
+ title={Secondary structure prediction for aligned {RNA} sequences},
+ author={Hofacker, I.L. and Fekete, M. and Stadler, P.F.},
+ journal={Journal of molecular biology},
+ volume={319},
+ number={5},
+ pages={1059--1066},
+ year={2002},
+ publisher={Elsevier}
+}
+@article{hofacker:2006,
+ title={Memory efficient folding algorithms for circular {RNA} secondary structures},
+ author={Hofacker, I.L. and Stadler, P.F.},
+ journal={Bioinformatics},
+ volume={22},
+ number={10},
+ pages={1172--1176},
+ year={2006},
+ publisher={Oxford Univ Press}
+}
+@article{bernhart:2008,
+ title={{RNAalifold}: Improved consensus structure prediction for {RNA} alignments},
+ author={Bernhart, S.H. and Hofacker, I.L. and Will, S. and Gruber, A.R. and Stadler, P.F.},
+ journal={BMC bioinformatics},
+ volume={9},
+ number={1},
+ pages={474},
+ year={2008},
+ publisher={BioMed Central Ltd}
+}
+@article{bernhart:2006,
+ title={Partition function and base pairing probabilities of {RNA} heterodimers},
+ author={Bernhart, S.H. and Tafer, H. and M{\"u}ckstein, U. and Flamm, C. and Stadler, P.F. and Hofacker, I.L.},
+ journal={Algorithms for Molecular Biology},
+ volume={1},
+ number={1},
+ pages={3},
+ year={2006},
+ publisher={BioMed Central Ltd}
+}
+@article{fontana:1993a,
+ title={Statistics of {RNA} secondary structures},
+ author={Fontana, W. and Konings, D.A.M. and Stadler, P.F. and Schuster, P.},
+ journal={Biopolymers},
+ volume={33},
+ number={9},
+ pages={1389--1404},
+ year={1993},
+ publisher={Wiley Online Library}
+}
+@article{fontana:1993b,
+ title={{RNA} folding and combinatory landscapes},
+ author={Fontana, W. and Stadler, P.F. and Bornberg-Bauer, E.G. and Griesmacher, T. and Hofacker, I.L. and Tacker, M. and Tarazona, P. and Weinberger, E.D. and Schuster, P.},
+ journal={Physical review E},
+ volume={47},
+ number={3},
+ pages={2083},
+ year={1993},
+ publisher={APS}
+}
+@article{shapiro:1990,
+ title={Comparing multiple {RNA} secondary structures using tree comparisons},
+ author={Shapiro, B.A. and Zhang, K.},
+ journal={Computer applications in the biosciences: CABIOS},
+ volume={6},
+ number={4},
+ pages={309--318},
+ year={1990},
+ publisher={Oxford Univ Press}
+}
+@article{shapiro:1988,
+ title={An algorithm for comparing multiple {RNA} secondary structures},
+ author={Shapiro, B.A.},
+ journal={Computer applications in the biosciences: CABIOS},
+ volume={4},
+ number={3},
+ pages={387--393},
+ year={1988},
+ publisher={Oxford Univ Press}
+}
+
+@article{lorenz:2012,
+ title = {{RNA} Folding Algorithms with {G-Quadruplexes}},
+ author = {Lorenz, Ronny and Bernhart, Stephan H. and Externbrink, Fabian and Qin, Jing and H{\"{o}}ner zu Siederdissen, Christian and Amman, Fabian and Hofacker, Ivo L. and Stadler, Peter F.},
+ year = {2012},
+ note = {submitted},
+ abstract = {G-quadruplexes are abundant locally stable structural elements in nucleic acids. The combinatorial theory of RNA structures and the dynamic programming algorithms for RNA secondary structure prediction are extended here to incorporate G-quadruplexes. Using a simple but plausible energy model for quadruplexes, we find that the overwhelming majority of putative quadruplex-forming sequences in the human genome are likely to fold into canonical secondary structures instead.}
+}
+
+@article{lorenz:2011,
+ title={{ViennaRNA} Package 2.0},
+ author={Lorenz, Ronny and Bernhart, Stephan H. and H{\"o}ner zu Siederdissen, Christian and Tafer, Hakim and Flamm, Christoph and Stadler, Peter F. and Hofacker, Ivo L.},
+ journal={Algorithms for Molecular Biology},
+ volume={6},
+ number={1},
+ pages={26},
+ year={2011},
+ publisher={BioMed Central Ltd},
+ doi={10.1186/1748-7188-6-26},
+ abstract={BACKGROUND: Secondary structure forms an important intermediate level of description of nucleic acids that encapsulates the dominating part of the folding energy, is often well conserved in evolution, and is routinely used as a basis to explain experimental findings. Based on carefully measured thermodynamic parameters exact dynamic programming algorithms can be used to compute ground states, base pairing probabilities, as well as thermodynamic properties.\\
+ RESULTS: The ViennaRNA Package has been a widely used compilation of RNA secondary structure related computer programs for nearly two decades. Major changes in the structure of the standard energy model, the Turner 2004 parameters, the pervasive use of multi-core CPUs, and an increasing number of algorithmic variants prompted a major technical overhaul of both the underlying RNAlib and the interactive user programs. New features include an expanded repertoire of tools to assess RNA-RNA interactions and restricted ensembles of structures, additional output information such as centroid structures and maximum expected accuracy structures derived from base pairing probabilities, or z-scores for locally stable secondary structures, and support for input in fasta format. Updates were implemented without compromising the computational efficiency of the core algorithms and ensuring compatibility with earlier versions.\\
+ CONCLUSIONS: The ViennaRNA Package 2.0, supporting concurrent computations via OpenMP, can be downloaded from www.tbi.univie.ac.at/RNA }
+}
+
+@InProceedings{lorenz:2009,
+ editor = {Grosse, Ivo and Neumann, Steffen and Posch, Stefan
+ and Schreiber, Falk and Stadler, Peter F.},
+ author = {Lorenz, Ronny and Flamm, Christoph and Hofacker, Ivo L.},
+ title = {2D Projections of {RNA} folding Landscapes},
+ booktitle = {German Conference on Bioinformatics 2009},
+ volume = {157},
+ month = {September},
+ year = {2009},
+ pages = {11--20},
+ isbn = {978-3-88579-251-2},
+ publisher = {Gesellschaft f.\ Informatik},
+ address = {Bonn},
+ series = {Lecture Notes in Informatics},
+ abstract = {The analysis of RNA folding landscapes yields insights into the kinetic folding
+behavior not available from classical structure prediction methods. This is especially
+important for multi-stable RNAs whose function is related to structural changes,
+as in the case of riboswitches. However, exact methods such as barrier tree analysis
+scale exponentially with sequence length. Here we present an algorithm that computes
+a projection of the energy landscape into two dimensions, namely the distances
+to two reference structures. This yields an abstraction of the high-dimensional energy
+landscape that can be conveniently visualized, and can serve as the basis for estimating
+energy barriers and refolding pathways. With an asymptotic time complexity of O(n^7)
+the algorithm is computationally demanding. However, by exploiting the sparsity of
+the dynamic programming matrices and parallelization for multi-core processors, our
+implementation is practical for sequences of up to 400 nt, which includes most RNAs
+of biological interest.}
+}